:root{
    --primary-font: 'MADE Tommy Soft';
    --icon-font:'omelet' !important;
    --base-size-font:16px;
    --primary-color:#002180;
    --secondary-color:#FF4B00;
    --gray-color:#C4C9D3;
    --transition:all .4s ease;
    --transition_2: all 4s cubic-bezier(0.01, 0.32, 0.11, 0.99);
    --transition_3: all .4s cubic-bezier(0.01, 0.32, 0.11, 0.99);
    --box-shadow: rgb(0 0 0 / 25%) 1px 1px 10px;
    --border-radius:15px;
    --title-xl:2.6rem;
    --title-xxl:4.5rem;
    --title-sm:2.4rem;
}

html{
    font-size: 62.5%;
}

body {
    background-color: #fff;
    font-family: var(--primary-font);
    font-size: var(--base-size-font);
    font-weight: 300;
    color:var(--primary-color);
    line-height: 1.2;
    font-style: normal;
    padding-top:80px;
    margin:0 !important;
}
@media screen and (min-width: 1024px) {
    body {
        padding-top:105px;
    }
}

/* --- Container --- */

.container{
    margin: 0 auto;
    width: 100%;
    max-width: 1755px;
    position: relative;
    padding: 0 15px;
}

@media screen and (min-width: 1280px) {
    .container{
        width: 90%;
    }

    .container-small{
        width: 80%;
    }
}

/*** Slick arrow ***/

