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

.wow {
    animation-duration: 1.3s !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;
	line-height: 1.4;
}

section {
    max-width: 100vw;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    --width: calc(100% - 16rem);
    --padding: 0rem 8rem;
    --center: 0 auto;
    --blue: #5D58C6;
    --gray: #D9D9D9;
    --green: #00853E;
    --green2: #66bd4c;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/CamptonMedium.otf');
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamMedium.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamBook.ttf');
    font-weight: 400;
}



h1,
h2,
h3,
h4,
h5 {
    font-family: 'Campton', sans-serif;
	line-height: 1.1;
}

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

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

.whatsapp {
    width: 22rem;
    height: 8rem;
    /* border-radius: 10rem; */
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    position: fixed;
    right: -13rem;
    z-index: 10001;
    bottom: 20vh;
    background-color: white;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1);
}

.whatsapp:hover {
    right: 0;
}

.whatsapp a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    font-size: 1.4rem;
    color: var(--green);
    overflow: hidden;
    gap: 2rem;
}

.whatsapp img {
    width: 5rem;
    height: 5rem;
}

.portaWhats {
	position: fixed;
	right: 1.8rem;
	bottom:2.4rem;
	z-index: 999;
}
.portaWhats::after {
	content: '';
	width: 100%;
	height:0;
	padding:0 0 100%;
	background: black;
	border-radius: 50%;
	position: absolute;
	top: calc(50% + 6px);
	left:calc(50% + 6px);
	transform: translate(-50%,-50%);
	filter: blur(1rem);
	opacity: 0.4;
	z-index: -1;
}
.portaWhats svg {
	width: 57px;
	position: relative;
	z-index: 1;
}
.st0 {
	fill: #FAFDFC;
}
.st1 {
	fill: #1FD679;
}

.button {
    min-width: 10rem;
    width: fit-content;
    min-height: 4rem;
    border-radius: 1rem;
    padding: 1rem 2rem;
    background-color: var(--blue);
    color: white;
    font-size: 2rem;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    background-color: #7d76ff;
}

.button.secondary {
    background-color: white;
    color: #5D58C6;
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.3);
}

.button.secondary:hover {
    background-color: #f0f0f0;
}

header {
    height: 10rem;
    width: 100%;
    margin: var(--center);
    position: fixed;
    z-index: 1000;
    background-color: white;
    display: flex;
    align-items: center;
}

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;
    gap: 5rem;
}

nav>a:first-child {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav>a:first-child h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: black;
}

nav>a:first-child p {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: black;
}

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

header nav .menu__button {
    display: none;
}

header figure,
header picture {
    display: block;
    height: 8rem;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 100%;
    flex-grow: 1;
}

.menu li>a,
.menu li>p {
    font-size: 1.6rem;
    color: var(--green);
    font-weight: 400;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.menu a.button {
    box-shadow: 0px 10px 15px 0px #00000040;
    background-color: white !important;
    color: var(--green) !important;
    font-weight: 400 !important;
}

.menu a:hover {
    transform: scale(1.1);
}

.menu>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: fit-content;
}
.menu>li::after {
	content: '';
	width: 0;
	height:2px;
	transition: all 0.3s ease-in-out;
	background: var(--green2);
	position: absolute;
	left: 50%;
	bottom:0;
	transform: translateX(-50%);
	z-index: 1;
}
.menu>li:hover::after,
.menu>li.active::after {
	width: 100%;
}

.menu>li.active2 {}

.menu .button__secondary {
    min-height: 5rem;
}

.dropdown {
    width: 150%;
    background-color: #5D58C6B2;
    position: absolute;
    padding: 2rem;
    /* left: 0; */
    right: 0;
    transform: translateX(25%);
    top: 100%;
    transition: all 0.3s ease-in-out;
    display: none;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    list-style: inside;
    font-size: 2rem;
    z-index: 1;
}

.idioma .dropdown {
    list-style: none;
    width: 200%;
}

.idioma .dropdown img {
    width: 43px;
    height: 22px;
    object-fit: contain;
    cursor: pointer;
}

.dropdown li {
    text-align: left;
    padding: 1rem 0;
    color: white;
}

.dropdown li a {
    color: white;
	opacity: 0.8;
}

.dropdown li:hover a,
.dropdown li.active a {
	color: black;
	opacity: 1;
}

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

.idioma > img {
    width: 43px;
    height: 22px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);    
    cursor: pointer;
}

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

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

body main section:first-of-type {
    padding-top: 10rem !important;
}

