body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
}

.font-title {
    font-family: "Nunito", sans-serif;
}

header {
    background: linear-gradient(90deg, #AA9157 0%, #C4AA76 45.19%, #C4AA76 55.29%, #AA9157 100%);
    color: #FFFFFF;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    font-size: 20px;
    font-weight: 600;
    z-index: 100;
}
header a {
    color: #FFFFFF;
}
header .link-list a {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}
header .link-list a::after {
    content: "";
    display: none;
    position: absolute;
    width: 20px;
    height: 10px;
    bottom: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%);
    background: url("../images/hover.png");
    background-size: cover;
}
header .link-list a:hover::after {
    display: block;
}
.main-logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
header nav .dropdown-link {
    position: relative;
    cursor: pointer;
    padding-top: 8px;
    padding-bottom: 8px;
}
header nav .dropdown-link ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #C4AA76;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 240px;
    border-radius: 8px;
    display: none;
}
header nav .dropdown-link ul a {
    padding: 8px 16px;
    width: 100%;
}
header nav .dropdown-link ul a:hover {
    background: #AA9157;
}
header nav .dropdown-link ul a:hover::after {
    display: none;
}
header nav .dropdown-link:hover span img {
    transform: rotate(180deg);
}
header nav .dropdown-link:hover ul {
    display: block;
}

.social-networks li a img:last-child {
    display: none;
}
.social-networks li a:hover img:first-child {
    display: none;
}
.social-networks li a:hover img:last-child {
    display: block;
}
#menu-responsive {
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
}
#menu-responsive span {
    position: absolute;
    height: 4px;
    width: 24px;
    background: #FFFFFF;
    border-radius: 4px;
    left: 4px;
    transition: all 0.3s;
}

#menu-responsive span:nth-child(1) {
    top: 6px;
}
#menu-responsive span:nth-child(2) {
    top: 14px;
}
#menu-responsive span:nth-child(3) {
    top: 22px;
}
#menu-responsive.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}
#menu-responsive.active span:nth-child(2) {
    opacity: 0;
}
#menu-responsive.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}
#menu-responsive-display {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #C4AA76;
    padding-top: 96px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}
#menu-responsive-display a {
    color: #FFFFFF;
    width: 100%;
    padding: 8px 16px;
}
#menu-responsive-display a:hover {
    background: #AA9157;
}
.dropdown-link-responsive {
    padding: 16px;
    cursor: pointer;
}
.dropdown-link-responsive ul {
    display: none;
}
.dropdown-link-responsive.active {
    background: #AA9157;
}
.dropdown-link-responsive.active span img {
    transform: rotate(180deg);
}
.dropdown-link-responsive.active ul {
    display: block;
}
.dropdown-link-responsive a {
    font-weight: 400;
}
#menu-responsive-display .social-networks {
    position: absolute;
    bottom: 32px;
    left: 0;
}



