/* Fonts */
/* open-sans-300 - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/open-sans-v17-latin-300.eot'); /* IE9 Compat Modes */
    src: local('Open Sans Light'), local('OpenSans-Light'),
         url('../fonts/open-sans-v17-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/open-sans-v17-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/open-sans-v17-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../fonts/open-sans-v17-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/open-sans-v17-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  
  /* open-sans-regular - latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
         url('../fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  
  /* open-sans-600 - latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/open-sans-v17-latin-600.eot'); /* IE9 Compat Modes */
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
         url('../fonts/open-sans-v17-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/open-sans-v17-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/open-sans-v17-latin-600.woff') format('woff'), /* Modern Browsers */
         url('../fonts/open-sans-v17-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/open-sans-v17-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
  }

@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-style: normal;
    font-display: fallback;
    src: url('../fonts/fa-solid-900.woff2') format('woff2'),
         url('../fonts/fa-solid-900.woff') format('woff');    
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    font-style: normal;
    font-display: fallback;
    src: url('../fonts/fa-brands-400.woff2') format('woff2'),
         url('../fonts/fa-brands-400.woff') format('woff');    
}

@font-face {
    font-family: 'Font Awesome 5 Duotone';
    font-weight: 900;
    font-style: normal;
    font-display: fallback;
    src: url('../fonts/fa-duotone-900.woff2') format('woff2'),
         url('../fonts/fa-duotone-900.woff') format('woff');    
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*General */

body {
    font-family: 'Open Sans';
    color: #2E2E2E;
    overflow-x: hidden;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: 'Open Sans';
}

h1 {
    hyphens: none;
}

article {
    margin-bottom: 1.25rem;
}

h1 p{
    margin: 0;
}

.orange {
    color: #FF5D3B; 
 }

 .margin-top {
     margin-top: 2rem;
 }

.button {
    background: #FF004B;
    font-weight: 600;
    color:white;
    border-radius: 8px;
    border: 2px solid linear-gradient(180deg, #FF004B 0%, #990000 100%);
}


.button.large.white {
    background: white;
    font-weight: 600;
    margin-top: 1rem;
    color: #FF004B;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.button.large {
    background: #FF004B;
    font-weight: 600;
    margin-top: 2.5rem;
    color: white;
}

.button.large.white:hover {
    background: linear-gradient(35deg, #FF004B 0%, #990000 100%);
    color: white;
    border: 2px solid white;
}

.button.large:hover, .button.large:focus {
    background: #990000;
    color: white; 
}

.button.portal {
    margin:0 0 0 2rem;
    border: 2px solid #FF004B;
    font-size: 1.124rem;
    padding: 0.5rem 0.8rem;
    background: white;
    color: #383838;
    border-radius:10px;
}

.button.portal:hover {
    background: linear-gradient(35deg, #FF004B 0%, #990000 100%);
    color:white;
}

a {
    color:  #FF004B;
    text-decoration: underline;
}

a:hover, a:focus {
    color:  #FF004B;
    text-decoration: none;
}

.menu a, .menu a:hover, .menu a:focus, a.button, a.button:focus {
    text-decoration: none;
}

.fa-eye {
    padding: .8rem !important;
    padding-top: 1rem !important;
}


/* Fixes white/blue stroke flashing of links in main menu. */
.menu a, .menu a:hover, .menu a:active, .menu a:focus {
    outline: none;
    border: none;
}

p {
    text-align: justify;
    hyphens: auto;
    -moz-hyphens: auto;
    font-weight:500;
}

label {
    font-style:normal;
    font-size:1.12rem;
}

.spacer{
    margin-top: 8rem;
 }

 .font-awesome-5-pro {
     font-family: 'Font Awesome 5 Pro';
     font-size:1.5rem;
 }

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* Topbar */
.topbar, .top-bar, .top-bar ul {
    background: #342239;
    color: #fff;
    padding: 0;
}
.topbar .icon{
    color: #fff;
}

.topbar .menu .menu-text, .topbar .dropdown.menu a, .topbar .menu a {
    padding: 0.5rem 1rem;
}

.menu-language ul{
    padding: 0;
}

.menu-language .dropdown.menu a{
    color: #fff;
}

.menu-language .dropdown.menu a:hover{
    background:  #990000;
}

.menu-language .menu .active > a{
    font-weight: bold;
    color: #fff;
    background: #990000;
}

/* prevent reload flashing. */
.menu .active > a {
   background: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* Navigationbar */
#small-logo img {
    max-width: 7.5rem;
    margin-right:.8rem;
}

.menubar-shop{
    font-size: 1.3rem;
}

#logo img {
    width: 200px;
    margin-left: 1rem;
}


#responsive-menu ul {
    background:  white;
}

#responsive-menu li {
    text-align: center;
    padding: 0;
}

#menubar { 
    color:#383838;
    box-shadow: 0rem 0.9375rem 0.625rem -0.9375rem #111; 
    z-index: 11;
}

