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

.wow {
    animation-duration: 1s !important;
    /* animation-timing-function: linear; */
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

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;
    --green: rgb(154, 180, 53);
    --light-blue: rgb(134, 159, 180);
    --dark-blue: rgb(12, 47, 78);
    --blue: rgb(49, 90, 125);
}

.whatsapp {
    background-color: #25D366;
    width: 6rem;
    height: 6rem;
    border-radius: 100rem;
    /* border: 1px solid white; */
    position: fixed;
    right: 2rem;
    z-index: 10001;
    bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp i {
    font-size: 5rem;
    color: white;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    background-color: var(--green);
    width: fit-content;
    color: white;
    font-size: 1.6rem;
    min-width: 12rem;
    transition: all 0.1s linear;
    border-radius: 100rem;
    max-height: 5rem;
}

.button:hover {
    background-color: rgb(189, 220, 63);
    cursor: pointer;
}

.button.light-blue {
    background-color: var(--light-blue);
}

.button.light-blue:hover {
    background-color: rgb(98, 144, 182);
}

.button.white {
    background-color: white;
    color: var(--green);
}

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

header {
    height: 15vh;
    width: 100%;
    margin: var(--center);
    position: fixed;
    z-index: 1000;
    /* padding: 1rem 0rem; */
    background-color: var(--dark-blue);
}

nav {
    width: var(--width);
    margin: var(--center);
    height: 100%;
    padding: 0rem;
    display: flex;
    align-items: center;
    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: 10vh;
}

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

.menu li>a, .menu li>p {
    font-size: 1.6rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
}

.menu>li>a, .menu li>p {
    text-transform: uppercase;
}

.menu>li:hover>a, .menu>li:hover>p, .dropdown li a:hover,
.menu>li>a.active, .menu>li>p.active, .dropdown li a.active {
    color: var(--green);
}

.menu>li a::after, .menu>li>p::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--green);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s linear;
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

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

.menu>li.button>a:hover, .menu>li.button:hover>a {
    color: white;
}

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

.dropdown {
    width: 150%;
    background-color: var(--blue);
    position: absolute;
    padding: 2rem 0;
    /* left: 0; */
    right: 0;
    transform: translateX(25%);
    top: 100%;
    transition: all 0.3s ease-in-out;
    display: none;
}

.dropdown li {
    text-align: center;
    padding: 1rem 0;
}

.menu>li:hover .dropdown {
    display: block;

}

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

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

h2 {
    font-size: 4.5rem;
    font-weight: 700;
}

/* HERO  */

#hero {
    min-height: 100vh;
    background: linear-gradient(102.1deg, #9AB435 0%, rgba(0, 45, 84, 0.76) 67.02%), url('../img/hero.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20vh;
}

#hero.servicios {
    min-height: 100vh;
    background: linear-gradient(102.1deg, #9AB435 0%, rgba(0, 45, 84, 0.76) 67.02%), url('../img/cotizador-imagen.jpeg') no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20vh;
}

#hero.us {
    padding: var(--padding);
    justify-content: flex-start;
    padding-top: 20vh;
    background: linear-gradient(102.1deg, #9AB435 0%, rgba(0, 45, 84, 0.76) 67.02%), url('../img/us.png') no-repeat;
    background-position: center;
    background-size: cover;
}

#hero.us .container {
    width: 70rem;
    max-width: 100%;
}

#hero .vector figure {
    width: 70rem;
}

#hero .vector {
    position: absolute;
}

#hero .vector.one {
    top: 5rem;
    left: -15rem;
    mix-blend-mode: screen;
}


#hero .vector.two {
    right: -30rem;
    mix-blend-mode: screen;
    bottom: -20rem;
    opacity: 0.5;
}

#hero .container {
    color: white;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    position: relative;
    z-index: 1;
    width: 70%;
}

#hero h2 {
    font-size: 6rem;
}

#hero p, #hero a {
    font-size: 3rem;
    padding: 3rem 2rem;
}

#hero .container .button i {
    transform: rotate(-45deg);
}

/* HERO  */

.banner {
    background-color: var(--dark-blue);
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.banner .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 40rem;
    gap: 2rem;
}

