html {
  box-sizing: border-box;
  margin: 0 !important;
}

body {
  margin: 0;
}

@font-face {
  font-family: "Sofia Sans";
  src: url("data:font/woff2;base64,d09GRgABAAAAAAYqAAsAAAAACNwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAA...") format("woff2");
}
svg {
  font-family: "Sofia Sans", sans-serif;
  font-size: 96px;
  dominant-baseline: middle;
  text-anchor: middle;
}

h1 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
    line-height: 36px;
  }
}

h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  color: #1E1E1E;
  margin: 0;
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0;
}
@media screen and (max-width: 991px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0;
}
@media screen and (max-width: 991px) {
  h5 {
    font-size: 16px;
  }
}

p, ul {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  color: #150D47;
  margin: 0;
}
@media screen and (max-width: 991px) {
  p, ul {
    font-size: 14px;
    line-height: 24px;
  }
}

ul {
  padding: 0;
}

.small-p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #1E1E1E;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .small-p {
    font-size: 14px;
  }
}

.stroke-text {
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #150D47;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .stroke-text {
    font-size: 40px;
  }
}

.custom-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

a {
  text-decoration: none;
}

body {
  font-family: "Sofia Sans", sans-serif;
}

.container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .container {
    padding: 0 24px;
  }
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}
.hero .container .columns_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .hero .container .columns_wrapper {
    height: 45vh;
  }
}
.hero .container .columns_wrapper .first_column .main_title {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .hero .container .columns_wrapper .first_column .main_title {
    margin-bottom: 0;
  }
}
.hero .container .columns_wrapper .first_column .subtitle {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .hero .container .columns_wrapper .first_column .subtitle {
    margin-bottom: 22px;
  }
}
.hero .container .columns_wrapper .first_column .hero_button a {
  position: relative;
  display: inline-block;
  font-family: "Sofia Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #56FEFE;
  border: 2px solid #56FEFE;
  border-radius: 50px;
  padding: 10px 70px;
  overflow: hidden;
  background-color: transparent;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  .hero .container .columns_wrapper .first_column .hero_button a {
    font-size: 14px;
    padding: 5px 20px;
  }
}
.hero .container .columns_wrapper .first_column .hero_button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #150D47;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.hero .container .columns_wrapper .first_column .hero_button a:hover {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.hero .container .columns_wrapper .first_column .hero_button a:hover::before {
  transform: scaleX(1);
}
.hero .container .columns_wrapper .second_column .social_media_link_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 991px) {
  .hero .container .columns_wrapper .second_column .social_media_link_wrapper a img {
    width: 80%;
  }
}