#first-level .dropdown.menu ul{
    align-items: center;
}

#first-level .dropdown.menu li {
    align-items: center;
}

#first-level .dropdown.menu li a {
    color: #383838; 
    font-size: 1.125rem;
    align-items: center;
    padding-top: 1.875rem;
    font-weight: bold;
}

#first-level .dropdown.menu li.selected a {
    color:#103158;
    font-weight: bold;
    font-size: 1.125rem;
}

#first-level .dropdown.menu li.unselected a {
    color: #383838;
}

#first-level li {
    text-align: center;
}

#first-level li a{
    height: 4em;
    font-weight: bold;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

#first-level li a img {
    margin-top: 2%;
    max-height: 90%;
    max-width: 120%;
    height: 3.125rem;
    width: auto;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after{
    border-color: #383838 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.dropdown.menu > li.selected.is-dropdown-submenu-parent > a::after{
    border-color: #103158 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    border-color: #383838 transparent;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
    border-color: #383838 transparent 
}

#menu-top-bar, .top-bar-left, .title-bar  {
    background: white;
}

#first-level{
    background: white;
}

#first-level .dropdown.menu li.active a{
    background: none;
    color: #FF004B;
    font-weight:bold;
}

#first-level .dropdown.menu li a:hover{
    background: none;
    color: #FF004B;
    font-weight:bold;
}


#second-level{
    background-color: rgba(255, 255, 255, 0.6);
}

#second-level .dropdown.menu li a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    height: auto;
}

#menu-top-bar2, #second-level .top-bar ul, #second-level .dropdown.menu li a {
    background: none;
}

#second-level li a {
    color: #333;
}

#second-level li.active a, #second-level li a:hover{
    color: #1656a5;
}

#second-level li.active{
    background-color: rgba(255, 255, 255, 0.6);
}

.menu .menu-text {
    font-weight: 500;
}

.menu-icon.dark {
    color: #383838;  
    margin-top: 4px;
    width: 24px;
    height: 20px;
}

.menu-icon.dark::after {
    background: #103158;
    box-shadow: 0 0.4375rem 0 #103158, 0 0.875rem 0 #103158;
}

.menu-icon.dark:hover::after {
    background: #103158;
    box-shadow: 0 0.4375rem 0 #103158, 0 0.875rem 0 #103158;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*Off-canvas Menubar */
#off-canvas-menu li.index-1 a:visited{
    border:#103158 solid 0.125rem;
}
.off-canvas-wrapper {
    flex: 1 0 auto;
}

.off-canvas {
    background: white;
    padding: .5rem;
}

.off-canvas a {
    background: white;
    color: rgb(56, 56, 56);
    font-weight: bold;
}

.off-canvas a:hover {
    color: #fff;
}

.off-canvas li.active a{
    color: #103158 !important;
    background: #fff;
   
}

.off-canvas a:active {
    color: #fff;
}

.off-canvas ul {
    background: white;
}

.off-canvas .accordion.menu > li > a {
    font-weight: bold !important;
    text-transform: none !important; 
}

.off-canvas .accordion.menu li ul.menu li {
    padding-left: 1rem;
    width: 100%;
}

.off-canvas-button {
    background: #103158;
    color: #383838;
    font-size: 1.2rem;
    font-weight: bold;
}

.off-canvas-button:hover{
    background: #103158;
    color: white; 
}

.off-canvas-button:active{
    background: #103158;
    color: white; 
}

.dropdown-pane{ 
    margin-left: 0.5rem;
    width: auto;
    background-color: #103158;
}

.is-dropdown-submenu {
    margin-left: 0.5rem;
    border: 0;
    width: auto;
    background-color: #103158;
}

.off-canvas .first {
    font-weight: bold;
}

.off-canvas .dropdown.menu .is-active > a{
    color:white;
}