.banner .container .left {
    flex-basis: 50rem;
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    color: white;
    flex-grow: 1;
}

.banner .container .right {
    flex-basis: 70rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner .one, .banner .three {
    display: flex;
    flex-direction: column;
    flex-basis: 10rem;
    row-gap: 2rem;
    flex-grow: 1;
}

.banner .two {
    flex-basis: 20rem;
    /* height: 100%; */
    flex-grow: 4;
}

.banner .right figure {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    max-height: 40rem;
}

.banner figure:first-child {
    aspect-ratio: 1;
    min-height: 15rem;
}

.banner figure:last-child {
    height: 100%;
}

.banner .two figure {
    height: 100%;
}

/* SERVICES  */

#services {
    background-color: rgba(246, 251, 255, 1);
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#services .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
}

#services h2 {
    color: var(--blue);
    flex-basis: 40rem;
    flex-grow: 1;
}

#services .top p {
    color: var(--blue);
    flex-basis: 60rem;
    flex-grow: 3;
}

#services .top p strong {
    color: var(--dark-blue);
}

#services .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100rem;
    max-width: 90vw;
    margin: var(--center);
    margin-top: 10rem;
}

.service {
    flex-basis: 25rem;
    max-width: 30rem;
    background-color: white;
    border-radius: 2rem;
    box-shadow: 6px 5px 40px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 5rem;
    padding-bottom: 3rem;
    flex-grow: 1;
}

.service figure {
    width: 6rem;
    height: 6rem;
    border-radius: 100rem;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service figure img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.service h4 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
}

.service p {
    font-size: 2rem;
    color: var(--dark-blue);
}

.service.blue {
    background-color: rgba(170, 210, 245, 0.3);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 3rem 2rem;
}

.button i {
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
}

#services .container .service .button {
    font-size: 2.5rem;
}

.button:hover i {
    transform: rotate(0deg);
}



#subservices {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#subservices h2 {
    margin-bottom: 10rem;
}

#subservices .container {
    width: 90rem;
    max-width: 100%;
    margin: var(--center);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

#subservices .container .service {
    justify-content: flex-start;
    max-width: 40rem;
    flex-basis: 40rem;
}

#service-hero {
    padding-top: 15vh;
    height: 100vh;
    overflow: hidden;
}

#service-hero h2 {
    font-size: 3rem;
}

#service-hero .container {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    width: 100%;
}

#service-hero .right {
    background-color: var(--blue);
    padding: 4rem;
    color: white;
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#service-hero .left {
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

#service-hero .left figure {
    flex-basis: 50%;
    flex-grow: 1;
    height: 50%;
}

#service-hero .left figure img{
    object-position: top;
}

.service-banner {
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    color: var(--green);
    column-gap: 10rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1370px;
    margin: var(--center);
}


.service-banner h2 {
    flex-basis: 60rem;
    max-width: 100%;
}

.service-banner .text {
    flex-basis: 30rem;
    height: 30rem;
    padding: 3rem 4rem;
    background: url('../img/screen.png') no-repeat;
    background-position: center;
    background-size: contain;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-banner p {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

#features {
    background-color: rgba(246, 251, 255, 1);
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#features figure {
    background-color: var(--dark-blue);
    min-width: 5rem;
    max-width: 5rem;
    height: 5rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#features figure img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

#features h3 {
    font-size: 2.2rem;
}

#features p, #features li {
    font-size: 1.8rem;
    text-transform: capitalize;
}

#features ul ul {
    padding-left: 3rem;
    padding-top: 0.5rem;
}

#features ul ul li {
    font-size: 1.6rem;
}

#features .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 5rem;
    max-width: 1370px;
    margin: var(--center);
}

.feature {
    display: flex;
    /* align-items: center; */
    column-gap: 1rem;
    flex-basis: 60rem;
}

/* SERVICES  */



.banner-2 {
    margin: 10rem 0;
    padding: var(--padding);
}


.banner-2 .container {
    width: 100%;
    height: 60rem;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5rem;
    overflow: hidden;
}

.banner-2 .container .left {
    flex-basis: 20rem;
    flex-grow: 1;
    height: 100%;
}

.banner-2 .container .left figure {
    height: 100%;
}

