* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wow {
    animation-duration: 1s !important;
    /* animation-timing-function: linear; */
}


.delay {
    animation-delay: 0.5s !important;
}

.delay1 {
    animation-delay: 1s !important;
}

.delay2 {
    animation-delay: 1.5s !important;
}

.delay3 {
    animation-delay: 2s !important;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: 'hatton';
    src: url('../hatton-font-family/PP\ Hatton\ Ultralight\ 200.otf');
    font-weight: 200;
}

@font-face {
    font-family: 'hatton';
    src: url('../hatton-font-family/PP\ Hatton\ Medium\ 500.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'hatton';
    src: url('../hatton-font-family/PP\ Hatton\ Bold\ 700.otf');
    font-weight: 700;
}

body {
    /* overflow-x: hidden; */
}

section {
    max-width: 100vw;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    --width: calc(100% - 16rem);
    --padding: 0rem 8rem;
    --center: 0 auto;
    --orange: #ff7500;
}

h1, h2, h3, h4, h5 {
    font-family: 'hatton', sans-serif;
}

p, a, span, li {
    font-family: Poppins, sans-serif;
}

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

.button {
    min-width: 15rem;
    width: fit-content;
    min-height: 6rem;
    border-radius: 10rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    background-color: rgb(193, 241, 237);
}

.button__secondary {
    min-width: 15rem;
    width: fit-content;
    min-height: 6rem;
    border-radius: 10rem;
    padding: 1rem 2rem;
    background-color: var(--main-color);
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.button__secondary:hover {
    background-color: rgb(17, 67, 79);
}

header {
    height: 20vh;
    width: 100%;
    margin: var(--center);
    position: fixed;
    z-index: 1000;
    /* padding: 1rem 0rem; */
    background-color: rgba(255, 255, 255, 0.45);
    background-color: transparent;
    display: flex;
    align-items: center;
}

nav {
    width: var(--width);
    margin: var(--center);
    height: 100%;
    padding: 0rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: transparent;
    position: relative;

}

nav>a:last-child {
    display: none;
}

header nav .menu__button {
    display: none;
}

header figure, header picture {
    display: block;
    height: 20vh;
    filter: invert(1);
    aspect-ratio: 1;
}

header picture img {
    object-fit: contain;
}

header .menu {
    display: flex;
    align-items: flex-start;
    column-gap: 10rem;
    height: 100%;
    row-gap: 1rem;
}

.menu li>a, .menu li>p {
    font-size: 1.6rem;
    color: white;
    font-weight: 300;
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    font-family: 'hatton', sans-serif;
    text-transform: capitalize;
}


.menu li a:hover::after {
    width: 50%;
}

.menu>li.button>a::after {
    display: none;
    width: 0;
    height: 0;
}

.menu>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: fit-content;
}

p {
    font-size: 2rem;
    font-weight: 400;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    width: 75rem;
    max-width: 100%;
}

h2 {
    font-size: 4rem;
    font-weight: 500;
}

h2 span {
    font-weight: 400;
    color: var(--orange);
}

/* HERO  */

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.5)), url('../img/hero.png') no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: var(--padding);
    padding-top: 35vh;
    position: relative;
}

#hero h1 {
    font-size: 8rem;
    width: 100rem;
    max-width: 100%;
}

#hero h3 {
    font-size: 3.6rem;
    margin: 4rem 0;
}

#hero .cards {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    /*right: 0;*/
    bottom: -2.5rem;
}

#hero .card {
    flex-basis: 30rem;
    min-width: 30rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.5rem;
    justify-content: space-between;
}

#hero .text {
    width: fit-content;
    margin-top: 50vh;
    margin-left: auto;
}

#hero .text h2, #hero .text h4 {
    color: white;
}

#hero .card p, #hero .card h4 {
    font-size: 1.2rem;
    color: white;
}

#hero .card a {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: white;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    width: 60%;
    margin-left: auto;
}

#hero .card a i {
    border: 1px solid white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    transition: all 0.2s ease-in-out;
}