/*FOOTER*/
.footer .bg-message {
    background: url("../images/bg-footer-01.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 120px;
    padding-bottom: 64px;
}
.footer .bg-message .message {
    background: rgba(255, 255, 255, 0.5);
    color: #072388;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    font-size: 24px;
}
.footer .bg-message .message .title {
    font-weight: 700;
}
.footer .bg-message .message .text {
    font-weight: 600;
}

.gold-line {
    background: linear-gradient(90deg, #AA9157 25%, #C4AA76 45%, #C4AA76 55%, #AA9157 75%);
    height: 4px;
}

.sub-footer {
    background: #0F2162;
    color: #FFFFFF;
    position: relative;
}
.sub-footer a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
}
.sub-footer .bg-img {
    background: url("../images/bg-footer-02.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.footer-list li >div {
    background: #2A3E89;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    padding-bottom: 48px;
    position: relative;
}
.footer-list li >div small:last-child {
    position: absolute;
    bottom: 16px;
    left: 16px;
}
.footer-list li {
    min-height: 100%;
}

.line-white {
    height: 1px;
    background: #FFFFFF;
}


.first-section {
    padding-top: 80px;
}


.button {
    height: 56px;
    min-width: 200px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 28px;
    font-size: 20px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
}
.button.primary {
    background: #C4AA76;
    color: #FFFFFF;
    outline-color: #C4AA7630;
    outline-style: solid;
    animation: pulse 1s infinite;
}
.button.primary:hover {
    background: #AA9157;
}
.button.secondary {
    background: #FFFFFF;
    color: #072380;
    outline-color: #FFFFFF30;
    outline-style: solid;
    animation: pulse 1s infinite;
}
.button.secondary:hover {
    background: #FFF9E5;
}

@keyframes pulse {
  0% {
    outline-width: 4px;
  }

  50% {
    outline-width: 10px;
  }

  100% {
    outline-width: 4px
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

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

.link {
    color: #072380;
    font-weight: 700;
    text-decoration: underline;
}

body {
    color: #3D3D3D;
}
small {
    font-size: 12px;
}
.h1 {
    font-size: 40px;
}
.h2 {
    font-size: 32px;
    line-height: 1.5;
    color: #072380;
}
.h3 {
    font-size: 24px;
    font-weight: 400;
}
.unordered-list {
    list-style-type: disc;
    padding-left: 40px;
}
.unordered-list li {
    display: list-item;
}
.ordered-list {
    list-style-type: decimal;
    padding-left: 40px;
}
.ordered-list li {
    display: list-item;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
}
.table {
    border-collapse: collapse;
}
.table td {
    border: 1px solid #BBBBBB;
    padding: 8px;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}
.modal-container {
    position: fixed;
    top: 0;
    z-index: 300;
    padding: 32px;
    width: 100%;
}
.modal {
    background: #FFFFFF;
    width: 100%;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    max-height: calc(100vh - 64px);
    overflow: auto;
}
.modal .close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.text-blue {
    color: #072380;
}
.text-yellow {
    color: #C4AA76;
}
.text-yellow-dark {
    color: #AA9157;
}

input::-ms-reveal, input::-ms-clear {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.password-input .input {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.password-input button {
    background: transparent;
    border: 1px solid #BBBBBB;
    border-left: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 32px;
    line-height: 40px;
    cursor: pointer;
}
.password-input .input:focus + button, .password-input .input:focus + button + button {
    border-color: #C4AA76;
}
.input {
    background: transparent;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    padding-left: 16px;
    padding-right: 16px;
    height: 40px;
}
.input:focus {
    border-color: #C4AA76;
}
.input:focus-visible {
    border: 1px solid #C4AA76;
    outline: none;
}
textarea.input {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    resize: vertical;
}
.checkbox-section .box, .checkbox-section .label,.radio-section .box, .radio-section .label {
    cursor: pointer;
}
.checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    display: flex;
}
.checkbox input + .box {
    width: 24px;
    height: 24px;
    border: 1px solid #DEE3ED;
}
.checkbox input + .box:hover, .checkbox-section:hover input + .box {
    border-color: #072380;
}
.checkbox input:focus + .box {
    border-color: #072380;
}
.checkbox input:checked + .box {
    border-color: #072380;
    background: #072380;
}
.checkbox input + .box img {
    margin-top: 3px;
    margin-left: 3px;
    line-height: 24px;
    display: none;
}
.checkbox input:checked + .box img {
    display: block;
}
.radio-button label {
    cursor: pointer;
}
.radio-button input {
    opacity: 0;
    width: 0;
    height: 0;
    display: flex;
}
.radio-button input + .box {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
}
.radio-button input + .box:hover, .radio-section:hover input + .box {
    border-color: #072380;
}
.radio-button input:focus + .box {
    border-color: #072380;
}
.radio-button input:checked + .box {
    border-color: #072380;
    background: #FFFFFF;
}
.radio-button input:checked + .box .check {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #072380;
    margin-left: 5px;
    margin-top: 5px;
}
.radio-button input:checked + .box img {
    margin-top: -1px;
    margin-left: -1px;
}

[data-modal] {
    cursor: pointer;
}


.slide-01 {
    height: 800px;
    background: url("../images/slide-01-desktop.jpg");
    background-size: 1920px 800px;
    background-position: center 0;
    background-repeat: no-repeat;
    position: relative;
}
.slide-01 .slide-button {
    position: absolute;
    top: 500px;
    left: 50%;
    margin-left: -510px;
}
.slide-02 {
    height: 800px;
    background: url("../images/slide-02-desktop.jpg");
    background-size: 1920px 800px;
    background-position: center 0;
    background-repeat: no-repeat;
    position: relative;
}
.slide-02 .slide-button {
    position: absolute;
    top: 620px;
    right: 50%;
    margin-right: -360px;
}


.caracteristicas-card >li {
    min-height: 100%;
    position: relative;
    padding-top: 144px;
}
.caracteristicas-card >li >div {
    height: 100%;
    padding-top: 96px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
    border-radius: 16px;
    color: #FFFFFF;
    font-size: 20px;
}
.caracteristicas-card li img {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
}
.club-card {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    color: #FFFFFF;
}
.club-card li >div {
    border-radius: 16px;
}
.club-card li >div img {
    width: 100%;
}
.card-blue {
    background: #2AB5C3;
}
.card-gold {
    background: #C4AA76;
}
.card-yellow {
    background: #E0AE2D;
}
.card-purple {
    background: #943569;
}
.card-green {
    background: #44AB49;
}
.card-blue-dark {
    background: #072380;
}

.section-02 {
    background: url("../images/bg-02.png");
    background-size: cover;
    background-position: center center;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background: #FFFFFF;
    border: 1px solid #3D3D3D;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background: #3D3D3D;
}
.content-card a {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.content-card a .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}
.calculator-card a, .calculator-card [data-modal] {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.calculator-card a .overlay-image, .calculator-card [data-modal] .overlay-image {
    background: #07238050;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s;
}
.calculator-card a:hover .overlay-image, .calculator-card [data-modal]:hover .overlay-image {
    opacity: 0;
}
.calculator-card a .text, .calculator-card [data-modal] .text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    background: #072380;
    padding-right: 80px;
    border-top-right-radius: 100px;
}
.calculator-card a .text div:last-child, .calculator-card [data-modal] .text div:last-child {
    opacity: 0.5;
    font-size: 20px;
}

.fix-button {
    position: fixed;
    z-index: 50;
    bottom: 16px;
    right: 16px;
}
.fix-button a {
    background: #C4AA76;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.fix-button .tooltip {
    font-size: 12px;
    display: none;
    background: #3D3D3D;
    color: #FFFFFF;
    border-radius: 2px;
    padding: 2px 4px;
    position: absolute;
    bottom: 10px;
    right: 28px;
    width: 116px;
    z-index: -1;
}
.fix-button a:hover {
    background: #AA9157;
}
.fix-button a:hover + .tooltip {
    display: block;
}

.bg-contacto {
    background: url("../images/bg-contacto.png");
    background-position: center 0;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    min-height: 800px;
}
.contact-form {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    padding: 32px 16px;
    margin-top: 32px;
    box-shadow: 0 0 20px #07238030;
}
.card {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    padding: 32px 16px;
    box-shadow: 0 0 20px #07238030;
}
.card.rounded {
    border-radius: 32px;
}
.card.mini {
    padding-top: 16px;
    padding-bottom: 16px;
}
.bg-contacto-form {
    background: url("../images/bg-contacto-form.png");
    background-position: center 0;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    min-height: 800px
}
.bg-club {
    background: url("../images/bg-club.png");
    background-position: center 0;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    min-height: 800px
}
.confort-kid-bg {
    background: url("../images/confort-kid-bg.jpg");
    background-position: center center;
    background-size: 2500px 1000px;
    background-repeat: no-repeat;
    min-height: 1000px;
}
.alula-gold-bg {
    background: url("../images/alula-gold-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 800px;
}
.pedialact-bg {
    background: url("../images/pedialact-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 800px;
    position: relative;
}
.alula-gold-bg .col-x, .pedialact-bg .col-x {
    border-radius: 16px;
    color: #FFFFFF;
}
.pedialact-bg .extra-01, .pedialact-bg .extra-02 {
    position: absolute;
}
.pedialact-bg .extra-01 {
    top: -200px;
    left: 50%;
    width: 320px;
    margin-left: -400px;
}
.pedialact-bg .extra-02 {
    top: -80px;
    left: 50%;
    width: 320px;
    margin-left: 40px;
    transform: rotate(20deg);
}

.bg-club .h1 {
    color: #DC6868;
}
.mid-button {
    border: 2px solid #C4AA76;
    height: 40px;
    border-radius: 20px;
    color: #3D3D3D;
    max-width: 280px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 40px;
    font-weight: 700;
}
.mid-button:hover {
    background: #FFF9E5;
}

.bg-reclamaciones {
    background: url("../images/bg-reclamaciones.jpg");
    background-position: center bottom;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    min-height: 360px
}
.bg-blog {
    background: url("../images/bg-blog.jpg");
    background-position: center bottom;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    min-height: 360px
}
.bg-blog + .container, .bg-reclamaciones + .container {
    margin-top: -120px;
}
.blog-list li a {
    background-size: cover;
    height: 360px;
    width: 100%;
    position: relative;
}
.blog-list li a .tag {
    margin-left: 16px;
    margin-top: 16px;
}
.blog-list li a .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}
.blog-list li a .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 35, 136, 0.50) 0%, rgba(7, 35, 136, 0.00) 40%, rgba(7, 35, 136, 0.50) 100%);
 }
.tag {
    background: #C4AA76;
    color: #FFFFFF;
    font-size: 12px;
    padding: 4px 8px;
    display: inline-block;
    border-radius: 4px;
}

.logo-list a img {
    filter: grayscale(100%);
    opacity: 75%;
    transition: all 0.3s;
}
.logo-list a:hover img {
    filter: grayscale(0%);
    opacity: 100%;
}

.animate-img {
    animation: scale 1.8s infinite;
}

.jumbo-confort-kid {
    background-image: url("../images/main-banner-01.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1920px 800px;
    min-height: 800px;
}
.jumbo-alula-gold {
    background-image: url("../images/main-banner-02.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1920px 800px;
    min-height: 800px;
}
.jumbo-pedialact {
    background-image: url("../images/main-banner-03.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1920px 800px;
    min-height: 800px;
}
.result {
    color: #FFFFFF;
    background: #44AB49;
    border-radius: 8px;
}

.centrado-vertical {
    align-content: center;
}

#btn_calcular_embarazo {
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    header {
        background: #C4AA76;
        height: 64px;
    }
    header .main-logo {
        width: 160px;
    }
    header .main-logo img {
        width: 100%;
        height: auto;
    }
    .first-section {
        padding-top: 64px;
    }
    .slide-01 {
        background-image: url("../images/slide-01-mobile.jpg");
        background-size: 1200px 800px;
    }
    .slide-02 {
        background-image: url("../images/slide-02-mobile.jpg");
        background-size: 1200px 800px;
    }
    .slide-01 .slide-button {
        margin-left: 0;
        transform: translateX(-50%);
        top: 540px;
    }
    .slide-02 .slide-button {
        margin-right: 0;
        transform: translateX(50%);
        top: 570px;
    }

    .bg-contacto {
        background-image: url("../images/bg-contacto-mobile.jpg");
        background-size: 1200px auto;
        min-height: 700px;
    }
    .bg-contacto-form {
        background-image: url("../images/bg-contacto-form-mobile.jpg");
        background-size: 1200px auto;
        min-height: 600px;
    }
    .contact-form {
        margin-top: 200px;
    }

    .jumbo-confort-kid {
        background-image: url("../images/main-banner-01-mobile.png");
        background-size: 1200px 800px;
    }
    .jumbo-alula-gold {
        background-image: url("../images/main-banner-02-mobile.png");
        background-size: 1200px 800px;
    }
    .jumbo-pedialact {
        background-image: url("../images/main-banner-03-mobile.png");
        background-size: 1200px 800px;
    }
}

@media screen and (max-width: 800px) {
    .order-m {
        order: -1;
    }
    .pedialact-bg .extra-01 {
        width: 200px;
        margin-left: -120px;
    }
    .pedialact-bg .extra-02 {
        top: -55px;
        width: 170px;
        margin-left: -42px;
        transform: rotate(0deg);
    }
}

@media screen and (max-width: 640px) {
    .h1 {
        font-size: 32px;
    }
    .h2 {
        font-size: 28px;
    }
}