.accordion-menu .is-accordion-submenu a {
    margin-left: 0.5rem;
    width: auto;
    background-color: #103158;
}

#off-canvas-menu {
    padding:0;
    background: white !important;
    z-index: 1001;
}

#off-canvas-menu .logo-container {
   
    padding: .5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.logo-container a {
    background:transparent;
}

#off-canvas-menu .logo-container img {
    max-width: 120px;
}

.off-canvas-wrapper {

    position: relative;
    overflow: hidden;

}

.js-off-canvas-overlay.is-overlay-fixed {
    position: fixed;
}

.js-off-canvas-overlay.is-closable {
    cursor: pointer;
}

.js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.js-off-canvas-overlay {
    background: rgba(255, 93, 59, .8) !important;
    z-index: 1000;
}

.js-off-canvas-overlay.is-overlay-fixed {

    position: fixed;

}
.js-off-canvas-overlay.is-closable {

    cursor: pointer;

}
.js-off-canvas-overlay.is-visible {

    opacity: 1;
    visibility: visible;

}
.js-off-canvas-overlay {

    background: 

    rgba(153, 0,  0, .8) !important;
    z-index: 1000;

}
.js-off-canvas-overlay {

    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .5s ease,visibility .5s ease;
    transition: opacity .5s ease,visibility .5s ease;
    background: rgba(254,254,254,.25);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.is-visible {
    display: block !important;
}

#off-canvas-menu ul li:hover a, #off-canvas-menu ul li:focus a, #off-canvas-menu ul li:active a {
    color: #FF004B !important;
}

#off-canvas-menu ul li {
    font-size: 0.984375rem;
    font-weight: 600;
}

#off-canvas-menu .button.portal {
    margin-left: 1rem;
    margin-top: 1rem;
    width: 100px;
}

#main-menu li.index-1.menu-text.first.active {
    padding:0 !important;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* Index */
.home-grid {
    margin-top:2rem;
}

.homepage-overlay-text {
    position:relative;
    top:-130px;
}

.homepage-overlay-text h1 { 
    color:white;
    font-weight:bold;
    font-size:3.125rem;
}

.homepage-overlay-text h2 {
    color:white;
    font-weight:bold;
    font-size:1.825rem;
}

.homepage-overlay-text .show-for-large img {
    max-width: 46.875rem;
}

