/*Proxima-Nova Import*/
@import url('https://use.typekit.net/lzq4hvx.css');

/* You can add global styles to this file, and also import other style files */
body, html {
    width:100%;
    height: 100%;
}

.welcome-demo-image {
   height: 36vh;
}

body {
    margin:0;
    overflow: hidden;
    /*background-image: url('../assets/images/svg/demobg.svg');
    background-size: 100%;
    background-repeat: no-repeat;*/
    background-color: #ffffff;
}

ul li {
  list-style: none;
  position: relative;
  padding: 0 1vw;
}
.item ul li{
   padding: 0; 
}
ul.square li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5vw;
  width: 0.8vw;
  height: 0.8vw;
  background-color: #ff635c;
}

.grid-container-mobile {
    display: grid;
    width:100%;
    height: 100%;
    padding: 0 0 0 0;
    margin:0;
    
    /* OFFICIAL PERCENTAGE*/
    /*grid-template-columns: 40% 30% 30%;*/
    
    /* TEMP PERCENTAGE*/
    grid-template-columns: 30% 45% 25%;
    
    grid-template-rows: 90% 10%;
    grid-template-areas: "sidebar demo asider"
                        "menu footer footer";
} 

.grid-container.desktopgrid {
    display: grid;
    width:100%;
    height: 100%;
    padding: 0 0 0 0;
    margin:0;
    grid-template-columns: 30% auto;
    grid-template-rows: 90% 10%;
    grid-template-areas: "sidebar demo"
                        "menu footer";
    -ms-grid-template-columns: 30% auto;
    -ms-grid-template-rows: 90% 10%;
} 

.congratsbg {
    width:100%;
    height: 100%;
    margin:0;
    padding: 5vh 0 0 5vh; 
    /*background-image: url('../assets/images/svg/congratsbg.svg');
    background-size:100% 100%;
    background-repeat: no-repeat;*/
}

.congrats-title {
  font-family: "TaubSansBold";  
  font-size:calc(18px + 2vh);
}

.congrats-message {
  font-family: "TaubSansLight";  
    font-size:calc(16px + 2vh);
}

.congrats-label {
    font-family: "TaubSans-Regular";  
    font-size:2vw; 
}


/*Login Form class*/
.loginForm {
  position:absolute;
  z-index:10;
  background-color:rgba(255,255,255,1);
  top:50%;
  left:50%;
  width: 20vw;
  height: 22vw;
  transform: translate(-50%,-50%);
  padding:1vw;
}


@media screen and (max-width: 1604px) and (max-height:971px) {
/*  .grid-container {
    grid-template-columns: 40% auto;
    grid-template-rows: auto 10%;
  } */
  
  .idemo-homepage-title {
  /*font-size: calc(44px + 2vh)!important;*/

  }
  
/*  .idemo-homepage-welcome.larger {
      font-size: calc(24px + 2vh)!important;
  }*/

}

/*Select demo*/
#select-demo-body{
  margin:0.05px;   
  background:#F7F7F7;
}
.select-demo-grid-container {
  display: grid;
  height:88vh;
  background:#F7F7F7;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "Col-1 Col-2 col-3";
}
.Col-1 { grid-area: Col-1; }
.Col-2 { grid-area: Col-2; }
.Col-3 { grid-area: col-3; }