.slick-arrow{
    width: 60px;
    height: 60px;
    z-index: 30;
    background: transparent;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-arrow:before{
    display: none;
}

.slick-arrow:after{
    content: "\e900";
    position: absolute;
    width: 25px;
    height: 25px;
    font-size: 2.5rem;
    color:var(--secondary-color);
    display: inline-block;
    font-family: 'omelet' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    transition: var(--transition);
}

.slick-arrow.slick-prev{
    transform: scaleX(-1) translateY(-50%);
    left: 0;
}

.slick-arrow.slick-next{
   
    right: 0;
}

.slick-arrow:hover{
    background-color: var(--secondary-color);
}

.slick-arrow:hover:after{
    color: #fff;
}

/* --- Slick --- */

.slick-slider{
    margin: 0 !important;
}

.slick-dots{
    display: flex;
    justify-content: center;
    pointer-events: none;
    bottom:28px;
}

.slick-dots li{
    width: 14px;
    height: 14px;
    margin: 3px;
    border-radius: 9999px;
    transition: all .4s ease;
    background-color: var(--primary-color);
}

.slick-dots li.slick-active{
    background-color: var(--secondary-color);
}

.slick-dots li button{
    width:100%;
    height:100%;
    padding:0;
    pointer-events: all;
}

.slick-dots li button::before{
    display: none;
}

/* --- Botones --- */

.btn{
    display: inline-block;
    padding: 20px  !important;
    position: relative;
    background-color: transparent;
    border:1px solid;
    transition: var(--transition);
    font-size:1.8rem;
    color:#fff;
    border-radius: var(--border-radius) !important;
    text-align: center;
    color:#fff !important;
}

.btn span{
    font-weight: 700;
}

.btn:hover{
    box-shadow: var(--box-shadow);
    transform: translate(2px,-1px) scale(.98);
}

.btn.-primary{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.-primary:hover,
.btn.-primary:active,
.btn.-primary:focus{
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.-secondary{
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
}

.btn.-secondary:hover,
.btn.-secondary:active,
.btn.-secondary:focus{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color:#fff !important;
}

/* ---------------- Formularios  ---------------- */

.form-control{
    padding: 10px 16px!important;
    border-radius:var(--border-radius)!important;
    height: auto;
    box-shadow:none!important;;
    line-height: 1!important;
    background-color: var(--gray-color)!important;
    border: 1px solid var(--text-color);
    width:100%;
    min-height:40px;
}

textarea.form-control{
    min-height:140px;
    width:100%;
}

select.form-control{
    width:100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-position: right 20px center;
    background-size: 12px;
    background-repeat: no-repeat;
	min-height:40px;
}

.form-control,
.form-control::placeholder,
textarea.form-control{
    font-size: 1.8rem!important;
    color:var(--primary-color)!important;
    font-weight:300;
    font-family:var(--primary-font)!important;
}

.form-group{
    margin-bottom:10px;
    display: flex;
    flex-flow: column;
}

.form-group label{
    margin-bottom: 10px;
    font-size: 1.6rem!important;
    font-weight: 300;
    display:inline-block;
}

.form-group br{
    display:none!important;
}


.form-group small{
   font-weight: 300;
    font-size: 1.6rem;
    margin-top: 10px;
    display: block;
}


.form-row{
    margin:0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom:10px;
    width:100%;
}



@media screen and (min-width : 580px) {
   .form-row{
        grid-template-columns: repeat(2,1fr);
    }
    
    .form-row-split{
        grid-template-columns: repeat(3,1fr);
        
    }
    
    .form-row-single{
        grid-template-columns: repeat(1,1fr);
        gap:10px;
    }
}


.form-row > p{
    display:none;
}

.form-row .form-group{
    margin: 0;
}

.form-group-button{
    position:relative;
    justify-content: flex-start;
    flex-flow: row;
    align-items:center
}

.form-group-button .btn{
    width:100%;
    min-width:250px;
}

@media screen and (min-width : 580px) {
   .form-group-button .btn{
        width:auto;
    }
}
.form-group-button,
.form-group-captcha{
    margin-top:20px;
}

/* -------------- Contact form ------------ */

form.wpcf7-form {
    position:relative;
    margin:0!important;
}

form.wpcf7-form br{
    display:none;
}

form.wpcf7-form.submitting:after{
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    top:60%;
    transform:translateY(-50%);
    left:0;
    /*background-image: url(../images/loader.gif);*/
    /*background-size: 5%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center top 30%;*/
    z-index:2;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output{
    color: #fff!important;
    font-size: 1.5rem!important;
    font-weight: 300!important;
    text-align: left!important;
    border-radius: 0!important;
    padding: 8px 0px!important;
    line-height: 1.2;
}

.wpcf7-not-valid-tip{
    display: block!important;
    margin-top:0px!important;
}

.wpcf7-response-output{
    margin:10px 0!important;
    border:0!important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-not-valid-tip,
.comments-error{
    color: #f14040!important;
}

.wpcf7-form.invalid .form-control{
    border: 1px solid #f14040!important;;
}

/*.wpcf7-form.sent .form-control{*/
/*    border: 1px solid #34b234!important;*/
/*}*/

.wpcf7-form.sent .wpcf7-response-output,
.comments-valid{
    color:#34b234!important;
}

.wpcf7 .ajax-loader,
.wpcf7-spinner{
    display:none!important;
}

.wpcf7 .ajax-loader:before{
    display:none;
}

form.wpcf7-form .form-group{
    transition:all .6s ease;
}

form.wpcf7-form.submitting .form-group{
    opacity:0.4;
}

/* SWEET ALERT */

.swal2-popup {
   width: 48em;
    min-height: 320px;
}

.swal2-styled.swal2-confirm,
.swal2-html-container{
    font-size: 1.6rem;
    
}

.swal2-styled.swal2-confirm{
    background-color: var(--primary-color);
    border:0!important;
    outline:0!important;
}

.swal2-title{
    font-family:var(--secondary-font);
    color: var(--primary-color);
    font-size: 1.9rem;
}

.swal2-icon {
    display: flex;
    transform: scale(1.5);
    margin-top: 50px;
}

/* ---- Section ---- */

.section{
    overflow: hidden;
    position: relative;
    padding: 6vmax 0;
    z-index: 9;
}

@media screen and (min-width: 1280px) {
    .section{
        padding: 85px 0;
    }
}

.section.-blue{
    background-color: var(--primary-color);
}

.section.-gray{
    background-color: var(--gray-color);
}

.section-title{
    position: relative;
    margin-bottom: 3vmax;
    text-align: center;
}

.section-title h2{
    font-size: var(--title-sm);
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .section-title h2{
        font-size: 3rem;
    }
}

.section-title.-no-margin{
    margin: 0;
}



.section-title.-white h2{
    color:#fff;
}

.section-title h2 span{
    display: flex;
    align-items: center;
    font-weight: 300;
}

.section-title h2 span:last-child{
    font-size: var(--title-sm);
    color:var(--secondary-color);
    font-weight: 700;
    padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .section-title h2 span:last-child{
        font-size: var(--title-xxl);
    }
}


.section-title h2 span:last-child:after{
    content:"";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 30px;
    height: 30px;
    background-image: url(../images/check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.section-title.-no-shape h2 span:last-child{
    padding: 0;
}

.section-title.-no-shape h2 span:last-child:after{
    display: none;
}

.section-title p{
    margin-top: 25px;
    font-size:1.8rem;
}

.section-title .btn{
    margin-top: 2vmax;
    min-width: 240px;
}

@media screen and (min-width: 580px) {
    .section-title .btn{
        margin-top: 45px;
        
    }
}

.section-title.-white p{
    color: #fff;
}

.section-image{
    width: 100%;
}

@media screen and (min-width: 580px) {
    .section-image{
        width: auto;
        position: absolute;
        left: 0;
        top:50%;
        transform: translateY(-50%);
    }
}

.section-image img{
    max-width: 100%;
    height: auto;
}

.section-bg{
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
}

.section-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TOP HEADER*/

.top-header{
    height: 60px;
    width: 100%;
    background-color: var(--primary-color);
    display: none;
    align-items: center;
    position: absolute;
    top:0;
    left: 0;
    transition: var(--transition);
}

@media screen and (min-width: 1024px) {
    .top-header{
        display: flex;
    }
}

#header.activeFixed .top-header{
    opacity: 0;
    visibility: hidden;
}

.top-header:after{
    content:"";
    position: absolute;
    top:100%;
    width: 100%;
    height: 45px;
    background-color: var(--primary-color);
}

.top-header-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-item{
    display: flex;
    align-items: center;
}

.top-header-item h2{
    color: #fff;
    font-weight: 400;
    margin-right: 20px;
    font-size: 1.8rem;
}

.top-header-item p{
    color:#fff;
    font-size: 1.8rem;
}

.top-header-item p span{
    color:var(--secondary-color);
    font-weight: 700;
}

/* HEADER */

#header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 34;
    transition: var(--transition);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    
}

@media screen and (min-width: 1024px) {
    #header{
        padding-top: 60px;
        top:0;
        background-color: transparent;
        border-radius: none;
        border-radius: var(--border-radius);
        box-shadow: none;
    }

    #header.activeFixed{
        padding-top:0;
        top:10px;
    }
}

.header-wrap{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 1024px) {
    .header-wrap{
        padding: 0 25px;
        background-color: #fff;
        border-radius: var(--border-radius);
        box-shadow:var(--box-shadow);
    }
}

@media screen and (max-width: 1024px) {
    .header-wrap{
        min-height: 80px;
        background-color: #fff;
        border-radius: var(--border-radius);
    }
}

.header-logo img{
    height: 30px;
    max-width: 100%;
    object-fit: contain;
}

.header-menu{
    display: flex;
    align-items: center;
    gap: 45px;
}

.header-menu .menu{
    display: none;
    align-items: center;
    gap:32px;
}

@media screen and (min-width: 1024px) {
    .header-menu .menu{
        display: flex;
    }
}

.header-menu .menu > li{
    position:relative;
}

.header-menu .menu > li.menu-item > a{
    padding: 40px 0;
    display: flex;
    font-size: 1.8rem;
    position: relative;
    transition:var(--transition);
}

.header-menu .menu > li.current-menu-item > a,
.header-menu .menu > li:hover > a{
    color:var(--secondary-color)
}

.header-menu .menu > li:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    transition: all .6s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--secondary-color);
}

.header-menu .menu > li.current-menu-item:after,
.header-menu .menu > li:hover:after{
    width: 100%;
    left: 0;
    right: auto;
}

.header-menu .menu li .sub-menu {
    left: 0;
    position: absolute;
    min-width: 155px;
    z-index: 2;
    text-align: left;
    padding: 20px 0;
    box-shadow: 0 0 37px rgba(0,0,0,.07);
    background-color: #fff;
    display: none;
    border-radius:var(--border-radius);
    top: calc(100% + 9px);
    margin:0;
	background-image: url(../images/border-menu.svg);
    background-size: 100%;
    background-position: bottom -1px center;
    background-repeat: no-repeat;
}

.header-menu .menu li .sub-menu:before{
    content:"";
    position:absolute;
    bottom:100%;
    left:0;
    width:100%;
    height:10px;
/*     background-color:var(--secondary-color);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius); */
	
}

.header-menu .menu li .sub-menu:after{
    content:"";
    position: absolute;
    bottom:100%;
    left: 20px;
    width:26px;
    height: 26px;
    background-image: url(../images/arrow-menu.svg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.header-menu .menu li.menu-item-has-children:hover .sub-menu {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    animation: slide-down .3s ease-out;
}

@-webkit-keyframes slide-down {
	0% { opacity: 0; -webkit-transform: translateY(10px); }   
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-down {
	0% { opacity: 0; -moz-transform: translateY(10px); }   
	100% { opacity: 1; -moz-transform: translateY(0); }
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.header-menu .menu li.menu-item-has-children:hover .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: normal;
    padding: 8px 30px;
    transition: all .6s;
    font-size: 1.8rem;
    text-align: left;
}
.header-menu .menu li.menu-item-has-children:hover .sub-menu li a:hover{
    color:var(--secondary-color);
}

.header-menu .btn{
    text-align: left;
    padding: 12px 20px !important;
    display: none;
}

@media screen and (min-width: 1024px) {
    .header-menu .btn{
        display: block;
    }
}

.header-menu .btn{
    position:relative;
}

.header-menu .btn:before{
    content:"";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:41px;
    height:41px;
    left:-20px;
    background-color:var(--secondary-color);
    background-image: url(../images/app-dowload.svg);
    background-size: 50%;
    background-position:  center;
    background-repeat: no-repeat;
    border-radius:9999px;
    transition:var(--transition);
}

.header-menu .btn:hover:before,
.header-menu .btn:active:before,
.header-menu .btn:focus:before{
    background-color:var(--primary-color);
}

/* BANNER */

.main-page{
    padding-top:4rem;
}

@media screen and (min-width: 1024px) {
    .main-page{
        padding-top:120px;
    }
}

body.home .main-page{
    padding-top:0px;
}

/* BANNER */

.banner{
    padding:4rem 0;
    /*background-image: url(../images/banner-bg.png);*/
    /*background-size: cover;*/
    /*background-position:  center;*/
    /*background-repeat: no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    overflow:hidden
}

@media screen and (min-width: 1024px) {
    .banner{
        padding:0;
        padding-top:50px;
         min-height:190px;
    }
}

.banner-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*.banner:after{*/
/*    content:"";*/
/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:100%;*/
/*    background-image: url(../images/banner-shape.svg);*/
/*    background-size: cover;*/
/*    background-position:  center;*/
/*    background-repeat: no-repeat;*/
/*}*/

.banner h2{
    text-align:center;
    font-size:3rem;
    color:#fff;
    font-weight:700;
}

@media screen and (min-width: 1024px) {
    .banner h2{
        font-size:4.5rem;
    }
}

/* TOGGLE MENU */

.toggle-menu{
    width: auto;
    height: 100%;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    text-indent: -999999px;
    overflow: hidden;
    transition: all .3s;
    display: block;
}

.toggle-menu span{
    display: block;
    border-radius: 9999px;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    transition: all .6s;
    position: relative;
    margin: 0;
    margin-left: auto;
}

.toggle-menu span + span {
    margin: 6px 0;
    margin-left: auto;
}

.mobile-menu{
    display: block;
}

@media screen and (min-width: 1024px) {
    .mobile-menu{
        display: none;
    }
}

.toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top-2 forwards;
    animation: ease .7s top-2 forwards;
}

.toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled-2 forwards;
    animation: ease .7s scaled-2 forwards;
}

.toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom-2 forwards;
    animation: ease .7s bottom-2 forwards;
}

.opened-menu .toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top forwards;
    animation: ease .7s top forwards;
}

.opened-menu .toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled forwards;
    animation: ease .7s scaled forwards;
}

