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

.link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.link-container .bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/img/link.png");
  background-size: cover;
  width: 400px;
  height: 400px;
}
.link-container .bg h1 {
  font-size: clamp(10px, 6vw, 45px);
  font-weight: 400;
  text-align: center;
}
.link-container a {
  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;
}
.link-container a i {
  color: var(--light-green);
  transition: 0.2s;
}
.link-container a:hover {
  background-color: var(--light-green);
  color: var(--bg-color);
}
.link-container a:hover i {
  color: var(--bg-color);
}

.in-top {
  margin-top: 100px;
  max-width: 1000px;
  align-items: center;
  gap: 15px;
}
.in-top img {
  width: 100%;
  max-width: 400px;
}
.in-top h1 {
  font-size: 36px;
  text-align: center;
  margin-top: -150px;
}
.in-top p {
  font-size: 20px;
  text-align: center;
}

.in-text {
  max-width: 1000px;
  align-items: center;
  gap: 15px;
}
.in-text p {
  font-size: 20px;
  text-align: center;
}
.in-text h1 {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5));
}

.in-note {
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.in-note .column {
  gap: 10px;
  max-width: 500px;
}
.in-note .column h1 {
  font-weight: 600;
  font-size: 40px;
  text-align: end;
}
.in-note .column p {
  font-size: 20px;
  text-align: end;
}
.in-note img {
  width: 100%;
  max-width: 530px;
}

.in-serv {
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.in-serv span {
  font-size: 36px;
  text-align: center;
}
.in-serv h1 {
  font-weight: 700;
  font-size: clamp(50px, 5vw, 120px);
  text-align: center;
  color: transparent;
  background-image: url(../assets/img/bee.png);
  background-size: cover;
  background-attachment: fixed;
  -webkit-background-clip: text;
          background-clip: text;
}
.in-serv p {
  max-width: 670px;
  text-align: center;
  font-size: 31.37px;
}

.happy-img {
  max-width: 2300px;
  width: 100%;
  margin-top: 100px;
  z-index: -1;
}

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

.fu-action {
  width: 100%;
  max-width: 1500px;
  align-items: center;
  gap: 15px;
}
.fu-action img {
  width: 100%;
  max-width: 700px;
}
.fu-action h1 {
  margin-top: -100px;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
}
.fu-action .row {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.fu-action .row .card {
  max-width: 440px;
  border: 1px solid #002F14;
  padding: 15px;
  border-radius: 20px;
}
.fu-action .row .card .content {
  padding: 20px;
  border-radius: 20px;
  background-color: #002F14;
  box-shadow: 0px 0px 40px #00933F;
  gap: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fu-action .row .card .content h1 {
  text-align: center;
  font-size: clamp(15px, 5vw, 26.33px);
  font-weight: 700;
  margin-top: 0;
}
.fu-action .row .card .content p {
  font-size: 13.16px;
  text-align: center;
}

.fu-sucess {
  width: 100%;
  align-items: center;
}
.fu-sucess img {
  width: 100%;
}
.fu-sucess h1 {
  margin-top: -10vw;
  font-weight: 400;
  text-align: center;
  font-size: 36px;
}
.fu-sucess h1 b {
  font-size: clamp(30px, 15vw, 75px);
  filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.428));
}
.fu-sucess .row {
  margin-top: 50px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.fu-sucess .row .card {
  max-width: 450px;
  display: flex;
  flex-direction: row;
  align-items: start;
  position: relative;
}
.fu-sucess .row .card img {
  z-index: -1;
  position: absolute;
  top: -35px;
  left: -80px;
  width: 200px;
}
.fu-sucess .row .card span {
  font-size: clamp(60px, 12vw, 100px);
  font-weight: 700;
}
.fu-sucess .row .card p {
  margin-top: 70px;
  margin-left: -28px;
}
.fu-sucess .button {
  margin-top: 100px;
}
.fu-sucess .button img {
  width: 25px;
}

.half-con {
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: -100px;
}
.half-con img {
  position: absolute;
  width: 100%;
  max-width: 600px;
  right: -20px;
  top: -560px;
}

.am-shape {
  width: 100%;
  max-width: 1800px;
  align-items: center;
  gap: 15px;
}
.am-shape .actual-row {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.am-shape .shape {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  height: 400px;
  background-image: url(../assets/img/los.png);
  background-size: cover;
  background-position: center center;
  gap: 5px;
}
.am-shape .shape h1 {
  font-weight: 700;
  font-size: clamp(30px, 5vw, 41.8px);
  text-align: center;
}
.am-shape .shape p {
  max-width: 80%;
  font-size: 20.9px;
  text-align: center;
}

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

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;
  }
  .fu-sucess h1 {
    margin-top: 0px;
  }
}
@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;
  }
  .gear-img {
    margin-top: 0px !important;
  }
}
@media (max-width: 768px) {
  main {
    gap: 80px;
  }
  .co-courses {
    margin-top: -120px !important;
  }
  .half-con {
    display: none;
  }
  .link-container {
    margin-top: 50px !important;
  }
  .link-container .bg {
    width: 300px;
    height: 300px;
  }
  .fu-sucess .row .card p {
    margin-top: 8vw;
    margin-left: -18px;
  }
  .fu-sucess .button {
    margin-top: 100px;
  }
  .fu-sucess .button img {
    width: 25px;
  }
}
@media (max-width: 425px) {
  .fu-sucess .row .card p {
    margin-top: 40px;
    margin-left: -18px;
  }
}/*# sourceMappingURL=style.css.map */