section {
    padding: var(--padding);
    margin-bottom: 10rem;
}

section>h2 {
    text-align: center;
    font-size: 6rem;
    color: var(--blue);
    margin-bottom: 5rem;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.flexbox figure {
    flex-basis: 40rem;
    height: 40rem;
    flex-grow: 1;
    border-radius: 2rem;
    overflow: hidden;
}

.flexbox .textbox {
    flex-basis: 40rem;
    min-height: 40rem;
    flex-grow: 1;
    border-radius: 2rem;
    background-color: var(--gray);
    padding: 3rem;
}

/* HERO  */

#hero,
#maternal,
#kinder,
#primaria,
#secundaria,
#preparatoria {
    min-height: 60vh;
    padding: 0;
    /* padding-top: 15rem !important; */
    margin-bottom: 0;
    position: relative;
}

#owl-hero {
    width: 100%;
    height: 100%;
}

#owl-hero .item {
    height: calc(100vh - 10rem);
    /* height: 100vh; */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#maternal #owl-hero .item {
    height: 60vh;
}

#owl-hero .item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#hero #owl-hero .item::after {

    background-color: rgba(255, 255, 255, 0.5);
}



#maternal #owl-hero .item.background::after,
#kinder #owl-hero .item.background::after,
#primaria #owl-hero .item.background::after,
#secundaria #owl-hero .item.background::after,
#preparatoria #owl-hero .item.background::after {

    background-color: var(--color-fade);
}

#maternal .item,
#kinder .item,
#primaria .item,
#secundaria .item,
#preparatoria .item {
    padding: var(--padding);
}

#maternal .item .text,
#kinder .item .text,
#primaria .item .text,
#secundaria .item .text,
#preparatoria .item .text {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10rem;
    row-gap: 5rem;
    align-items: center;
    justify-content: space-between;
}

#maternal .item .text .left,
#kinder .item .text .left,
#primaria .item .text .left,
#secundaria .item .text .left,
#preparatoria .item .text .left {
    flex-basis: 40rem;
    flex-grow: 1;
}

#maternal .item .text>figure,
#kinder .item .text>figure,
#primaria .item .text>figure,
#secundaria .item .text>figure,
#preparatoria .item .text>figure {
    flex-basis: 50rem;
}

#maternal #owl-hero h1,
#kinder #owl-hero h1,
#primaria #owl-hero h1,
#secundaria #owl-hero h1,
#preparatoria #owl-hero h1 {
    font-size: 3.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
    color: white;
    margin-bottom: 1rem;
}

#maternal #owl-hero p,
#kinder #owl-hero p,
#primaria #owl-hero p,
#secundaria #owl-hero p,
#preparatoria #owl-hero p {
    font-size: 2rem;
    text-align: left;
    color: white;
    width: 100%;
}

#owl-hero .item>figure {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

#owl-hero p {
    color: white;
    text-align: center;
    font-size: 6rem;
    width: 60%;
}

#owl-hero img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
}

.animated {
    -webkit-animation-duration: 0 ms !important;
    animation-duration: 0 ms !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
}


.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

#owl-hero .owl-dots {
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

#owl-hero .owl-dots .owl-dot span {
    border: 1px solid var(--green);
    background-color: transparent;
}

#maternal #owl-hero .owl-dots .owl-dot span {
    border: 1px solid var(--color-fade);
}

#owl-hero .owl-dots .owl-dot.active span {
    background-color: white;
}

.banner-hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 130rem;
    max-width: 100%;
    margin: var(--center);
    height: 5rem;
    border-radius: 5rem;
    background: #00853EB2;
    position: absolute;
    z-index: 1;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
}

.banner-hero img {
    width: 2.3rem;
    height: 2.3rem;
}

.banner-hero a {
    color: white;
    font-weight: 500;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-hero .redes {
    display: flex;
    gap: 0.5rem;
}

.texto-hero {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

#hero h1 {
    padding: 2rem 4rem;
    color: #5D58C6;
    background-color: white;
    font-size: 5rem;
    width: 50rem;
    max-width: 100vw;
    font-style: normal;
    margin-bottom: 5rem;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

#hero h2 {
    padding: 1rem 4rem;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    background-color: white;
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
    color: #4DAB56;
    text-align: center;
}

/* HERO  */

/* OFERTA  */

#oferta >figure {
    width: 25rem;
    margin: var(--center);
}

#oferta h2 {
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

#owl-oferta.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    height: 50rem !important;
}