.homepage-overlay {
    height:600px;
    background-color:#990000;
    padding: 9.375rem 0rem 3.125rem;
    background-image: linear-gradient(180deg, #FF004B 0%, #990000 100%);
    background-size: cover;
    background-position: center top;
}

.index-headline h1{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight:300;
}

.g-box {
   background: linear-gradient(35deg, #FF5D3B 0%, rgb(255, 49, 97) 50%);;
   border-radius: 10px;
}

.steps div div{
   padding: 2rem;
}

.small-index-headline {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.small-index-headline-first {
  font-size: 2.5rem;
  text-transform: uppercase;
}

.screenshot-section h2 {
    font-size: 3rem;
    max-width: 700px;
    margin: 4rem auto;
    margin-bottom: 2rem;
    font-weight:300;
 }

 .advantage-title {
     font-weight:bold;
 }

.fontawesome-icon {
    font-family: 'Font Awesome 5 Pro';
    font-size: 3rem;
    color: white;
    padding:1.5rem;
    font-weight:300;
}

.advantage-cell {
    padding:1rem;
}

.advantage-section h2 {
    font-size: 3rem;
    max-width: 700px;
    margin: 4rem auto;
    margin-bottom: 2rem;
    font-weight:300;
}

.icon-background {
    background: #FF004B;
    background:linear-gradient(35deg, #FF004B 0%, #990000 100%);
    border-radius: 50%;
    text-align:center;
}

.button-section h2 {
    font-size: 3rem;
    max-width: 700px;
    margin: 4rem auto;
    margin-bottom: 2rem;
    font-weight:300;
}

.svg-container {
    position:absolute;
}

.top-grid{
    margin-top:16rem;
}

.second-icon {
    margin-top:5rem;
}

.top-icons {
    width: 6rem;
    text-align: center;
    margin-left: 6rem;
    margin-bottom: 1rem;
    margin-top:2rem;
}

.top-icons-font {
    font-size: 2.5rem;
}

.home-arrow {
    font-size: 4rem;
    margin-top: 3rem;
    color: #FF5D3B;
    font-family: 'Font Awesome 5 Pro';
}
    
    
/* 3-step-graphic */
.icon img {
    height: auto;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.icon-full img {
    height: auto;
    width: 100%;
    border-radius: 25px;
}

.icon-header {    
    font-size: 1.125rem; 
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    padding: .5rem .5rem 0 .5rem;
    color:white;
}

.icon-header-full {    
    font-size: 1.5em; 
    color:white;
}

.icon-text {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.expl-grid {
    margin-top:44rem;
    opacity:1;
}

.index-headline h2 {
    border-bottom: 0.125rem solid  rgba(40, 80, 129, 0.5);
}

.index-headline h3 {
    border-bottom: 0.125rem solid  rgba(40, 80, 129, 0.5);
}

.marvel-device.iphone-x {
    max-width:65%;
    max-height:65%
}

.marvel-device.iphone-x .notch {
    left:80px !important;
    max-width:80% !important;
    max-height:80% !important;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* Footer */
#footer-container {
    background:#342239;
    color: white;
    align-content: center;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    margin-top: 2.5rem;
    height: auto !important;
    margin-bottom:0 !important;
}

.footer-grid {
    margin-top: 1rem;
    padding-bottom:1rem;
}

.footer-grid img {
    max-width:100%;
    margin-bottom: 0.625rem;
    width:auto;
}

.footer-cell a {
    color: white;
}

.footer-cell p {
    text-align: center;
    margin-bottom:0;
}

.footer-cell a.logo-link {
    border:none;
}

.footer-logo img{
    max-width: 18rem;
}

.footer-logo svg{
    color: #fff;
    fill: currentColor !important;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

#footer-container a {
    color: white;
    text-decoration: none;
    padding: .5rem;
}

#footer-container h3 {
    font-weight: bold;
    margin-top:1.25rem;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*Contentpages*/

.contentpage-overlay {
    background-size: cover;
    height:auto;
    background-image: linear-gradient(180deg, #FF004B 0%, #990000 100%);
}

.contentpage-overlay-text {
    margin-top:3rem;
    margin-bottom:3rem;
}

.contentpage-overlay-text h1 {
    color:white;
    font-size: 3rem;
    font-weight:300;
}

#content-header-cell h1 {
    margin-top: 2rem;
}

.content-article div.cell {
    padding-bottom: 1.5rem;
    margin-top: 1.5rem;

    position:relative;
}

.content-image {
    padding: 1.25rem;  
}

.image-odd{
    padding-left: 0;
    padding-right: 2.5rem;
}

.image-even{
    padding-right: 0;
    padding-left: 2.5rem;
}

.second-content-container {
    background: #F3F3F1;  
}

.second-content {
    background: #F3F3F1;
    margin-bottom: 1.8rem;
}

.second-content h3 {
    font-size: 1.5rem;
    border-bottom: 0.125rem solid  rgba(40, 80, 129, 0.8);
    margin-top: 1.5rem;
}

.sub-image {
    padding: 0.5rem;
    margin-top: 5rem;
}

.video-container {
    margin-top: 5rem;
}

.content-icon {
    width:9rem;
}

.fontawesome-icon-content {
    font-family: 'Font Awesome 5 Pro';
    font-size: 5rem;
    color: white;
    padding: 2rem 1rem;
    font-weight: 300;
    text-align: center;
}

.icon-even {
    position: absolute;
    top: 25%;
    left: 40%;
}

.icon-odd {
    position: absolute;
    top: 25%;
    left: 40%;
}

.small-contentpage-headline {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight:300;
}

.small-contentpage-h2 {
    font-size:1.5rem;
    text-transform: uppercase;
    font-weight:300;
}

.content-article h2 {
    font-size:1.8rem;
    font-weight:300;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Contact form */

#contactde_message {
    height:12rem;
}

.boltform label.required::after {
    color:#2E2E2E !important;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Page */

tbody, tfoot, thead {
    border: 1px solid white;
}

thead {
    background:transparent;
    border-bottom: 2px solid #FF5D3B;
    font-size:1.3rem;
}

tfoot td, tfoot th, thead td, thead th {
    text-align: center;
}

table { 
    border-collapse: collapse; 
  }
  table td, 
  table th { 
    border-bottom: 1px solid transparent; 
    border-right: 1px solid transparent; 
  }

  table td {
    background:white;
  }

  tbody td, tbody th {
    padding: .5rem .625rem .5rem;
}

/*+++++++++++++++++++++++++++++++++++ Homestory ++++++++++++++++++++++++++++++++++++*/
.homestory-overlay {
    height:50rem;
    background-color:#990000;
    background-image: linear-gradient(180deg, #FF004B 0%, #990000 100%);
    background-size: cover;
    background-position: center top;
}

.section-alt {
    background-color: #990000;
}

.section{
    padding-bottom: 2rem;
    border-bottom: 1px solid #efefef;
    border-top: 1px solid #efefef;
}

.section .claim{  
    padding-left: 1rem;
    padding-right: 1rem; 
  
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section .claim h2, .slogan h2{
    text-align: center;
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 0;
    padding-top: 3rem;
}

.section-alt .claim h2 {
    color: white;
}

.section .claim p, .slogan p{
    font-weight: 300;
    text-align: center;
    font-size: 1.5rem;

    padding-bottom: 0;
    margin-bottom: 0;   
}

.section .section-caption p {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.section-alt .claim p, .section-alt p {
    color: white;
}

.section-alt .claim hr{
    border-bottom: 2px solid white !important;
}
  
.section .claim hr{
    border-bottom: 2px solid #990000;
    width: 20em;
}

.letsgo {
    background: none !important;
    color: #990000 !important;
    font-size: 3em;
    border-radius: 50%;
    padding: 0.25em;
    margin-top:2rem;
    margin-bottom: 3rem;
    font-size: 2em !important;
    box-shadow: none;
}

.section-alt .letsgo {
    color: white !important;
}

.letsgo i {
    padding: .2rem .5rem;
    margin-top: .2rem;
}

.letsgo:hover {
    background: #990000 !important;
    color: white !important;
}

.section-alt .letsgo:hover {
    background: white !important;
    color: #990000 !important;
}

.fact-icons {
    margin-top: 1rem;
}

.fact-icons i {
    font-size: 2rem;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 100%;
    color: #990000;
  }

  .fact-icons p {
      text-align: center !important;
      margin-top: 1rem;
      color: white;
  }

  .feature-icons i {
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    background: #990000 ;
    border-radius: 100%;
    color: white;
    padding: 1rem;
  }
  
  .feature-icons h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  .feature-icons p {
      text-align: center;
  }

/* ================================== Tooltips ================================== */ 

.tooltip-info {
 
    width: 2.5em;
    height: 2.5em;
    text-align: center;
    margin: 0 auto;
    color: white;  
    position:absolute;
  }
  
  .tooltip-info i {
    background: #FF004B;
    padding: .7rem;
    width: 2.5em;
    height: 2.5em;
    border-radius:50%;
  }
  
  .tooltipster-sidetip .tooltipster-box {
      background: white;
      border: 2px solid #990000;
    border-radius: 4px;
    color: rgb(10, 10, 10);
  }
  
  
  .tooltipster-sidetip .tooltipster-content {
      color: rgb(10, 10, 10);
  }
  
  .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #990000;
      left: 0;
      top: 3px;
    
  }
  
  .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
      border-left-color: white;
      left: -3px;
    top: 0;
     
  }
  
  .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
      border-right-color: white;
      left: 3px;
    top: 0;
  } 
  
  .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
      border-top-color: white;
      left: 0;
    top: -3px;
     
  }
  
  .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
      border-bottom-color: #990000;
  }
  
  .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
      border-left-color: #990000;
  }
  
  .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
      border-right-color: #990000;
  }
  
  .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
      border-top-color: #990000;
  }
  
  .tooltip-info {
    top:-3rem;
    right:-.5rem;
  }
  
  .tooltip-info i {
    width: 2.5rem;
    height: 2.5rem;
    padding: .7rem;
  }
  
  #tooltip-smartphone {
    right: -.5rem;
    top: -1.5rem;
  }
  
  #tooltip-smartphone-bottom {
    right: 4.5rem;
    bottom: 0;
    top: 23rem;
  }
  
  #tooltip-loveheart {
    top: 6.5rem;
    left: -26rem;
  
  }

  /* ================================== Slider ================================== */