.banner-2 .container .right {
    flex-basis: 20rem;
    flex-grow: 1;
    background-color: var(--blue);
    color: white;
    height: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
}


/* CONTACT  */

#contact {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: var(--dark-blue);
}

#contact .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: space-between;
}

#contact .left {
    color: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 50rem;
    flex-grow: 1;
}

#contact .left figure {
    width: 90%;
}

#contact .right {
    flex-basis: 60rem;
    max-width: 100%;
    height: 60rem;
}

#contact .right form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

#contact .right iframe {
    margin-left: auto;
    width: 50rem;
    max-width: 100%;
}

#contact input, #contact select {
    border-radius: 10rem;
    height: 6rem;
    text-indent: 2rem;
    outline: none;
    border: none;
    font-size: 2rem;
}


#contact textarea {
    border-radius: 5rem;
    height: 25rem;
    outline: none;
    border: none;
    padding: 2.5rem;
    font-size: 2rem;
    resize: none;
}

textarea, input[type="text"], select {
    flex-basis: 100%;
}

input[type="tel"], input[type="email"] {
    flex-basis: 20rem;
    flex-grow: 1;
}

#contact .button {
    font-size: 2rem;
    border: none;
    width: 20rem;
    height: 6rem;
    color: var(--dark-blue);
}

#contact ::placeholder {
    color: var(--dark-blue);
    font-size: 2rem;
}

/* CONTACT  */



/* LOCATION  */

#location {
    height: 60rem;
    position: relative;
}

#location iframe {
    width: 100%;
    height: 100%;
}


#location .container {
    width: auto;
    max-width: 100%;
    border-top-right-radius: 100rem;
    border-bottom-right-radius: 100rem;
    height: 20rem;
    background-color: var(--green);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 9rem 0 5rem;
    row-gap: 2rem;
    position: absolute;
    top: 0;
}

#location .button {
    color: var(--dark-blue);
    font-size: 2rem;
}

/* LOCATION  */


/* FOOTER  */

footer {
    background-color: var(--dark-blue);
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

footer .top {
    color: white;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: space-between;
}

footer .top .mail {
    display: flex;
    flex-direction: column;
    row-gap: 1rem   ;
}

footer .top figure {
    width: 20rem;
}

footer .top a {
    font-size: 1.8rem;
    color: white;
}

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

footer .socials a {
    margin: 0 1rem;
    font-size: 2.5rem;
}

footer .top .right p {
    flex-basis: 25rem;
}

footer .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
    margin-top: 3rem;
}

footer .bottom p, footer .bottom a {
    font-size: 1.4rem;
    color: white;
    display: flex;
    align-items: center;
}

footer .bottom img {
    width: 2rem;
    margin-left: 0.5rem;
    object-fit: contain;
}

/* FOOTER  */



.banner-3 {
    padding: var(--padding);
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.banner-3 .container {}

.banner-3 h2 {
    color: var(--blue);
    /* font-size: 3rem; */
    width: 120rem;
    max-width: 100%;
}

span {
    color: var(--green);
}

.banner-3 p {
    color: var(--blue);
    margin: 2rem 0;
    width: 100rem;
    max-width: 100%;
    /* font-size: 3rem; */
}


#values {
    color: white;
}

#values .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 60rem;
}

#values .left {
    flex-basis: 50rem;
    flex-grow: 1;
    min-height: 60rem;
}


#values .right {
    flex-basis: 50rem;
    flex-grow: 1;
    min-height: 60rem;
    height: 100%;
    background-color: var(--dark-blue);
    padding: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5rem;
}

#values figure {
    height: 100%;
}

#values ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

#values li {
    font-size: 2rem;
    flex-basis: 20rem;
    position: relative;
    font-weight: 600;
}

#values li::after {
    content: "";
    background: url('../img/values-check.png');
    background-size: contain;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    left: -3.5rem;
    top: 0;
}


#partners {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: var(--green);
    color: white;
}

#partners {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10rem;
    row-gap: 2rem;
    justify-content: space-between;
}

#partners .left {
    flex-basis: 30rem;
}

#partners .right {
    flex-basis: 50rem;
    flex-grow: 1;
    overflow: hidden;
}

