@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700;900&display=swap");
@font-face {
  font-family: "GothamPro";
  src: url("/fonts/GothamPro/gothampro.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GothamPro";
  src: url("/fonts/GothamPro/gothampro_medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "GothamPro";
  src: url("/fonts/GothamPro/gothampro_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "GothamPro";
  src: url("/fonts/GothamPro/gothampro_black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  overflow-x: hidden;
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  html {
    font-size: 37.5%;
  }
}

body {
  font-family: "GothamPro", sans-serif;
  font-weight: 500;
}

section,
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 6rem;
}
@media only screen and (max-width: 800px) {
  section,
  footer {
    padding: 3rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
  text-decoration: none;
  padding: 1rem 3rem;
  font-size: 2.4rem;
  border-radius: 10rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.1s linear;
}
.btn-orange, .btn-orange:hover {
  background-color: #ffb100;
  color: white;
}
.btn-blue, .btn-blue:hover {
  background-color: #0085ff;
  color: white;
}
.btn-white, .btn-white:hover {
  background-color: #fff;
  color: #0085ff;
}
.btn:hover {
  transform: scale(1.01);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #0085ff;
}

.h3 {
  margin-top: 2rem;
  margin-bottom: 5rem;
  text-align: center;
}

.nav {
  flex-basis: 100%;
  width: 100%;
  padding: 0 5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  position: fixed;
}
.nav__logo {
  padding: 1rem;
}
.nav__logo-img {
  width: 12rem;
}
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 70%;
  margin: 0;
  z-index: 9999;
}
.nav__item {
  margin: 0 1.8rem;
}
.nav__item-link {
  color: #0085ff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.nav__item-link:hover {
  transform: translateX(-0.5rem);
}
.nav__item-link::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #0085ff;
  position: absolute;
  top: 120%;
  right: 0;
  transition: all 0.4s;
}
.nav__item-link:hover::before {
  width: 80%;
}
.nav__icon-menu {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .nav__list {
    width: 75%;
  }
}
@media only screen and (max-width: 1000px) {
  .nav__list {
    width: 80%;
  }
}
@media only screen and (max-width: 800px) {
  .nav {
    padding: 0 2rem;
  }
  .nav__logo-img {
    width: 10rem;
  }
  .nav__icon-menu {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    fill: #0085ff;
    z-index: 9999;
  }
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    height: 100vh;
    width: 30rem;
    max-width: 100%;
    background: white;
    z-index: 9998;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: all 0.3s ease-in-out;
  }
  .nav__list.visible {
    transform: translateX(0);
  }
  .nav__item {
    padding: 3rem 2rem;
  }
  .nav__item a {
    font-size: 2.5rem;
  }
}

.header {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  background-image: url("/images/header-bg.jpg");
  background-size: cover;
  padding-top: 10rem;
}
.header__left {
  width: 60%;
  padding: 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.header__title {
  font-size: 5rem;
  color: white;
  font-weight: 900;
  line-height: 1;
  position: relative;
}
.header__title span {
  color: orange;
  line-height: 1;
  position: relative;
  text-align: center;
}
.header__message {
  width: 100%;
  color: white;
  font-size: 2rem;
}
.header__message span {
  font-weight: 900;
}
.header__buttons {
  display: flex;
  gap: 2rem;
}
.header__btn {
  z-index: 9997;
}
.header__right {
  width: 40%;
  position: relative;
}
.header__img-hero {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 800px) {
  .header {
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-align: center;
  }
  .header__left {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20rem;
  }
  .header__message {
    margin: 3rem 0;
  }
  .header__img-hero {
    width: 100%;
    position: absolute;
    bottom: -55%;
    right: 0;
  }
  .header__right {
    width: 100%;
    height: 50%;
  }
  .header__buttons {
    flex-direction: column;
  }
}

.certificates,
.sponsors,
.stories {
  padding: 6rem 0;
}
.certificates .h3,
.sponsors .h3,
.stories .h3 {
  margin-left: 5rem;
  margin-right: 5rem;
}
.certificates__carousel,
.sponsors__carousel,
.stories__carousel {
  width: 100%;
}
.certificates__carousel-item,
.sponsors__carousel-item,
.stories__carousel-item {
  width: 80%;
}
.certificates .owl-item,
.sponsors .owl-item,
.stories .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.opportunities__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 800px) {
  .opportunities__list {
    grid-template-columns: 1fr;
  }
}
.opportunities__item {
  width: 100%;
}
.opportunities__rating {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 800px) {
  .opportunities__rating {
    grid-template-columns: repeat(2, 1fr);
  }
}
.opportunities__rating-item {
  justify-self: center;
  width: 80%;
}

.benefits {
  background-color: #f7f7f7;
}
.benefits__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 5rem 0;
}
@media only screen and (max-width: 800px) {
  .benefits__content {
    flex-direction: column;
  }
}
.benefits__content .h3 {
  text-align: left;
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .benefits__content .h3 {
    width: 100%;
  }
}
.benefits__content img {
  width: 40%;
}
@media only screen and (max-width: 800px) {
  .benefits__content img {
    width: 80%;
  }
}
.benefits__videos {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .benefits__videos {
    flex-direction: column;
    align-items: center;
  }
}
.benefits__videos iframe {
  width: 30%;
  height: 25rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 800px) {
  .benefits__videos iframe {
    width: 70%;
    height: auto;
    margin: 2rem 0;
  }
}

