
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100&display=swap');

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

body{
    font-family: 'Poppins', sans-serif;
    background: #040539;
    overflow-x: hidden;
}

.container{
    max-width: 70rem;
    padding: 0 2rem;
    margin: 0 auto;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}

header .brand {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}


header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
}


nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 30;
    background: linear-gradient(to bottom, rgba( 0, 0, 0, 0.05), transparent)
}

nav .container{
    display: flex;
    align-items: center;
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    align-items: center;
    justify-content: center;
}

.logo span{
    font-weight: 900;
}

.hamburger-menu{
    width: 1.55rem;
    height: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bar{
    position: relative;
    width: 1.2rem; 
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.bar:before, .bar:after{
    content: '';
    position: absolute;
    width: 1.55rem;
    height: 3px;
    right: 0;
    background-color: #fff;
    border-radius: 2px;
}

.bar:before{
    transform: translateY(-8px);
}

.bar:after{
    transform: translateY(8px);
}

@keyframes animate {
    0%{
        color: #fff;
        filter: blur(2px) hue-rotate(0deg);
        text-shadow: 0 0 10px #00b3ff,
        0 0 20px #00b3ff,
        0 0 40px #00b3ff,
        0 0 80px #00b3ff,
        0 0 120px #00b3ff,
        0 0 200px #00b3ff,
        0 0 300px #00b3ff,
        0 0 400px #00b3ff;
    }

    30%, 70%{
        color: #fff;
        filter: blur(2px) hue-rotate(360deg);
        text-shadow: 0 0 10px #00b3ff,
        0 0 20px #00b3ff,
        0 0 40px #00b3ff,
        0 0 80px #00b3ff,
        0 0 120px #00b3ff,
        0 0 200px #00b3ff,
    }

    100%{
        color: transparent;
        box-shadow: none;
        filter: blur(2px) hue-rotate(0deg);
    }
}


@keyframes middle {
    0%   {transform: scale(.6);}
    100% {transform: scale(1);}
  }


@media(max-width: 1000px){

   

    header {
        padding: 12px 20px;
    }

    .text{
        font-size: .8rem;
    }

    .title{
        font-size: 1.2rem;
    }

    header .navigation {
        display: none; 
    }

    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1,1,1,0.5); 
    }

    header .navigation .navigation-items a {
        color: #1022ab;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before{
        background: #1022ab;
        height: 5px;
    }

    header .navigation.active .navigation-items{
        background: #ffffff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(1 1 1 / 20%);
    }

    .menu-btn {
        background: url(icons/menu.png) no-repeat;
        background-size: 40px;
        background-position: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: 0.3s ease;   
    }

    .menu-btn.active {
        z-index: 999;
        background: url(icons/close.webp) no-repeat;
        background-size: 40px;
        background-position: center;
        transition: 0.3s ease;
    }

    .maps {
        width: 60%;
        max-width: calc(100% - 20px);
    }

    
}


.content-info {
    display: flex;
    justify-content: space-around;
    padding: 0 50px 0 50px; 
    align-items: center;
    overflow: hidden;
}

.content-info img {
    width: 50%;
    bottom: 0;
}


@media(max-width: 1000px){

    .content-info {
        flex-direction: column;
    }

    .content-info img {
        width: 100%;
    }

    .original-button{
        right: 20px;
    }
    
}

/*Whatsapp button style*/

#whatsapp a{
    position: fixed;
    transform: all .5s ease;
    background: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    bottom: 15px;
    right: 15px;
    border: 0;
    z-index: 999999;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#whatsapp .wtsapp:before {
    content: '';
    position: absolute;
    z-index: -1;
    right: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation:pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.pulse {
    animation: pulse-animation 2s infinite;
  }

  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 255, 26, 0.8);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(12, 255, 20, 0);
    }
  }



.location{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 50px;
    text-align: center;
    overflow: hidden;
}

section {
    overflow: hidden;
}

section h1 {
    font-size: 30px;
    padding: 10px;
}


.maps {
    width: 600px;
    height: 300px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    max-width: calc(100% - 20px);
}