.Col-1{
    background:white;
    margin-right: 1.5vw;
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center
}
.Col-2{
    background:white;
    margin-right: 1.5vw;
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center
}
.Col-3{
    background:white;
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.select-demo-explore-button{
    display: inline-block;
    color: #FFF;
    background: #FF635C;
    font-weight: bold;
    text-decoration: none;
    margin: 5vh;
    border: 1px solid #FF635C;
    width: 13vw;
    border-radius: 20vw;
    text-align: center;
    padding: 1vh 0vw;
    font-family: 'TaubSansMedium';
    font-size: 1vw;
}
.select-demo-explore-button:hover{
    color: #FF635C;
    background: #fff;
}

.select-demo-item-description{
    margin: 0;
    font-family: 'TaubSansLight';
    font-size: 1.19vw;
    color: #212529;
}
.select-demo-item-title{
  margin: 3vh;
  font-family: 'TaubSansHeavy';
  font-size: 2vw;
  color: #212529;
}

.select-demo-item-image{
  width: 70%;
}
.select-demo-item-footer{
  width: 100%;
  height: 2vw;
  position: absolute;
  bottom: 0;
  background: #1c224d;
}
.select-demo-div-logo{
  position: absolute;
  top: 2vw;
  left: 2vw;
  z-index: 9;
  cursor:pointer;
}

.grid-container-demointro {
  width:100vw;
  height: 100vh;
  /*padding: 6vh 0 0 5vh; */
  display:grid;
  grid-template-columns: 1fr;
  grid-template-rows: 10% 80% 10%;
  grid-template-areas: "logohome-demointro"
                       "homemain-demointro"
                       "homefooter-demointro";
}
.logohome-demointro {grid-area: logohome-demointro;padding: 0 0 0 5vh; display: flex;align-items:center;}
.homemain-demointro {grid-area: homemain-demointro;padding: 0 0 0 5vh; }
.homefooter-demointro {grid-area: homefooter-demointro;padding: 0 0 0 5vh; display: flex;align-items:center;}

.homemain-demointro{
    background:white;
    /*margin-right: 1.5vw;*/
    position:relative;
}
.homefooter-demointro{
    width: 100%;
    /*height:5%;*/
    position: relative;
    /*margin-right: 1.5vw;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
.homemain-demointro-content{
    background:white;
    margin-right: 1.5vw;
    position:relative;
    display: flex;
    flex-direction: row;
}
.demo-intro-item-title{
    margin: 3vh 0vh 0vh 3vh;
    font-family: 'TaubSansHeavy';
    font-size: 3.36318vw;
    color: #121C4E;
}
.demo-intro-decoration-title{
    margin: 3vh 0vh 3vh 3vh;
    /*margin-top: -7vh;*/
    font-family: 'TaubSansHeavy';
    font-size: 0.5vw;
    color: #FF635C;
}
.demo-intro-decoration-title i{
    margin-right:0.5vw;
}
.demo-intro-subtitle{
    font-family: 'TaubSansMedium';
    font-size: 1.7vw;
    font-weight: bolder;
    margin: 0vw 3vh;
    color: #212529;
}
.idemo-demointro-welcome{
    font-size: 1.5vw;
    margin-top: 1vw;
    margin-left: 3vh;
    line-height: 2.25vw;
    font-family: 'TaubSansLight';
    color: #212529;
}

.element-aligner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.select-demo-explore-button{
    display: inline-block;
    color: #FFF;
    background: #FF635C;
    font-weight: bold;
    text-decoration: none!important;
    margin: 3vw 1vw;
    border: 1px solid #FF635C;
    width: 13vw;
    border-radius: 20vw;
    text-align: center;
    padding: 1vh 0vw;
    font-family: 'TaubSansMedium';
    font-size: 1vw;
}
.select-demo-explore-button:hover{
    color: #FF635C;
    background: #fff;
}
.demo-intro-image{
    /*margin-left: 7.5vw;*/
    /*width: 40vw;*/
    height: 100%;
    width: 100%;
}
/*#homepageTexts{
  flex: 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}*/
#homepageimg{
  flex: 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-intro-footer-text{
    /*position:absolute;
    bottom: 0vh;*/
    font-family: 'TaubSansLight';
    font-size: 1.35vw;
    color: #212529;
    display: flex;align-items:center;
}
.p-relative{
  position: relative!important;
}  
.p-absolute{
  position: absolute!important;
}




aside {
    grid-area: sidebar;
    -ms-grid-rows: 1;
    -ms-grid-columns: 1/2;
    padding: 0 0 0 0;
    margin: 0;
}

main {
    grid-area: demo;
    -ms-grid-rows: 1;
    -ms-grid-columns: 2/3;
}

footer {
    grid-area: footer;
    -ms-grid-rows: 2;
    -ms-grid-columns: 2/3;
    background-color: #f2f2f2;
}

menu {
    grid-area: menu;
    -ms-grid-rows: 2;
    -ms-grid-columns: 1/2;
    background-color: #f2f2f2;
}

.desktop {
   box-shadow: -5px -5px 10px rgba(114,114,114,0.34);
}

@font-face {
  font-family: 'TaubSansSuper';
  src: url("../assets/fonts/TaubSans-Super.woff2") format('woff2'),
        url("../assets/fonts/TaubSans-Super.woff") format('woff'),
        url("../assets/fonts/TaubSans-Super.svg") format('svg');
}

@font-face {
  font-family: 'TaubSansMedium';
  src: url("../assets/fonts/TaubSans-Medium.woff2") format('woff2'),
        url("../assets/fonts/TaubSans-Medium.woff") format('woff'),
        url("../assets/fonts/TaubSans-Medium.svg") format('svg');
}

@font-face {
  font-family: 'TaubSansBold';
  src: url("../assets/fonts/TaubSans-Bold.woff2") format('woff2'),
        url("../assets/fonts/TaubSans-Bold.woff") format('woff'),
        url("../assets/fonts/TaubSans-Bold.svg") format('svg');
}

@font-face {
  font-family: 'TaubSansHeavy';
  src: url("../assets/fonts/TaubSans-Heavy.woff2") format('woff2'),
        url("../assets/fonts/TaubSans-Heavy.woff") format('woff'),
        url("../assets/fonts/TaubSans-heavy.svg") format('svg');
}

@font-face {
  font-family: 'TaubSansLight';
  src: url("../assets/fonts/TaubSans-Light.woff2") format('woff2'),
        url("../assets/fonts/TaubSans-Light.woff") format('woff'),
        url("../assets/fonts/TaubSans-Light.svg") format('svg');
}
@font-face {
    font-family:'TaubSans-LightItalict';
    src: url('../fonts/TaubSans-LightItalic.woff') format('woff');
    font-style: italic;}
    
@font-face {
  font-family: 'Proxima-Nova-Regular';
  src: url("../assets/fonts/Proxima-Nova-Regular.woff") format('woff'),
        url("../assets/fonts/ProximaNova-Regular.otf") format('otf'),
}

@font-face {
  font-family: 'TaubSansDisplay';
  src: url("../assets/fonts/TaubDisplay-20.woff2") format('woff2'),
        url("../assets/fonts/TaubDisplay-20.woff") format('woff'),
        url("../assets/fonts/TaubDisplay-20.svg") format('svg');
}

@font-face {
  font-family: 'TaubSansDisplayBold';
  src: url("../assets/fonts/TaubDisplay-30.woff2") format('woff2'),
        url("../assets/fonts/TaubDisplay-30.woff") format('woff'),
        url("../assets/fonts/TaubDisplay-30.svg") format('svg');
}



/*.row {
  display:block;
}*/
.mt-1-25vw{
  margin-top: 1.25vw;  
}
.w-80 {
  width:90%!important;
}

.w-60 {
  width:60%!important;
}


.homepage-size {
  width:100%;
}

.idemo-footer {
  position:fixed;
  bottom: 0;
}

.CTA-large {
    background-color:#FF635C!important;
    border-radius: 2em;
    /*border-width: 0;*/
    width:100%;
    /*height:2.2em;*/
    font-size: 1.5vw!important;
    /*padding:1vh!important;*/
    padding: .375rem .75rem;
    line-height: 1.7!important;
    font-family: 'TaubSansBold';
}

.extraCTA-large {
  line-height: 2!important;
}

.CTA-large:hover {
  background-color:#F2635D;
}

.idemo-homepage-title {
  font-family: 'TaubSansHeavy';
  /*font-size: calc(55px + 2vh);*/
    font-size: 3.9vw;
  line-height: 1.2em;
  color:#fff;
}

.idemo-demo-title {
  font-family: 'TaubSansMedium';
  /*font-size: calc(30px + 2vh);*/
  font-size: 2.3vw;
}

.idemo-demo-title.welcome-titlex {
  font-size:4.3vh;  
}

.idemo-homepage-description.welcome-titley {
    font-size:2.3vh;  
  }

.idemo-homepage-welcome {
  font-family: 'TaubSans-Medium';
  font-size: 1.7vw;
  color:#989898;
}

.idemo-workforcenow {
  font-family: 'TaubSansLight';
  font-size: 1.5vw;
  line-height: 1.5;
}

.idemo-mt5vh {
  margin-top:5vh;
}

.idemo-mt10vh {
  margin-top:10vh;
}

.idemo-workforcenow {
  font-family: 'TaubSansLight';
  font-size: 1.5vw;
}

.idemo-homepage-welcome.larger {
    /*font-size: calc(24px + 2vh);*/
    font-size: 2vw;
    line-height:1.2;
}

.idemo-homepage-description {
  font-family: 'TaubSansLight';
  font-size: 1.3vw;
  line-height: 1.2;
  /*text-align: justify;*/
}

.idemo-homepage-menu {
  font-family: 'TaubSansLight';
}

.idemo-homepage-menu-open:hover {
  box-shadow: 0px 0px 3px 3px rgb(200,200,200);
  transform: translateY(-2px) scale(1.01);
  background-color:rgb(242,99,93)!important;
}



.blueBg {
  background-color:#072452!important;
}

.grayBg {
  background-color:rgb(126, 126, 126)!important;
}

.whiteBg {
  background-color:white!important;
}

.h-60 {
  height: 60%!important;
}

.h-80 {
  height:80%!important;
}
.h-70 {
    height: 70%!important;
}
.h-75 {
    height: 75%!important;
}
/*Audio slider*//*
.switch {
    position: relative;
    width: 30px;
    height: 17px;
    align-self: center;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #121C4E;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}*/

/*Web form */

.quote-form {
  background-color: #f3f3f3;
  text-align: center;
}

.modal-dialog {
    position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%) !important;
    width: 90%;
}

