@font-face {
    font-family: "MyriadPro";
    src: url("./fonts/MyriadPro-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Baskerville";
    src: url("./fonts/Baskerville.ttc") format("opentype");
}

@font-face {
    font-family: "Baskerville Italic";
    src: url("./fonts/Baskerville-Italic.ttf") format("opentype");
}

@font-face {
    font-family: "Metropolis";
    src: url("./fonts/Metropolis-Regular.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Metropolis";
    src: url("./fonts/Metropolis-Medium.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Metropolis";
    src: url("./fonts/Metropolis-SemiBoldItalic.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "Metropolis";
    src: url("./fonts/Metropolis-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "Hoefler";
    src: url("./fonts/HoeflerText-Roman-SmallCaps.ttf") format("opentype");
}

@font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat-Medium.otf") format("opentype");
}


:root {
    --pink: #EE9AE5;
    --light-blue: #72DDF7;
    --purple: #8093F1;
    --purple_2: #95AEF4;
    --white: #fff;
    --black: #000000;
    --brown: #5F5F5F;
    --brown_2: #3F3F3F;
    --blue: #4C6FFF;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


body {
    font-size: 100%;
    list-style-type: none;
    font-family: "Metropolis";
    font-weight: 400;
    font-size: 12pt;
    color: var(--black);
    background-color: #F8F8F9;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a{
    text-decoration: none;
}

.text-light-blue {
    color: var(--light-blue);
}

.text-blue {
    color: var(--blue);
}

.text-purpure {
    color: var(--purple);
}

.text-purpure-2 {
    color: var(--purple_2);
}

.text-brown-2 {
    color: var(--brown_2);
}

.centrado-vertical {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.centrado-horizontal {
    display: flex;
    justify-content: center;
    align-content: center;
}

h1 {
    font-size: 65pt;
    font-family: "Baskerville";
}

h2 {
    font-size: 30pt;
    font-family: "Baskerville";
}

h3 {
    font-size: 20pt;
    font-family: "Hoefler";
}

h4 {
    font-size: 13pt;
    font-family: "Metropolis";
    font-weight: 700;
}

.sub-titulo {
    height: 2px;
    width: 83px;
    background-color: #E0D6C4;
}


/* Nav */

nav {
    background: #3C3C3B !important;
    display: flex;
    height: 170px;
    padding: 0px 40px;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    z-index: 100;
    width: 100%;
}

nav .container {
    height: 100%;
}

nav a {
    color: var(--white);
    font-family: "MyriadPro";
    font-size: 14px !important;
}

#navbarMenu ul a{
    margin: 0 1rem;
    transition: 0.2s ease-in-out;
    position: relative;
    color: var(--white);
}

#navbarMenu ul a:hover{
    color: #E0D6C4;
}

.logo img {
    width: 240px;
}

.form-header {
    display: flex;
    width: 220px;
    height: 50px;
    padding: 10px 25px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #FFF;
    margin-top: 1.5rem;
    border-radius: 29px;
    border: 1px solid var(--Grey-6, #E5E5E5);
    background: #FFF;
    font-family: "MyriadPro";
}

.form-header input[type="text"] {
    border: none;
    width: 100%;
    height: 35px;
}

.form-header input[type="text"]:focus{
    border: none;
    outline: none;
    box-shadow: none;
}

.form-header button {
    border: none;
    background-color: white;
}

.form-header button img {
    width: 20px;
    height: 20px;
}

.navbar-toggler-white .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-toggler-white {
    border: 2px solid var(--white);
}

.navbar-toggler-white:focus {
    box-shadow: 0 0 10px var(--white) !important;
}

.close {
    position: absolute;
    right: 2rem;
}

/*Footer*/

footer {
    margin-top: 3rem;
}

footer form input {
    height: 50px;
    border-radius: 0px !important;
    margin-bottom: 2.5rem;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.25) !important;
    font-family: "Metropolis";
    font-weight: 700 !important;
}

footer form input:focus, footer form textarea:focus {
    border: 1px solid #3C3C3B !important;
}

footer form textarea {
    height: 150px;
    border-radius: 0px !important;
    margin-bottom: 2.5rem;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.25) !important;
    font-family: "Metropolis";
    font-weight: 700 !important;
    resize: none;
}

footer form button {
    height: 50px;
    background-color: #8B857A;
    font-family: "Baskerville";
    font-size: 15pt;
    color: var(--white);
    border: none;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.25) !important;
    transition: 0.2s ease-in-out;
}

footer form button:hover {
    font-size: 17pt;
    background-color: #3C3C3B;
}


.footer-bottom {
    text-align: center;
    margin-top: 1.5vw;
    padding-top: 1vw;
    font-size: 14px;
    border-top: 1px solid #3C3C3B;
}

.footer-bottom span {
    color: #3C3C3B;
    text-transform: uppercase;
    font-weight: bold;
}

.ubicacion {
    margin-top: 1rem;
    font-family: "Baskerville";
    font-size: 18pt;
}

.ubicacion .mapa {
    width: 20px;
    height: auto;
}

.imagen-fondo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner {
    margin-top: 170px;
    height: 775px;
    color: var(--white);
}

.titulos h1 {
    margin-top: 25%;
}

.ft-65 h1 {
    font-size: 65px;
}

.slick-brands-arrows {
    cursor: pointer;
    padding: 5px 10px;
    position: absolute;
    top: 30%;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.slick-dots {
    position: absolute;
    top: 700px;
    height: 40px !important;
}

.slick-dots li button{
    font-size: 25px !important;
}

.slick-dots li button:before {
    font-size: 16px;
    color: white;
    opacity: 0.8;
}

.slick-dots li.slick-active button:before {
    color: #8B857A;
    font-size: 18px;
}

.btn-banner {
    font-size: 15pt;
    font-family: "Baskerville";
    height: 50px;
    width: 160px;
    background-color: #8B857A;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    margin-left: 10px;
    margin-top: 20px;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.5) !important;
}

.btn-banner:hover {
    background-color: #3C3C3B;
    color: var(--white);
    font-size: 16pt;
}

.info-bienvenidos {
    height: 200px;
    width: 100%;
    margin-top: -200px;
    position: absolute;
}

.info-bienvenidos .info-1 {
    background-color: rgba(60, 60, 59, 0.9);
    display: flex;
    flex-direction: column;
    color: rgba(224, 214, 196, 0.9);
}

.info-bienvenidos .info-2 {
    background-color: rgba(224, 214, 196, 0.9);
    color: rgba(60, 60, 59, 0.9);
    display: flex;
    flex-direction: column;
}


.info-bienvenidos .info-1, .info-bienvenidos .info-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-bienvenidos .info-1 h2, .info-bienvenidos .info-2 h2{
    font-size: 28px;
    letter-spacing: 0px;
}

.info-bienvenidos .info-1 .cursiva, .info-bienvenidos .info-2 .cursiva {
    font-family: "Baskerville Italic";
    font-weight: 600;
    font-size: 32px;
    margin-top: -5px;
    margin-left: 20%;
    letter-spacing: 1px;
}

/* .info-bienvenidos .info-1 h2{
    font-size: 36px;
}

.info-bienvenidos .info-1 .cursiva {
    font-family: "Baskerville Italic";
    font-weight: 600;
    font-size: 40px;
    margin-top: -5px;
    margin-left: 20%;
} */

.section-nosotros {
    padding: 4rem 0 5rem 0;
}

.section-nosotros .nombre-socio {
    font-family: "Baskerville";
    font-size: 22px;
    color: #3C3C3B;
    margin-top: 1rem;
    margin-bottom: 0;
}

.section-nosotros span {
    font-family: "Metropolis";
    font-size: 16px;
    color: #8E8E8D;
}

.section-nosotros .btn-banner {
    font-size: 12pt;
    height: 58px;
    width: 150px;
    margin-left: 0;
    margin-top: 20px;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.25) !important;
}

.section-nosotros .btn-banner:hover {
    font-size: 13pt;
}

.section-nosotros p {
    font-family: "Metropolis";
    font-size: 16px;
    line-height: 32px;
}

.section-derecho, .section-noticias {
    background-image: url("../images/fondo-gris-1.webp");
    background-size: cover;
    padding: 3rem 0;
}

.section-derecho h2, .section-noticias h2 {
    color: var(--white);
}

.section-derecho .sub-titulo {
    margin-bottom: 2rem;
}

.section-derecho .col-sm-6 div, .section-clientes .col-sm-6 div{
    overflow: hidden;
    cursor: pointer;
}

.section-derecho .col-sm-6 :hover .img-fluid {
    transform: scale(1.1);
    transition: transform 0.5s;
}

.section-clientes {
    margin: 3rem 0;
}

.section-clientes .sub-titulo {
    margin-bottom: 1rem;
}

.section-clientes .col-sm-6 :hover .img-fluid {
    transform: scale(1.1);
    transition: transform 0.5s;
}

.carrusel-clientes {
    padding-inline: 70px;
}

.slick-arrow {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 33%;
    height: 36px;
    width: 60px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.section-noticias {
    padding-bottom: 6rem;
}

.carrusel-noticias {
    display: flex;
}

.slick-track {
    display: flex;
    height: 100%;
}

.section-noticias .contenedor-noticia {
    background-color: var(--white);
    height: 100%;
}

.section-noticias .titulo-noticia{
    font-family: "Metropolis";
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 1rem;
}

.section-noticias p{
    font-size: 11px;
}

.section-noticias .contenedor-info {
    margin: 0 1rem;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    height: 68%;
}

.section-noticias .fuente{
    font-family: "Baskerville";
    font-size: 18px;
}

.section-noticias .fecha{
    font-family: "Metropolis";
    font-size: 10px;
    font-weight: 700;
}

.section-noticias .btn-banner {
    font-size: 10pt;
    height: 45px;
    width: 110px;
    margin-left: 0;
    margin-top: 20px;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.25) !important;
}

.section-noticias .btn-banner:hover {
    font-size: 11pt;
}

.section-in-nosotros {
    padding-top: 220px;
}

.section-in-nosotros .row .col-sm-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-in-nosotros .contenedor-info {
    border: 1px solid #DADADA;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.section-in-nosotros .contenedor-info p{
    font-family: "Metropolis";
    font-size: 15px;
    color: #8E8E8D;
    padding-bottom: 5px;
}

.section-in-nosotros .contenedor-info .titulo{
    font-family: "Baskerville";
    font-size: 19px;
    color: #3C3C3B;
    margin-bottom: 0;
}

.section-in-nosotros .btn-banner {
    font-size: 8pt;
    height: 45px;
    width: 130px;
    margin-left: 0;
    box-shadow: 3px 3px 7px 3px rgba(0, 0, 0, 0.25) !important;
}

.section-in-nosotros .btn-banner:hover {
    font-size: 9pt;
}

.section-curriculum {
    padding-top: 170px;
}

.modal-productos {
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    top: 0;
    align-items: center;
    position: absolute;
    /* margin-left: 50%;
    transform: translate(-50%,0); */
    color: #252324;
    z-index: 100;
}

.modal-productos .modal-producto .cerrar_modal{
    font-size: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.modal-producto:not(:first-of-type) img {
    width: 225px;
    height: auto;
}

.modal-productos .modal-producto div .cerrar_modal::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 1px;
    top: 20px;
    left: 0px;
    background: rgba(37, 35, 36, 0.7);;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.modal-productos .modal-producto div .cerrar_modal:hover::after {
    transform: scaleX(0);
    transform-origin: bottom right;
}


.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(36, 34, 35, 0.8);
    backdrop-filter: blur(1px);
    z-index: 9;
    overflow-y: auto;
}

.modal-producto {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    font-size: 18px;
}

.modal-producto ul li{
    padding-bottom: 1rem;
}

.brillo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, #DADADA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brillo:hover::before {
    opacity: 1;
}