#hero .card:first-child {
    background-color: black;
}

#hero .card:first-child h4 {
    color: var(--orange);
}

#hero .card:first-child a:hover {
    color: var(--orange);
}

#hero .card:first-child a:hover i {
    background-color: white;
    color: var(--orange);
}


#hero .card:last-child {
    background-color: var(--orange);
}

#hero .card:last-child h4 {
    color: black;
}

#hero .card:last-child a:hover {
    color: black;
}

#hero .card:last-child a:hover i {
    background-color: white;
    color: black;
}

/* HERO  */

/* US  */

#us {
    min-height: 100vh;
    background: linear-gradient(rgba(60, 60, 60, 0.8), rgba(60, 60, 60, 0.8)), url('../img/pasillo-vacio.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: var(--padding);
}

#us .container {
    height: 100%;
    min-height: 65rem;
    padding-top: 20rem;
    padding-bottom: 10rem;
    color: white;
}

#us h4 {
    text-align: center;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 300;
}

#us h3 {
    width: fit-content;
    margin: var(--center);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

#us h2 {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
}

#us p {
    font-size: 1.4rem;
    width: 50rem;
    max-width: 100%;
    margin: var(--center);
}

/* US  */

#culture {
    padding: var(--padding);
}

#culture .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -10rem;
}

#culture .container .left {
    flex-basis: 25rem;
    min-height: 40rem;
}

#culture .container .left figure {
    height: 100%;
}

#culture .container .right {
    flex-basis: 50rem;
}

#culture .container .right div {
    padding: 3rem;
}

#culture .container .right h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

#culture .container .right p {
    font-size: 1.2rem;
}

#culture .container .vision {
    background-color: var(--orange);
}

#culture .container .right .vision p {
    color: white;
}

#culture .container .right .values h3 {
    color: var(--orange);
}

#culture .container .right .mission {
    background-color: black;
}

#culture .container .right .mission p {
    color: white;
}

#culture .container .right .mission h3 {
    color: var(--orange);
}

/* SERVICES  */

#servicios {
    margin-top: 10rem;
    padding: var(--padding);
    margin-bottom: 5rem;
}

#servicios .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#servicios .service-images:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-basis: 50rem;
    min-height: 30rem;
}


#servicios .service-images:nth-child(1) figure {
    flex-basis: 24rem;
    flex-grow: 1;
    height: 30rem;
}

#servicios .service-images:nth-child(2), #servicios .service-images:nth-child(3) {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    flex-basis: 50rem;
    min-height: 25rem;
}

#servicios .service-images:nth-child(2) figure {
    height: calc(100% - 2rem);
}

#servicios .service-images:nth-child(3) figure {
    height: 20rem;
}

#servicios .service-images figure {
    position: relative;
}

#servicios .service-images figure .service__description {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#servicios .service-images figure .service__description .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: flex-end;
    justify-content: flex-end;
}

#servicios .service-images figure .service__description p {
    font-size: 1.1rem;
    color: white;
    width: 80%;
    margin: var(--center);
    font-weight: 400;
}

#servicios .service-images figure .service__description p:first-child {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

#servicios .service-images figure .service__description p:last-child {
    display: none;
    opacity: 0;
    transition: all 0.2s ease;
}

#servicios .service-images figure:hover p:last-child {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.4s ease-in-out;
}

#servicios>a {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: black;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    width: 15rem;
    margin-left: auto;
}

#servicios>a i {
    border: 1px solid black;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    transition: all 0.2s ease-in-out;
}

#servicios>a:hover {
    color: var(--orange);
}

#servicios>a:hover i {
    background-color: black;
    color: var(--orange);
}

#services {
    margin: 5rem 0;
    padding: var(--padding);
}

#services .container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10rem;
    row-gap: 5rem;
}

#services .left {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

#services .categories {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

#services .services {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

#services li {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid black;
    font-size: 1.8rem;
    width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#services li i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    min-width: 3rem;
    height: 3rem;
    border: 1px solid;
    border-radius: 10rem;
}

