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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: rgb(38, 38, 38);
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
  background-color: rgba(136, 136, 136, 0.427);
  backdrop-filter: blur(10px);
}

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%;
}

/* some features*/

.hidden {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1.2s ease-out;
}

.show {
  transform: scale(1);
  opacity: 1;
}

.company-icons img {
  width: 80px;
  border-radius: 10px;
  margin: 20px;
}

.badges {
  display: flex;
  align-items: top;
  flex-direction: row;
}

.badges img {
  margin: 10px;
}

.badges a {
  text-decoration: none;
  color: #ffffff;
  cursor: ponter;
  font-size: 12px;
}

.tinny-text p {
  font-size: 12px;
  margin-bottom: 2px;
  margin-left: 20px;
}

/*Whatsapp button style*/

#whatsapp a {
  position: fixed;
  transform: all 0.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);
  }
}

@media (max-width: 1090px) {
  header {
    padding: 12px 20px;
  }

  .info-sec {
    padding: 12px 20px;
    overflow: hidden;
  }

  .home .media-icons {
    right: 16px;
  }

  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: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before {
    background: #222;
    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.webp) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

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

  .badges {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  #sub3 .content-video video {
    width: 95%;
  }

  .text-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .text-box1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }

  .info-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }

  footer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .paralax img#cloudsplane {
    width: 1100px;
    top: 10px;
  }

  .paralax img#city {
    width: 1000px;
    top: 80px;
  }

  .paralax img#models {
    width: 1000px;
    left: -500px;
  }

  .paralax img#logo {
    width: 900px;
    left: -200px;
  }

  .paralax img#clouds {
    width: 1000px;
  }
}

section {
  overflow: hidden;
}

.paralax {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(images/background.webp);
  overflow: hidden;
}

.paralax img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.paralax img#city {
  transform: translateY(-20px);
}

.paralax img#clouds {
  mix-blend-mode: screen;
}

#text {
  position: absolute;
  font-size: 5em;
  font-weight: 900;
  color: #fdf800;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 85px;
  margin-bottom: 40px;
  text-shadow: rgb(42, 42, 42) 2px 0 10px;
  text-transform: uppercase;
  top: 10%;
  padding: 40px;
  text-align: center;
}

.info-sec {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 90px;
  transition: 0.5s ease;
}

.info-sec h2 {
  color: #ffffff;
  font-size: 2em;
  text-align: center;
  margin: 20px;
}

.info-sec p {
  color: #ffffff;
  font-size: 1em;
  margin: 50px;
}

.text-box {
  display: flex;
}

.text-box1 {
  display: flex;
  justify-content: center;
}

/*style about opinion students*/

.card {
  position: relative;
  border-radius: 20px;
  height: 460px;
  width: 296px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  overflow: scroll;
}

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

.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: 14px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

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

.swiper {
  width: 550px;
  height: 450px;
}

.cardsection h2 {
  font-size: 2em;
  text-align: center;
  margin: 20px;
}

.cardsection p {
  font-size: 1em;
  margin: 20px;
}

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

.wrapper {
  width: 330px;
  padding: 2rem 1rem;
  margin: 50px auto;
  background-color: #00c8ff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.wrapper h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

form input {
  width: 92%;
  outline: none;
  border: 1px solid #fff;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: #f6f6f6;
}

button {
  font-size: 1rem;
  margin-top: 1.8rem;
  padding: 10px 0;
  border-radius: 20px;
  outline: none;
  border: none;
  width: 90%;
  background: #fb5a4c;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #cd0000;
}

input:focus {
  border: 1px solid rgba(192, 192, 192);
}

.terms {
  margin-top: 0.2rem;
  color: #fff;
}

.terms input {
  height: 1em;
  width: 1em;
  vertical-align: middle;
  cursor: pointer;
}

.terms label {
  font-size: 0.7rem;
}

.terms a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.info-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.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(0.4);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes middle {
  0% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1.4);
  }
}

@keyframes big {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.6);
  }
}

/* best option card css*/

.option-card {
  width: 250px;
  height: 300px;
  border-radius: 30px;
  color: #fff;
  background-color: #17c9ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
  overflow: scroll;
}

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

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

footer {
  display: flex;
  padding: 20px;
  background-color: #f6f6f6;
  align-items: center;
  justify-content: space-between;
}

.text-leyCont {
  width: 300px;
  right: 0;
  flex: end;
}

footer .text-leyCont p {
  left: 0;
  font-size: 12px;
  text-align: right;
  color: #110e49;
}