#owl-oferta.owl-carousel .owl-stage .item {
    background-color: white;
    position: relative;
    padding: 1rem 2rem;
    color: var(--blue);
    border-radius: 2rem;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30rem;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

#owl-oferta.owl-carousel .owl-stage .owl-item.center .item {
    min-height: 42rem;
    gap: 1rem;
    justify-content: space-between;
}

#owl-oferta.owl-carousel .owl-stage .item figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

#owl-oferta.owl-carousel .owl-stage .owl-item.center .item figure{
    width: 15rem;
    height:15rem;
    border-radius: 10rem;
    margin: var(--center);
    overflow: hidden;
    position: static;
}

#owl-oferta.owl-carousel .owl-stage .item p {
    font-size: 1.4rem;
    text-align: center;
    display: none;
}

#owl-oferta.owl-carousel .owl-stage .item h3 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid;
    color: white;
}

#owl-oferta.owl-carousel .owl-stage .owl-item.center .item p {
    display: block;
    color: var(--blue);
}

#owl-oferta.owl-carousel .owl-stage .owl-item.center .item a {
    color: var(--blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1rem 0;
}

#owl-oferta.owl-carousel .owl-stage .owl-item.center .item h3 {
    color: var(--blue);
}

/* OFERTA  */

/* PILARES  */

#pilares {
    padding-top: 10rem;
    padding-bottom: 10rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
}

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

#pilares h2 {
    font-size: 3.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

#pilares h3 {
    font-size: 2.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    margin-bottom: 1rem;
}

#pilares .container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15rem;
    row-gap: 4rem;
}

#pilares .container .pilar {
    flex-basis: 50rem;
    flex-grow: 1;
}

#pilares ul {
    list-style: inside;
}

#pilares li {
    font-size: 1.6rem;
}

#pilares h2,
#pilares h3,
#pilares li {
    color: var(--color);
}

/* PILARES  */


/* EXTRAS  */

#extras .porta-video {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
}

#extras .video-container {
	width: 100%;
    position: relative;
  	overflow: hidden;
	padding:0 0 56.25%;
    margin-bottom: 5rem;
}

#extras .video-container iframe {
	position: absolute;
  	top: 0;
  	left:0;
	bottom:0;
	right: 0;
	width: 100%;
	height:100%;
	border-radius: 3rem;
}

#extras video source {
    width: 100%;
    height: 100%;
    border-radius: 3rem;
}

#extras h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin-bottom: 2rem;
    color: var(--color);
}

#extras .button {
    background-color: var(--color);
    width: 60rem;
    max-width: 90%;
    margin: var(--center);
    height: 5rem;
    border-radius: 2rem;
    margin-bottom: 10rem;
}

#extras .botones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* EXTRAS  */

/* PLUS  */

#plus {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 50vh;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#plus h3 {
    font-size: 2rem;
    margin: var(--center);
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin-bottom: 5rem;
    color: var(--color);
    text-transform: uppercase;
    width: 60rem;
    max-width: 90%;
}

#plus p {
    color: var(--color);
    margin: 2rem 0;
    text-align: center;
}

/* PLUS  */

.credenciales {
    color: var(--color);
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.credenciales .button {
    width: 60rem;
    max-width: 90%;
    margin: var(--center);
    height: 5rem;
    border-radius: 2rem;
    background-color: var(--color);
    margin-top: 2rem;
    margin-bottom: 4rem;
}


/* TALLERES  */

#talleres {
    padding: var(--padding);
    position: relative;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

#talleres .titulo {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background-color: var(--color);
    padding: 1rem 0;
    width: 60rem;
    max-width: 90%;
    margin: var(--center);
}

#talleres .titulo h3 {
    color: white;
    text-align: center;
    font-size: 2.4rem;
}

#talleres .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10rem;
    position: relative;
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-radius: 3rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 10px 15px 0px #00000040;
}

#talleres .franja {
    height: 30rem;
    width: 100%;
    background-color: var(--color);
    z-index: -2;
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
}

.taller {
    flex-basis: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.taller figure {
    width: 10rem;
    height: 10rem;
    border-radius: 20rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taller img {
    object-fit: contain;
    width: 50%;
    height: 50%;
}

.taller p {
    text-align: center;
    color: var(--color);
}

/* TALLERES  */


/* CONOCENOS  */

#conocenos {
    background-color: rgba(93, 88, 198, 0.7);
    height: 100vh;
    align-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

#conocenos h1 {
	width: 100%;
    font-size: 5rem;
    color: white;
    margin-bottom: 4rem;
	text-align: center;
}

#conocenos h3 {
    font-size: 2.2rem;
    color: white;
    width: 60rem;
    max-width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
}