#services li:hover, #services li.active {
    color: var(--orange);
    cursor: pointer;
}

#services li:hover i, #services li.active i {
    background-color: black;
    color: var(--orange);
}


#services .right {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    flex-basis: 30rem;
    flex-grow: 1;
}

#services .right .category__image, #services .right .service__image {
    position: relative;
    height: 20rem;
}

#services .right .category__image::after, #services .right .service__image::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(75, 75, 75, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#services .right .category__image figure, #services .right .service__image figure {
    height: 100%;
}


#services .right .category__image h3, #services .right .service__image h3 {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    color: white;
    z-index: 2;
    font-size: 2rem;
}

#services .service__description {
    background-color: var(--orange);
    padding: 2rem;
    min-height: 15rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#services .service__description p {
    color: white;
    font-size: 1.6rem;
    margin-top: 0.5rem;
}

#services .service__description h3 {
    font-size: 2rem;
}

/* SERVICES  */


/* PROJECTS  */

#projects {
    background-color: var(--orange);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#projects.customers {
    background-color: white;
    margin-top: 10rem;
    
    & figure {
        width: 30rem;
        max-width: 100%;
        margin: var(--center);
        
        & img {
            object-fit: contain;
        }
    }
    
    & .glide__slides {
        align-items:center;
    }
}

#projects h3 {
    width: fit-content;
    margin: var(--center);
    margin-bottom: 3rem;
}

#projects h2 {
    text-align: center;
    margin-bottom: 8rem;
}

#projects h2 span {
    color: white;
}

#projects .glide__slide h2 {
    color: white;
    font-size: 10rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

#projects .glide__slide a:hover h2 {
    color: black;
}


#projects>a {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: white;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    width: 15rem;
    margin: var(--center);
}

#projects>a i {
    border: 1px solid white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    transition: all 0.2s ease-in-out;
}

#projects>a:hover {
    color: black;
}

#projects>a:hover i {
    background-color: white;
    color: black;
}

#proyectos .year {
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#proyectos .year h2 {
    font-size: 10rem;
}

#proyectos .year ul {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 1rem;
    flex-basis: 72rem;
}

#proyectos .year li {
    margin: 0.5rem 0;
}

#proyectos .year li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    width: 35rem;
    font-size: 1.3rem;
    border-bottom: 1px solid;
}

#proyectos .year li a i {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    border: 1px solid;
    border-radius: 10rem;
}


#proyectos .year:nth-child(1), #proyectos .year:nth-child(3), #proyectos .year:nth-child(5) {
    color: black;
}

#proyectos .year:nth-child(1) a, #proyectos .year:nth-child(3) a, #proyectos .year:nth-child(5) a {
    color: black;
}

#proyectos .year:nth-child(1) a:hover, #proyectos .year:nth-child(3) a:hover, #proyectos .year:nth-child(5) a:hover {
    color: var(--orange);
}

#proyectos .year:nth-child(1) a:hover i, #proyectos .year:nth-child(3) a:hover i, #proyectos .year:nth-child(5) a:hover i {
    background-color: black;
}




#proyectos .year:nth-child(2), #proyectos .year:nth-child(6) {
    background-color: black;
    color: white;
}

#proyectos .year:nth-child(2) a, #proyectos .year:nth-child(6) a {
    color: white;
}

#proyectos .year:nth-child(2) a:hover, #proyectos .year:nth-child(6) a:hover {
    color: var(--orange);
}

#proyectos .year:nth-child(2) a:hover i, #proyectos .year:nth-child(6) a:hover i {
    background-color: white;
}




#proyectos .year:nth-child(4) {
    background-color: var(--orange);
    color: white;
}

#proyectos .year:nth-child(4) a {
    color: white;
}

#proyectos .year:nth-child(4) a:hover {
    color: black;
}

#proyectos .year:nth-child(4) a:hover i {
    background-color: white;
}