.cover-wrapper {
    position: relative;
    height: 100%;
  }
  
  .cover-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .cover-grid {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    -webkit-transform: skewY(-16deg) scaleY(0.7);
    -moz-transform: skewY(-16deg) scaleY(0.7);
    -ms-transform: skewY(-16deg) scaleY(0.7);
    transform: skewY(-16deg) scaleY(0.7);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    background-color: rgba(10, 10, 10, .45);
    top: 62%;
  }
  
  .slider-overlay h1 {
    margin: 0 auto;
    text-align: center;
    top: 70%;
    position: relative;
    border-bottom: none;
    color: white;
    font-size: 2.8rem;
    font-weight: 400;
    -webkit-transform: rotate(-16deg);
    -moz-transform: rotate(-16deg);
    -ms-transform: rotate(-16deg);
    transform: rotate(-16deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    max-width: 30rem;
    left: 40%;
  }
  
  .img-overlay img {
    position: absolute;
    top: 0%;
    right: 5rem;
  }

/* ================================== Animations ================================== */ 

@-webkit-keyframes bounce-7 {
    0%   { transform: scale(1,1)      translateY(0); }
    10%  { transform: scale(1.1,.9)   translateY(0); }
    30%  { transform: scale(.9,1.1)   translateY(-30px); }
    50%  { transform: scale(1.05,.95) translateY(0); }
    57%  { transform: scale(1,1)      translateY(-5px); }
    64%  { transform: scale(1,1)      translateY(0); }
    100% { transform: scale(1,1)      translateY(0); }
}   

@keyframes bounce-7 {
    0%   { transform: scale(1,1)      translateY(0); }
    10%  { transform: scale(1.1,.9)   translateY(0); }
    30%  { transform: scale(.9,1.1)   translateY(-30px); }
    50%  { transform: scale(1.05,.95) translateY(0); }
    57%  { transform: scale(1,1)      translateY(-5px); }
    64%  { transform: scale(1,1)      translateY(0); }
    100% { transform: scale(1,1)      translateY(0); }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
}
    
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

}