/* CONOCENOS  */

.mascota {
    width: 40rem;
    max-width: 90%;
    margin: var(--center);
    margin-top: 10rem;
    margin-bottom: 10rem;
}

/* CAMPUS  */

#campus {
    background-color: rgba(91, 208, 102, 0.7);
    height: 100vh;
    align-content: center;
	display: flex;
	justify-content: center;
	position: relative;
	align-items: center;
	overflow: hidden;
}

#campus h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: capitalize;
    width: 60rem;
    max-width: 100%;
    margin: var(--center);
    font-weight: 800;
    padding-bottom: 2rem;
    border-bottom: 2px solid white;
}

#locations {
    position: relative;
    margin: 5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

#locations .franja {
    height: 30rem;
    width: 100%;
    background-color: #00853E;
    z-index: -2;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#locations>figure {
    flex-basis: 40rem;
}

#locations.niveles .location {
    background: var(--color);
    box-shadow: 0px 10px 10px 0px #00000040;
}

#locations.niveles h2 {
    color: var(--color);
    font-size: 4rem;
    flex-basis: 100%;
}

#locations.niveles .franja {
    background-color: var(--color);
}

.location {
    background: #5BD066;
    padding: 2rem;
    border-radius: 3rem;
    flex-basis: 50rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location .text {
    width: 100%;
}

.location iframe {
    border-radius: 3rem;
    height: 30rem;
    width: 100%;
}

.location h3 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    width: 60%;
    margin: var(--center);
    padding-bottom: 1rem;
}

.location h4 {
    padding-top: 1rem;
    border-top: 1px solid white;
    color: white;
    font-size: 1.8rem;
}

.location p {
    font-size: 1.4rem;
    color: white;
    max-width: 100%;
}

/* CAMPUS  */

/* ADMISIONES  */

#admisiones {
    background-color: rgba(171, 73, 135, 0.7);
    height: 100vh;
    align-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#admisiones h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: capitalize;
    width: 60rem;
    max-width: 100%;
    margin: var(--center);
    font-weight: 800;
    padding-bottom: 2rem;
    border-bottom: 2px solid white;
}

#admisiones .button {
    width: 30rem;
    height: 5rem;
    margin: var(--center);
    margin-top: 5rem;
    color: #AB4987;
}

#admisiones-req {
    width: var(--width);
    margin: var(--center);
    margin-top: 10rem;
    margin-bottom: 10rem;
}

#admisiones-req p {
    font-size: 2.4rem;
    color: var(--blue);
    margin-bottom: 5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--blue);
}

#admisiones-req ul {
    list-style: url(../img/bullet.png);
    padding-left: 3rem;
}

#admisiones-req ul li {
    font-size: 2rem;
    color: var(--blue);
    margin: 1rem 0;
}

#admisiones-req ul li::marker {
    width: 2rem;
    height: 2rem;
}

#admisiones-req .button {
    margin: var(--center);
    margin-top: 5rem;
}

/* ADMISIONES  */


/* BECAS  */

#becas {
    background-color: #00853E;
    height: 100vh;
    align-content: center;
    margin-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#becas > * {
	width: 100%;
}

#becas h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: capitalize;
    width: 60rem;
    max-width: 100%;
    margin: var(--center);
    font-weight: 800;
    margin-bottom: 4rem;
}

#becas h2 {
    color: white;
    font-size: 4rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid white;
}

#becas p {
    text-align: center;
    font-size: 2rem;
    color: white;
}

#becas .button {
    width: 30rem;
    height: 5rem;
    margin: var(--center);
    margin-top: 5rem;
    color: #00853E;
}

#becas-info {
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    height: 80vh;
    margin-top: 0;
    padding-top: 10rem;
    padding-bottom: 10rem;
    margin-bottom: 0;
}

#becas-info .container {
    width: var(--width);
    margin: var(--center);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#becas-info .buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

#becas-info .buttons .button {
    color: white;
    background-color: #00853E;
}

#becas-info p {
    padding-top: 5rem;
    color: #00853E;
    border-top: 1px solid #00853E;
    font-size: 2.2rem;
    margin-bottom: 5rem;
}

/* BECAS  */


/* US  */

#nosotros {
    margin-top: 5rem;
}

#nosotros hr {
    width: 100%;
    height: 2px;
    background-color: #5D58C6;
    border-color: #5D58C6;
}