.modal-content {
    font-family: 'TaubSansMedium';
}

.adp-form{
  text-align: center;
}


/* Animations */

.animater {
  background: goldenrod;
  transition: all 1s linear;
  display: block;
}

.hidden {
  display: none;
}

.visuallyhidden {
  opacity: 0;
}


/* End Animations */

/*page transitiones*/

.scale-in-center {
	-webkit-animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
    }
    50% {
      -webkit-transform: scale(3);
              transform: scale(3);
      opacity: 1;
    }
    100%{
        -webkit-transform: scale(0);
              transform: scale(0);
        opacity: 1;
    }
  }
  
  #demo-canvas-transition-container {
    position: absolute;
    pointer-events: none;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    align-items: center;
    overflow: hidden;
}
#demo-canvas-transition{
    background: white;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.conectorTextContainer {
  /*background-color:#F2F2F2;*/
  background-color: rgba(0,0,0,0);
  top:0;
  left:0;
  z-index:7;
}
.end_phace_transicion{
  background-color:#F2F2F2;
  top:0;
  left:0;
  z-index:5;
}
.charts-close {
    color: black;
    float: right;
    font-size: 2vw;
    font-weight: bold;
}
  
.charts-close:hover,
.charts-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.overlayWhite {
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
  z-index: 6;
}