.fee {
  background-image: url("/images/fee/fee-bg.png");
  background-size: cover;
}
.fee__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  margin: 5rem 0;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .fee__content {
    flex-direction: column;
    gap: 5rem;
  }
}
.fee__content img {
  width: 30%;
  transition: all 0.3s;
}
@media only screen and (max-width: 800px) {
  .fee__content img {
    width: 80%;
  }
}
.fee__content img:hover {
  transform: scale(1.01);
}
.fee__buttons {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 800px) {
  .fee__buttons {
    flex-direction: column;
  }
}
.fee__card {
  width: 25%;
  background-color: #0085ff;
  padding: 3rem;
  border-radius: 2rem;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .fee__card {
    width: 70%;
  }
}
.fee__card .program__type {
  font-size: 2.6rem;
  font-weight: 600;
  color: #ffb100;
  text-align: center;
}
.fee__card .program__price {
  font-size: 6rem;
  margin: 5rem 0;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.fee__card .program__price::before {
  content: "starting at";
  font-size: 1rem;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.fee__card .program__list {
  font-size: 1.4rem;
}
.fee__card .program__list.included li::marker {
  color: #ffb100;
}
.fee__card h4 {
  margin: 2rem 0;
  font-size: 1.4rem;
}
.fee__card::after {
  content: "$";
  position: absolute;
  top: 4rem;
  right: 1rem;
  font-size: 15rem;
  font-weight: 600;
  opacity: 0.1;
  font-family: Arial, Helvetica, sans-serif;
}

.stories__carousel {
  justify-content: space-around;
  padding: 0 3rem;
  position: relative;
}
.stories__carousel-item {
  width: 90%;
  height: 50rem;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 2rem;
}
.stories__carousel-item .p,
.stories__carousel-item .h5 {
  font-size: 1.5rem;
}
.stories__carousel-item .h4 {
  font-size: 2.2rem;
}
.stories__carousel-item .h4 {
  color: #0085ff;
  font-weight: 900;
}
.stories__carousel-item--light {
  background-color: #eeeeee;
}
.stories__carousel-item--dark {
  background-color: #0085ff;
  color: #fff;
}
.stories__carousel-item--dark .h4 {
  color: #ffb100;
}
.stories__carousel-item img {
  width: 15rem !important;
  height: 15rem;
}

.steps {
  background-color: #f7f7f7;
}
.steps__items {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media only screen and (max-width: 800px) {
  .steps__items {
    flex-direction: column;
  }
}
.steps__container {
  height: 50%;
}
@media only screen and (max-width: 800px) {
  .steps__container {
    width: 50%;
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 800px) {
  .steps__container:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.steps__item {
  height: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .steps__item {
    flex-direction: row;
    width: 100%;
    height: 20rem;
  }
}
.steps__item:not(.steps__item--reverse) .steps__container:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.steps__item--reverse {
  flex-direction: column-reverse;
}
@media only screen and (max-width: 800px) {
  .steps__item--reverse {
    flex-direction: row-reverse;
  }
}
.steps__item--reverse .steps__container:first-child {
  display: flex;
  align-items: flex-end;
}
.steps__icon {
  width: 10rem;
  height: 10rem;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .steps__icon {
    align-self: center;
    justify-self: center;
  }
}
.steps__line {
  display: inline-block;
  width: 0.3rem;
  height: 100%;
  border-radius: 1rem;
  margin: 2rem 0;
  background-color: #dddddd;
  align-self: center;
}
@media only screen and (max-width: 800px) {
  .steps__line {
    display: none;
  }
}
.steps .h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0085ff;
  text-align: center;
}
.steps .p {
  font-size: 1.5rem;
  text-align: center;
}
.steps__indicator {
  width: 95%;
  height: 3rem;
  background-color: #0085ff;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
@media only screen and (max-width: 800px) {
  .steps__indicator {
    flex-direction: row-reverse;
    height: 50%;
    width: 2rem;
    margin: 0 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .steps__icon {
    width: 15rem;
    height: 15rem;
  }
}

.faq {
  width: 100%;
}
.faq__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media only screen and (max-width: 800px) {
  .faq__content {
    flex-direction: column;
  }
}
.faq__section {
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .faq__section {
    width: 100%;
  }
}
.faq__question {
  background-color: #efefef !important;
  border: none !important;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1rem;
  transition: all 0.3s;
  position: relative;
}
.faq__question span {
  position: absolute;
  right: 1.2rem;
  top: 0.8rem;
  font-size: 2.5rem;
}
.faq__question:hover {
  background-color: #ddd !important;
}
.faq__answer {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0085ff;
}
.faq ul {
  margin: 0;
}
.faq li {
  border: none !important;
}

.footer {
  background-color: #0085ff;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
}
.footer .offices {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .offices__office {
  list-style: none;
  margin-bottom: 3rem;
  width: 18%;
  padding: 0 !important;
}
@media only screen and (max-width: 800px) {
  .footer .offices__office {
    width: 80%;
    font-size: 2.2rem;
  }
}
.footer .offices__office-detail {
  margin-bottom: 1rem;
}
.footer .offices__office-detail:first-child {
  font-weight: 900;
  color: #ffb100;
}
.footer .offices__office-detail.uzb {
  animation: colorChange 4s infinite;
}
@keyframes colorChange {
  0% {
    color: white;
  }
  50% {
    color: #ffb100;
  }
  100% {
    color: white;
  }
}
.footer .offices img {
  width: 23%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 800px) {
  .footer .offices img {
    display: none;
  }
}

.copyright {
  background-color: #003568;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  padding-bottom: 1rem;
  color: #fff;
}
.copyright__social {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 1rem;
  font-size: 2rem;
}
.copyright__social a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.copyright__social a:hover {
  color: #ffb100;
}/*# sourceMappingURL=main.css.map */