#nosotros .container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15rem;
    row-gap: 5rem;
    align-items: center;
}

#nosotros .left {
    flex-basis: 40rem;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

#nosotros .right {
    flex-basis: 40rem;
    flex-grow: 1;
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3rem;
    overflow: hidden;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

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

#nosotros .right .button {
    width: 80%;
    height: 6rem;
    background-color: #5D58C6CC;
}

#nosotros .right>img {
    width: 4rem;
}

#nosotros .left figure {
    width: 10rem;
}

#nosotros h2 {
    text-transform: uppercase;
    font-size: 5rem;
    color: #5D58C6;
    text-align: center;
}

#nosotros .left p {
    color: #5D58C6;
    font-size: 1.8rem;
}

/* US  */


/* COMODITIES  */

#comodities {
    position: relative;
}

#comodities .franja {
    height: 30rem;
    width: 100%;
    background-color: #5D58C6;
    z-index: -2;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#comodities .container {
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    background-color: rgba(255, 255, 255, 0.8);
    /* min-height: 60rem; */
    padding: 6rem 4rem;
}

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

#comodities .container .top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

#comodities .container .top figure {
    width: 5rem;
}

#comodities .container .top h2 {
    text-align: center;
    color: #5D58C6;
}

#comodities .container .bottom {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10rem;
    justify-content: space-around;
    row-gap: 5rem;
}

.comodity {
    flex-basis: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.comodity p {
    text-align: center;
    color: #5D58C6;
    width: 60%;
}

.comodity figure {
    /* width: 3rem; */
    height: 3.5rem;
}

.comodity figure img {
    object-fit: contain;
}

#comodities .contenedor {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5rem;
    row-gap: 10rem;
    justify-content: center;
    align-items: center;
}

#comodities .contenedor .button {
    flex-basis: 50rem;
    box-shadow: 4px 4px 1rem 0px rgba(0, 0, 0, 0.7);
}

/* COMODITIES  */

.banner1 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding);
}

.banner1>figure {
    width: 50rem;
}

.banner1 .franja {
    height: 35rem;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.banner1 .franja .contenedor {
    position: relative;
    height: 100%;
}

.banner1 .franja .contenedor::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(91, 208, 102, 0.8);
    z-index: 1;
}

.banner1 h2 {
    color: white;
    font-size: 5rem;
}

/* CONTACTO  */

#contacto {
    background-color: #5D58C6;
    height: 60vh;
    align-content: center;
    margin-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#contacto h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: capitalize;
    width: 60rem;
    max-width: 100%;
    margin: var(--center);
    font-weight: 800;
    margin-bottom: 4rem;
    border-bottom: 2px solid white;
}

#contacto>.button {
    width: 30rem;
    height: 5rem;
    margin: var(--center);
    margin-top: 5rem;
    color: #5D58C6;
}

#contacto-info {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#contacto-info .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    row-gap: 10rem;
    justify-content: center;
}

#contacto-info .container .campus {
    border-radius: 2rem;
    padding: 4rem;
    background-color: #5D58C6;
    color: white;
    flex-basis: 50rem;
    max-width: 100%;
}

#contacto-info h3 {
    font-size: 2.2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
}

#contacto-info p {
    font-size: 1.6rem;
    text-align: center;
    margin: 1rem 0;
}


#formulario-contacto h2 {
    text-align: center;
}

#formulario-contacto>p {
    font-size: 2.2rem;
    color: #5D58C6;
    text-align: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid;
}

form {
    width: var(--width);
    margin: var(--center);
    margin-top: 10rem;
}

form .datos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

input,
textarea,
select {
    border: solid 1px #5D58C61A;
    outline: none;
    background: #5D58C61A;
    border-radius: 3rem;
    color: #5D58C6;
    font-size: 1.6rem;
	padding:0 0.9rem;
	transition: all 0.3s ease-in-out;
}
input:focus,
textarea:focus,
select:focus {
	border-color: #5D58C6;
}

input,
select {
    text-indent: 1rem;
    height: 5rem;
    flex-basis: 40rem;
    flex-grow: 1;
}

textarea {
    flex-basis: 100%;
    width: 100%;
    height: 20rem;
    resize: none;
    padding: 1rem;
}

button {
    border: none;
    cursor: pointer;
}

form .button {
    width: 20rem;
    border-radius: 3rem;
}

::placeholder,
option {
    font-size: 1.6rem;
    font-family: sans-serif;
    color: #5D58C6;
    text-align: center;
}