.companies{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 50px;
    text-align: center;
    overflow: hidden;
}

.company-icons{
    flex-flow: column wrap-reverse;
    align-items: center;
    justify-content: center;
}

.logos-company {
    width: 130px;
    border-radius: 10px;
    margin: 10px;
}

.info-curse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    overflow: hidden;
}



/*style about opinion students*/

.card {
    position: relative;
    background: #f3f3f3;
    border-radius: 20px;
    height: 460px;
    width: 296px;
    -webkit-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
-moz-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
    margin: 10px;
}

.card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.card .image {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    -webkit-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
-moz-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
}

.card .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
}

.box1 {
    position: absolute;
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
    background: rgb(2,63,201);
background: radial-gradient(circle, rgba(2,63,201,1) 0%, rgba(0,25,87,1) 100%);
}

.box2 {
    position: absolute;
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
    background: rgb(2,63,201);
background: radial-gradient(circle, rgba(2,63,201,1) 0%, rgba(0,25,87,1) 100%);
}

.box3 {
    position: absolute;
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
    background: rgb(2,63,201);
background: radial-gradient(circle, rgba(2,63,201,1) 0%, rgba(0,25,87,1) 100%);
}

.box4 {
    position: absolute;
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
    background: rgb(2,63,201);
background: radial-gradient(circle, rgba(2,63,201,1) 0%, rgba(0,25,87,1) 100%);
}

.card .students-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.card .students-name .name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    font-weight: bold;
}

.card .students-name .level {
    font-size: 12px;
    font-weight: 500;
    color: #222;

}

.card .rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.card .rating i{
    font-size: 18px;
    margin: 0 2px;
    color: #ffd000;
}

.card .about {
    display: flex;
    font-size: 10px;
    text-align: center;
    color: #222;
    margin-top: 20px;
    margin-bottom: 5px;
}

.cardsection {
    position: relative;
    width: 100%;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.swiper {
    width: 950px;
}

.card .btn {
    background: #ff0f5f;
    outline: none;
    border: none;
    width: 100px;
    height: 30px;
    color: #ffffff;
    padding: 10px 25x;
    border-radius: 7px;
    font-size: 15px;
    margin-top: 10px;
    -webkit-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.46);
-moz-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.46);
box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.46);
}

.content-video .btn {
    background: #ff0f5f;
    position: absolute;
    outline: none;
    border: none;
    width: 100px;
    height: 30px;
    top: 10px;
    right: 10px;
    color: #ffffff;
    border-radius: 7px;
    font-size: 15px;
    -webkit-box-shadow: 8px 3px 32px -6px rgba(0,0,0,0.75);
-moz-box-shadow: 8px 3px 32px -6px rgba(0,0,0,0.75);
box-shadow: 8px 3px 32px -6px rgba(0,0,0,0.75);
}


/*style about opinion students*/


#sub1 {
position: fixed;
z-index: 99999;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: none;
}

#sub2 {
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    }

#sub3 {
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    }

#sub4 {
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    }

#sub1 .content-video {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #22222284 ;
    backdrop-filter: blur(20px);
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#sub2 .content-video {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #22222284 ;
    backdrop-filter: blur(20px);
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#sub3 .content-video {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #22222284 ;
    backdrop-filter: blur(20px);
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#sub4 .content-video {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #22222284 ;
    backdrop-filter: blur(20px);
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.student-video input {
    right: 30px;
}

.student-video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.student-video video {
    width: 75%;
    height: auto;
    border: 3px solid #2222228e;
    border-radius: 10px;
}




@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


