
:root{
    --primary: #2a2ea3;
    --dark: #131550;
}
body{
    background: url(images/bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #1c3682;
    font-size: 1rem;
}
body.goStep2{
    overflow: visible;
}
header{
    padding: 20px 10px;  
    z-index: 5;
    position: fixed;
    width: 100%;
}
header .header-left,
header .header-right{
    width: 50%;
    display: flex;
}
header .header-left{
    justify-content: flex-start;
    align-items: center;
}
header .header-right{
    display: flex;
    justify-content: flex-end;
}
header .toggle{
    display: block;
    width: 30px;
    height: 30px;
}
header .toggle svg{
    width: 30px;
    height: 30px;
}
header .toggle path{
    fill: var(--primary);
}
/* MODAL MENU*/
.menu-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: #253E99;
    color: white;
	transition: 330ms all ease-out;
	opacity: 0;
	visibility: hidden;
}
.menu-modal.active{
	opacity: 1;
	visibility: visible;
}
.menu-modal .toggle {
    display: block;
    position: absolute;
    top: 4%;
    right: 4%;
}
.menu-modal .toggle svg {
    width: 30px;
    height: 30px;
}
.menu-modal .toggle svg path {
    fill: white;
}
.menu-modal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-modal li:nth-child(1){
	transition-delay: 420ms;
}
.menu-modal li:nth-child(2){
	transition-delay: 520ms;
}
.menu-modal li:nth-child(3){
	transition-delay: 620ms;
}
.menu-modal li:nth-child(4){
	transition-delay: 720ms;
}
.menu-modal li:nth-child(5){
	transition-delay: 820ms;
}
.menu-modal li:nth-child(6){
	transition-delay: 920ms;
}
.menu-modal li{
	opacity: 0;
	transform: translateX(100px);
	transition: 330ms all ease-out;
}
.menu-modal.active li{
	opacity: 1;
	transform: translateX(0);
}
.menu-modal li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    padding: 15px;
    display: block;
    text-align: center;
    border-bottom: 1px solid;
}
.scroll-container{
	max-height: 100vh;
	overflow: hidden;
}
.scroll-container.loaded{
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}
.container{
    display: block;
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
}
div.section{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}
div.section.intro-wrap:after{
    content: "";
    display: block;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    transition: all 0.99s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 1;
    background: url(images/bg-all.jpg) no-repeat center;
    background-size: cover;
}
.ov-hid{
    overflow: hidden;
}
div.row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.nav-bottom{
    display: flex;
    position: fixed;
    bottom: 0%;
    width: 100%;
    justify-content: center;
    opacity: 0;
    transition: all 390ms cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 300ms;
    z-index: 9;

}
.nav-bottom ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
}
.nav-bottom li{
    display: block;
}
.nav-bottom li a{
    display: block;
    padding: 5px 15px;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    border-radius: 100px;
    text-decoration: none;
    transition: 220ms all ease-out;
}
.nav-bottom li.active a{
    background: var(--dark);
}
.nav-bottom li a:hover{
    background: var(--dark);
    padding: 5px 20px;
}
.section-inner{
    position: relative;
    z-index: 5;
}
.intro-top{
    display: flex;
    align-items: stretch;
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
}
.intro-top .left,
.intro-top .right{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.intro-top .left,
.intro-top .right{
    width: 35%;
}
.intro-top .center{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.intro-top .center img.ps{
    display: block;
    width: 100%;
    margin-right: -40px;

}
.intro-top .center img.ch{
    display: block;
    position: absolute;
    width: 62%;
    left: 0;
    bottom: 0;
}
.intro-top .info-right {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    color: #1c3682;
}
.info-right p {
    margin: 0 0 10px 0;
    position: relative;
}
.info-right p{
    transition: all 0.66s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0;
    transform: translateX(100px);
}
.info-right p:nth-child(2){
    transition-delay: 330ms;
}
.info-right p:nth-child(3){
    transition-delay: 660ms;
}
.info-right strong {
    font-weight: 700;
    color: #1c3682;
    padding-left: 30px;
}
.info-right .with-pic{
    position: relative;
    padding-left: 38px;
    font-size: 16px;
}
.info-right .with-pic.bb{
    border-bottom: 1px solid #ed1b2e;
    padding-bottom: 10px;
}
.info-right .with-pic img{
    display: block;
    position: absolute;
    width: 30px;
    left: 0;
    top: 0;
}
.intro-bottom{
    display: block;
    width: 1100px;
    max-width: 100%;
    text-align: center;
    padding-top: 30px;
    transition: all 0.30s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-bottom .intro-desc{
    color: var(--primary);
    font-size: 1.2rem;
}
.btn-blue{
    background: #242898;
    color: white;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 100px;
    cursor: pointer;
    transition: 220ms all ease-out;
    text-decoration: none;
}
.btn-blue:hover{
    padding: 12px 45px;
    background: #ed1b2e;
}
.removeDelay{
    transition-delay: 0s !important;
}
/* PREANIMACIOON HOME */
header{
    transition: all 0.30s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0;
}
.intro-top .left{
    transition: all 0.66s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateX(-300%);
    transition-delay: 900ms;
    opacity: 0;
}
.intro-top .right{
    transition: all 0.66s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateX(300%);
    transition-delay: 900ms;
    opacity: 0;
}
.intro-top .center img.ch{
    transition: all 0.44s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0;
}
.intro-top .center img.ps{
    transition: all 0.99s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 900ms;
    transform: rotate(-360deg);
    opacity: 0;
    margin-right: 0;
}
.intro-bottom .btn-blue{
    transition: all 0.55s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 1.5s;
    transform:  translateY(100px);
    opacity: 0;
}
.intro-bottom p.intro-desc{
    transition: all 0.9s cubic-bezier(0.33, 1, 0.68, 1);
    transform:  translateY(100px);
    opacity: 0;
}



/* Step 1 */
.step-1 .intro-bottom p.intro-desc{
    opacity: 1;
    transform:  translateY(0);
}
.step-1 .intro-top .left{
    transform: translateX(0);
    opacity: 1;
}
.step-1 .intro-top .right{
    transform: translateX(0);
    opacity: 1;
}
.step-1 .intro-top .center img.ps{
    transform: rotate(0) translateY(0);
    opacity: 1;
    margin-top: 0;
}
.step-1 .intro-top .center img.ps.readyStep2{
    transition-duration: 550ms !important;
    transition-delay: 0s !important;
}
.step-1 .intro-bottom .btn-blue{
    opacity: 1;
    transform: translateY(0);
}

/* Step 2 */
.step-1 .intro-top .center img.ps.step-2.readyStep2{
    margin-right: -60px;
}
.intro-top .center img.ch.step-2{
    opacity: 1;
}
div.section.intro-wrap.step-2:after{
    opacity: 0;
}
.step-1 .intro-top .left.step-2{
    transform: translateX(10px) translateY(30px) scale(1.1);
}
.step-1 .intro-top .right.step-2{
    transform: translateX(-10px) translateY(30px) scale(1.1);
}
.intro-bottom.step-2{
    opacity: 0;
}
.goStep2 .nav-bottom{
    opacity: 1;
    bottom: 5%;
}
.goStep2 header{
    opacity: 1;
}
.info-right.step-2{
    transform: translate(20px,-40px);
}
.info-right.step-2 p{
    transform: translateX(0);
    opacity: 1;
}
.mol1 {
    display: block;
    width: 16%;
    margin-left: 55%;
    margin-bottom: 30px;
}
.mol-2 {
    width: 23%;
    margin-left: 58%;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
img{
	max-width: 100%;
	height: auto;
}
button{
	border: none;
}
p.lead{
	font-weight: 700;
}
.blog-home h2 {
    font-size: 42px;
    line-height: 36px;
    font-weight: 700;
}
.blog-home h2 img{
	display: inline-block;
	width: 200px;
}
.post-thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.post-home {
    background: #ecf3fb;
    border-radius: 10px;
    overflow: hidden;
}
.post-home h4 {
    font-size: 14px;
	margin: 0 0 15px 0;
}
.post-home svg {
    display: inline-block;
    width: 22px;
	height: 22px;
}
.post-home svg path {
    fill: #2a2ea3;
}
.post-home .post-info p {
    font-size: 14px;
    margin: 0;
}
.post-home .post-info {
    padding: 10px 15px;
}
.post-home .post-info a {
    color: #2a2ea3;
    text-decoration: none;
    padding: 4px 28px 4px 12px;
    border-radius: 100px;
    border: 1px solid #2a2ea3;
    position: relative;
	display: inline-block;
	line-height: 1;
	transition: 220ms all ease-out;
}
.post-home .post-info a .btn-icon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
	transition: 220ms all ease-out;
}
.post-home .post-info a:hover{
	background: var(--primary);
	color: white;
}
.post-home .post-info a:hover .btn-icon{
	transform: rotate(90deg);
}
.post-home .post-info a:hover svg path{
	fill: white;
}
.donde-home .bg-white {
    padding: 30px;
}
.donde-home .bg-white a {
    display: block;
    text-align: center;
    margin: 10px 0;
	transition: 220ms all ease-out;
}
.donde-home h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}
.donde-home h2 img {
    display: inline-block;
    margin: 10px 0 0 0;
    width: 200px;
}
.donde-home .bg-white a:hover {
    transform: scale(1.1);
}
.mexicano-videos{
    display: block;
    text-decoration: none;
    transition: 330ms all ease-out;
    margin-bottom: 40px;
}
.mexicano-videos:hover{
    transform: scale(1.05);
}
.mexicano-videos span{
    display: block;
    position: relative;
    font-weight: 700;
    color: #253f99;
    text-decoration: none;
}
.mexicano-videos span:after{
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ff0000;
}
.el-mexicano-2 .b-right{
    position: relative;
    padding-right: 50px;
}
.el-mexicano-2 .b-right:after{
    content: "";
    display: block;
    position: absolute;
    height: 50px;
    width: 2px;
    background: #ff0000;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/* Animaciones */
.animated{
    transition: all 390ms cubic-bezier(0.33, 1, 0.68, 1);
}
.animated.fromLeft{
    transform: translateX(-330px);
    opacity: 0;
}
.animated.fromRight{
    transform: translateX(330px);
    opacity: 0;
}
.animated.fromTop{
    transform: translateY(-100px);
    opacity: 0;
}
.animated.fromBottom{
    transform: translateY(100px);
    opacity: 0;
}
.animated.scale{
    transform: scale(0.7) rotate(90deg);
    opacity: 0;
}
.animated.fadeIn{
    opacity: 0;
}
.in-view .animated.fromLeft{
    transform: translateX(0);
    opacity: 1;
}
.in-view .animated.fromRight{
    transform: translateX(0);
    opacity: 1;
}
.in-view .animated.fromTop{
    transform: translateY(0);
    opacity: 1;
}
.in-view .animated.fromBottom{
    transform: translateY(0);
    opacity: 1;
}
.in-view .animated.scale{
    transform: scale(1) translate(0) rotate(0);
    opacity: 1;
}
.in-view .animated.fadeIn{
    opacity: 1;
}
.animated.delay1{
    transition-delay: 200ms;
}
.animated.delay2{
    transition-delay: 400ms;
}
.animated.delay3{
    transition-delay: 600ms;
}
.animated.delay4{
    transition-delay: 800ms;
}

.single-post-wrap{
    display: block;
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
}
.single-post-wrap h2.blog-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2.blog-title img {
    width: auto;
    height: 40px;
    margin-right: 10px;
}
.single-post-wrap h1 {
    font-size: 48px;
    text-align: center;
    padding: 30px;
    font-weight: 700;
}
.single-post-wrap .post-pic {
    margin-bottom: 30px;
}
.single-post-wrap .back {
    display: flex;
    justify-content: center;
    padding: 30px;
}
.hide-desk{
    display: none !important;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.pad-left{
    padding-left: 50px;
}
@media screen and (max-width:768px){
    .nav-bottom{
        display: none;
    }
    .intro-top{
        flex-direction: column;
        align-items: center;
    }
    .intro-top img{
        margin: 15px 0;
    }
    .intro-top .left, 
    .intro-top .right{
        width: 50%;
    }
    .intro-top .center{
        width: 160px;
    }
    .intro-top .left{
        transform: translateX(-100%);
    }
    .section-inner{
        width: 100%;
    }
    .intro-bottom{
        padding: 20px 30px;
    }
    .intro-top .info-right {
        position: relative;
    }
    .info-right.step-2 {
        transform: translate(0);
    }
    .step-1 .intro-top .left.step-2 {
        transform: scale(1.1);
    }
    .intro-bottom {
        display: block;
        position: fixed;
        bottom: 20px;
        width: 98%;
        left: 2%;
    }
    .step-1 .intro-top .center img.ps.step-2.readyStep2{
        margin-right: -25px;
    }
    img.mob-pic-half {
        display: block;
        width: 75%;
        height: auto;
        margin: 10px auto;
    }
    div#la-formula {
        padding: 40px;
        text-align: center;
    }
    .mol1 {
        display: block;
        position: absolute;
        left: 0;
        margin: 0;
        left: -10%;
        top: 30%;
    }
    .mol-2 {
        display: block;
        margin: 0;
        position: absolute;
        right: 0;
        top: 60%;
        width: 15%;
    }
    .hide-mob{
        display: none !important;
    }
    .hide-desk{
        display: flex !important;
    }
    div#el-mexicano-que-selasabe {
        padding: 30px;
    }
    div#kanka-blog {
        padding: 30px;
    }
    .post-home {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    }
    .post-home .post-thumbnail {
        width: 40%;
    }
    .post-thumbnail img {
        height: 80px;
    }
    img.pic-blog {
        width: 25%;
        display: block;
        margin: 20px auto 0 auto;
    }
    .blog-home h2 {
        display: flex;
    }
    .post-home h4 {
        margin: 0 0 5px 0;
    }
    div#donde-encuentro-el-alivio {
        text-align: center;
        padding: 30px;
    }
    .menu-modal li a{
        font-size: 21px;
    }
    .single-post-wrap h1 {
        font-size: 28px;
        padding: 20px 0;
    }
}