#partners figure {
    height: 10rem;
}

.glide__track .glide__slide figure img {
    object-fit: contain;
}


#values-texts {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#values-texts .container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 120rem;
    margin: var(--center);
    max-width: 100%;
}

#values-texts h3 {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 2rem;
}

#values-texts p {
    color: var(--blue);
    margin: 1rem 0;
}

#values-texts .top .left, #values-texts .bottom .right {
    background-color: rgba(170, 210, 245, 0.2);
    border-radius: 2rem;
    padding: 7rem;
    flex-basis: 50rem;
}


#values-texts .top, #values-texts .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

#values-texts figure {
    height: 40rem;
}













/* BLOG  */

.featured__blog {
    padding: 0 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr;
}

.blogs__main--title {
    font-size: 2rem;
    padding: 1.6rem 0;
    color: var(--green);
}

.featured__blog--container {
    height: 30.4rem;
    max-height: 30.4;
}

.featured__blog--image {
    grid-column: 1;
    width: 80%;
    height: 80%;
}

.featured__blog--image img {
    width: 100%;
}

.featured__blog--info {
    grid-column: 2;
}

.featured__blog--title {
    font-size: 2.5rem;
    margin: 2rem 0;
}

.featured__blog--text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.blogs__button {
    color: black;
    font-size: 1.2rem;
    text-align: center;
    width: 8rem;
    border: 1.4px solid var(--green);
    display: block;
    padding: 1rem 0;
}

.blogs__title {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1.4px solid var(--blue);
}

.blogs__container {
    margin: 0 1.5rem;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.5rem;
}

.blog {
    width: 100%;
    margin-bottom: 4rem;
}

.blogpost__image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.blogpost__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.blogpost__text {
    width: 80%;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}


/* SINGLE POST STYLES */
.blogpost__imageContainer {
    padding: 0 50px 40px;
    padding-top: 20vh;
    display: flex;
    flex-direction: column;
}

.blogpost__imageContainer>a {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--green);
    width: fit-content;
}

.blogpost__imageContainer img {
    width: 100%;
    height: 60rem;
}

.blogpost__mainContainer {
    padding: 0 50px 40px;
}

.blogpost__mainContainer h3 {
    border-bottom: 1.4px solid var(--blue);
    padding-bottom: 2rem;
    font-size: 2rem;
}

.blogpost__mainContainer article h1 {
    padding: 2rem 0;
    font-size: 3.5rem;
}

.blogpost__mainContainer article p {
    font-size:  1.6rem;
}

.blogpost__mainContainer article img {
	margin: 24px 0;
}

.grid-container {
    max-width: var(--width);
    margin: auto;
}

.blog__news {
    padding-top: 20vh;
}

/* BLOG  */




#amsfac {
    padding: var(--padding);
    padding-bottom: 10rem;
}

#amsfac figure {
    width: 25rem;
    margin: var(--center);
    margin-bottom: 5rem;
}

#amsfac h2 {
    font-size: 4.5rem;
    color: var(--blue);
    margin-bottom: 2rem;
}

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

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

    header .menu {
        column-gap: 6rem;
    }
    .menu>li>a, .menu li>p {
        display: flex;
    }
}

#banner {
	width: calc(100% - 48px);
	max-width: 600px;
	position: fixed;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	overflow: hidden;
	display: flex;
	background: white;
	border-radius: 24px;
	box-shadow: 9px 12px 18px rgba(0,0,0,0.3);
	animation-delay: 2.1s !important;
	z-index: 999999 !important;
}
#banner button.cerrar {
	width: 24px;
	height:24px;
	position: absolute;
	top:  15px;
	right:15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	z-index: 6;
}
#banner button.cerrar span {
	font-size: 21px;
	font-weight: lighter;
	color: var(--dark-blue);
}
#banner button.cerrar:hover span {
	color: var(--green);
}
#banner > div {
	width: 50%;
	position: relative;
}
#banner .texto {
	padding:90px 30px 30px;
}
#banner .texto h3 {
	font-size: 3.6rem;
	color: var(--dark-blue);
	line-height: 1;
	margin: 0 0 24px;
}
#banner .texto h5 {
	font-size: 6rem;
	margin: 0 0 24px;
	line-height: 1;
	font-weight: normal;
	color: var(--green);
}
#banner .texto p {
	font-size: 1.2rem;
	margin: 0 0 24px;
}
#banner .texto a {
	width: 100%;
	font-size: 1.8rem;
	color: white;
	background: var(--green);
	display: block;
	text-align: center;
	padding:9px;
	border-radius: 3rem;
}
#banner .texto a:hover {
	background: rgb(189, 220, 63);
}

