@charset "utf-8";

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

html {
	overflow-x: hidden;
}

:root {
    --width: calc(100% - 16rem);
    --center: 0 auto;
    --padding: 0rem 8rem;
	--black: #414141;
    --purple: #8467bc;
    --aqua: #2ebe91;
    --blue: #2fb9c1;
	--gris: #f8f8f8;
}

a {
	transition: all 0.3s ease-in-out;
}

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

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

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

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
	scroll-padding: 99px;
    overflow-x: hidden;
}

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

.whatsapp {
    width: 6rem;
    height: 6rem;
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
}

.whatsapp a {
    font-size: 4rem;
    color: var(--blue);
}



section {
    max-width: 100vw;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: 'Poppins';
}

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

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    width: fit-content;
    color: white;
    font-size: 1.5rem;
    min-width: 15rem;
    position: relative;
    z-index: 1;
    /* height: 8rem; */
    border-radius: 10rem;
    letter-spacing: 0.25rem;
    transition: all 0.3s ease-in-out;
    font-family: 'Prompt' !important;
}

figure {
    margin: 0;
}

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

header {
    height: 15vh;
    width: 100%;
    position: fixed;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    transition: all 0.3s ease-in-out;
}

nav {
    height: 100%;
    padding: var(--padding);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    position: relative;
    column-gap: 15rem;
}

header .menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

header .menu.login .sidebar {
    background-color: rgb(19, 19, 20);
    height: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-top: 20rem;
}

header .menu.login .sidebar form {
    display: flex;
    flex-direction: column;
    width: 70%;
    row-gap: 1.5rem;
}

header .menu.login .sidebar form input {
    background-color: transparent;
    width: 100%;
    margin: var(--center);
    height: 5rem;
    text-indent: 1rem;
    border: 2px solid white;
    outline: none;
    color: white;
	transition: all 0.3s ease-in-out;
}

header .menu.login .sidebar form input:focus, header .menu.login .sidebar form input:active {
    border-color: var(--blue);
    border-radius: 0.5rem;
}

header .menu.login .sidebar form a {
    text-align: center;
    color: white;
    font-size: 1.6rem;
}

header .menu.login .sidebar form button {
    width: fit-content;
    margin: var(--center);
    border: none;
    position: relative;
    padding: 0;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: all 0.3s ease-in-out;
    color: white;
    background: transparent;
}

header .menu.login .sidebar form button::after {
    content: "";
    width: 2rem;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 0.3s ease-in-out;
}

header .menu.login .sidebar form button:hover {
    background-color: transparent;
    color: white;
    cursor: pointer;
}

header .menu.login .sidebar form button:hover::after {
    width: 100%;
}

header .menu.login form p {
	font-family: 'Prompt' !important;
	font-size: 2.1rem;
	color: var(--gris);
	opacity: 0.6;
	text-align: center;
}

header .menu.login form a.btn {
	font-size: 1.2rem;
}
header .menu.login form a:hover {
	color: var(--aqua);
}

