:root{
    --color-black: #000000;
    --color-primary: #081542;
    --color-secondary: #009995;
    --color-secondary-other: #008c88;
    --color-blanco: #FFFFFF;
    --color-text: #55595c;
    --color-grey-dark: #636363;
}
body{
    font-family: "Montserrat", sans-serif;
}
html::-webkit-scrollbar{
    background: #f9f9f9;
    width: 10px;
    height: 10px;
}
html::-webkit-scrollbar-thumb{
    background: #a3dad9;
    border-radius: 10px;
}
.navegador{
    display: flex;
    padding: 10px 20px;
    box-shadow: 0px 4px 8px 0 rgb(0 0 0 / 10%);
    width: 100%;
    height: auto;
    min-height: 20px;
    background: #ffffff;
    justify-content: center;
}
.container-c{
    display: flex;
    flex-direction: row;
    flex: 1 0 0%;
    width: 100%;
    max-width: 1300px;
}
.row-c{
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.navegador img{
    width: 100%;
    max-width: 200px;
    -webkit-transition: max-width .5s ease;
    transition: max-width .5s ease;
}
.col-logo, .col-nav{
    flex: 1 0 0%;
}
.navegador ul{
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 0;
    justify-content: space-between;
    align-items: center;
}
.navegador ul li{
    width: 100%;
}
.header-fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1024;
}
.navegador ul li a{
    text-transform: uppercase;
    display: flex;
    width: 100%;
    text-align: center;
    flex-direction: column;
    white-space: nowrap;
    font-weight: 500;
}
.navegador ul li a.btn{
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}
.navegador ul li a:before{
    content: '';
    border-bottom-width: 3px;
    border-bottom-color: transparent;
    border-bottom-style: solid;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4px;
    transition: all 300ms ease-in-out;
}.navegador ul li a:after{
    content: '';
    border-bottom-width: 3px;
    border-bottom-color: var(--color-blanco);
    border-bottom-style: solid;
    width: 30%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4px;
    transition: all 300ms ease-in-out;
}
.navegador ul li .after-none:after, .navegador ul li .after-none:before{
    content: none;
}
.navegador ul li:hover a:after{
    border-bottom-color: var(--color-secondary);
}.navegador ul li.active a:after{
    border-bottom-color: var(--color-secondary);
}
a{
    color: var(--color-primary);
}
.btn-secondary {
    --mdb-btn-bg: var(--color-secondary);
    --mdb-btn-color: var(--color-blanco);
    --mdb-btn-box-shadow: 0 4px 9px -4px #e3ebf7;
    --mdb-btn-hover-bg: var(--color-secondary-other);
    --mdb-btn-hover-color: var(--color-blanco);
    --mdb-btn-focus-bg: var(--color-secondary-other);
    --mdb-btn-focus-color: var(--color-blanco);
    --mdb-btn-active-bg: var(--color-secondary-other);
    --mdb-btn-active-color: var(--color-blanco);
    --mdb-btn-box-shadow-state: transparent;
}
.btn:hover {
    color: var(--color-blanco);
    background-color: var(--color-secondary-other);
    border-color: var(--color-secondary-other);
}
.image-small img{
    max-width: 150px;
}
.section{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
}
.bg-primary-c{
    background-color: var(--color-primary);
}
.py-10r{
    padding: 10rem 0;
}