.progressbar-m-top {
  margin-top:2.7vh;
}

.progressbar-m-top3 {
     margin-top: 0; 
}

.congratIconSize {
  width: 10vw;  
  height: 12vw;
}

.navbutton-m-top {
  margin-top:2vh;
}

/*RESIZER IMAGE*/
/*Messagge for portrait tablet*/

.resize-message {
  display: none;
  position: absolute;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2b2b2b;
  text-align: center;
  transition: all .5s;
  color: #fff
}

.resize-message__text {
  padding: 0 5vw;
  font-weight: 700;
  font-family: ProximaNovaRegular, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff
}

.resize-message__icon {
  display: block;
  width: 70px;
  margin: auto;
}

@media (max-height:500px) and (orientation:landscape),
(max-width: 1024px) and (min-width: 425px) and (orientation:portrait) {
  .resize-message {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
  }
  

}

@media (max-width: 1024px) and (orientation:portrait) {
  .resize-message__text {
    font-size: 18px;
  }
}

@media (max-height: 690px) {
  .modal-content {
    transform: scale(0.60);
    margin-top: -30%;
  }
  
}

.pause-icon{
      line-height: 1.7!important;  
}
@media only screen and (max-width: 1540px) and (min-width: 1240px) and (max-height: 670px) and (min-height: 503px) {
    /*.idemo-homepage-title {
      font-size:3.5vw;
    }
    
    .idemo-homepage-welcome.larger {
      font-size: 1.7vw;
    }*/
    
    .demohomebg2 {
      width: 42vw!important;
      top:3vh!important;
    }
    
   /* .idemo-demo-title {
      font-size:2.3vw;
    }*/
    
    #endPhaseText {
      padding:2vh 0!important;
    }
    
    .rectangleBorder2 {
      height: 0.5vw!important;
    }
    
    /*.CTA-large {
      font-size:1.3vw!important;
      line-height:1.5!important;
    }*/