header .menu.login form p.alerta {
	font-family: 'Poppins' !important;
	color: var(--blue);
	font-size: 1.2rem;
	opacity: 1;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

header .menu.login form button[type=submit] {
	font-size: 1.8rem;
}

.crear a {
    color: white;
    font-size: 1.5rem;
    position: relative;
}

.crear a::after {
    content: "";
    width: 2rem;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 0.3s ease-in-out;
}

.crear a:hover::after {
    width: 100%;
}

header .menu .sidebar {
    background-color: var(--blue);
    padding: 5rem;
    width: 50rem;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 5rem;
}

header .menu .sidebar .close {
    color: white;
    font-size: 2rem;
    margin-left: auto;
    cursor: pointer;
}

header .menu ul {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;

}

header nav .menu__button, header nav .user-menu {
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

header nav .user-menu {
    position: relative;
    z-index: 999;
}

header nav .user-menu:hover {
    color: var(--blue);
    filter: drop-shadow(0px 0px 5px var(--blue));
}

header figure, header picture {
    display: block;
    width: 20rem;
    justify-self: center;
    /* height: 5rem; */
}

.menu p {
    color: #535353;
}

.menu li a {
    font-size: 1.6rem;
    color: rgb(230, 230, 230);
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.menu li a::after {
    content: "";
    height: 3px;
    width: 2rem;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: all 0.3s ease-in-out;
}

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

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

.menu .social-media {
    display: flex;
    column-gap: 2rem;
    margin-top: 20%;
}

.menu .social-media a {
    color: white;
    width: 4rem;
    height: 4rem;
    border: 2px solid white;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

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

h2 {
    font-weight: 700;
    color: #414141;
    font-size: 1.4rem;
    text-transform: uppercase;
    width: fit-content;
    margin: var(--center);
}


/* HERO  */

#hero {
    height: calc(100vh + 3px);
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    row-gap: 10rem;
    padding: var(--padding);
}

.background {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
	opacity: 0.6;
}   

#hero .background figure {
    width: 100%;
    height: 100%;
}

#hero .container {
    margin-top: 20rem;
	z-index: 3;
}
#hero .container p {
	margin: 0 0 4.5rem;
}
#hero .container a {
    color: white;
    font-size: 1.2rem;
    position: relative;
}

#hero .container a::after {
    content: "";
    width: 1rem;
    height: 1px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: all 0.3s ease-in-out;
}

#hero .container a:hover::after {
    width: 100%;
}

#hero .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--width);
    margin: var(--center);
}

#hero .bottom .left {
    display: flex;
    column-gap: 2rem;
}

#hero .bottom .left figure {
    filter: invert(1);
    height: 3rem;
}

#hero p span {
    color: var(--blue);
}

h2 span {
    color: var(--blue);
}

#hero h2 {
    color: white;
}

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

#hero p small {
    font-size: 1.2rem;
}

#hero .flecha-abajo {
    border: 2px solid white;
    width: 5rem;
    height:5rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;

    position: absolute;
    left: 50%;
	bottom: 30px;
    transform: translateX(-50%);
	z-index: 3;
}
#hero .flecha-abajo:hover {
	border-color: var(--aqua);
}

/* HERO  */

/* SERVICES  */

#boxes {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 0;
	justify-content: space-between;
	margin: 3rem auto;
	align-content: center;
}
#boxes .box {
	width: calc(33.3% - 0.7rem);
	padding:2.1rem;
	border-radius: 1.8rem;
	color: white;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	gap: 2.1rem;
	transition: all 0.9s ease;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
#boxes .box:nth-child(2n) {
	animation-delay: 0.9s;
}
/* colores */
#boxes .box.blue {
	background: var(--blue);
}
#boxes .box.negro {
	background: var(--black);
}
#boxes .box.gris {
	color: var(--black);
	background: var(--gris);
}