.opened-menu .toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom forwards;
    animation: ease .7s bottom forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8px;
    transform: rotate(0);
  }
  100% {
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 8px;
    transform: rotate(45deg);
  }
  50% {
    top: 8px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 8px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 8px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* SOCIAL */

.social{
    display: flex;
    align-items: center;
}

.social li{
    margin-right: 5px;
    padding-right: 5px;
    position: relative;
}

.social a{
    display: flex;
    align-items: center;
    color:#fff;
    font-size: 1.8rem;
}

.social a:before{
    content:"";
    font-size: 1.4rem;
    color:var(--secondary-color);
    display: inline-block;
    font-family: 'omelet' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.social a.-mail:before{
    content: "\e904";
}

.social a.-whatsapp:before{
    content: "\e90b";
}

.social a.-facebook:before{
    content: "\e905";
}

.social a.-instagram:before{
    content: "\e907";
}

.social a.-pin:before{
    content: "";
    background-image: url(../images/pin.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width:32px;
    height:32px;
}

.social a span{
    display: block;
    margin-left: 10px;
}

.top-header-item .social li{
    margin-right: 12px;
    padding-right: 12px;
}

.top-header-item .social li:nth-child(2){
    margin-right: 25px;
    padding-right: 25px
}

.top-header-item .social li:nth-child(2):after{
    content:"";
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #fff;
    width:1px;
    height: 18px;
}

.top-header-item .social li:nth-child(3){
    margin-right: 5px;
    padding-right: 5px
}

/* MENU RESPONSIVE */

#header .ms-menu-responsive {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    min-height: 100vh;
    z-index: 999;
    width: 0;
    overflow: hidden;
    transition: all .6s ease-in-out;
    background-color: #fff !important;
    padding-top: 50px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
}

@media screen and (min-width: 768px){
    #header .ms-menu-responsive {
        max-width: 300px;
    }
}


#header .ms-menu-responsive .mobile_menu_div_100 {
    width: 100%;
    border-top: 1px solid #ccc;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    backface-visibility: hidden;
    box-sizing: border-box;
    height: calc(100vh - 45px);
    overflow-y: auto;
    padding: 0 0 10rem;
    position: relative;
    transition: opacity .15s linear 0s;
}

#header .ms-menu-responsive .menu-more-options li {
    position: relative;
    padding: 0 30px;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children>a {
    cursor: pointer;
}

#header .ms-menu-responsive .menu-more-options li a {
    color: #1b1b1b;
    display: flex;
    align-items: center;
    min-height: 65px;
    padding: 1.5625rem 0;
    font-size: 1.5rem;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    transition: all .6s;
    color:var(--primary-color);
    font-weight: 700;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children > a::after {
    content: "\e900";
    display: flex;
    width: 12px;
    height: 100%;
    font-size: 18px;
    position: absolute;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    right: 1rem;
    top: 0px;
    font-family: var(--icon-font) !important;
    transition: all 0.6s ease 0s;
    margin: 0px auto;
    transform: rotate(90deg);
}

#header .ms-menu-responsive .menu-more-options li .sub-menu {
    padding: 0;
    padding-bottom: 15px;
    display: none;
        margin: 0;
}

#header .ms-menu-responsive .menu-more-options li .sub-menu li a {
    border-bottom: 0;
    padding: 0.9375rem 0;
}

#header .ms-menu-responsive .menu-more-options li .sub-menu li {
    padding: 0;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a {
    border-bottom-color: rgba(0,0,0,0);
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active {
    background-color: var(--primary-color);
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
    margin-top: -1px;
}
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children {
    transition: background-color .6s;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a,
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active .sub-menu li a,
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active > a::after{
    color:#fff;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a:after {
        transform: rotate(-90deg);
}

.opened-menu #header .mobile-menu{
    position: fixed;
    z-index: 9999;
    height: 50px;
    right: 0;
    top: 0;
    transition: none;
    transform: scale(.8);
    right: 10px;
}

.opened-menu #header .ms-menu-responsive {
    -webkit-animation: slide-left .3s ease-out;
    animation: slide-left .3s ease-out;
    display: block;
    width: 100%;
}

.r-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 32;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: all .65s ease;
    visibility: hidden !important;
}

.opened-menu #header .r-overlay {
    visibility: visible !important;
    opacity: .5;
}

/* WELCOME */

.welcome{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow:hidden;
}

@media screen and (min-width: 1024px) {
    .welcome{
        height: calc(100vh - 105px);
    }
}

@media screen and (min-width: 1024px) {
    .welcome-images{
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
    }

    .welcome-images,
    .welcome-images-item,
    .welcome-images .slick-list,
    .welcome-images .slick-track,
    .welcome-images .slick-slide,
    .welcome-images .slick-slide > div{
        height: 100%;
    }

}

#welcomeSliderImages{
    width: 100%;
}

.welcome-images-item a{
     width: 100%;
    height: 100%;
    display:block;
}

.welcome-images-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}   

.welcome-info{
    z-index: 9;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .welcome-info{
        position:absolute;
    }
}

.welcome-info-wrap{
    width: 80%;
    max-width: 1755px;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (min-width: 580px) {
    .welcome-info-wrap{
        width: 90%;
    }
}

.welcome-info-wrap span{
    display: block;
}

.welcome-info-wrap h1{
    color:#fff;
    font-family: var(--secondary-font);
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

@media screen and (min-width: 580px) {
    .welcome-info-wrap h1{
        font-size: var(--title-xxl);
    }
}

.welcome-info-wrap h1 br{
    display: none;
}

.welcome-info-btn .btn{
    color: #fff;
    min-width: 242px;
   
}

.welcome-dots{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.welcome-info-wrap h1 span,
.welcome-info-btn{
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transform: translate(0%,50px) matrix(1,0,0,1,0,0);
}


.animate-slide.welcome-info-wrap h1 span:nth-of-type(1){
    transition-delay: .3s; 
}
.animate-slide.welcome-info-wrap h1 span:nth-of-type(2){
    transition-delay: .5s; 
}

.animate-slide.welcome-info-wrap h1 span:nth-of-type(3){
    transition-delay: .7s; 
}

.animate-slide.welcome-info-wrap h1 span:nth-of-type(4){
    transition-delay: .9s; 
}

.animate-slide.welcome-info-wrap .welcome-info-btn{
    transition-delay: 1.1s; 
}

.animate-slide.welcome-info-wrap .welcome-info-btn,
.animate-slide.welcome-info-wrap h1 span{
     transform: matrix(1,0,0,1,0,0);
     opacity: 1;
}

#welcome .slick-dots li:not(.slick-active){
     background-color: #fff;
  
}

/* SHOWCASE */

@media screen and (max-width: 580px) {
    #showcase .container{
        padding: 0;
    }
}

#showcase{
    overflow: visible;
    z-index: 10;
}