/*    .pause-icon{
      line-height: 1.5!important;  
    }*/
    
/*    .CTA-next-workflow{
        font-size:1.5vw!important; 
        line-height: 1.7!important;
    }*/
    
    .progressbar-m-top {
      margin-top:1vh!important;
    }
    
    .navbutton-m-top {
      margin-top:0!important;
    }

}


@media only screen and (min-aspect-ratio: 2/1) {
    .idemo-homepage-title {
      font-size:2.9vw;
    }
    
    .idemo-homepage-welcome.larger {
      font-size: 1.9vw;
    }

    .idemo-demo-title {
      font-size:1.7vw;
      
    }
    
    .idemo-homepage-welcome {
      font-family: 'TaubSans-Medium';
      font-size: 1.5vw;
    }

    
    .idemo-homepage-description {
      font-size: 1vw!important;
      line-height: 1.3!important;
    }
    
    
    .conector-header {
      font-size:1.5vw;
    }
    
    #sidebar-logo {
      width:85%!important;
    }
    
    .listDemo.redText {
      font-size: 1.3vw!important;
      /*margin: 0 0 0.5em 0!important;*/
    }
    
    #autoplay-container {
      max-width: 52%!important;
    }
    
    .autoplay-keeping{
      margin-top: 0.5rem!important;
    }
    
    #autoplay-container a {
      font-size: 1.3vw!important;
      line-height: 1.5!important;
    }
    
    #endPhaseText {
      font-size: 1vw!important;
    }
    
    .tittle-adp{
    margin-top: 2vw!important;
    }
    .select-demo-grid-container{
      height: 85vh!important
    }
    
    .select-demo-item-image{
      width: 50%!important;
    }
    
    .select-demo-explore-button{
      margin: 1.5vw 1vw;
    }
    
}

/*@media screen and (max-device-aspect-ratio: 1/1) {
   .congrat-image {
     height:35%!important;
   }
}*/


.isAutoPlay {
    animation-name: autoPlaying;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count:infinite;
}

@keyframes autoPlaying {
  from {border : solid 3px rgba(208, 39, 29, 0.1);}
  to {border : solid 3px rgb(208, 39, 29,1);}
}
@-webkit-keyframes autoPlaying {
    from {border : solid 2px rgba(208, 39, 29, 0.1);}
    to {border : solid 2px rgb(208, 39, 29,1);}
}

.cc-window {
  bottom: -65!important;
  transition:all 1s;
  -webkit-transition:all 1s; 
  -moz-transition:all 1s; 
   -o-transition:all 1s; 
}

.cc-window-anim {
  bottom: 0!important;
}