.section-x {
    padding-top: 4rem;
}

.section-x .container .row .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.section-x .cursiva {
    margin-top: 3rem;
    font-family: "Baskerville Italic";
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
    padding-right: 10%;
}

.embed-responsive-custom {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}
.embed-responsive-custom .embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0.5%;
    bottom: 0;
    right: 0;
    width: 99%;
    height: 100%;
    border: 0;
}

.embed-responsive a {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hidden-sm-item {
    display: none;
}

.titulo-oficina {
    font-family: "Metropolis";
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: white;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    margin-inline: auto;
    text-align: center;
}

.ct-nosotros {
    min-height: 400px;

    & .contenedor-info {
        height: 200px !important;
    }
}

.carrusel-nosotros {
    .prev {
        left: -45px;
    }
    
    .next {
        right: -45px;
    }
}

.instagram {
    width: 20px;
    margin-top: 2px;
}


@media (min-width: 1400px) {
    .embed-responsive a {
        bottom: 1.75rem;
    }
}

@media (max-width: 1400px) {
    .section-noticias .contenedor-info {
        margin: 0 1rem;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 2rem;
        height:auto;
    }
}

@media (max-width: 1350px) {
    .info-bienvenidos .info-2 .cursiva{
        margin-left: 0;
    }
}

@media (max-width: 1200px) {
    .section-noticias .contenedor-info {
        min-height: 400px;
        height: auto;
    }
}

@media (max-width: 1150px) {
    .info-bienvenidos .info-2 h2{
        font-size: 26px;
    }

    .info-bienvenidos .info-2 .cursiva{
        font-size: 30px;
    }
}


@media (max-width: 767px) {

    .titulos h1 {
        margin-top: 2rem;
        font-size: 50px;
    }

    .ft-65 h1 {
        font-size: 42px;
    }

    .btn-banner {
        font-size: 12pt;
        height: 40px;
        width: 120px;
        margin-bottom: 1rem;
    }

    .btn-banner:hover {
        font-size: 13pt;
    }

    .banner {
        width: 100%;
        height: 300px !important;
    }

    .banner video {
        width: 90%;
        background-color: black;
    }

    .modal-productos {
        width: 90% !important;
        left: 0;
        position: fixed;
        margin-left: 50%;
        transform: translate(-50%,0);
    }

    .modal-productos .modal-producto {
        flex-direction: column;
        height: 500px;
    }

    nav {
        height: 120px !important;
    }

    .section-curriculum {
        padding-top: 120px;
    }

    .banner {
        margin-top: 120px;
    }

    .section-in-nosotros {
        padding-top: 170px;
    }

    .logo img {
        width: 180px !important;
    }

    .info-bienvenidos {
        height: auto;
    }

    .info-bienvenidos .info-1, .info-bienvenidos .info-2{
        height: auto;
    }

    .info-bienvenidos .info-1 .cursiva, .info-bienvenidos .info-2 .cursiva{
        margin-left: 0 !important;
        font-size: 14pt !important;
        font-weight: 600;
    }
    .slick-dots {
        top: 85% !important;
    }

    .slick-dots li button:before {
        font-size: 10px;
    }
    
    .slick-dots li.slick-active button:before {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    #navbarMenu ul a:hover li::before {
        content: "|| " !important;
        position: absolute;
        left: -5px;
        top: 6px;
    }
}

@media (max-width: 1000px) {
    .info-bienvenidos .info-1, .info-bienvenidos .info-2 {
        padding: 22px 0;
    }
    
} 

@media (max-width: 992px) {
    #navbarMenu ul a{
        color: var(--black);
    }

    .modal-productos {
        width: 750px;
    }
    
    .logo img {
        width: 200px;
    }

    .modal-producto {
        font-size: 16px;
    }

    .info-bienvenidos {
        position: static;
        margin-top: 0;
    }

    .info-bienvenidos .info-2 h2{
        font-size: 28px;
    }

    .info-bienvenidos .info-2 .cursiva{
        font-size: 32px;
        margin-left: 20%;
    }

    .slick-dots {
        top: 95%;
    }

    .section-x .cursiva {
        margin-top: 0;
        padding-bottom: 2rem;
        padding-right: 0;
    }

    .section-x .container .row .col-lg-6 {
        align-items: center;
    }

    .banner {
        height: 500px;
        color: var(--white);
    }

} 


@media (max-width: 540px) {
    .modal-productos .modal-producto {
        flex-direction: column;
        height: 500px;
    }

    .modal-productos .modal-producto img{
        margin: 0 !important;
        padding: 0 !important;
    }

    .modal-productos .modal-producto div{
        margin-top: 2rem;
        flex-direction: column;
        overflow-y: auto;
        width: 100%;
    }

    .modal-productos .modal-producto div ul{
        margin-bottom: 0;
        padding: 0 !important;
    }

    .section-x .cursiva {
        font-size: 24px;
    }

    .carrusel-clientes {
        padding-inline: 50px;
    }
    
    .slick-arrow {
        cursor: pointer;
        position: absolute;
        z-index: 1;
        top: 33%;
        height: 25px;
        width: 50px;
    }

    .carrusel-nosotros .slick-arrow {
        display: none !important;
    }

} 