#proyecto {
    height: 100vh;
    position: relative;
}

#proyecto figure {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -2
}

#proyecto::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ff7700e9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#proyecto .container {
    padding: var(--padding);
    padding-top: 50vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#proyecto h2 {
    font-size: 10rem;
    color: white;
}

#proyecto h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

#proyecto .text {
    max-width: 100%;
}

#proyecto p {
    width: 70rem;
    max-width: 100%;
    font-size: 1.8rem;
    color: rgb(60, 60, 60);
}

#project__description {
    padding: var(--padding);
    margin-bottom: 8rem;
}

#project__description .images__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 8rem;
    height: fit-content;
    margin-bottom: 5rem;
}

#project__description .images__container figure {
    flex-basis: calc(30% - 1rem);
    flex-grow: 1;
    aspect-ratio: 1;
    max-height: 40rem;
}

#project__description .descripcion__proyecto {
    margin-bottom: 5rem;
}

#project__description>a {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    width: 35rem;
    max-width: 100%;
    margin: var(--center);
    color: black;
}

#project__description>a i {
    border: 1px solid;
    border-radius: 10rem;
    font-size: 1.4rem;
    min-width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#project__description>a:hover {
    color: var(--orange);
    border-color: black;
}

#project__description>a:hover i {
    background-color: black;
    color: var(--orange);
    border-color: black;
}

/* PROJECTS  */


/* CONTACT  */

#contact {
    padding: var(--padding);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/contact.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

#contact h2 {
    color: white;
    margin-bottom: 6rem;
}

#contact .container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

#contact .container a, #contact .container p {
    display: flex;
    color: white;
    font-size: 1.6rem;
    margin: 2rem 0;
    align-items: center;
}

#contact .container a i, #contact .container p i {
    margin-right: 3rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
}

#contact iframe {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
}

#contact .left {
    flex-basis: 50rem;
    flex-grow: 1;
}

#contact .right {
    flex-basis: 50rem;
    flex-grow: 1;
}

#contact form {
    display: flex;
    flex-wrap: wrap;
}

#contact input {
    height: 5.5rem;
    text-indent: 1rem;
    font-size: 1.6rem;
    font-family: sans-serif;
    border: 1px solid white;
    outline: none;
    background-color: transparent;
    border-left: none;
    border-right: none;
    flex-basis: 20rem;
    flex-grow: 1;
    color: white;
}

#contact textarea {
    height: 6.2rem;
    flex-basis: 100%;
    padding: 2rem 1rem;
    font-size: 1.6rem;
    font-family: sans-serif;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    background-color: transparent;
    resize: none;
    color: white;
}

#contact input[type="email"] {
    border-left: 1px solid white;
    border-right: 1px solid white;
}

::placeholder {
    font-size: 1.8rem;
    color: white;
    font-family: sans-serif;
}

form button:hover {
    color: var(--orange);
    cursor: pointer;
}

form button:hover i {
    background-color: white;
    color: var(--orange);
}

form button {
    margin-left: auto;
    margin-top: 2rem;
    font-size: 2.2rem;
    padding-bottom: 1rem;
    color: white;
    border: none;
    border-bottom: 1px solid white;
    display: flex;
    column-gap: 5rem;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    flex-basis: 10rem;
    margin-left: auto;
    background-color: transparent;
}

form button i {
    border: 1px solid white;
    width: 2.5rem;
    height: 2.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    transition: all 0.2s ease-in-out;
    font-size: 1.2rem;
}



#location .container {
    display: flex;
    flex-wrap: wrap;
}

#location .left {
    flex-basis: 50rem;
    flex-grow: 1;
}

#location .left iframe {
    height: 100%;
    min-height: 45rem;
}

#location .right {
    flex-grow: 1;
}

#location .right .address {
    background-color: black;
    padding: 2rem;
    width: 50rem;
    max-width: 100vw;
    margin-left: auto;
    margin-top: 40%;
    transform: translateY(-50%);
}