#showcase:after{
    content:"";
    position: absolute;
    top:-25px;
    left: 0;
    width:100%;
    height: 100%;
    background-image: url(../images/showcase-shape.svg);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: -1;
    display: none;
    pointer-events:none;
}

@media screen and (min-width: 1024px) {
    #showcase:after{
        top:-150px;
        width:530px;
        height: calc(100% + 250px);
        display: block;
    }
}

#showcaseSlider,
#showcaseNavSlider{
    cursor: grab;
}

#showcaseNavSlider{
    display: none;
}

@media screen and (min-width: 580px) {
    #showcaseNavSlider{
        display: block;
    }
}

.showcase-wrap{
    display: flex;
    align-items: center;
}

.showcase-slider{
    width: 100%;
}

@media screen and (min-width: 580px) {
    .showcase-slider{
        width: 80%;
    }
}

.showcase-nav{
    width: 20%;
}

.showcase-slider-item{
    max-width: 100%;
    margin: 0 auto;
    display: flex !important;
    flex-flow: column;
    padding: 0 15px;
}

@media screen and (min-width: 580px) {
    .showcase-slider-item{
        max-width: 80%;
        padding: 0;
    }
}

.showcase-slider-image img{
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .showcase-slider-image img{
        max-width: 680px;
    }
}

.showcase-slider-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

@media screen and (min-width: 580px) {
    .showcase-slider-footer{
        width: 80%;
    }
}

@media screen and (min-width: 580px) {
    .showcase-slider-title{
        max-width: 300px;
    }
}

.showcase-slider-title h2{
    font-size: var(--title-sm);
    margin-bottom: 25px;
    color:#000;
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    .showcase-slider-title h2{
        font-size: var(--title-xxl);
    }
}

.showcase-slider-title p{
    font-size: 1.8rem;
}

.showcase-slider-price{
    width: 135px;
    height: 135px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    margin-left: 25px;
}

@media screen and (min-width: 1024px) {
    .showcase-slider-price{
        width: 164px;
        height: 164px;
    }
}

.showcase-slider-price:after{
    content:"";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/price.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-slider-price h3{
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 300;
}

@media screen and (min-width: 1024px) {
    .showcase-slider-price h3{
        font-size: 2.2rem;
    }
}

.showcase-slider-price p{
    display: flex;
    gap:8px;
}

.showcase-slider-price span{
    color:#fff;
    line-height: 1;
}

.showcase-slider-price span.-symbol{
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    .showcase-slider-price span.-symbol{
        font-size: 2.8rem;
        transform: translateY(10px);
    }
}

.showcase-slider-price span.-amount{
    font-size: 4rem;
    font-weight: 700;
    transform: translateY(-10px);
}

@media screen and (min-width: 1024px) {
    .showcase-slider-price span.-amount{
        font-size: 6rem;
    }
}

.showcase-slider-price span.-cents{
    font-size: 2rem;
}

.showcase-nav-wrap{
    position: relative;
    cursor: pointer;
}

.showcase-nav-brand{
    position: absolute;
    top: 20px;
    right: 16px;
}

.showcase-nav-brand img{
    object-fit: contain;
    height: 18px;
}

.showcase-nav-image img{
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

.showcase-nav-wrap{
    width: 210px;
    height: 180px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    padding-top: 20px;
    transition: var(--transition);
}

@media screen and (max-width: 1024px) {
    .showcase-nav-wrap{
        width: 100%;
        height: auto;
        padding: 16px;
        padding-top: 40px;
    }
}

.showcase-nav-wrap.animate-slide{
    animation:bg 2s ease-in;
    -webkit-animation:bg 2s ease-in;
    -moz-animation:bg 2s ease-in;
    -ms-animation:bg 2s ease-in;
    -o-animation:bg 2s ease-in;
  }
  
  @-webkit-keyframes bg{
    0%{
      background:rgba(255,75,0,0.1);
    }  
    20%{
          background:rgba(255,75,0,0.8);
    }
    50% 70%{
          background:rgba(255,75,0,0.5);
    }
    100%{
      background:rgba(255,75,0,0);
    }
  }
  
  @-moz-keyframes bg{
    0%{
      background:rgba(255,75,0,0.1);
    }  
    20%{
          background:rgba(255,75,0,0.8);
    }
    50% 70%{
          background:rgba(255,75,0,0.5);
    }
    100%{
      background:rgba(255,75,0,0);
    }
  }
  
  @-ms-keyframes bg{
    0%{
      background:rgba(255,75,0,0.1);
    }  
    20%{
          background:rgba(255,75,0,0.8);
    }
    50% 70%{
          background:rgba(255,75,0,0.5);
    }
    100%{
      background:rgba(255,75,0,0);
    }
  }
  
  @-o-keyframes bg{
    0%{
      background:rgba(255,75,0,0.1);
    }  
    20%{
          background:rgba(255,75,0,0.8);
    }
    50% 70%{
          background:rgba(255,75,0,0.5);
    }
    100%{
      background:rgba(255,75,0,0);
    }
  }

.slick-current .showcase-nav-wrap{
    border:1px solid var(--secondary-color);
}

.showcase-nav-wrap h2{
    text-align: center;
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 300;
}

#showcaseNavSlider .slick-arrow{
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

#showcaseNavSlider .slick-arrow.slick-prev{
    top:-30px;
}

#showcaseNavSlider .slick-arrow.slick-prev:after{
    transform: rotate(-90deg);
}

#showcaseNavSlider .slick-arrow.slick-prev:hover:after{
    transform: rotate(-90deg) translatex(4px);
}

#showcaseNavSlider .slick-arrow.slick-next{
    bottom:-30px;
}

#showcaseNavSlider .slick-arrow.slick-next:after{
    transform: rotate(90deg);
}

#showcaseNavSlider .slick-arrow.slick-next:hover:after{
    transform: rotate(90deg) translatex(4px);
}

.showcase-slider-image,
.showcase-slider-footer{
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transform: translate(0%,-50px) matrix(1,0,0,1,0,0);
}

.showcase-slider-footer{
    transform: translate(0%,50px) matrix(1,0,0,1,0,0);
}

.showcase-slider-item.animate-slide .showcase-slider-image,
.showcase-slider-item.animate-slide .showcase-slider-footer{
    transform: matrix(1,0,0,1,0,0);
    opacity: 1;
}


#showcaseSlider .slick-arrow{
    top: 20%;
}

#showcaseSlider .slick-arrow.slick-next{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#showcaseSlider .slick-arrow.slick-prev{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#showcaseSlider .slick-dots{
    bottom: 0;
    position: relative;
    margin-top: 25px;
}



/* DOWNLOAD */

#download{
    display:flex;
    flex-flow:column-reverse;
    z-index: 10px;
}

@media screen and (min-width: 580px) {
    #download{
        display:flex;
        flex-flow:row;
    }
}

.download-info{
    width: 100%;
    
}