.who__we__are {
  position: relative;
  background-color: #56FEFE;
  padding: 43px 0 80px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .who__we__are {
    padding: 22px 0 48px 0;
    margin-bottom: 48px;
  }
}
.who__we__are .wave {
  background: url("/wp-content/themes/orbis-theme/assets/public/img/wave.png") 0 0 repeat-x;
  position: absolute;
  left: 0;
  top: -30px;
  height: 30px;
  width: 100%;
  z-index: 12;
  -webkit-animation: wave-animation 8.7s infinite linear;
  -moz-animation: wave-animation 8.7s infinite linear;
  -o-animation: wave-animation 8.7s infinite linear;
  animation: wave-animation 8.7s infinite linear;
}
@-webkit-keyframes wave-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1601px 0;
  }
}
@-moz-keyframes wave-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1601px 0;
  }
}
@keyframes wave-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1601px 0;
  }
}
.who__we__are .wwa__title {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 1199px) {
  .who__we__are .wwa__title {
    line-height: 36px;
    margin: 0 0 24px 0;
  }
}
.who__we__are .elevate-grid {
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .who__we__are .elevate-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: normal;
  }
}
.who__we__are .elevate-grid .title__and__descr {
  flex-basis: calc(50% - 40px);
}
@media screen and (max-width: 1199px) {
  .who__we__are .elevate-grid .title__and__descr {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 575px) {
  .who__we__are .elevate-grid .title__and__descr {
    margin-bottom: 16px;
  }
}
.who__we__are .elevate-grid .title__and__descr .wwa__description {
  line-height: 36px;
}
@media screen and (max-width: 1199px) {
  .who__we__are .elevate-grid .title__and__descr .wwa__description {
    line-height: 20px;
  }
}
.who__we__are .elevate-grid .animated__text {
  flex-basis: calc(50% - 40px);
}

.our_team {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .our_team {
    margin-bottom: 48px;
  }
}
.our_team .container h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .our_team .container h2 {
    margin-bottom: 24px;
  }
}
.our_team .container .info_wrapper {
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .our_team .container .info_wrapper {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.our_team .container .info_wrapper .desc,
.our_team .container .info_wrapper .service_titles_wrapper {
  flex-basis: calc(50% - 40px);
}
.our_team .container .info_wrapper .service_titles_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .our_team .container .info_wrapper .service_titles_wrapper {
    gap: 16px;
  }
}
.our_team .container .info_wrapper .service_titles_wrapper .single_service_title {
  text-align: center;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 10px;
}
.our_team .container .info_wrapper .service_titles_wrapper .single_service_title p {
  font-weight: 700;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .our_team .container .info_wrapper .service_titles_wrapper .single_service_title p {
    font-size: 16px;
  }
}
.our_team .container .team_wrapper {
  flex-wrap: nowrap;
}
@media screen and (max-width: 1199px) {
  .our_team .container .team_wrapper {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .our_team .container .team_wrapper {
    display: block;
    margin-bottom: 16px;
  }
}
.our_team .container .animated__text {
  flex-basis: calc(40% - 20px);
}
.our_team .container .team_cards_wrapper {
  flex-basis: calc(70% - 20px);
  flex-wrap: nowrap;
  justify-content: end;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .our_team .container .team_cards_wrapper {
    justify-content: space-between;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .our_team .container .team_cards_wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .our_team .container .team_cards_wrapper {
    gap: 24px;
  }
}
.our_team .container .team_cards_wrapper .single_card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #F2F8F7;
  border-radius: 40px;
  width: calc(50% - 20px);
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
@media screen and (max-width: 767px) {
  .our_team .container .team_cards_wrapper .single_card {
    width: 100%;
  }
}
.our_team .container .team_cards_wrapper .single_card .card_front,
.our_team .container .team_cards_wrapper .single_card .card_back {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.our_team .container .team_cards_wrapper .single_card .card_front {
  text-align: center;
  padding: 40px 0 45px;
}
@media screen and (max-width: 991px) {
  .our_team .container .team_cards_wrapper .single_card .card_front {
    padding: 25px 0 35px;
  }
}
.our_team .container .team_cards_wrapper .single_card .card_front .image_card {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .our_team .container .team_cards_wrapper .single_card .card_front .image_card {
    margin-bottom: 20px;
  }
}
.our_team .container .team_cards_wrapper .single_card .card_front .image_card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper {
    padding: 0 30px;
  }
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .names_wrapper {
  margin-bottom: 5px;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .names_wrapper h5 {
  color: #150D47;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .title_position {
  margin-bottom: 5px;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .title_position p {
  font-weight: 700;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .contact_link_wrapper .contact_link {
  word-wrap: break-word;
  margin-bottom: 5px;
}
.our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .contact_link_wrapper .contact_link a {
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #150D47;
}
@media screen and (max-width: 767px) {
  .our_team .container .team_cards_wrapper .single_card .card_front .info_person_wrapper .contact_link_wrapper .contact_link a {
    font-size: 14px;
  }
}
.our_team .container .team_cards_wrapper .single_card .read_more_btn {
  cursor: pointer;
  display: block;
  border-radius: 0px 0px 39px 39px;
  background: #56FEFE;
  text-align: center;
  padding: 30px 0;
}
@media screen and (max-width: 991px) {
  .our_team .container .team_cards_wrapper .single_card .read_more_btn {
    padding: 15px 0;
  }
}
.our_team .container .team_cards_wrapper .single_card .read_more_btn p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #150D47;
}
.our_team .container .team_cards_wrapper .single_card .card_back {
  position: absolute;
  top: 0;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}
.our_team .container .team_cards_wrapper .single_card .card_back .flip_text .desc_person p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  .our_team .container .team_cards_wrapper .single_card .card_back .flip_text .desc_person p {
    font-size: 14px;
    line-height: 20px;
  }
}
.our_team .container .team_cards_wrapper .single_card.flip {
  transform: rotateY(180deg);
  background-color: #56FEFE;
}
.our_team .container .team_cards_wrapper .single_card.flip .card_front {
  visibility: hidden;
}
.our_team .container .team_cards_wrapper .single_card.flip .read_more_btn {
  visibility: hidden;
}
.our_team .container .team_cards_wrapper .single_card.flip .card_back {
  cursor: pointer;
  padding: 40px 40px 20px;
}
@media screen and (max-width: 991px) {
  .our_team .container .team_cards_wrapper .single_card.flip .card_back {
    padding: 25px 35px 15px 20px;
  }
}

.career_opportunities {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .career_opportunities {
    margin-bottom: 48px;
  }
}
.career_opportunities .bg_img_wrapper {
  position: absolute;
  width: 100%;
  height: 650px;
}
.career_opportunities .bg_img_wrapper img {
  width: 100%;
  height: 100%;
}
.career_opportunities .content__wrapper {
  position: relative;
}
.career_opportunities .content__wrapper .container .main-title {
  text-align: left;
  padding-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .container .main-title {
    padding-top: 50px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .career_opportunities .content__wrapper .positions__wrapper {
    flex-direction: column;
  }
}
.career_opportunities .content__wrapper .positions {
  max-width: 1740px;
  margin: 0 0 0 auto;
  border-radius: 48px 0px 0px 48px;
  background: rgba(68, 193, 251, 0.5);
  padding: 40px 0 75px 75px;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .positions {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 575px) {
  .career_opportunities .content__wrapper .positions {
    padding: 20px 0 40px 0;
  }
}
.career_opportunities .content__wrapper .positions .titles_wrapper {
  flex-basis: calc(25% - 20px);
  align-self: baseline;
}
@media screen and (max-width: 1199px) {
  .career_opportunities .content__wrapper .positions .titles_wrapper {
    margin: 0 auto 30px 0;
  }
}
.career_opportunities .content__wrapper .positions .career__opportunities {
  flex-basis: calc(70% - 20px);
}
.career_opportunities .content__wrapper .positions .career__opportunities .position {
  cursor: pointer;
  position: relative;
  flex-basis: calc(33.33% - 10px);
  height: 300px;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .positions .career__opportunities .position {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .career_opportunities .content__wrapper .positions .career__opportunities .position {
    flex-basis: calc(50% - 10px);
    height: 190px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .career_opportunities .content__wrapper .positions .career__opportunities .position {
    flex-basis: 100%;
    height: 250px;
  }
}
.career_opportunities .content__wrapper .positions .career__opportunities .position .position__img {
  width: 100%;
  height: 100%;
}
.career_opportunities .content__wrapper .positions .career__opportunities .position .position__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.career_opportunities .content__wrapper .positions .career__opportunities .position .position__title {
  position: absolute;
  bottom: 24px;
  max-width: 150px;
  border-radius: 0px 18px 18px 0px;
  background-color: rgba(86, 254, 254, 0.8);
  padding: 5px 50px 5px 20px;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .positions .career__opportunities .position .position__title {
    padding: 5px 25px 5px 15px;
  }
}
.career_opportunities .content__wrapper .career__opportunities__cta {
  text-align: right;
  margin-top: 48px;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .career__opportunities__cta {
    margin-top: 15px;
  }
}
.career_opportunities .content__wrapper .career__opportunities__cta a {
  position: relative;
  display: inline-block;
  font-family: "Sofia Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  border: 2px solid #150D47;
  border-radius: 50px;
  padding: 10px 70px;
  overflow: hidden;
  background-color: #150D47;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  .career_opportunities .content__wrapper .career__opportunities__cta a {
    font-size: 14px;
    padding: 5px 20px;
  }
}
.career_opportunities .content__wrapper .career__opportunities__cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #56FEFE;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.career_opportunities .content__wrapper .career__opportunities__cta a:hover {
  border: 2px solid #000000;
  color: #000000;
}
.career_opportunities .content__wrapper .career__opportunities__cta a:hover::before {
  transform: scaleX(1);
}

.how__to__apply .hta__title,
.how__to__apply .hta__descr {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .hta__title {
    margin-bottom: 15px;
  }
}
.how__to__apply .hta__descr {
  max-width: 830px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .hta__descr {
    margin-bottom: 25px;
  }
}
.how__to__apply .hta__descr ul {
  list-style: none;
  margin-top: 8px;
}
.how__to__apply .hta__descr ul li {
  margin-bottom: 4px;
}
.how__to__apply .hta__descr ul li::before {
  content: url("/wp-content/themes/orbis-theme/assets/public/img/list-item.png");
  margin-right: 7px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .hta__descr ul li::before {
    position: relative;
    bottom: -3px;
  }
}
.how__to__apply .steps {
  align-items: flex-start;
  margin-bottom: 56px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps {
    flex-direction: column-reverse;
    margin-bottom: 35px;
  }
}
.how__to__apply .steps .application__process__title {
  margin-bottom: 69px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .application__process__title {
    margin-bottom: 29px;
  }
}
.how__to__apply .steps .steps__wrapper {
  flex-basis: calc(35% - 40px);
}
@media screen and (max-width: 1199px) {
  .how__to__apply .steps .steps__wrapper {
    flex-basis: calc(40% - 70px);
  }
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .steps__wrapper {
    width: 100%;
  }
}
.how__to__apply .steps .steps__wrapper .content {
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  padding: 18px 0 48px 0;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .steps__wrapper .content {
    padding: 10px 0 20px 0;
  }
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper {
  border-bottom: 1px solid #1E1E1E;
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper:last-child {
  border: none;
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper .step {
  cursor: pointer;
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper .step p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #000000;
  padding: 18px 0;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .steps__wrapper .content .step__wrapper .step p {
    font-size: 16px;
    padding: 10px 0;
  }
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper .step p .plus {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .steps__wrapper .content .step__wrapper .step p .plus {
    font-size: 25px;
    line-height: 25px;
  }
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper .explanation {
  display: none;
  margin-bottom: 23px;
}
.how__to__apply .steps .steps__wrapper .content .step__wrapper .explanation p {
  font-size: 16px;
  line-height: 24px;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .steps__wrapper .content .step__wrapper .explanation p {
    font-size: 14px;
  }
}
.how__to__apply .steps .application__image {
  flex-basis: calc(60% - 40px);
}
@media screen and (max-width: 991px) {
  .how__to__apply .steps .application__image {
    margin-bottom: 25px;
  }
}
.how__to__apply .steps .application__image img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .how__to__apply .steps .application__image img {
    height: 30vh;
  }
}
.how__to__apply .checklist .checklist_title {
  margin-bottom: 16px;
}
.how__to__apply .checklist .checklist_subtitle {
  font-weight: 400;
  color: #000000;
}
.how__to__apply .checklist .checklist_short_description {
  max-width: 830px;
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .how__to__apply .checklist .checklist_short_description {
    margin-top: 15px;
  }
}
.how__to__apply .checklist .checklist__wrapper {
  position: relative;
  bottom: -35px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 25px;
}
@media screen and (max-width: 1199px) {
  .how__to__apply .checklist .checklist__wrapper {
    flex-wrap: wrap;
    justify-content: normal;
  }
}
@media screen and (max-width: 991px) {
  .how__to__apply .checklist .checklist__wrapper {
    gap: 20px;
  }
}
.how__to__apply .checklist .checklist__wrapper .checklist__item {
  flex-basis: calc(20% - 25px);
  background-color: #F2F8F7;
  border-radius: 21px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 25px 22px 20px 20px;
}
@media screen and (max-width: 1199px) {
  .how__to__apply .checklist .checklist__wrapper .checklist__item {
    flex-basis: calc(45% - 15px);
  }
}
@media screen and (max-width: 991px) {
  .how__to__apply .checklist .checklist__wrapper .checklist__item {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 575px) {
  .how__to__apply .checklist .checklist__wrapper .checklist__item {
    padding: 15px 20px;
  }
}
.how__to__apply .checklist .checklist__wrapper .checklist__item .title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
.how__to__apply .checklist .checklist__wrapper .checklist__item .description p {
  font-size: 16px;
  color: #1E1E1E;
}

.how__to__apply .how__to__apply {
  background-color: #56FEFE;
  text-align: center;
  padding: 70px 30px 40px 30px;
}
@media screen and (max-width: 991px) {
	.how__to__apply .checklist .checklist__wrapper .checklist__item .description p {
	  font-size: 14px;
	}
  .how__to__apply .how__to__apply {
    padding: 60px 24px 30px 24px;
  }
}
.how__to__apply .how__to__apply p {
  max-width: 770px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #000000;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .how__to__apply .how__to__apply p {
    font-size: 14px;
    line-height: 20px;
  }
}

.contact__us {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 991px) {
  .contact__us {
    background-color: #150D47;
    padding: 30px 0 26px 0;
  }
}
.contact__us .contact__form__video {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: end;
  width: 100%;
  height: 100%;
}
.contact__us .contact__form__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__video {
    display: none;
  }
}
.contact__us .container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .contact__us .container {
    flex-direction: column-reverse;
  }
}
.contact__us .contact__form__wrapper {
  flex-basis: 45%;
  border: 1px solid #56FEFE;
  padding: 35px 38px 48px 40px;
  z-index: 4;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper {
    padding: 15px 21px 23px 19px;
  }
}
.contact__us .contact__form__wrapper .contacts-form-title {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.contact__us .contact__form__wrapper .contact__short__descr {
  line-height: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contact__short__descr {
    margin-bottom: 12px;
  }
}
.contact__us .contact__form__wrapper .contact__short__descr p {
  color: #FFFFFF;
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .message {
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .message {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .message {
    margin-bottom: 0;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .name,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .email,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .email,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .message .name,
.contact__us .contact__form__wrapper .contacts #contact__form .message .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .message .email,
.contact__us .contact__form__wrapper .contacts #contact__form .message .phone-number {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .name,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .email,
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .email,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .phone-number,
.contact__us .contact__form__wrapper .contacts #contact__form .message .name,
.contact__us .contact__form__wrapper .contacts #contact__form .message .last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .message .email,
.contact__us .contact__form__wrapper .contacts #contact__form .message .phone-number {
    width: 100%;
    margin-bottom: 16px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name .error,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number .error,
.contact__us .contact__form__wrapper .contacts #contact__form .message .error {
  font-size: 16px;
  color: #dc3232;
  margin-top: 3px;
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name label,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number label,
.contact__us .contact__form__wrapper .contacts #contact__form .message label {
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 5px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name label,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number label,
.contact__us .contact__form__wrapper .contacts #contact__form .message label {
    font-size: 14px;
    line-height: 20px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name input,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number input,
.contact__us .contact__form__wrapper .contacts #contact__form .message input {
  width: 100%;
  height: 43px;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 30px;
  border: 1px solid #56FEFE;
  background-color: transparent;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name input,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number input,
.contact__us .contact__form__wrapper .contacts #contact__form .message input {
    height: 32px;
    font-size: 14px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .name__last-name input:focus-visible,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number input:focus-visible,
.contact__us .contact__form__wrapper .contacts #contact__form .message input:focus-visible {
  outline: none;
}
@media screen and (max-width: 767px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .name__last-name,
.contact__us .contact__form__wrapper .contacts #contact__form .email__phone-number {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .message {
    margin-bottom: 10px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .message textarea {
  height: 93px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #56FEFE;
  background: rgba(86, 254, 254, 0.1);
}
.contact__us .contact__form__wrapper .contacts #contact__form .message textarea:focus-visible {
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .message textarea:focus-visible {
    font-size: 14px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions {
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions {
    margin: 10px 0 15px 0;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions input[type=checkbox] {
  position: relative;
  appearance: none;
}
.contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions input[type=checkbox]::before {
    width: 20px;
    height: 20px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions input[type=checkbox]:checked::before {
  background-color: #56FEFE;
}
.contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions label p {
  color: #FFFFFF;
  line-height: 32px;
  margin-left: 50px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .terms__and__conditions label p {
    line-height: 20px;
    margin-left: 35px;
  }
}
.contact__us .contact__form__wrapper .contacts #contact__form .send .send__button {
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Sofia Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1E1E1E;
  border: none;
  border-radius: 409px;
  background: #56FEFE;
  padding: 8px 52px;
}
@media screen and (max-width: 991px) {
  .contact__us .contact__form__wrapper .contacts #contact__form .send .send__button {
    font-size: 14px;
    padding: 5px 20px;
  }
}
.contact__us .watermark__and__text {
  flex-basis: 45%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .contact__us .watermark__and__text {
    width: 100%;
  }
}
.contact__us .watermark__and__text .watermark {
  position: relative;
  transform: translate(-35px, 50px);
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .contact__us .watermark__and__text .watermark {
    position: absolute;
    transform: translate(0, 0);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contact__us .watermark__and__text .watermark {
    transform: translate(0, 50%);
  }
}
.contact__us .watermark__and__text .watermark img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .contact__us .watermark__and__text .watermark img {
    width: 80%;
  }
}
.contact__us .watermark__and__text .text_over_video {
  position: absolute;
  top: 54%;
  right: 50%;
  transform: translate(30%, 0%);
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .contact__us .watermark__and__text .text_over_video {
    position: unset;
    transform: translate(0, 0);
    text-align: center;
    margin-bottom: 10px;
  }
}
.contact__us .watermark__and__text .text_over_video h3 {
  font-size: 40px;
  font-weight: 700;
}

header .desktop_header {
  display: block;
  background-color: #FFFFFF;
  padding: 20px 0;
  transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -webkit-transition: all 0.45s ease-in-out;
}
header .desktop_header.visible {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 1199px) {
  header .desktop_header {
    display: none;
  }
}
header .desktop_header .container .header_logo img {
  width: 80%;
}
header .desktop_header .container .header_items_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .desktop_header .container .header_items_wrapper .main_link_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 40px;
}
header .desktop_header .container .header_items_wrapper .main_link_wrapper .main_link a {
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
header .desktop_header .container .header_items_wrapper .main_link_wrapper .main_link a:hover, header .desktop_header .container .header_items_wrapper .main_link_wrapper .main_link a.active-link {
  color: #56FEFE;
}

@media screen and (min-width: 1199px) {
  header .mobile_header {
    display: none;
  }
}
header .mobile_header .header_items_grid {
  position: relative;
}
header .mobile_header .header_items_grid .mobile_header_nav {
  position: relative;
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0px 8px 16px 0px rgba(20, 20, 43, 0.06);
  background: #FFFFFF;
  padding: 20px;
  z-index: 99;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid {
  display: flex;
  justify-content: space-between;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item .mobile_header_logo img {
  width: 60%;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child {
  display: flex;
  align-items: center;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger {
  position: relative;
  display: block;
  width: 18px;
  height: 15px;
  cursor: pointer;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background: #150D47;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger span:nth-child(1) {
  top: 0;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger span:nth-child(3) {
  bottom: 0;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 39%;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item:last-child #hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}
header .mobile_header .header_items_grid .mobile_header_nav .mobile_header_nav_grid .item .header__logo {
  width: 143px;
  height: 30px;
}
header .mobile_header .header_items_grid .mobile_menu_links {
  display: none;
}
header .mobile_header .header_items_grid .mobile_menu_links.open {
  display: block;
  width: 100%;
  height: calc(100vh - 54px);
  overflow-y: auto;
  background: linear-gradient(180deg, #F5F5F5 0%, #E2E2E2 100%);
  padding: 37px 0 25px 0;
  z-index: 99;
}
header .mobile_header .header_items_grid .mobile_menu_links .mobile_main_link {
  padding: 10px 30px;
}
header .mobile_header .header_items_grid .mobile_menu_links .mobile_main_link a {
  font-family: "Sofia Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
}

.footer {
  background-color: #D9D9D9;
}
.footer .container-fluid {
  max-width: 1420px;
  padding: 48px 0 29px 0;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid {
    padding: 30px 0 20px 0;
  }
}
.footer .container-fluid .footer__logo {
  margin-bottom: 18px;
}
.footer .container-fluid .footer__wrapper {
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper {
    padding: 0 16px;
  }
}
.footer .container-fluid .footer__wrapper .content {
  align-items: baseline;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content {
    flex-direction: column;
  }
}
.footer .container-fluid .footer__wrapper .content .main__info {
  flex-basis: calc(33% - 20px);
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .main__info .f__phone,
.footer .container-fluid .footer__wrapper .content .main__info .f__email {
    margin-bottom: 15px;
  }
}
.footer .container-fluid .footer__wrapper .content .main__info .f__phone a,
.footer .container-fluid .footer__wrapper .content .main__info .f__email a {
  font-size: 20px;
  font-weight: 400;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .main__info .f__phone a,
.footer .container-fluid .footer__wrapper .content .main__info .f__email a {
    font-size: 14px;
  }
}
.footer .container-fluid .footer__wrapper .content .main__info .f__phone p,
.footer .container-fluid .footer__wrapper .content .main__info .f__email p {
  display: inline;
  font-weight: 700;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .main__info .f__phone p,
.footer .container-fluid .footer__wrapper .content .main__info .f__email p {
    font-size: 14px;
  }
}
.footer .container-fluid .footer__wrapper .content .main__info .all__rights__reserved__text {
  font-weight: 400;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .main__info .all__rights__reserved__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.footer .container-fluid .footer__wrapper .content .footer__addresses {
  flex-basis: calc(67% - 20px);
  align-items: baseline;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .footer__addresses {
    flex-direction: column;
  }
}
.footer .container-fluid .footer__wrapper .content .footer__addresses .city {
  flex-basis: calc(33% - 10px);
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .footer__addresses .city:not(:last-child) {
    margin-bottom: 15px;
  }
}
.footer .container-fluid .footer__wrapper .content .footer__addresses .city .f__city-text {
  font-weight: 700;
  color: #1E1E1E;
}
@media screen and (max-width: 991px) {
  .footer .container-fluid .footer__wrapper .content .footer__addresses .city .f__city-text {
    font-size: 14px;
  }
}
.footer .container-fluid .footer__wrapper .content .footer__addresses .city .f__city-address {
  font-weight: 400;
  color: #1E1E1E;
}
.footer .policy__links {
  justify-content: center;
  text-align: center;
  background-color: #56FEFE;
  padding: 34px 30px 29px 30px;
}
@media screen and (max-width: 767px) {
  .footer .policy__links {
    align-items: baseline;
    padding: 25px 16px 15px 16px;
  }
}
.footer .policy__links .policy_link {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
  margin-right: 3px;
}
@media screen and (max-width: 991px) {
  .footer .policy__links .policy_link {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer .policy__links .policy_link:not(:last-child) {
    margin-bottom: 5px;
  }
}

.languages {
  align-self: center;
}
@media screen and (max-width: 1199px) {
  .languages {
    padding: 10px 30px;
  }
}
.languages .lang__wrapper .current_language {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .languages .lang__wrapper .current_language {
    font-size: 18px;
  }
}
.languages .lang__wrapper .current_language i {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 5px;
}
.languages .lang__wrapper .lang__dropdown {
  position: absolute;
}
.languages .lang__wrapper .lang__dropdown li {
  list-style-type: none;
}
.languages .lang__wrapper .lang__dropdown li a {
  font-size: 20px;
  font-weight: 700;
  color: #56FEFE;
}
@media screen and (max-width: 1199px) {
  .languages .lang__wrapper .lang__dropdown li a {
    font-size: 18px;
  }
}