/*CSS3 Bounce Animation */
@-webkit-keyframes bouncedown {
    0%,  
    100% {
       -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(10px);
    }
}
@-moz-keyframes bouncedown {
    0%, 
    100% {
       -moz-transform: translateY(0);
    }
    50% {
       -moz-transform: translateY(10px);
    }
}
@-o-keyframes bouncedown {
    0%,
    100% {
       -o-transform: translateY(0);
    }
    50% {
       -o-transform: translateY(10px);
    }
}
@keyframes bouncedown {
    0%,  
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* animation scale-up-center */
 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.8);
              transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.8);
              transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

.fact-icons i:hover, .feature-icons i:hover {
    -webkit-animation: bounce-7 .6s cubic-bezier(0.280, 0.840, 0.420, 1) 1;
    animation: bounce-7 .6s cubic-bezier(0.280, 0.840, 0.420, 1) 1;
}

.animate {
    -webkit-animation: pulse 1.5s ease-in-out .1s 5;
    animation: pulse 1.5s ease-out .1s 5;
}

.call-to-action {
    -webkit-animation: scale-up-center .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 5 alternate both;
            animation: scale-up-center .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 5 alternate both;
}

#first-letsgo {
    -webkit-animation: bouncedown .6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6 alternate both;
            animation: bouncedown .6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6 alternate both;
}

.tooltip-info:hover {
    -webkit-animation: pulse 2s ease-in-out .1s;
    animation: pulse 2s ease-out .1s;
}

/* New */

.section-title h3 {
    font-size: 2.5rem;
    margin-top:2rem;
    display: table;
    color:white;
    padding: 0rem 1rem 0rem 1rem;
    background:#342134;
}

.section-title-white h3 {
    font-size: 2.5rem;
    margin-top:2rem;
    display: table;
    color:#342134;
    padding: 0rem 1rem 0rem 1rem;
    background:white;
}

.section-grid {
    padding-bottom:.5rem;
}

div.space div {
    padding: .5rem 2rem 2rem 2rem;
}

.red-background {
    background-color: #990000;
}

.white-text {
    color:white;
    margin-bottom: 3rem;
}

.section-text p {
    font-size:1.125rem;
}