button:focus{
     outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.dropdown {
  font-size:1.1vw;
}
/*.congrat-image {
     height:50%!important;
   }*/
   
   


/*Mobile class*/
/*INIT NAV MENU*/
.nav-menu{
    display: flex;
    align-items:center;
    width: 100%;
    margin: 0;
    padding-left: 0!important;
}
.logo-here{
    flex: 0 0 17%;  
    display: flex;
    align-items: center;
}
.logo-here img{
    width: 100%;    
}
.covid-cta{
    flex: 0 0 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.5%;
    margin-right: 1.5%;
}
.covid-cta img{
  width: 100%;
}
.icons-section{
    flex: 0 0 47%;
    display: flex;
    margin-right: 1.5%;
}
.item{
    width: 14.2%;  
   /* padding: 1%;*/
    font-size: 0.8vw;
}
.item ul{
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.item ul li img{
    width: 50%;    
    margin-bottom: 5px;
}
.user-avatar{
    flex: 0 0 25%;
    display: flex;    
}
.img-people{
    width: 20%;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
}
.img-people img{
    width:100%;
}
.name-user{
    width: 78%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.65vw;
    color:#0F6778;
}
.name-user span{
    color:#0F6778;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    margin-left: 5px;
}
.name-user span i{
    font-size: 2.5vw;
    vertical-align: middle;  
    color:#0F6778;
    margin-left: 3vw;
}
/*END NAV MENU*/
.hide-cta{
    opacity: 0;
    pointer-events: none;    
}
.hide-outline{
  outline:none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;  
}

.adp-navy{
  color: #121c4e;  
}


#endPhaseText {
    font-size: 1.2vw;
    font-family: TaubSansLight;
}

/*ESTILOS TITULO EXPLORER DEMO*/
.tittle-adp{
  width: 100%;
  font-family: 'TaubSansHeavy';
  font-size: 2.8vw;
  margin-top:2vw;
  margin-bottom:2vw;
  line-height: 1.1em;
  text-align: center;
  justify-content:center;
  color:#121C4E;
  z-index: 12;
}

#overlayWhite-Highlight{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  background-color: rgba(255,255,255,0.9);
  z-index: 6;
}

 .line-left:before{
     content: "";
     height:80%;
     width:0.1vw;
     background:#595959;
     position:absolute;
     right:0;
 }
 
 .testimonial {
   position:fixed;
   display:flex;
   width:5vw;
   height:100vh;
   right:0;
   z-index:31;
 }
 
/* .popup-close {*/
/*  position:absolute;*/
/*  top:0;*/
/*  right:0;*/
  /*padding: 1vw;*/
/*  cursor:pointer; */
/*}*/

.popup-close {
  position:absolute;
  top:0;
  right:0;
  /*padding: 1vw;*/
  padding: 0.2vw 0.5vw 0.5vw 0.5vw;
  font-size: 1.2vw;
  line-height: 1;
}

#popupClose {
  cursor:pointer;
}
.idemo-homepage-title {
    font-family: 'TaubSansHeavy';
    /* font-size: calc(55px + 2vh); */
    font-size: 3.9vw;
    line-height: 1.2em;
    color: #121C4E;
}
.indicator-parent-s {
    position: absolute;
    width: 2.3vw;
    height: 2.3vw;
}

.sidebar-show {
 animation-duration:1s;
 animation-fill-mode:forwards;
 animation-timing-function:ease-out
}
.sidebar-hide {
 animation-name:SidebarHide;
 animation-duration:1s;
 animation-fill-mode:forwards;
 animation-timing-function:ease-out
}

/*.sidebar-hide1 {*/
/* animation-name:SidebarHide;*/
/* animation-duration:1s;*/
/* animation-fill-mode:forwards;*/
/* animation-timing-function:ease-out*/
/*}*/

@keyframes SidebarShow {
 from {
  right:-100%
 }
 to {
  right:0
 }
}
@keyframes SidebarHide {
 from {
  right:0
 }
 to {
  right:-100%
 }
}


.right-sidebar-show {
animation-name:SidebarShow;
 animation-duration:1s;
 animation-fill-mode:forwards;
 animation-timing-function:ease-out
}
.right-sidebar-hide {
 animation-name:SidebarHide;
 animation-duration:1s;
 animation-fill-mode:forwards;
 animation-timing-function:ease-out
}

@keyframes SidebarShow {
 from {
  right:-100%
 }
 to {
  right:0
 }
}
@keyframes SidebarHide {
 from {
  right:0
 }
 to {
  right:-100%
 }
}

@media only screen and (max-width: 1600px) and (min-width: 1200px)  and (max-height:700px){
    .hp-menu .extraCTA-large {
        line-height: 1.6!important;
    }
    .hp-menu .CTA-large {
        font-size: 1.4vw!important;
    }
    .hp-menu .CTA-Start-Demo{
        font-size: 1.4vw!important;
        line-height: 1.6!important;
    }
}