#boxes .box .top {
	width: 100%;
	position: relative;
	display: flex;
	gap: 5.1rem;
	align-items: center;
	align-self: center;
	z-index: 3;
}
#boxes .box .top img {
	width: 5.1rem;
}
#boxes .box .top h3 {
	font-size: 2.1rem;
}
#boxes .box ul {
	width: 100%;
	position: relative;
	z-index: 3;
}
#boxes .box ul li {
	padding:0.7rem 0 1.5rem;
	margin:0.7rem 0 1.5rem;
	border-bottom: solid 1px white;
}
#boxes .box ul li h4 {
	width: 100%;
	font-family: 'Prompt' !important;
	font-size: 1.8rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	cursor: pointer;
	padding:0 3.3rem 0 0;
}
#boxes .box ul li h4 span {
	width: 2.1rem;
	height:2.1rem;
	display: block;
	border: solid 2px white;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 50%;
	right:0;
	transform: translateY(-50%);
	z-index: 3;
}
#boxes .box ul li h4.active span,
#boxes .box ul li h4:hover span {
	border-color: var(--blue);
}
#boxes .box ul li h4 span::after {
	content: '';
	width: calc(100% - 12px);
	height:calc(100% - 12px);
	border: solid white;
	border-width: 2px 2px 0 0;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%) rotate(45deg);
	transition: all 0.9s ease-in-out;
	z-index: 1;
}
#boxes .box ul li h4.active span::after,
#boxes .box ul li h4:hover span::after {
	transform: translate(-50%,-50%) rotate(135deg);
	border-color: var(--blue);
}
#boxes .box ul li p {
	font-size: 1.3rem;
	margin: 0.9rem 0 0;
	display: none;
	transition: all 0.9s ease-in-out;
}
#boxes .box ul li h4.active ~ p {
	display: block;
}
#boxes .box number {
	font-family: 'Poppins';
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--blue);
	background: white;
	padding:0.6rem 2.1rem;
	border-radius: 0.6rem;
	display: inline-block;
	position: relative;
	z-index: 3;
}
#boxes .box figure {
	width: calc(100% + 4.2rem);
	height:calc(100% + 4.2rem);
	position: absolute;
	top: -2.1rem;
	left:-2.1rem;
	opacity: 0.4;
	z-index: 1;
}
#boxes .box figure img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease;
}

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

#servicios h2 {
    font-size: 1.4rem;
    width: fit-content;
    margin: var(--center);
}

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

#servicios .container .column {
    flex-basis: 30rem;
    flex-grow: 1;
}

.servicio:nth-child(1) {
    color: white;
    background-color: #24ebfdb4;
}

.servicio:nth-child(2) {
    color: white;
    background-color: #000000b4;
}

.servicio {
    min-height: 20rem;
    /* border: 1px solid; */
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #535353;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 2rem;
    margin: 1rem 0;
}

.servicio .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

.servicio .bg figure {
    width: 100%;
    height: 100%;
}

.servicio .top {
    display: flex;
    gap: 5rem;
}

.servicio .top p {
    width: 24rem;
}

.servicio .top figure {
    width: 5rem;
    height: 5rem;
}

.servicio .top figure img {
    object-fit: contain;
}

.servicio .bottom p {
    color: var(--blue);
    font-size: 1.6rem;
    background-color: white;
    padding: 0.2rem;
    width: 6rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.servicio details {
    padding-bottom: 1rem;
    border-bottom: 2px solid white;
    /* margin-bottom: 1rem; */
}


.servicio details summary {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.servicio details summary::marker {
    content: "";
}

.servicio details summary span {
    border: 2px solid white;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.servicio details summary span i {
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.servicio details summary:hover {
    cursor: pointer;
}

.servicio details summary:hover span  {
    border-color: rgb(0, 187, 255);
    transform: rotate(90deg);
}

.servicio details summary:hover span i {
    color: rgb(0, 187, 255);
}


.servicio details p {
    font-size: 1.4rem;
}

.servicio details:nth-last-child() {
    margin-bottom: 5rem;
}

/* SERVICES  */

/* TESTIMONIALS  */

#testimonials {
    padding: var(--padding);
    padding-bottom: 5rem;
    padding-top: 10rem;
    background-color: #f8f8f8;
}

#testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

#testimonials .glide__slide {
    background-color: #f8f8f8;
    padding: 2rem 4rem;
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 2rem;
}

#testimonials .glide__slide h4 {
    font-weight: 600;
    text-align: center;
    color: #414141;
    display: none;
}

#testimonials .glide__slide p {
    font-size: 1.4rem;
    color: #707070;
    text-align: center;
    width: 41rem;
    max-width: 100%;
    margin: var(--center);
}

#testimonials .glide__slide .stars {
    width: 15rem;
    margin: var(--center);
    display: flex;
    justify-content: space-evenly;
    font-size: 2rem;
    color: #b9b9b9;
}