@media screen and (min-width: 580px) {
    .download-info{
        max-width: 45%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .download-info{
        padding-left: 60px;
        margin: auto;
        margin-right: 0;
    }
}

.download-info-list li{
    counter-increment: contador;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #fff;
    cursor:pointer;

}
.download-info-list li:before {
    content: counter(contador);
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background-color: #fff;
    color:var(--primary-color);
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:var(--transition);
}

.download-info-list li.active:before{
    background-color:var(--secondary-color);
    color:#fff;
}

.download-info .apps-icons{
    margin-top: 60px;
}

.download-image{
    width: 285px;
    height: 549px;
    margin: 0 auto;
    position:relative;
    transform:scale(.8);
    
}

@media screen and (min-width: 580px) {
    .download-image{
        height: auto;
        
    }
}


@media screen and (min-width: 1024px) {
    .download-image{
        width: 410px;
        height: calc(100% + 50px);
        position: absolute;
        top:50%;
        transform: translateY(-50%);
        left: 200px;
        margin: 0;
        
    }
}

.download-frame{
    width: 100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
     z-index: 2;
}

.download-frame.-shadow{
    z-index: 1;
        transform: translate(30px, 30px);
}

.download-frame img{
    width: 100%;
    height:100%;
    object-fit:contain;
}

.download-image-slider{
     width: 100%;
    height:100%;
    z-index: 1;
}

/*@media screen and (min-width: 1024px) {*/
/*    .download-image-slider{*/
/*       transform: translate(-32px, 49px);*/
/*    }*/
/*}*/

.download-image-slider .slick-list{
    width: 85%;
    height: 93%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .download-image-slider .slick-list{
        width: 73%;
        height: 86%;
    }
}

.download-image-slider *{
    height:100%;
}

.download-image-screen{
    width: 100%;
    height:100%;
    background-color:#fff;
}

.download-image-screen img{
    width: 100%;
    height:100%;
    object-fit: contain;
}

/*@media screen and (min-width: 580px) {*/
/*    .download-image img{*/
/*        height: 480px;*/
/*    }*/
/*}*/

/*@media screen and (min-width: 1024px) {*/
/*    .download-image img{*/
/*        height: 800px;*/
/*        width: auto;*/
/*    }*/
/*}*/



/* APPS */

#download{
    overflow: visible;
    z-index: 10;
}

@media screen and (max-width: 580px) {
    #download{
       padding-bottom:0;
    }
}

.apps-icons{
    display: flex;
    gap:10px;
}

.apps-icons img{
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* CLIENT */

.clients-wrap{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 580px) {
    .clients-wrap{
        flex-flow: row;
    }
}

.clients-wrap .section-title{
    width: 100%;
}

@media screen and (min-width: 580px) {
    .clients-wrap .section-title{
        width: 50%;
    }
}

#clients-hotel .section-title{
    margin-bottom: 3vmax;
}

@media screen and (min-width: 580px) {
    .clients-wrap .section-title{
        margin: 0;
    }
}

.clients-slider{
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin: auto;
    margin-left: 0;
}

@media screen and (min-width: 580px) {
    .clients-slider{
        max-width: 50%;
    }
}

.clients-slider-image{
    padding: 10px;
}

.clients-slider-image img{
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.clientSlider{
    margin: 0 !important;
}

.clientSlider .slick-dots{
    position: relative;
    margin-top: 60px;
    bottom: 0;
}

#clients-hotel{
    padding-bottom: 0;
    overflow: visible;
}

/*#clients-hotel:after{
    content:"";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 210px;
    background-image: url(../images/clients-shape.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
*/
#clients-corp{
    overflow: visible;
    padding-top: 20rem;
}

.clients-image{
    position: absolute;
    bottom:0;
    right: 0;
    width: 100%;
    max-width: 45%;
    display: none;
    pointer-events:none;
}

@media screen and (min-width: 580px) {
    .clients-image{
        display: block;
    }
}

#clients-corp .clients-wrap{
    flex-flow: column;
    align-items: flex-start;
}

/* FOOTER */

.footer{
    padding-top: 50px;
    padding-bottom: 25px;
    /*background-image: url(../images/footer-bg.svg);*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    position:relative;
}

.footer-wrap{
    display: flex;
    align-items: center;
    flex-flow: column-reverse;
}

@media screen and (min-width: 580px) {
    .footer-wrap{
        flex-flow: row;
    }
}

.footer-menu{
    display: flex;
    flex-flow: column;
    margin-top: 25px;
    text-align: center;
}

@media screen and (min-width: 580px) {
    .footer-menu{
        flex-flow: row;
        gap: 60px;
        margin-right: 65px;
        text-align: left;
    }
}

.footer-menu .menu li{
    margin-bottom: 10px;
}

.footer-menu .menu li a{
    color:#fff;
    font-size: 1.8rem;
    transition: var(--transition);
}

.footer-menu .menu li.current-menu-item a,
.footer-menu .menu li a:hover{
    color: var(--secondary-color);
}

.logo-omelet:before{
    content: "\e908";
    text-indent: 0;
    display: inline-block;
    font-family: "omelet" !important;
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-indent: 0;
    transition: all .3s;
    text-indent: 0;
    margin-left: 5px;
}

.footer-logo{
    text-align: center;
} 

.footer-logo > a{
    display: block;
}

.footer-logo > a img{
    width: 100%;
    max-width: 245px;
    margin-bottom: 30px;
}

.footer .apps-icons img{
    height: 40px;
}

.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--secondary-color);
    flex-flow: column;
}

@media screen and (min-width: 580px) {
    .footer-bottom{
        flex-flow: row;
        padding-right: 70px;
        padding-top: 25px;
        margin-top: 42px;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p{
    font-size: 1.6rem;
    color:#fff;
    font-weight: 300;
}

.footer-bottom .social a:before{
    font-size: 2rem;
}

.footer-social{
    display: flex;
    align-items: center;
    gap:20px;
    margin-top: 20px;
}

@media screen and (min-width: 580px) {
    .footer-social{
        margin: 0;
    }
}

/* CORPORATIVOS */

.corporativo{
    padding:65px 0;
    position:relative;
}

.corporativo-intro{
    padding-top:0;
}

.corporativo-intro-wrap{
    display:flex;
    flex-flow:column;
    align-items:center;
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-wrap{
       flex-flow:row;
    }
}

.corporativo-intro-image{
    width:100%;
    margin-bottom:2rem;
}

@media screen and (min-width: 580px) {
    .corporativo-intro-image{
        width:80%;
    }
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-image{
        width:45%;
    }
}

.corporativo-intro-image img{
    width:100%;
    border-radius:var(--border-radius);
}

.corporativo-intro-text{
    width:100%;
}

@media screen and (min-width: 580px) {
    .corporativo-intro-text{
        padding:60px;
    }
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-text{
        width:55%;
        padding:0 60px;
    }
}

.corporativo-intro-text h3{
    font-size:var(--title-sm);
    text-align:center;
    font-weight:300;
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-text h3{
        font-size:4rem;
         margin-bottom:30px;
    }
}

.corporativo-intro-text h3 strong{
    font-weight:700;
}

.corporativo-intro-text h3 span:last-child strong{
    color:var(--secondary-color);
}

.corporativo-intro-text .clients-slider{
    max-width: 100%;
    margin:0 auto !important;
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-text .clients-slider{
        max-width: 80%;
    }
}

.corporativo-intro-text .slick-dots{
    margin-top: 40px;
}

.corporativo-intro-text .clients-slider-image{
    padding:10px;
}

@media screen and (min-width: 1024px) {
    .corporativo-intro-text .clients-slider-image{
        padding:10px 20px;
    }
}

.corporativo-mensaje{
    background-color:var(--primary-color);
}

.corporativo-mensaje-wrap{
    display:flex;
    flex-flow:column;
    align-items:center;
    max-width:100%;
    margin:0 auto;
    gap:20px;
    text-align:center;
}

@media screen and (min-width: 580px) {
    .corporativo-mensaje-wrap{
        max-width:80%;
    }
}

@media screen and (min-width: 1024px) {
    .corporativo-mensaje-wrap{
        flex-flow:row;
        gap:40px;
        text-align:left;
    }
}

.corporativo-mensaje-wrap h4{
    font-size:10rem;
    color:var(--secondary-color);
    font-weight:700;
}

@media screen and (min-width: 1024px) {
    .corporativo-mensaje-wrap h4{
        font-size:13rem;
    }
}

.corporativo-mensaje-wrap p{
    font-size:2.4rem;
    color:#fff;
    font-weight:300;
}

.corporativo-mensaje-wrap p strong{
    font-weight:700;
    color:var(--secondary-color);
}

.corporativo-beneficios .coporativo-image{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translatex(-50%);
    display:none;
        max-width: 35%;
}

@media screen and (min-width: 580px) {
       
    .corporativo-beneficios .coporativo-image{
        display:block;
    }
}

.corporativo-beneficios .coporativo-image img{
    width:100%;
}

.corporativo-beneficios-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin:-30px 0;
}