@media screen and (max-width: 666px) {
	#banner {
		border-radius: 18px;
		flex-wrap: wrap;
	}
	#banner button.cerrar {
		width: 48px;
		height:48px;
		top:  0;
		right:0;
		background: var(--green);
		border-radius: 18px;
	}
	#banner button.cerrar span {
		font-size: 27px;
		color: white;
	}
	#banner button.cerrar:hover span {
		color: var(--dark-blue);
	}
	#banner > div {
		width: 100%;
	}
	#banner .imagen {
		height: 30vh;
	}
	#banner .texto {
		padding:24px;
	}
	#banner .texto h3 {
		font-size: 2.4rem;
		margin: 0 0 15px;
	}
	#banner .texto h5 {
		font-size: 3.9rem;
		margin: 0 0 15px;
	}
	#banner .texto p {
		font-size: 1rem;
		margin: 0 0 15px;
	}
	#banner .texto a {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 1300px) {
    .feature {
        flex-basis: 50rem;
    }
}

@media screen and (max-width: 1080px) {
    :root {
        --width: calc(100% - 4rem);
        --padding: 0rem 2rem;
    }

    header .menu {
        column-gap: 4rem;

        position: absolute;
        top: 100%;
        background-color: var(--dark-blue);
        width: 100vw;
        left: -2rem;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        display: none;
        height: auto;
    }

    .dropdown-menu {
        flex-direction: column;
    }
    
    .dropdown {
        position: initial;
        width: 100vw;
        z-index: 1;
        left: -25vw;
        transform: translateX(0);
    }

    header .menu li {
        text-align: center;
        margin: 2rem 0;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .menu li.button {
        width: fit-content;
    }

    header .menu li a {
        color: white;
    }

    header nav>a, nav>a:last-child {
        display: block;
    }

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

    .feature {
        flex-basis: 40rem;
    }

    .featured__blog {
        display: flex;
        flex-direction: column;
    }

    .featured__blog--image {
        width: 100%;
        height: 40rem;
    }

    .blogs__container {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .blog {
        flex-basis: 30rem;
    }

    #contact .container {
        justify-content: center;
    }

    #contact .right iframe {
        height: 40rem;
    }
}

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

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

    .blogpost__imageContainer {
        padding: 0;
        padding-top: 20vh;
    }

    .blogpost__mainContainer {
        padding: var(--padding);
        margin-top: 5rem;
        padding-bottom: 5rem;
    }

    #hero h2 {
        margin-left: 2rem;
        font-size: 3.5rem;
    }

    #service-hero .right {
        padding: 4rem 2rem;
    }

    #service-hero {
        height: auto;
    }

    #hero .vector {
        display: none;
    }

    #us .container {
        display: flex;
        flex-direction: column;
    }

    .banner-2 .container {
        height: auto;
    }

}

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

    #hero .container {
        width: 100%;
    }

    #hero .container a {
        margin: var(--center);
    }

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

    #hero .container {
        margin-top: 5rem;
    }

    #service-hero .left figure {
        height: 20rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .banner .two {
        display: none;
    }

    .location .right figure {
        display: none;
    }

    .location .right iframe {
        flex-grow: 1;
        max-width: 100%;
    }

    #location .container {
        border-radius: 0;
        top: 10rem;
    }

    #values-texts .top .left, #values-texts .bottom .right {
        padding: 4rem 3rem;
    }

    #values-texts figure img {
        object-fit: contain;
    }

    footer .top {
        justify-content: center;
        gap: 2rem;
    }

    footer .top .right {
        justify-content: center;
        text-align: center;
    }

}



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

    to {
        transform: translateX(0);
    }
}

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

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