#location .right .address h3 {
    color: var(--orange);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

#location .right .address p, #location .right .address a {
    font-size: 1.2rem;
    color: white;
    width: 80%;
    margin: 0.5rem 0;
    display: block;
}

/* CONTACT  */


/* FOOTER  */

footer {
    padding-top: 10rem;
}

footer .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

footer .top figure {
    height: 5rem;
}

footer .top ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7rem;
}

footer .top ul a {
    font-size: 1.6rem;
    color: white;
    transition: all 0.2s ease-in-out;
}

footer .top ul a:hover {
    color: var(--orange);
}

footer .bottom {
    padding-top: 3rem;
}

footer .bottom p {
    font-size: 1.2rem;
    text-align: center;
    color: white;
    width: 100%;
}


/* FOOTER  */


@media screen and (max-width: 800px) {

    :root {
        --width: calc(100% - 4rem);
        --padding: 0rem 2rem;
    }

    header {
        height: 15vh;
    }

    header figure, header picture {
        height: 10rem;
        width: 10rem;
        
        & img {
            object-fit: contain;
        }
    }

    header .menu {
        position: absolute;
        top: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100vw;
        left: -2rem;
        display: flex;
        flex-direction: column;
        display: none;
        height: fit-content;
        padding: 1rem 0;
    }

    header .menu li {
        text-align: center;
        margin: 1rem 0;
        width: 100%;
        justify-content: center;
    }

    header nav>a {
        display: block;
    }

    nav>a:last-child {
        display: block;
        margin-top: 3rem;
    }

    .menu>li>a, .menu li>p {
        font-size: 1.4rem;
        font-weight: 300;
    }

    header nav .menu__button {
        display: block;
        font-size: 3rem;
        color: white;
        transition: all 0.5s ease-in-out;
        margin-right: 2rem;
    }

    #hero {
        background-size: fill;
        background-position: right;
    }



    #us .container {
        row-gap: 4rem;
        padding-top: 12rem;
    }

    

    #us .container .left {
        margin-bottom: 0;
        min-height: 40rem;
    }

    #us .container .left figure {
        min-height: 40rem;
    }

    #us .container .left figure img {
        min-height: 40rem;
    }

}

@media screen and (max-width: 550px) {
    #hero h1 {
        font-size: 3.5rem;
    }

    #hero p {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 4rem !important;
    }

    #formation {
        margin-top: 10rem;
        padding-left: 0;
        padding: var(--padding);
    }

    #formation .top, #experience .container {
        flex-direction: column;
    }

    #experience .container .left {
        flex-basis: auto;
    }

    #interviews .video {
        width: 100%;
    }

    #interviews .video .data {
        position: static;
        width: 100%;
    }

    .banner {
        padding-top: 7rem;
        height: auto;
        background-position: center;
        padding-bottom: 5rem;
        margin-top: 10rem;
    }

    .banner h3 {
        font-size: 3rem;
    }

    .banner .button {
        margin: var(--center);
    }

    #services .top {
        row-gap: 4rem;
    }

    #services .top .button__secondary {
        margin: var(--center);
    }

    #contact .left {
        height: 30rem;
    }

    footer .middle {
        flex-direction: column;
    }

    #services .container .service:nth-child(2) p {
        font-size: 1.2rem;
    }

    #contact input[type="email"] {
        border: none;
    }

    #hero .cards {
        width: 30rem;
        left: 50%;
        transform: translateX(-50%);
    }

    #servicios .service-images:nth-child(1) figure, #servicios .service-images:nth-child(2) figure {
        height: 20rem;
    }

    #culture .container .left {
        flex-grow: 1;
        min-height: auto;
        height: 30rem;
    }

    #culture .container .left img {
        object-position: top;
    }

    #hero .text {
        margin-top: 10vh;
    }


}



@keyframes showMenu {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes hideMenu {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(-0.5rem);
    }

    50% {
        transform: translateY(1rem);
    }

    100% {
        transform: translateY(-0.5rem);
    }

}