#testimonials .glide__slide .stars .fa-star.active {
    color: #ffe400 ;
}

/* TESTIMONIALS  */



footer {
    position: relative;
    padding: var(--padding);
    padding-top: 8rem;
    padding-bottom: 2rem;
}

footer .bottom {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
	position: relative;
	z-index: 3;
}

footer .bottom a, footer .bottom p {
    color: white;
    font-size: 1.2rem;
}

footer h2 {
    color: white;
    margin-bottom: 5rem;
}

footer .background figure {
    position: relative;
    width: 100%;
    height: 100%;
}

footer .background figure::after {
    content:"";
    width: 100%;
    height: 100%;
    background-color: #24ebfdb4;
    position: absolute;
    top: 0;
    left: 0;
}

footer .container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10rem;
	position: relative;
	z-index: 3;
}

footer .container .left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2rem;
}

footer .container .left .sections p {
    font-size: 2rem;
    color: #535353;
    text-transform: uppercase;
    margin-bottom: 2rem;
} 

footer .container .left .sections a, footer .container .left .sections li {
    color: white;
    font-size: 1.4rem;
    width: fit-content;
    max-width: 30rem;
}

footer .container .left .sections ul {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

footer .container .left figure {
    /* width: 15rem; */
    height: 5rem;
}

footer .right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-basis: 40rem;
}

footer form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

footer form .col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-basis: 30rem;
    flex-grow: 1;
}

.disclaimer {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--blue);
    color: white;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.disclaimer p {
    font-weight: 600;
    font-size: 3rem;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

/* NOSOTROS  */

#nosotros {
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

#nosotros .container .left-menu {
    flex-basis: 20rem;
    background-color: white;
}

#nosotros .container .left-menu .left-menu__content {
    position: sticky;
    top: 15vh;
}

#nosotros .container .left-menu h2  {
    text-align: left;
    margin: 0;
}

#nosotros .menu li {
    margin: 1rem 0;
}

#nosotros .menu li a {
    color: #535353;
}

#nosotros .menu li a::after {
    background-color: var(--blue);
}

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

#nosotros .container .right h2 {
    margin: 0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: capitalize;
    color: #707070;
    font-weight: 500;
}

#nosotros .container .right .who {
    padding-bottom: 4rem ;
    border-bottom: 3px solid #b9b9b9a8;
}

#nosotros .container .right .who .content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

#nosotros .container .right .who .content figure {
    flex-basis: 25rem;
    flex-grow: 1;
}

#nosotros .container .right .who .content .texto {
    flex-basis: 30rem;
    flex-grow: 1;
}

#nosotros .container .right  p {
    color: #707070;
    font-size: 1.6rem;
}

#nosotros #mision {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 5rem;
    border-bottom: 3px solid #b9b9b9a8;
}

#nosotros #mision>div {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    flex-basis: 40rem;
    flex-grow: 1;
}

#nosotros #mision>div .texto {
    flex-basis: 30rem;
    flex-grow: 1;
}

#valores {
    margin-top: 5rem;
}

#valores .container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

#valores .container .valor {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 2rem;
    flex-basis: 30rem;
    background-color: black;
    column-gap: 1rem;
	animation-duration: 1.5s;
}

#valores .container .valor.azul {
    background-color: var(--blue);
}

#valores .valor img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

#nosotros #valores .valor p {
    color: white;
    text-transform: capitalize;
}

/* NOSOTROS  */


#contacto {
    margin-top: 5rem;
}

#contacto .container {
    width: var(--width);
    margin: var(--center);
}

#contacto .container h2 {
    margin: 0;
    font-size: 2.5rem;
    text-transform: initial;
    font-weight: 500;
    color: #707070;
}


#contacto .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
    row-gap: 1rem;
}

#contacto .bottom .col {
    flex-basis: 40rem;
    flex-grow: 1;
}