.corporativo-beneficios-item{
    width:100%;
    padding:30px 0;
    display: flex;
    align-items: center;
    text-align: center;
     justify-content: center;
}

@media screen and (min-width: 580px) {
    .corporativo-beneficios-item{
        width:33.33%;
    }
}

.corporativo-beneficios-wrap{
    max-width: 100%;
}

@media screen and (min-width: 580px) {
    
    .corporativo-beneficios-wrap{
        max-width: 70%;
    }

    .corporativo-beneficios-item:nth-child(1) .corporativo-beneficios-wrap,
    .corporativo-beneficios-item:nth-child(3) .corporativo-beneficios-wrap{
        padding-top:50px;
    }
}

.corporativo-beneficios-wrap h2{
    font-size:2.2rem;
    font-weight:700;
     color:var(--secondary-color);
     margin-bottom:10px;
}

.corporativo-beneficios-wrap p{
    font-size:1.8rem;
}

.corporativo-beneficios-wrap img{
    width:72px;
    height:72px;
        margin: 0 auto;
    margin-bottom:8px;
}

.corporativo-form{
    border-top:13px solid var(--gray-color);
}

@media screen and (min-width: 1024px) {
    .corporativo-form{
        padding:0;
    }
}

.corporativo-form-wrap{
    display:flex;
}

.corporativo-form-image{
    width:50%;
    flex-shrink:0;
     display:none;
}

@media screen and (min-width: 1024px) {
    .corporativo-form-image{
        display:block;
    }
}

.corporativo-form-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.corporativo-form-info{
    width:100%;
    padding:0 20px;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
}

@media screen and (min-width: 580px) {
    .corporativo-form-info{
        max-width:65%;
        margin:0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .corporativo-form-info{
        width:100%;
        padding:100px;
        padding-right:160px;
        max-width:100%;
    }
}

/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

.loader{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    text-indent:0;
    font-size:0;
    opacity:0;
    visibility:hidden;
}

.loader.active{
     opacity:1;
    visibility:visible;
}

.loader:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 10px solid #ccc;
    border-top-color: var(--secondary-color);
    border-width: 5px;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    z-index: 2;
    display: block;
}

@-webkit-keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}
@keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}

/* ------------ 404 ------------------- */

