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

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 60%;
  }
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.btn-dark {
  padding: 1.6rem 3.2rem;
  border-radius: 2.4rem;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  background: #023047;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-dark:hover {
  background: #da722c;
}
.btn-dark img {
  padding-right: 1rem;
}

.btn-light {
  padding: 1.6rem 3.2rem;
  border-radius: 2.4rem;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  background: #da722c;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-light:hover {
  background: #023047;
}
.btn-light img {
  padding-right: 1rem;
}

.header {
  background: linear-gradient(180deg, #6f7dfb, #26308c 100%);
  height: 100vh;
  width: 100%;
  padding: 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .header {
    padding: 0 3.5rem;
    height: 100% !important;
  }
}
@media screen and (max-width: 576px) {
  .header {
    padding: 0 2rem;
  }
}
.header__navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.header__brand {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #fff;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 992px) {
  .header__nav-list {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #6f7dfb;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    z-index: 100;
  }
}
.header__nav-link {
  list-style: none;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.header__nav-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-toggle {
    display: block;
    color: #023047;
    background: none;
    border: none;
  }
}
.header__hero {
  display: flex;
  gap: 2rem;
  padding-top: 8rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__hero {
    flex-direction: column;
  }
}
.header__hero-title {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: #fff;
}
.header__hero-description {
  font-size: 1.6rem;
  color: #fff;
  padding-top: 1.5rem;
  line-height: 2;
  max-width: 50rem;
}
.header__btn {
  margin-top: 2.5rem;
}
.header__hero-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonials {
  padding: 10rem 5rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 992px) {
  .testimonials {
    flex-direction: column-reverse;
    padding: 7 3.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .testimonials {
    padding: 5rem 2rem;
  }
}
.testimonials__left {
  flex: 1 1 45%;
}
.testimonials__container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonials__card-1 {
  background: #ffffff;
  box-shadow: 0px 9px 36px rgba(0, 0, 0, 0.2);
  border-radius: 2.4rem;
  max-width: 44.2rem;
}
@media screen and (max-width: 992px) {
  .testimonials__card-1 {
    max-width: 100%;
  }
}
.testimonials__card-2 {
  margin: 5rem 3.2rem;
  background: #ffffff;
  box-shadow: 0px 9px 36px rgba(0, 0, 0, 0.2);
  border-radius: 2.4rem;
  max-width: 44.2rem;
}
@media screen and (max-width: 992px) {
  .testimonials__card-2 {
    margin: 5rem 0;
    max-width: 100%;
  }
}
.testimonials__line {
  position: absolute;
  width: 2.8rem;
  height: 51rem;
  border-radius: 2.4rem;
  background-color: #023047;
  z-index: -1;
  margin-top: -3.5rem;
  margin-left: 8.7rem;
}
@media screen and (max-width: 992px) {
  .testimonials__line {
    margin-top: -2.5rem;
    height: 45rem;
  }
}
@media screen and (max-width: 576px) {
  .testimonials__line {
    height: 47.5rem;
  }
}
.testimonials__top-blue {
  padding: 2.4rem 3.2rem;
  background: #6f7dfb;
  border-radius: 2.4rem;
}
.testimonials__top-orange {
  padding: 2.4rem 3.2rem;
  background: #da722c;
  border-radius: 2.4rem;
}
.testimonials__review {
  font-size: 1.8rem;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}
.testimonials__bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 3.2rem;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials__name {
  font-size: 2.4rem;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: #023047;
  line-height: 1.2;
}
.testimonials__department {
  font-size: 1.8rem;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: #023047;
  line-height: 1.2;
}
.testimonials__img img {
  margin-top: -1.2rem;
  width: 10rem;
}
.testimonials__right {
  flex: 1 1 45%;
  align-items: center;
  margin: auto;
}
.testimonials__title {
  font-size: 6rem;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: #023047;
}
.testimonials__description {
  font-size: 1.6rem;
  font-weight: 400;
  color: #023047;
  line-height: 2;
  padding: 1rem 0;
}
.testimonials__btn {
  margin-top: 1rem;
}
@media screen and (max-width: 992px) {
  .testimonials__btn {
    display: none;
  }
}
.testimonials__btn-lg {
  display: none;
}
@media screen and (max-width: 992px) {
  .testimonials__btn-lg {
    display: flex;
    max-width: 17rem;
    margin-left: auto;
  }
}

.courses {
  background: linear-gradient(180deg, #6f7dfb, #26308c 100%);
  padding: 0 5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 992px) {
  .courses {
    padding: 0 3.5rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .courses {
    padding: 0 2rem;
    padding-bottom: 3rem;
  }
}
.courses__header {
  display: flex;
  justify-content: center;
  padding: 6rem 0;
}
.courses__head {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: #fff;
}
.courses__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .courses__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .courses__container {
    grid-template-columns: 1fr;
  }
}
.courses__box {
  background: #fff;
  border-radius: 2.4rem;
  box-shadow: 0px 9px 36px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .courses__box {
    max-width: 100%;
  }
}
.courses__image {
  padding: 0 2.6rem;
  margin-top: -5px;
}
.courses__image img {
  border-radius: 2.4rem;
  width: 100%;
  height: auto;
}
.courses__content {
  padding: 3rem 3.2rem;
  display: flex;
  justify-content: space-between;
}
.courses__title {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #023047;
  line-height: 1.5;
}
.courses__hour {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #023047;
  line-height: 1.5;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.courses__hour img {
  max-width: 1.6rem;
}
.courses__line {
  height: 0.8rem;
  background: #023047;
  margin: 0 3.2rem;
  border-radius: 2.4rem;
  margin-top: auto;
}
.courses__btn {
  margin-top: 7rem;
  display: flex;
  justify-content: center;
  max-width: 17rem;
  margin-left: auto;
}

.app {
  padding: 10rem 0;
  display: flex;
  text-align: center;
  justify-content: center;
}
.app__container {
  width: 100%;
  padding: 0 5rem;
}
.app__title h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: #023047;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .app__title h1 {
    font-size: 3rem;
  }
}
.app__description {
  padding-top: 1.3rem;
  font-weight: 400;
  font-size: 1.6rem;
  color: #023047;
  line-height: 2;
}
.app__box-container {
  display: flex;
  gap: 3rem;
  text-align: center;
  justify-content: center;
  padding-top: 4.5rem;
}
@media screen and (max-width: 576px) {
  .app__box-container {
    flex-direction: column;
  }
}
.app__box {
  display: flex;
  background: #000;
  padding: 2rem 7rem 2rem 3rem;
  gap: 1.4rem;
}
.app__image {
  width: 6rem;
}
.app__upload {
  font-weight: 400;
  font-size: 2.4rem;
  color: #fff;
  line-height: 2;
  margin: auto 0;
}

.footer {
  padding: 5rem;
  background: #070917;
  color: #fff;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  padding: 7rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .footer__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer__navbar, .footer__course, .footer__contact {
    text-align: center;
  }
}
.footer__title {
  font-weight: 700;
  font-size: 2rem;
  color: #da722c;
  margin-bottom: 2rem;
}
@media screen and (max-width: 576px) {
  .footer__title {
    font-size: 1.8rem;
  }
}
.footer__links {
  font-size: 1.6rem;
  line-height: 2;
}
.footer__links li {
  list-style: none;
  margin-bottom: 1rem;
}
.footer__links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}
.footer__links a:hover {
  color: #da722c;
}
.footer__image {
  width: 3rem;
  height: 3rem;
  margin: 1.6rem 2.8rem 1.6rem 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.footer__image:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .footer__image {
    margin: 1.6rem 1.4rem;
  }
}
.footer__email-container {
  background: #fff;
  border-radius: 0.8rem;
  padding: 0.8rem;
  display: flex;
  max-width: 53rem;
  width: 100%;
  margin: 2rem auto;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .footer__email-container {
    flex-direction: column;
    padding: 1rem;
  }
}
.footer__email {
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  flex: 1;
  font-size: 1.6rem;
}
.footer__email:focus {
  outline: 1px solid #da722c;
}
.footer__btn {
  font-size: 1.6rem;
  padding: 1rem 2.8rem;
  background: #023047;
  color: #fff;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.footer__btn:hover {
  background: #da722c;
}
@media screen and (max-width: 576px) {
  .footer__btn {
    text-align: center;
    padding: 1.2rem;
  }
}
.footer__copyright {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}
@media screen and (max-width: 576px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
.footer__copyright span {
  color: #da722c;
  font-style: italic;
}
@media screen and (max-width: 992px) {
  .footer {
    padding: 5rem 3rem;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 5rem 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