#contacto .bottom .col p, #contacto .bottom .col a {
    font-size: 1.4rem;
    color: #707070;
}



@media screen and (max-width: 1050px) {
    :root {
        --width: calc(100% - 8rem);
        --padding: 0rem 3rem;
    }

    nav {
        column-gap: 8rem;
    }
}

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

    header .menu {
        column-gap: 3rem;
    }

    #values>div.mission {
        width: 75%;
    }

    #values>div.vision {
        width: 85%;
    }


}


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

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

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

    header .menu li {
        margin: 2rem 0;
    }

    header .menu li a {
        color: white;
    }

    header nav>a:last-child {
        right: 0;
    }

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

    header figure, header picture {
        width: 10rem;
    }

    .menu li:last-child {
        margin-left: 0;
    }

    #hero .flecha-abajo {
        top: 70%;
    }

    footer .container {
        flex-direction: column-reverse;
        row-gap: 5rem;
    }

    footer .right>.bottom {
        flex-wrap: wrap;
        row-gap: 2rem;
        margin-top: 5rem;
    }

    #hero .container {
        column-gap: 5rem;
    }

    #inter .vertical {
        width: 9rem;
    }

    #inter .left-right, #inter .right-left, #inter .horizontal {
        height: 9rem;
    }

    #values>div.mission {
        width: 95%;
    }

    #values>div.vision {
        width: 95%;
    }
	
	#boxes .box {
		width: calc(50% - 0.7rem);
	}

}

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

    #hero .container {
        border-radius: 0;
        padding: 4rem 2rem;
    }

    #met-us p {
        max-width: 100%;
        text-align: justify;
        width: var(--width);
        margin: var(--center);
    }

    #category-services h2 {
        width: var(--width);
        margin: var(--center);
    }

    #category-services .container {
        flex-direction: column-reverse;
    }

    #category-services .container .left, #category-services .container .right {
        flex-direction: column-reverse;
    }

    #us .container .left, #us figure, #us figure img {
        height: 50vh;
        min-height: 50vh;
    }

    #us .container .right {
        padding-top: 5rem;
    }

    .category-menu {
        padding: 5rem 0rem;
    }


    footer {
        justify-content: flex-start;
        padding: var(--padding);
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .whatsapp {
        left: auto;
        right: 2rem;
    }

    #hero .container {
        column-gap: 1rem;
    }

    #hero .container a {
        font-size: 1rem !important;
        min-width: 12rem !important;
    }

    #hero .container .left, #hero .container .right {
        padding: 2rem 1rem;
    }

    #hero .container.one .left, #hero .container.one .right {
        display: none;
    }

    #hero {
        padding-top: 10vh;
        row-gap: 2rem;
        padding-bottom: 5rem;
    }

    #hero .container.two {
        display: flex;
        margin: 0;
        padding: 0;
    }

    #hero .bottom {
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    #inter .vertical {
        width: 6rem;
    }

    #inter .left-right, #inter .right-left, #inter .horizontal {
        height: 6rem;
    }

    #values>div.mission {
        width: 100%;
        border-radius: 0;
    }

    #values>div.vision {
        width: 100%;
        border-radius: 0;
    }

    #values>div.values {
        width: 100%;
        border-radius: 0;
    }

    #values>div .text {
        max-width: 75%;
    }

    #contact .container .texts .location {
        border-radius: 0;
        padding: 3rem;
        height: 30rem;
        width: 100%;
    }
    #contact .container .texts {
        padding-left: 0;
    }

    #contact .container iframe {
        height: 50%;
    }
	
	#boxes .box {
		width: 100%;
		padding:1.8rem;
	}
	#boxes .box:nth-child(2n) {
		animation-delay: 0.6s;
	}

}



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

    to {
        transform: translateX(0);
    }
}

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

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

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

    to {
        transform: translateX(0);
    }
}

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

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