body.error404 .main-page{
        background-image: url(../images/smart-error-pages-404-dead-end.png);
    background-position: 
    
    /* CONTACT */

.contact-info-grid{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 1024px) {
    .contact-info-grid{
        flex-flow:row;
    }
}

.contact-info-form{
    width:100%;
    flex-shrink:0;
    margin-bottom:3vmax;
}

@media screen and (min-width: 1024px) {
    .contact-info-form{
        width:50%;
        margin:0;
        padding-right:100px;
    }
}


@media screen and (min-width: 1024px) {
    .contact-info-form .section-title h2{
        margin-bottom:40px;
    }
}

.contact-social{
    display:flex;
    flex-flow:column;
    
    justify-content: space-between;
    margin-top:90px;
    gap:25px;
}

@media screen and (min-width: 1024px) {
    .contact-social{
        flex-flow:row;
        flex-wrap:wrap;
        align-items: center;
    }
}

.contact-social-item{
    width:auto;
}

.contact-social-item:last-child{
    width:100%;
}

.contact-social-link{
    display: flex;
    align-items: center;
    gap:8px;
    font-size:1.8rem;
}

@media screen and (min-width: 1024px) {
    .contact-social-link{
        font-size:2.5rem;
    }
}

.contact-social-link:before {
    content: "";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 2.8rem;
    color: var(--primary-color);
}


.contact-social-link.-whatsapp:before {
    content: "\e909";
}

.contact-social-link.-pin:before {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(../images/pin.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-social-item .social a{
    background-color: var(--secondary-color);
    width: 38px;
    height: 38px;
}

@media screen and (min-width: 1024px) {
    .contact-social-item .social a{
        width: 48px;
        height: 48px;
    }
}

.contact-social-item .social a span:before{
    font-size:1.8rem;
}

@media screen and (min-width: 1024px) {
    .contact-social-item .social a span:before{
        font-size:2.4rem;
    }
}

.contact-map{
    position:relative;
    margin-top:90px;
}

.contact-map:after{
    content:"";
    display:block;
    padding-bottom:40%;
}

.contact-map iframe{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}   top -30% center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height:calc(100vh - 80px);
}

@media screen and (min-width: 1024px) {
    body.error404 .main-page{
        min-height:calc(100vh - 105px);
    }
}

body.error404 .footer,
body.error404 .banner{
    display:none;
}

.no-enocontrado{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.no-enocontrado h2{
    font-size: 2.5rem;
    margin-bottom:25px;
    line-height: 1.2!important;
    color:var(--secondary-color);
    font-family:var(--secondary-font);
    font-weight:700;
}


@media screen and (min-width: 1280px) {
    .no-enocontrado h2{
        font-size: 4rem;
    }
}

.no-enocontrado p{
    margin-bottom:40px;
    font-size:2rem;
    font-weight:300;
}

/* CONTACT */

.contact-info{
    padding-bottom:4rem;
}

@media screen and (min-width: 1024px) {
    .contact-info{
        padding-bottom:135px;
    }
}

.contact-info-grid{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 1024px) {
    .contact-info-grid{
        flex-flow:row;
    }
}

.contact-info-form{
    width:100%;
    flex-shrink:0;
    margin-bottom:3vmax;
}

@media screen and (min-width: 580px) {
    .contact-info-form{
        max-width:65%;
        margin:0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .contact-info-form{
        width:600px;
        margin:0;
        padding-right:120px;
        padding-left:60px;
    }
}

.contact-info-image{
    width:100%;
    display:none;
}

@media screen and (min-width: 1024px) {
    .contact-info-image{
        display:block;
    }
}

.contact-info-image img{
    border-radius:var(--border-radius);
    width:100%;
}

.contact-info-form .section-title h2{
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-info-form .section-title h2 strong{
    font-weight:700;
    color:var(--secondary-color);
}

@media screen and (min-width: 1024px) {
    .contact-info-form .section-title h2{
        margin-bottom:40px;
    }
    
    .contact-info-form .section-title h2 strong{
        font-size:var(--title-xxl);
    }
}

.contact-social{
    padding:4rem 0;
    background-color:var(--secondary-color);
}

@media screen and (min-width: 1024px) {
    .contact-social{
        padding:75px 0;
    }
}

.contact-social-wrap{
    display:flex;
    flex-flow:column;
    justify-content: space-between;
    gap:25px;
}

@media screen and (min-width: 1024px) {
    .contact-social-wrap{
        flex-flow:row;
        flex-wrap:wrap;
        align-items: center;
    }
}

.contact-social-wrap .social{
    flex-flow:column;
}

@media screen and (min-width: 1024px) {
    .contact-social-wrap .social{
        flex-flow:row
    }
}

.contact-social-wrap .social li{
    margin:20px 0;
}

@media screen and (min-width: 1024px) {
    .contact-social-wrap .social li{
        margin-right:90px;
    }
}

.contact-social-wrap .social a{
    flex-flow: column;
    align-items: center;
    font-size: 2.2rem;
}

@media screen and (min-width: 1024px) {
    .contact-social-wrap .social a{
        white-space:nowrap;
         align-items: flex-start;
    }
}

.contact-social-wrap .social a:before{
    color:var(--primary-color);
    font-size:3.2rem;
}

.contact-social-wrap .social a span{
    margin:0;
}

.contact-social-wrap .social h2{
    font-weight:700;
    color:#fff;
    font-size: 2.2rem;
    margin-top:5px;
}

.contact-map{
    position:relative;
}

.contact-map:after{
    content:"";
    display:block;
    padding-bottom:40%;
}

.contact-map iframe{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}   

/* LOADER OVERLAY */

.loader-wrap{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#fff;
    z-index:99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.loader-wrap.active{
    animation: 2000ms ease 300ms 1 normal both running fade-in;
}

.loader-wrap.hide{
    display:none;
}

.loader-logo{
    margin-bottom:4rem;
}

.loader-logo img{
    width:20rem;
}

@media screen and (min-width: 1024px) {
   .loader-logo img{
        width:28rem;
    } 
}

.loader-icon .loader{
    position: relative;
}

@keyframes fade-in {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* NOSOTROS */

.about{
    position:relative;
}

.about-intro-wrap{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 580px) {
    .about-intro-wrap{
        flex-flow:row;
        max-width:90%;
        margin:0 auto;
    }
}


.about-intro-info{
    width:100%;
    position:relative;
    margin-bottom:40px;
}
@media screen and (min-width: 580px) {
    .about-intro-info{
        margin-right:40px;
        padding-right:40px;
    }
}

@media screen and (min-width: 1024px) {
    .about-intro-info{
        margin-right:125px;
        padding-right:125px;
    }
}

.about-intro-info:after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    height:100%;
    width:1px;
    background-color:var(--primary-color);
    display:none;
}

@media screen and (min-width: 580px) {
    .about-intro-info:after{
        display:block;
    }
}

.about-intro-info:last-child{
    padding:0;
    margin:0;
}
.about-intro-info:last-child:after{
    display:none;
}

.about-intro-info h2{
    font-size:var(--title-sm);
    margin-bottom:20px;
}

@media screen and (min-width: 580px) {
    .about-intro-info h2{
        font-size:3rem;
    }
}

.about-intro-info h2 span{
    font-size:var(--title-sm);
    color:var(--secondary-color);
    display:block;
    font-weight:700;
}

@media screen and (min-width: 580px) {
    .about-intro-info h2 span{
        font-size:var(--title-xxl);
    }
}

.about-intro-info p{
    font-size:1.8rem;
}

.about-intro-image{
    display: flex;
    justify-content: center;
    transform:translateY(45px);
    position: relative;
    z-index: 9;
}

.about-intro-image img{
    max-width:100%;
    border-radius:var(--border-radius);
}

@media screen and (min-width: 580px) {
    .about-intro-image img{
        max-width:670px;
    }
}

.about-values{
    background-color:var(--primary-color);
    padding:4rem 0;
    padding-top:8rem;
    overflow:hidden;
}

@media screen and (min-width: 580px) {
    .about-values{
        padding:100px 0;
        padding-bottom:160px;
    }
}

.about-values-wrap{
    display:flex;
    flex-wrap:wrap;
    margin:-20px;
}

@media screen and (min-width: 1024px) {
    .about-values-wrap{
        margin:-30px -60px;
        padding:0 40px;
    }
}

.about-values-item{
    width:100%;
    padding:20px;
}

@media screen and (min-width: 1024px) {
    .about-values-item{
        width:50%;
        padding:30px 60px;
    }
}

.about-values-text h2{
    color:var(--secondary-color);
    font-weight:700;
    margin-bottom:10px;
}

.about-values-text p{
    color:#fff;
    font-size:1.8rem;
}

.about-values-info{
    display:flex;
    align-items:center;
}

.about-values-info:before{
    content:"";
    display:inline-block;
    width:80px;
    height:80px;
    margin-right:24px;
    background-image: url(../images/check-values.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media screen and (min-width: 580px) {
    .about-values-info:before{
        width:120px;
        height:120px;
    }
}

.about-banner{
    background-color:var(--gray-color);
    padding:4rem 0; 
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
        .about-banner{
        min-height:420px; 
    }
}

.about-banner-info{
    text-align:center
}

@media screen and (min-width: 1024px) {
    .about-banner-info{
        text-align:right
    }
}

.about-banner-info h2{
    font-size:var(--title-xxl);
    font-weight:300;
}

@media screen and (min-width: 1024px) {
    .about-banner-info h2{
        font-size:4.6rem;
    }
}

.about-banner-info h2 span{
    font-weight:700;
    color:var(--secondary-color);
}

.about-banner-image{
    position:absolute;
    bottom:0;
    left:90px;
    display:none;
}

@media screen and (min-width: 1024px) {
    .about-banner-image{
        display:block;
    }
}

.about-banner-image img{
        max-width: 780px;
    height:auto;
}

/* TRABAJA CON NOSOTROS */

.work{
    position:relative;
}

.work-intro{
    padding-bottom:4rem;
}

@media screen and (min-width: 1024px) {
    .work-intro{
        padding-bottom:120px;
    }
}

.work-intro-text{
    text-align:center;
    display:flex;
    align-items:center;
    margin: 0 auto;
    flex-flow:column;
}

@media screen and (min-width: 1024px) {
    .work-intro-text{
        max-width:75%;
        flex-flow:row;
    }
}

.work-intro-text:before{
    content:"";
    display:block;
    width:65px;
    height:65px;
    background-image: url(../images/check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink:0;
    margin:0;
    margin-bottom:20px;
}

@media screen and (min-width: 1024px) {
    .work-intro-text:before{
        width:124px;
        height:124px;
        margin-right:35px;
    }
}

.work-intro-text h2{
    font-size:var(--title-sm);
    font-weight:300;
}

@media screen and (min-width: 1024px) {
    .work-intro-text h2{
        font-size:var(--title-xxl);
    }
}

.work-intro-text h2 span{
    color:var(--secondary-color);
}

.work-box{
    padding-bottom:6rem;
}

@media screen and (min-width: 1024px) {
    .work-box{
        padding-bottom:90px;
    }
}

.work-box-wrap{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    border-radius:var(--border-radius);
    overflow:hidden;
    background-color:var(--gray-color);
    margin-bottom:100px;
}

.work-box-image{
    width:100%;
}

@media screen and (min-width: 580px) {
   .work-box-image{
        width:50%;
    }
}

.work-box-image img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.work-box-info{
    width:100%;
    padding:25px;
}

@media screen and (min-width: 580px) {
   .work-box-info{
        width:50%;
        padding:0 25px;
    }
}

.work-box-info .section-title{
    margin:0;
}

.work-box-grid{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 580px) {
    .work-box-grid{
        flex-flow:row;
    }
}

.work-box-grid-item{
    position:relative;
    width:100%;
    margin-bottom:25px;
}

@media screen and (min-width: 580px) {
   .work-box-grid-item{
        margin-right:40px;
        padding-right:40px;
        position:relative;
        width:23%;
    }
}

.work-box-grid-item:after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:1px;
    height:135px;
    background-color:var(--primary-color);
    display:none;
}

@media screen and (min-width: 580px) {
    .work-box-grid-item:after{
        display:block
    }
}

.work-box-grid-item:last-child{
    margin:0;
    padding:0;
}

.work-box-grid-item:last-child:after{
    display:none;
}

.work-box-grid-item h3{
    font-size:1.8rem;
    color:var(--secondary-color);
    margin-bottom:10px;
    font-weight:700;
}

.work-box-grid-item p{
   font-size:1.8rem; 
}

.work-banner{
    background-color:var(--primary-color);
    padding:4rem;
}

@media screen and (min-width: 1024px) {
    .work-banner{
        padding:90px 0;
    }
}

.work-banner-text h2{
    color:#fff;
    font-weight:300;
    font-size:var(--title-sm);
    text-align:center;
}

@media screen and (min-width: 1024px) {
    .work-banner-text h2{
        font-size:4.8rem;
        text-align:left;
    }
}

.work-banner-text h2 span{
    color:var(--secondary-color);
}

.work-banner-image{
    position:absolute;
    bottom:0;
    right:0;
}

.work-banner-image img{
    max-width:500px;
    display:none;
}

@media screen and (min-width: 580px) {
    .work-banner-image img{
        max-width:380px;
        display:block;
    }
}

@media screen and (min-width: 1024px) {
    .work-banner-image img{
        max-width:500px;
    }
}

.work-form{
    border:0;
}

/* PERSONAS */

.people{
    position:relative;
    overflow:hidden;
}

.people-intro{
    padding-bottom:4rem;
}

@media screen and (min-width: 1024px) {
    .people-intro{
        padding-bottom:60px;
    }
}

.people-intro-wrap{
    display:flex;
    align-items:center;
    flex-flow:column;
}

@media screen and (min-width: 580px) {
    .people-intro-wrap{
        flex-flow:row;
    }
}

.people-intro-image{
    width:100%;
}

@media screen and (min-width: 580px) {
    .people-intro-image{
        width:45%;
    }
}

.people-intro-image img{
    width:100%;
    border-radius:var(--border-radius);
}

.people-intro-info{ 
    width:100%;
    text-align:center;
    padding:25px 0;
}

@media screen and (min-width: 580px) {
    .people-intro-info{ 
        width:55%;
        padding:0 25px;
    }
}

.people-intro-info h2{
    font-size:var(--title-sm); 
    font-weight:300;
}
.people-intro-info h2:first-of-type{
    font-size:var(--title-sm); 
    font-weight:700;
}

@media screen and (min-width: 1024px) {
    .people-intro-info h2{
        font-size:3.5rem;
    }
    .people-intro-info h2:first-of-type{
        font-size:4rem; 
    }
}

.people-intro-info h2 span{
    color:var(--secondary-color);
}

.people-intro-list{
    margin-top: 60px;
    font-size: 1.8rem;
    text-align: left;
    max-width: 75%;
    margin: 0 auto;
    margin-top: 4rem;
} 

@media screen and (min-width: 580px) {
    .people-intro-list{
        margin-top: 60px;
    } 
}

.people-intro-list p{
    margin-bottom:20px;
}

.people-intro-list ul li{
    display:flex;
    align-items:center;
    margin-bottom:12px;
}

.people-intro-list ul li:before{
    content:"";
    width:17px;
    height:17px;
    display:inline-block;
    background-color:var(--secondary-color);
    border-radius:4px;
    margin-right:10px;
    transform: rotate(45deg);
}

.people-benefit{
    padding:4rem 0;
    background-color:var(--primary-color);
}

@media screen and (min-width: 1024px) {
    .people-benefit{
        padding:90px 0;
    }
}

.people-benefit-grid{
    display:flex;
    flex-wrap:wrap;
    margin:-20px;
}

@media screen and (min-width: 580px) {
    .people-benefit-grid{
        margin:-40px;
    }
}

.people-benefit-item{
    padding:20px;
    width:100%;
}

@media screen and (min-width: 580px) {
    .people-benefit-item{
        width:33.33%;
        padding:40px;
    }
}

.people-benefit-info{
    text-align:center;
    color:#fff;
}

.people-benefit-info img{
    width:70px;
    height:70px;
    margin:0 auto;
    margin-bottom:10px;
}

.people-benefit-info h2{
    font-weight:700;
    color:var(--secondary-color);
    margin-bottom:10px;
}

.people-benefit-info p{
    font-size:1.8rem;
}

.people-dowload{
    padding:4rem 0;
        display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .people-dowload{
        min-height:590px;
    }
}

.people-dowload-image{
    position:absolute;
    left:100px;
    bottom:0;
    display:none;
}

@media screen and (min-width: 1024px) {
    .people-dowload-image{
        display:block;
    }
}

.people-dowload-image img{
    max-width:630px;
}

.people-dowload-info{
    width: 100%;
    margin: auto;
    margin-right: 0;
}

@media screen and (min-width: 1024px) {
    .people-dowload-info{
        width: 50%;
    }
}

.people-dowload-info .apps-icons{
    justify-content: center;
    margin-top:30px;
}

.people-dowload-info .apps-icons img {
    height: 43px;
}

.people-dowload-info .icon-app{
    width:80px;
    margin:0 auto;
    margin-top:10px;
}

/* FLOAT BTN */

.float-btn{
    position:fixed;
    top:40vh;
    right:0;
    z-index:35;
    writing-mode: vertical-lr;
    transform: scalex(-1) scaley(-1) translatex(-10px);
    transition:var(-transition);
    
}

.float-btn:hover{
    transform: scalex(-1) scaley(-1) translatex(-5px);
}

.float-btn:after{
    content:"";
    position:absolute;
        bottom: -15px;
    right: -5px;
    width:50px;
    height:50px;
    background-image: url(../images/float-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.float-btn .btn{
     border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    padding-bottom: 55px !important;
    box-shadow: var(--box-shadow);
}

/* ANIMACIONES */

.ms-animate-item{
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transform: translate(0%,50px) matrix(1,0,0,1,0,0);
}

.ms-animate-item.-left{
    transform: translate(-50px,0) matrix(1,0,0,1,0,0);
}

.ms-animate-item.-right{
    transform: translate(50px,0) matrix(1,0,0,1,0,0);
}

.ms-loaded-animate .ms-animate-item{
    transform: matrix(1,0,0,1,0,0);
    opacity: 1;
}

.ms-animate-item:nth-of-type(1){
    transition-delay:0;
}

.ms-animate-item:nth-of-type(2){
    transition-delay:.2s;
}

.ms-animate-item:nth-of-type(3){
    transition-delay:.4s;
}

.clients-slider-btn{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
}

@media screen and (min-width: 1024px) {
   .clients-slider-btn{
		max-width: 50%;
	}
}

.clients-slider-btn .btn {
    margin-top: 2vmax;
    min-width: 240px;
}