.no-spinners::-webkit-inner-spin-button,
.no-spinners::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-spinners {
    -moz-appearance: textfield;
}

form p {
    text-align: center;
    color: #5D58C6;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    font-size: 2.2rem;
    margin-bottom: 5rem;
}

form p.nb {
    border: none;
}

.medio-contacto,
.cita {
    margin: var(--center);
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 70rem;
    max-width: 100%;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.radio-opt input {
    height: 2rem;
    flex-basis: 2rem;
    flex-grow: 0;
}

.radio-opt label {
    font-size: 1.6rem;
    color: #5D58C6;
}

.form-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
}

.form-bottom a {
    text-decoration: underline;
    font-size: 1.6rem;
}

/* CONTACTO  */

/* FOOTER  */

footer {
    background: #5D58C6;
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.footer-logo {
    width: 21rem;
}

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

footer h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

footer .top a,
footer .top p {
    font-size: 1.3rem;
    color: white;
    text-decoration: underline;
    margin: 0.5rem 0;
}

footer .top>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 40rem;
}

footer .top>div ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

footer .top>div ul li a {
    font-size: 1.5rem;
}

footer .iconos-redes {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

footer .iconos-redes img {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
}

footer .cita p {
    max-width: 25rem;
    text-align: center;
}

footer .bottom {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .bottom img {
    width: 2.2rem;
}

footer .bottom p {
	font-size: 1.2em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* FOOTER  */


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

    #faqs .container::after {
        height: 110%;
        bottom: -5%;
        left: -2rem;
    }

}

@media screen and (max-width: 820px) {
    nav>a:first-child h3 {
        font-size: 1.2rem;
    }

    nav>a:first-child p {
        font-size: 1rem;
    }

    header .nombre {
        max-width: 20rem;
    }
}


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



    header .menu {
        position: absolute;
        top: 100%;
        background-color: rgba(255, 255, 255, 1);
        width: 100vw;
        left: -2rem;
        display: flex;
        flex-direction: column;
        display: none;
        height: fit-content;
        border-bottom: 2px solid rgba(193, 193, 193, 1);
    }

    header .menu li {
        text-align: center;
        margin: 2rem 0;
    }

    header nav>a {
        display: block;
    }

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

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

}

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

    header figure,
    header picture {
        height: 8rem;
    }

    header figure img, header picture img {
        object-fit: contain;
    }

    .dropdown {
        width: 100vw;
        transform: translateX(35%);
        background-color: #5D58C6;
        top: 150%;
    }

    .dropdown li:first-of-type {
        margin-top: 0;
    }

    .dropdown li:last-of-type {
        margin-bottom: 0;
    }

    #maternal #owl-hero .item {
        height: 50rem;
    }

    #owl-hero .item.background figure {
        display: none;
    }

    #hero h1 {
        font-size: 3.5rem;
    }

    #hero h2 {
        font-size: 2rem !important;
    }

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

    .banner-hero {
        flex-wrap: wrap;
        border-radius: 0;
        padding: 2rem 1rem;
        height: fit-content;
        row-gap: 1rem;
    }

    .banner1 {
        margin-bottom: 10rem;
    }

    .banner1 .franja {
        height: 100%;
    }

    .banner-hero a {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 6rem;
    }

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

    #servicios .servicio {
        flex-grow: 1;
    }

    .banner2 figure {
        display: none;
    }

    #extras video {
        max-width: 100%;
        aspect-ratio: 1;
    }

    #team .glide__bullet {
        background-color: var(--gray);
        width: 3.5rem;
        height: 1.75rem;
        border-radius: 0.5rem;
    }

    footer {
        padding-bottom: 1rem;
    }

    footer .top {
        justify-content: center;
    }

    #contacto-info .container .campus {
        padding: 2rem 1rem;
    }
	
	.whatsapp {
    	width: 20rem;
    	height:7rem;
    	bottom: 12vh;
	}
	.whatsapp img {
    	width: 4.2rem;
    	height:4.2rem;
	}
	
	.portaWhats svg {
		width: 51px;
	}

}



@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);
    }

}


@keyframes bounceInRightCustom {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes customPulse {
    0% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    50% {
        -webkit-transform: scaleY(1.2);
        -ms-transform: scaleY(1.2);
        transform: scaleY(1.2);
    }

    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes customPulseClose {
    0% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    50% {
        -webkit-transform: scaleY(0.85);
        -ms-transform: scaleY(0.85);
        transform: scaleY(0.85);
    }

    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}