.small-hearts img {
    width: 9rem;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/** Mobile */
@media screen and (max-width: 39.9375em) {
    .nav-container {
        padding: 0;
    }
    
}

@media screen and (max-width: 40em) {

    .icon-header {
        font-size: 2.5vw;
        margin:0;
        padding-bottom: 0.5rem;
    }

    .home-content{
        padding-top: 0;
    }
    .content-image, .image-odd, .image-even {
        padding: 0;  
    }  
    .image-odd{
        padding-left: 0.125rem;
    } 
    .image-even{
        padding-right: 0.125rem;
    }
    .content-article div.cell:first-of-type { 
        margin-top: 0;
    } 

    .small-index-headline-first {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .small-index-headline {
        font-size: 1rem;  
    }

    .homepage-overlay-text img {
        margin-top:0;
    }

    .expl-grid {
        margin-top: 23rem;
    }

    .triangle-container {
        padding-bottom: 1rem;
    }

    .index-headline h1 {
        font-size:2rem;
    }

    .section-alt h2 {
        margin: 3rem auto;
        font-size:2rem;
    }

    .steps div div {
        padding: 1rem 3rem;  
    }

    .button.large.white {
        margin-bottom: 1rem;
    }

    .spacer {
        margin-top:0;
    }

    .screenshot-section h2 {
        margin: 3rem auto;
        font-size:2rem;
    }

    .advantage-section h2 {
        margin: 3rem auto;
        font-size:2rem;
    }

    .icon-background {
        width:6rem;
        margin-bottom:1rem;
    }

    .advantage-icon {
        position:relative;
    }

    .advantage-icon .icon-background {
        display:inline-block;   
    }
    
    .advantage-grid {
        text-align: center;
    }

    .triangle-container {
        padding-top: 15rem;
    }

    .icon-background.content-icon {
        width: 9rem;
    }

    .icon-odd {
        position:static;
    }

    .icon-even {
        position:static;
    }

    .content-article div.cell {
        position:static;
    }

    .menu .menu-text {
        padding-left: 0;
        padding-bottom: 0;
    }

    .homepage-overlay-text h1 {
        font-size:2.5rem;
        margin-top:2rem;
    }

    .homepage-overlay-text h2 {
        font-size: 1.5rem;
    }

    .section-text {
        padding: 0rem .8rem 0rem .8rem;
        margin-top:1rem;
    }

    .long-image {
        margin-top:1.5rem;
    }

    .button-large {
        margin-top:1.5rem;
    }

    div.space div {
        margin-top:1rem;
    }

    #footer-links {
        border-top: 2px solid #D11E36;
        padding: 1rem 0rem 1rem 0rem;
    }

    #footer-contact {
        border-top: 2px solid #D11E36;
        padding: 1rem 0rem 0rem 0rem;
    }

    #footer-pages {
        padding-bottom: 1rem;
        margin-top:.5rem;
    }

    #footer-logo img {
        max-width:14rem;
    }

    .homepage-overlay {
        height:400px;
    }

    .section .claim h2 {
        font-size: 2rem;
        line-height: 1.2em;
        margin-bottom: 0;
        padding-top: 0;
    }

    .section .claim p {
        font-size: 1.1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section .claim hr {
        width: 10em;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .homestory-overlay {
        height: 13rem;
    }

    .section .section-caption p {
        font-size: 1rem;
        padding: 0.4rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        border-radius: 0.25rem;
        position: relative;
        z-index: 10;
        margin-top: 1rem;
    }

    #tooltip-smartphone-bottom {
        right: 1.5rem;
        bottom: 0;
        top: 10.5rem;
    }

    #tooltip-loveheart {
        top: 3rem;
        left: -15rem;
    }

}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    
    .icon-background.content-icon {
        width: 9rem;
    }
    .icon-odd {
        position:static;
    }

    .icon-even {
        position:static;
    }

    .content-article div.cell {
        position:static;
    }

    .section .claim h2, .slogan h2 {
        font-size: 3rem;
    }

    .section .claim p, .slogan p {
        font-size: 1.3rem;
    }

    .homestory-overlay {
        height: 30rem;
    }

    #tooltip-smartphone-bottom {
        right: 3.5rem;
        top: 19.5rem;
    }

    #tooltip-smartphone {
        right: -1rem;
    }
}

 /* "Upper" medium displays */
 @media screen and (min-width: 60em) and (max-width: 80em) {
    .marvel-device.macbook {
        width: 880px !important;
    }
 }


/* ================================== Slider Responsiveness Fix ================================== */ 