.cards-list {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.option-card {
    width: 250px;
    height: 350px;
    border-radius: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: 10px;
    overflow:scroll;
    -webkit-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
    -moz-box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
    box-shadow: 10px 10px 21px -10px rgba(0,0,0,0.31);
    overflow: hidden;

    /* Grow, Shrink and Basis */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;

    /* Or shorthand */
    flex: 1 1 auto;
}

.option-card h1 {
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
}

.option-card p {
    color: #fff;
    font-size: 14px;
    padding: 10px;
}

.option-card img{
    padding: 10px;
    width: 150px;
    height: auto;
}



/*animacion de email*/

.quadrado {
    margin: -10px;
     animation: small 1.7s alternate infinite ease-in;
   }
   
   .quadrado2 {
     margin: -10px;
      animation: middle 1.5s alternate infinite ease-in;
    }
 
    .quadrado3 {
     margin: -10px;
      animation: big 1.9s alternate infinite ease-in;
    }
 
   @keyframes small {
     0%   {transform: scale(.4);}
     100% {transform: scale(1.2);}
   }
 
   @keyframes middle {
     0%   {transform: scale(.6);}
     100% {transform: scale(1.4);}
   }
 
   @keyframes big {
     0%   {transform: scale(.8);}
     100% {transform: scale(1.6);}
   }


   .cloud {
    margin: -10px;
     animation: little 4s alternate infinite ease-in;
   }

   @keyframes little {
    0%   {transform: scale(.9);}
    100% {transform: scale(1.1);}
  }


   .homepage{
    height: 100vh;
    background-image: url(images/may2025.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
   }


   img {
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
 }


 .noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }
 

  /*background*/




.area{  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    z-index: -1;
    position: fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



/*Home button*/

.original-button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px;
    width: 200px;
    height: 40px;
    font-weight: bold;
    border-bottom: 4px solid #179e43;
    transition: 0.3s;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
    background-color: #19d256;
    z-index: 10;
    position: absolute;
    top: 100px;
    border: none;
  }
  
  .original-button:hover {
    box-shadow: 0 0 rgba(0, 0, 0, 0.4);
    border-bottom-width: 2px;
    transform: translateY(2px);
  }




  /* email form css*/

  .containerem{
    background-color: #110e49;
    font-family: 'Poppins', sans-serif;
	width: 350px;
	border-radius: 15px;
	padding: 5px;
	text-align: center;
    margin: 20px;
	color: #110e49;
}
.containerem input{
	background-color: #f7f7f7;
	width: 90%;
	padding: 10px;
	border: none;
    border-radius: 50px;
	/*border-bottom: 2px solid #777777;*/
	margin-bottom: 10px;
	font-size: 1rem;
	outline: none;
}
.btnem{
	border: none !important;
	cursor: pointer;
	background-color: #f65f5f;
	margin: 5px;
	font-size: 1rem;
	width: 90%;
	padding: 14px;
    color: #fff;
    font-weight: 300;
    border-radius: 50px;
}
.btnem:hover{
	background-color: #cc0a0a;
	color: white;
}

textarea {
	background-color: #f7f7f7;
    width: 90%;
    height: 80px;
      padding: 5px;
      border: none;
    border-radius: 10px;
    margin: 10px;
	font-size: 1rem;
      outline: none;
      font-family: 'Poppins', sans-serif;
  }


  .containerem h1 {
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 4rem;
	margin: 10px;
	line-height: 35px;
  }


  a.my-button{
    background: linear-gradient(to right,#e71818 ,#fb0b0b);
    background-color: #e71818;
    color: #fff;
    font-family: Trebuchet MS;
    font-size: 18px;
    font-weight: 800;
    font-style: normal;
    text-decoration: none;
    width: 200px;
    padding: 14px 15px;
    border: 0px solid #000;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
   }
   a.my-button span{
    margin-right: 15px;
    display: block;
    width: 29px;
    height: 29px;
    background-image: url(icons/inglesuniversal_rounded_1024.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(0deg);
   }
   a.my-button:hover{
    background: linear-gradient(to right,#6b0505 ,#6e0c0c);
    background-color: #ea5454;
   }
   a.my-button:active{
    transform: scale(0.95);
   }


   /*Whatsapp button style*/

#whatsapp a{
    position: fixed;
    transform: all .5s ease;
    background: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    bottom: 15px;
    right: 15px;
    border: 0;
    z-index: 999999;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#whatsapp .wtsapp:before {
    content: '';
    position: absolute;
    z-index: -1;
    right: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation:pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}