.w-max-520{
    max-width: 520px;
}
.hero{
    height: auto;
    justify-content: center;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    min-height: 700px;
}
.content-hero-body{
    max-width: 1300px;
    width: calc(100% - 40px);
    display: flex;
    position: absolute;
    flex-direction: column;
}
.content-hero-body h1{
    max-width: 640px;
    color: var(--color-primary);
}
.content-hero-body .btn{
    max-width: 240px;
    padding: 16px 24px;
}
.content-hero-body h1 span{
    color: var(--color-secondary);
    font-weight: 600;
}
.w-50-c{
    width: 100%;
    max-width: 460px;
    display: flex;
    margin-left: auto;
}
.br-tl-br{
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.bg-hero-fondo{
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.img-design-1{
    position: absolute;
    top: -40%;
    left: -15%;
    width: 100%;
    max-width: 50%;
    opacity: 50%;
}
.img-design-2{
    position: absolute;
    bottom: -30%;
    right: -25%;
    width: 100%;
    max-width: 50%;
    opacity: 30%;
}
.img-design-3{
    position: absolute;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 80px;
    top: 19%;
    transform: translateX(12rem);
    opacity: 40%;
}
.img-design-4{
    position: absolute;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 40px;
    bottom: 20%;
    transform: translateX(-1rem);
    opacity: 20%;
}
.hero{
    overflow-x: clip;
}
.center-splide{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.vignate-subtitulo{
    position: relative;
    transition: .3s ease;
    max-width: max-content;
}
.vignate-subtitulo:before {
    content: '';
    display: inline-block;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s ease;
    position: absolute;
    bottom: -6px;
}

.nosotros:hover .vignate-subtitulo:before{
    width: 50%;
}
.servicios .vignate-subtitulo:before {
    background: var(--color-primary);
}
.servicios:hover .vignate-subtitulo:before {
    width: 50%;
}
.nosotros .img-nosotros{
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    aspect-ratio: 9 / 10;
    object-fit: cover;
}
.splide__slide img {
    vertical-align: bottom;
    aspect-ratio: 200 / 250;
    object-fit: cover;
}
.imagen-rotate-y{
    transition: .5s ease;
}
.nosotros:hover .imagen-rotate-y{
    transform: rotateY(180deg);
}
.text-primary {
    color: var(--color-primary) !important;
}
.img-absolute-nosotros{
    position: absolute;
    top: auto;
    right: 40%;
    width: 100%;
    max-width: 180px;
    bottom: 25%;
    opacity: 20%;
}
.bg-secondary-c{
    background-color: var(--color-secondary);
}
.card-momentos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 7/8;
    overflow: hidden;
    transition: .3s ease;
    position: relative;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
}
.card-image-momentos{
    object-fit: cover;
    height: 100%;
    transform: scale(1);
    transition: .3s ease;
}
.card-momentos:hover .card-image-momentos{
    transform: scale(1.1);
    transition: .3s ease;
}
.argb-over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(8, 21, 66, 0.40);
    transition: .3s ease;
    opacity: 0;
}
.img-rgba-over{
    width: 100%;
    max-width: 80px;
}
.py-20{
    padding-left: 20px;
    padding-right: 20px;
}
.card-momentos:hover .argb-over{
    opacity: 100%;
}
.img-absolute-nosotros-2{
    position: absolute;
    top: auto;
    right: -4%;
    width: 100%;
    max-width: 180px;
    bottom: auto;
    opacity: 20%;
}
.img-absolute-nosotros-3{
    position: absolute;
    top: auto;
    left: 3%;
    width: 100%;
    max-width: 365px;
    bottom: 18%;
    opacity: 10%;
}
.img-card-vertical{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 200/160;
}
.object-fit{
    object-fit: cover;
}
.img-absolute-servicios-1{
    position: absolute;
    top: 10%;
    left: 3%;
    width: 100%;
    max-width: 992px;
    bottom: auto;
    opacity: 30%;
}
.img-absolute-servicios-2{
    position: absolute;
    top: auto;
    right: 2%;
    width: 100%;
    max-width: 992px;
    bottom: 2%;
    opacity: 30%;
}
.img-absolute-servicios-3{
    position: absolute;
    top: 10%;
    right: -170px;
    width: 100%;
    max-width: 300px;
    bottom: auto;
    opacity: 2%;
}
.img-absolute-blog-1{
    position: absolute;
    top: auto;
    right: -170px;
    width: 100%;
    max-width: 70%;
    bottom: -91px;
    opacity: 3%;
}
.servicios{
    overflow: hidden;
}
.card-white.card{
    background: transparent;
    box-shadow: none;
}.card-white .card-body{
    padding: 20px 0;
}
.card-white .card-title, .card-white .card-text{
    color: white;
}
.line-clamp{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-white a{
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px !important;
}
.card-white .card-text{
    margin-top: 10px;
}
.card-white .bg-image{
    border-radius: 0.5rem;
}
.section-banner-pages{
    margin-top: 100px;
    aspect-ratio: 2560 / 423;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.section-banner-pages h1{
    margin-bottom: 0;
}
.display-none{
    display: none;
}
.icon-cita{
    max-width: 220px;
}
.btn-primary {
    --mdb-btn-bg: #0d1a46;
    --mdb-btn-color: #fff;
    --mdb-btn-box-shadow: 0 4px 9px -4px #0d1a46;
    --mdb-btn-hover-bg: #0d1a46;
    --mdb-btn-hover-color: #fff;
    --mdb-btn-focus-bg: #0d1a46;
    --mdb-btn-focus-color: #fff;
    --mdb-btn-active-bg: #0d1a46;
    --mdb-btn-active-color: #fff;
    --mdb-btn-box-shadow-state: 0 8px 9px -4px rgb(13 26 70 / 30%), 0 4px 18px 0 rgb(13 26 70 / 30%);
}
.btn-primary.btn:hover {
    color: var(--color-blanco);
    background-color: #132255;
    border-color: #132255;
}
.bg-footer{
    background: #008783;
}
.cd-row-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}
.cd-content-navbar {
    width: 100%;
    max-width: 1280px;
}
.ft-top {
    padding: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.description-corta {
    max-width: 300px;
    color: white;
    font-size: 14px;
}
.cd-mapa {
    width: 100%;
    max-width: 300px;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
}
.all-services .cd-li {
    margin-bottom: 4px;
}
.cd-ul p {
    font-size: 14px;
    color: white;
    margin-bottom: 0;
    transition: .2s;
}
.cd-li {
    margin-bottom: 15px;
}
.cd-ul a {
    display: flex;
    gap: 10px;
    color: white;
    align-items: center;
}
.cd-ul a p {
    font-size: 14px;
    transition: .2s;
}
.list-icons {
    display: flex;
    gap: 15px;
}
.cd-ul a.icon-rs {
    height: 24px;
    padding: 5px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 360px;
}
.py-5r {
    padding: 5rem 0;
}
.logo-footer{
    max-width: 180px;
    margin-bottom: 20px;
}
.btn-flotante {
    position: fixed;
    right: 16px;
    bottom: 16px;
    border-radius: 360px;
    background: #25D366;
    box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 1024;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-flotante a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 360px;
}
.btn-flotante i {
    font-size: 1.75rem;
    color: white;
}
.px-20{
    padding-left: 20px;
    padding-right: 20px;
}
.orden p, .orden h2{
    text-align: center;
}
.orden:hover .animate-img{
    animation: animate-animation .5s;
}
.mt-40 {
    margin-top: 40px;
}
.card-hover {
    margin-top: 0;
    transition: .3s;
}
.list-contact {
    margin-bottom: 0;
}
.list-contact p {
    margin-bottom: .5rem;
}
.card-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 10%);
}
.contact-mapa {
    border: 0;
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 10px;
    overflow: hidden;
}
.border-primary{
    border: 1px solid var(--color-secondary) !important;
}
.ft-bottom {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255, 255, 255, 0.2);
    background: #008783;;
}
.row-ft-bottom {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}
.ft-bottom p, .ft-bottom a {
    color: white;
    margin-bottom: 0;
    font-size: 14px;
}
.cd-content-navbar{
    padding-right: 20px;
    padding-left: 20px;
}
.card-map {
    border-radius: 10px;
    overflow: hidden !important;
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 10%);
}
@keyframes animate-animation {
    0%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(360deg);
    }
}
@media (min-width: 1400px) {
    h1.h1-title {
        font-size: calc(1.375rem + 1.25vw) !important;
    }
}
@media (max-width: 1400px) {

}
@media (max-width: 1366px) {
    .hero{
        height: auto;
        min-height: 600px;
    }
}
@media (max-width: 1200px) {
    .content-hero-body h1 {
        max-width: 522px;
        font-size: 32px;
    }
}
@media (min-width: 993px) {
    .hamburguesa{
        display: none;
    }
    h1, .h1 {
        font-size: calc(1.375rem + 2vw);
    }
    h1.h1-title{
        font-size: calc(1.2rem + 1.45vw);
    }
}
@media (max-width: 992px) {
    .hamburguesa{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-blanco);
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 4px;
        outline: none;
        transition: .3s;
    }
    .hamburguesa:hover{
        background-color: rgb(8 21 66 / 5%);
    }
    .row-c {
        flex-direction: column;
    }
    .col-logo{
        width: 100%;
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 50px;
    }
    .navegador img {
        max-width: 122px;
    }
    .navegador ul{
        flex-direction: column;
        width: 100%;
    }
    .col-nav{
        width: 100%;
        display: none;
    }
    .col-nav.show{
        width: 100%;
        display: flex;
    }
    .navegador ul li a:after {
        width: 25px;
    }
    .hero {
        height: auto;
        min-height: 460px;
    }
    .content-hero-body h1 {
        max-width: 465px;
        font-size: 28px;
    }
    .section-banner-pages{
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        min-height: 200px;
    }
    .content-hero-body {
        position: relative;
        order: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .content-hero-body h1{
        text-align: center;
    }
    .hero .splide{
        order: 1;
        margin-top: -40px;
        z-index: -1;
    }
    .hero{
        gap: 20px;
    }
    .w-max-520 {
        max-width: 100%;
    }
    .py-10r {
        padding: 7rem 20px;
    }
    .cd-row-footer {
        flex-direction: column;
    }
    .description-corta {
        max-width: initial;
        text-align: center;
    }
    .cd-ul p {
        text-align: center;
    }
    .cd-ul a {
        justify-content: center;
    }
    .list-icons {
        justify-content: center;
    }
    .cd-mapa {
        max-width: initial;
        min-height: 300px;
    }
    .logo-footer {
        max-width: 180px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
    .row-ft-bottom {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    .row-ft-bottom p{
        text-align: center;
    }
    .ft-bottom{
        padding: 20px 70px;
    }
    .w-50-c {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .contact-mapa {
        aspect-ratio: 16 / 12;
    }
}
@media (max-width: 470px) {

}