/* Small */
@media screen and (max-width: 43.9em) {

    /* Home */
    .header-orbit {
        height:10rem !important;
    }
    
    .orbit-slide {
        height: 100%;
    }
    
    .overlay {
      height: 55%;
      top: 50%;
    }
  
    .slider-overlay h1 {
      font-size: .7rem;
      top: 70%;
      left: 37%;
      max-width: 7rem;
    }
  
    .img-overlay img {
      right: 0;
      max-height: 9rem;
      top: .5rem;
    }
  
  }
  
  /* small Medium only */
  @media screen and (min-width: 44em) and (max-width: 51.9em) {
     /* Home */
     .header-orbit {
      height:23rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
  
    .overlay {
      height: 45%;
      top: 52%;
    }
    
    .slider-overlay h1 {
    
        font-size: 1.8rem;
        margin-top: 0;
        max-width: 18rem;
        top: 68%;
        left: 25%;
    
    }
  
    .img-overlay img {
      max-height: 20rem;
      right: 1rem;
      top: 1.5rem;
    }
  }
  
  /* Medium only */
  @media screen and (min-width: 52em) and (max-width: 63.9em) {
  
    /* Home */
    .header-orbit {
      height:23rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
  
    .overlay {
      height: 45%;
      top: 53%;
    }
  
    .slider-overlay h1 {
      font-size: 2rem;
      margin-top: 0;
      max-width: 18rem;
      top: 67%;
      left: 38%;
    }
  
    .img-overlay img {
      max-height: 20rem;
      right: .5rem;
      top: 1.5rem;
    }
  }

  /* iPad Pro  */
  @media screen and (min-width: 64em) and (max-width: 77.9em) {
    .header-orbit {
        height:23rem !important;
      }
    
      .orbit-slide {
        height: 100%;
      }
    
      .overlay {
        height: 45%;
        top: 55%;
      }
    
      .slider-overlay h1 {
        font-size: 2rem;
        margin-top: 0;
        max-width: 18rem;
        top: 66%;
        left: 45%;
      }
    
      .img-overlay img {
        max-height: 20rem;
        right: .5rem;
        top: 1.5rem;
      }
  }
  
  /* Large only. => to fill the slides for screen sized between large monitors and laptops. */
  @media screen and (min-width: 78em) and (max-width:80em) {
  
    .header-orbit {
      height: 29rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
  
    .overlay {
      top: 55%;
    }
  
    .img-overlay img {
      max-height: 28rem;
      right: .5rem;
    }
  
    .slider-overlay h1 {
      font-size: 2.3rem;
      top: 67%;
      max-width: 23rem;
      left: 42%;
    }
  
  }
  
  /* Small notebooks */
  @media screen and (min-width: 80em) and (max-width: 89.99em) {
    
    .header-orbit {
      height: 35rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
  
    .overlay {
      top: 55%;
    }
  
    .slider-overlay h1 {
      max-width: 20rem;
      top: 67%;
      left: 38%;
    }
  
    .img-overlay img {
      max-height: 30rem;
      right: .5rem;
      top: 3rem;
    }
  
  }
  
  /* Notebooks */
  @media screen and (min-width: 90em) and (max-width: 119em) {
    .header-orbit {
      height: 32rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
  
    .overlay {
      top: 55%;
    }
  
    .slider-overlay h1 {
      top: 68%;
      font-size: 2.5rem;
      max-width: 23rem;
    }
  
    .img-overlay img {
      right: .5rem;
      max-height: 32rem;
    }
  
  }
  
  /* Mac Book */
  @media screen and (min-width: 119.9em) and (max-width: 122.9em) {
    .header-orbit {
      height: 38rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
    .overlay {
      top: 62%;
    }
  
    .slider-overlay h1 {
      top: 69%;
      left: 55%;
    }
    
    .img-overlay img {
      right: 2rem;
      max-height: 38rem;
    }
  }  
  
  /* Mac Book Pro */
  @media screen and (min-width: 123em) and (max-width: 150em) {
    .header-orbit {
      height: 50rem !important;
    }
  
    .orbit-slide {
      height: 100%;
    }
   
    .overlay {
     top: 62%;
  
   }
  
   .slider-overlay h1 {
     top: 74%;
     font-size: 3.2rem;
     max-width: 28rem;
     left: 42%;
   }
  
  }
  
  @media screen and (min-width: 150.9em)  {
    .slider-overlay h1 {
      left: 50%;
      font-size: 3.5rem;
      top: 71%;
    }
  }
  




