@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --bg-color: #001a0b;
  --second: #002F14;
  --shadow: #00933F;
  --light-green: #51C285;
}

.row {
  display: flex;
  flex-direction: row;
}

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

.button {
  display: flex;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid var(--light-green);
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  color: var(--light-green);
  transition: 0.2s;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: 0px 0px 15px rgba(81, 194, 134, 0.4745098039);
  align-items: center;
}
.button i {
  color: var(--light-green);
  transition: 0.2s;
}
.button img {
  border: transparent 1px solid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: 0.2s;
}

.button:hover {
  background-color: var(--light-green);
  color: var(--bg-color);
}
.button:hover i {
  color: var(--bg-color);
}
.button:hover img {
  border-color: var(--bg-color);
}

* {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  color: white;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-los {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1050px;
}

@keyframes mouse {
  0% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(0px);
  }
  45% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  55% {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(10px);
  }
  65% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
header {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 30px;
  align-items: center;
}
header .scroll {
  width: 35px;
  animation: mouse 4s ease infinite;
  padding: 5px;
  border-radius: 30px;
  transition: 0.2s;
  cursor: pointer;
}
header .scroll:hover {
  background-color: var(--bg-color);
}
header img {
  width: 200px;
}
header h1 {
  font-size: clamp(20px, 5vw, 50px);
  text-align: center;
  font-weight: 400;
}
header h1 span {
  font-size: 35px;
}
header .desc {
  margin-top: -30px;
  text-align: center;
  max-width: 500px;
  font-size: 20px;
}

main {
  max-width: 2300px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.fu-action {
  width: 100%;
  max-width: 1500px;
  align-items: center;
  gap: 15px;
}
.fu-action img {
  width: 100%;
  max-width: 700px;
}

.co-courses {
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}
.co-courses .row {
  flex-wrap: wrap;
  align-items: center;
}
.co-courses .row .course-img {
  width: 100%;
  max-width: 400px;
}
.co-courses .row .column {
  align-items: start;
  gap: 10px;
  max-width: 580px;
  width: 100%;
}
.co-courses .row .column .format {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 5px 15px 5px 15px;
  font-size: 15.19px;
  border-radius: 20px;
  border: 2px solid var(--second);
}
.co-courses .row .column .format .ball {
  background-color: #FF0000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #FF9292;
}
.co-courses .row .column h1 {
  filter: drop-shadow(0px 0px 20px var(--shadow));
  font-weight: 400;
  font-size: clamp(20px, 5vw, 32px);
}
.co-courses .row .column p {
  font-size: 16px;
}

.in-happy {
  z-index: 2;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1000px;
}
.in-happy h1 {
  font-weight: 400;
  font-size: 40px;
  text-align: center;
}
.in-happy p {
  font-size: 20px;
  text-align: center;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-image: linear-gradient(to top, #01381A, transparent);
  margin-top: 100px;
  padding: 20px;
}
footer img {
  max-width: 150px;
}
footer .row {
  width: 100%;
  justify-content: center;
  gap: 6px;
  align-items: start;
  flex-wrap: wrap;
}
footer p {
  display: flex;
  align-items: start;
  text-align: center;
  flex-direction: row;
  gap: 6px;
}
footer a {
  max-width: 70px;
  width: 100%;
  height: 25px;
  background-image: url("../assets/img/logo_room.png");
  background-size: cover;
}

@media (min-width: 2800px) {
  .in-happy {
    margin-top: 0px !important;
  }
}
@media (max-width: 1024px) {
  .co-courses .row {
    justify-content: center;
  }
  .co-courses .row .column {
    align-items: center !important;
  }
  .co-courses .row .column h1 {
    text-align: center !important;
  }
  .am-shape .pc-row {
    display: none;
  }
  .am-shape .actual-row {
    display: flex;
  }
}
@media (max-width: 768px) {
  main {
    gap: 80px;
  }
  .co-courses {
    margin-top: -120px !important;
  }
}/*# sourceMappingURL=style.css.map */