@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700;900&display=swap");
*,
*::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: "Raleway", sans-serif;
  font-weight: 500;
}

.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;
  color: white;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-red {
  background-color: red;
}
.btn-red:hover {
  background-color: #0085ff;
  color: white;
}
.btn-orange {
  background-color: #ffb100;
}
.btn-orange:hover {
  background-color: red;
  color: white;
}
.btn-blue {
  background-color: #0085ff;
}
.btn-blue:hover {
  background-color: #ffb100;
}

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

.nav {
  flex-basis: 100%;
  width: 100%;
  padding: 0 5rem;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.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;
}
.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__menu-icon {
  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: 15rem;
  }
  .nav__menu-icon {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    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;
  }
}

.carousel__item {
  height: 90vh;
  position: relative;
  background-color: #000;
}
.carousel__item-caption {
  padding: 10rem 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.carousel__item-title {
  font-size: 10rem;
  color: orange;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 5rem;
  text-align: center;
}
.carousel__item-subtitle {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.carousel__item-subtitle::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url(../../images/header-spark-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -7rem;
  top: 0;
}
.carousel__item-subtitle::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url(../../images/header-spark-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -7rem;
  top: 0;
}
.carousel__item-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
}
.carousel:nth-child(2) .overlay-image {
  background-position: bottom;
}
@media only screen and (max-width: 500px) {
  .carousel__item-title {
    font-size: 7rem;
  }
  .carousel__item-subtitle {
    font-size: 5rem;
  }
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 5rem;
  background-image: url(../../images/about-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about__title {
  color: white;
}
.about__subtitle {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: #0462ee;
  padding: 0.5rem 1rem;
  text-align: center;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.about__container--left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}
.about__container--right {
  width: 50%;
}
.about__container--right img {
  width: 100%;
}
.about__text {
  font-size: 1.8rem;
  color: white;
  text-align: center;
  padding: 0 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 500px) {
  .about__title {
    font-size: 3rem;
  }
  .about__subtitle {
    font-size: 1.5rem;
  }
  .about__container {
    flex-direction: column-reverse;
  }
  .about__container--left {
    width: 100%;
  }
  .about__container--right {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.eligibility {
  background-image: url(../../images/can-i-bg.png);
  background-size: 105% auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
}
.eligibility__title {
  color: #0085ff;
}
.eligibility__title--light {
  color: #ffb100;
}
.eligibility__requirements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1rem 3rem;
}
@media only screen and (max-width: 800px) {
  .eligibility__requirements {
    grid-template-columns: repeat(2, 1fr);
    padding: 5rem;
    grid-column-gap: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .eligibility__requirements {
    grid-template-columns: 1fr;
  }
}
.eligibility__requirement {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.eligibility__requirement:last-child img {
  width: 145%;
}
.eligibility__requirement-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0085ff;
  font-weight: 700;
}
.eligibility__requirement-img {
  width: 100%;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 800px) {
  .eligibility__requirement {
    padding: 4rem;
  }
  .eligibility__requirement-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 600px) {
  .eligibility__requirement:last-child img {
    width: 105%;
  }
  .eligibility__requirement-title {
    font-size: 4rem;
  }
  .eligibility__requirement-img {
    width: 70%;
    margin-bottom: 2rem;
  }
}

.benefits,
.cities {
  background-image: url(../../images/benefits-bg.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}
.benefits__title,
.cities__title {
  color: white;
  background-color: #0085ff;
  padding: 0 2rem;
  margin: 2rem 0;
}
.benefits__item,
.cities__item {
  padding: 5rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.benefits__item-img,
.cities__item-img {
  width: 90%;
}
.benefits__item-title,
.cities__item-title {
  margin-top: 2rem;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  text-align: center;
  background-color: #0085ff;
  padding: 0 2rem;
}
@media only screen and (max-width: 600px) {
  .benefits__item-img,
  .cities__item-img {
    width: 65%;
  }
  .benefits__item-title,
  .cities__item-title {
    font-size: 3rem;
  }
}

.reasons {
  background-image: url(../../images/whyus-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}
.reasons .h2 {
  color: #ffb100;
  margin-bottom: 5rem;
}
.reasons__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 3rem;
  grid-gap: 5rem;
}
@media only screen and (max-width: 800px) {
  .reasons__items {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}
.reasons__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5rem;
}
.reasons__item-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffb100;
  font-weight: 700;
  text-transform: uppercase;
}
.reasons__item-img {
  width: 60%;
  margin-bottom: 2rem;
}
.reasons__item-text {
  color: white;
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .reasons__item {
    padding: 2rem 3rem;
  }
  .reasons__item:first-child img {
    width: 50%;
  }
  .reasons__item-title {
    font-size: 3rem;
    font-weight: 900;
  }
  .reasons__item-img {
    width: 80%;
    margin-bottom: 2.5rem;
  }
  .reasons__item-text {
    font-size: 2rem;
    font-weight: 700;
  }
}

.consultation {
  min-height: 80rem;
  max-height: 100vh;
  width: 100%;
  background-image: url(../../images/consultation-bg.png);
  background-size: cover;
  display: flex;
  position: relative;
  overflow: hidden;
  padding-left: 50rem;
}
.consultation__img--big {
  width: 25%;
  position: absolute;
  bottom: -0.5rem;
  left: 20rem;
}
.consultation__img--small {
  display: none;
}
.consultation__content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 3rem;
}
.consultation__title {
  color: #0085ff;
}
.consultation__title--big {
  font-size: 6rem;
  color: #ffb100;
}
.consultation__name {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consultation__subtitle {
  font-size: 2.5rem;
  color: #0085ff;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
.consultation__text {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 5rem 20rem;
}
@media only screen and (max-width: 700px) {
  .consultation {
    background-image: url(../../images/consultation-bgsm.png);
    padding: 3rem 0;
  }
  .consultation__img--big {
    display: none;
  }
  .consultation__img--small {
    width: 60%;
    border-radius: 50%;
    border: 0.5rem solid #ffb100;
    display: inline-block;
    margin: 5rem 0;
  }
  .consultation__subtitle {
    color: #ffb100 !important;
  }
  .consultation__text {
    margin: 2rem 0;
    padding: 5rem !important;
  }
}
@media only screen and (max-width: 500px) {
  .consultation__title {
    font-size: 3rem;
  }
}

.cities {
  background-image: url(../../images/cities-bg.png);
}
.cities__item {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cities__item-img {
  width: 100%;
}
.cities__item-title {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 900;
  padding: 0.5rem 2rem;
  color: #0085ff;
  background-color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 600px) {
  .cities__item-title {
    font-size: 3rem;
  }
}

.partners {
  background-image: url(../../images/partners-bg.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  height: 50rem;
}
.partners__title {
  color: #ffb100;
  margin-top: 5rem;
}
@media only screen and (max-width: 600px) {
  .partners {
    height: 30rem;
  }
}

.registration {
  background-image: url(../../images/register-bg.png);
  background-size: cover;
  background-position: top;
  padding: 20rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.registration__title {
  color: white;
  background-color: #ffb100;
  padding: 0.5rem 5rem;
}
.registration__subtitle {
  color: white;
  text-transform: capitalize;
  margin: 5rem;
}
@media only screen and (max-width: 600px) {
  .registration {
    padding: 25rem 5rem 8rem 5rem;
  }
}

.faq {
  display: flex;
  background-image: url(../../images/faq-bg.png);
  background-size: cover;
  padding: 3rem;
  align-items: center;
}
.faq__img {
  width: 50%;
}
.faq__content {
  margin-left: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq__title {
  color: #0085ff;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 500px) {
  .faq {
    padding: 5rem 3rem;
    flex-direction: column;
  }
  .faq__img {
    margin-bottom: 5rem;
    width: 70%;
    transform: translateX(1rem);
  }
}

.social-media {
  background-image: url(../../images/contacts-bg.png);
  background-size: cover;
  padding: 10rem;
  padding-bottom: 20rem;
}
.social-media__title {
  color: white;
  margin-bottom: 5rem;
}
.social-media__list {
  list-style: none;
}
.social-media__list-item {
  padding: 1rem 0;
}
.social-media__list-item-link {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  text-decoration: none;
}
.social-media__list-item-link:hover img {
  margin-right: 2rem;
  transform: scale(1.2);
}
.social-media__list-item-icon {
  width: 3rem;
  margin-right: 1rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 500px) {
  .social-media {
    padding: 5rem;
  }
}/*# sourceMappingURL=main.css.map */