﻿/* ----------------------------------- //
//      Custom Mixins
// ----------------------------------- //*/
/*Cover Background Mixin*/
.nav-icon {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #2472B2;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}
.nav-icon span:nth-child(1) {
  top: 0;
}
.nav-icon span:nth-child(2) {
  top: 9px;
}
.nav-icon span:nth-child(3) {
  top: 18px;
}
.nav-icon.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-icon.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
@media (max-width: 1200px) {
  .nav-icon {
    display: flex;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

html {
  font-family: "Red Hat Display", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #F7F7F7;
  margin: 0;
}
body.js-hidden {
  overflow: hidden;
}

:root {
  --space: calc((100vw - 1650px)/2);
}

em {
  font-style: italic;
}

strong {
  font-weight: 900;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 34px;
}
.container--xs {
  max-width: 1040px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 34px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.container-pull-right {
  margin-right: auto;
  padding-left: 34px;
  margin-left: var(--space);
}
@media (max-width: 1600px) {
  .container-pull-right {
    margin-left: auto;
  }
}

main {
  padding-top: 90px;
}
@media (max-width: 1200px) {
  main {
    padding-top: 56px;
  }
}

.header {
  position: fixed;
  width: calc(100% - 160px);
  height: 90px;
  padding: 0 80px;
  z-index: 999999;
  background: #fff;
}
.header__logo {
  display: flex;
  width: 58px;
}
.header__logo a {
  display: flex;
  height: 76px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header__left {
  display: flex;
  gap: 80px;
}
@media (max-width: 1600px) {
  .header {
    width: calc(100% - 68px);
    padding: 0 34px;
  }
}
@media (max-width: 1200px) {
  .header {
    height: 56px;
    padding: 0 14px;
    width: calc(100% - 28px);
  }
  .header__logo img {
    width: 26px;
  }
  .header__left {
    gap: 40px;
  }
  .header__right {
    display: flex;
    gap: 24px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.3s;
}
.header-nav a {
  color: #393939;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}
.header-nav.js-open {
  left: 0;
}
@media (max-width: 1200px) {
  .header-nav {
    gap: 20px;
    flex-direction: column;
    position: absolute;
    left: -110%;
    top: 56px;
    width: 100%;
    height: auto;
    padding: 20px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  color: #393939;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
}
.lang:hover span svg {
  transform: rotate(-180deg);
}
.lang span {
  margin-left: 5px;
}
.lang span svg {
  transition: all 0.3s;
}
.lang__icon {
  display: flex;
}
.lang__dropdown {
  position: absolute;
  height: auto;
  padding-top: 10px;
  position: absolute;
  top: 24px;
  display: none;
  width: 100%;
  right: 0;
  background: #fff;
}
.lang__item {
  display: flex;
  gap: 5px;
  color: #393939;
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  opacity: 0.7;
}
.button svg {
  transition: all 0.3s;
}
.button--lg {
  min-width: 210px;
}
.button--turquoise {
  background: #00ADC9;
}
.button--blue {
  background: #2472B2;
}
.button--dark {
  background: #134679;
}
.button--show-more svg {
  transform: rotate(90deg);
}
.button--show-more.js-active svg {
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  .button {
    gap: 10px;
  }
  .button--lg {
    min-width: auto;
  }
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.main-slider {
  position: relative;
  background: #D7FAFF;
  /*background: #013B62;*/
  padding: 100px 0;
  background: linear-gradient(90deg, rgb(215, 250, 255) 50%, rgb(190, 214, 49) 100%);
  /*padding-top: 100px;*/
}
.main-slider .container {
  position: relative;
}
.main-slider .js-main-slider-prev, .main-slider .js-main-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: auto;
  display: flex;
  z-index: 3;
}
.main-slider .js-main-slider-next {
  right: 30px;
  left: auto;
}
.main-slider .js-main-slider-next svg {
  transform: rotate(180deg);
}
.main-slider__slider {
  overflow: hidden;
}
.main-slider__item {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}
.main-slider__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  /*max-width: 485px;*/
}
.main-slider__content p {
  color: #134679;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
.main-slider__title {
  color: #134679;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
}
.main-slider__title span {
  display: block;
}
.main-slider__picture {
  display: flex;
  /*flex: 1;*/
  max-width: 1130px;
  width: 100%;
  /*max-width: 860px;*/
}
.main-slider__picture img {
  width: 100%;
  display: flex;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.main-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px !important;
  width: calc(100% - 20px) !important;
  bottom: 40px !important;
  z-index: 3;
}
.main-slider__pagination .swiper-pagination-bullet {
  background: #00B6CD;
  height: 2px;
  width: 90px;
  border-radius: 0;
}
.main-slider__mobile-nav {
  display: none;
}
@media (max-width: 1600px) {
  .main-slider .js-main-slider-prev {
    left: 10px;
  }
  .main-slider .js-main-slider-next {
    right: 10px;
  }
  .main-slider__item {
    gap: 50px;
  }
  .main-slider__title {
    font-size: 40px;
  }
  .main-slider__picture {
    width: 70%;
  }
  .main-slider__content {
    gap: 20px;
  }
  .main-slider__content p {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
  .main-slider {
    padding: 60px 0;
  }
  .main-slider__title {
    font-size: 36px;
  }
  .main-slider__picture {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .main-slider {
    min-height: 400px;
  }
  .main-slider .js-main-slider-prev, .main-slider .js-main-slider-next {
    display: none;
  }
  .main-slider__title {
    font-size: 30px;
  }
  .main-slider__content p {
    font-size: 14px;
  }
  .main-slider__picture img {
    object-fit: cover;
  }
  .main-slider__pagination {
    bottom: 50px !important;
  }
}
@media (max-width: 768px) {
  .main-slider {
    min-height: calc(100vh - 56px);
  }
  .main-slider__item {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .main-slider {
    padding: 0;
    padding-bottom: 30px;
    min-height: auto;
  }
  .main-slider .container-pull-right {
    padding: 0;
  }
  .main-slider__item {
    gap: 0;
  }
  .main-slider__picture {
    width: 100%;
    min-height: 330px;
  }
  .main-slider__picture img {
    border-radius: 0;
  }
  .main-slider__content {
    padding: 30px;
  }
  .main-slider__pagination {
    display: none;
  }
  .main-slider__mobile-nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    right: 30px;
  }
  .main-slider__mobile-nav .js-main-slider-prev, .main-slider__mobile-nav .js-main-slider-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 70, 121, 0.2);
    top: initial;
    left: inherit;
    right: initial;
    width: 40px;
    height: 40px;
    transform: translate(0);
  }
}

.numbers {
  background: #013B62;
  padding: 40px 0;
  border-radius: 12px;
}
.numbers__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  column-gap: 56px;
}
.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.numbers__item img {
  display: flex;
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 34px;
}
.numbers__item h4 {
  margin: 0;
  font-size: 22px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 24px;
  color: #fff;
}
.numbers__item h4 span {
  font-size: 72px;
}
.numbers__item ul {
  list-style: disc;
}
.numbers__item ul li {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  /*min-height: 40px;*/
}
.numbers__item p {
  margin: 0;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  /*min-height: 40px;*/
}
@media (max-width: 1366px) {
  .numbers__list {
    gap: 20px;
  }
  .numbers__item h4 {
    font-size: 20px;
  }
  .numbers__item h4 span {
    font-size: 60px;
  }
  .numbers__item p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .numbers__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .numbers__list {
    grid-template-columns: 1fr;
  }
  .numbers__item h4 {
    font-size: 50px;
  }
  .numbers__item p {
    font-size: 22px;
  }
}

.section {
  position: relative;
}
.section > div {
  position: relative;
  z-index: 3;
}
.section--xl {
  padding-top: 120px;
  padding-bottom: 40px;
}
.section--full-padding {
  padding: 140px 0;
}
.section--bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  min-height: 385px;
  background: #fff;
  content: "";
  z-index: 2;
}
.section--white {
  background: #fff;
}
.section--bg-quarter:after {
  min-height: 325px;
}
.section--gallery:after {
  min-height: 325px !important;
}
.section--blue {
  background: #00457A;
}
@media (max-width: 1024px) {
  .section--xl {
    padding-top: 57px;
    padding-bottom: 57px;
  }
  .section--full-padding {
    padding: 57px 0;
  }
  .section--bg:after {
    min-height: 200px;
  }
  .section--bg-quarter:after {
    display: none;
  }
  .section--gallery:after {
    min-height: auto !important;
  }
}
@media (max-width: 767px) {
  .section--bg:after {
    height: 30%;
  }
  .section--gallery:after {
    height: 45%;
  }
  .section--xl {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section-head {
  margin-bottom: 80px;
}
.section-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-head__title {
  color: #00457A;
  font-size: 45px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 30px;
}
.section-head__title--centered {
  text-align: center;
}
.section-head__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: #303030;
}
@media (max-width: 1170px) {
  .section-head {
    margin-bottom: 30px;
  }
  .section-head__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .section-head__desc {
    font-size: 14px;
  }
}

.slider-nav {
  display: flex;
}
.slider-nav__prev, .slider-nav__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: #F0F0F0;
}
.slider-nav__prev.swiper-button-disabled, .slider-nav__next.swiper-button-disabled {
  background: #F7F7F7;
}

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  padding: 6px 14px;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.badge--blue {
  background: #00457A;
}
.badge--turquoise {
  background: #00B6CD;
}
.badge--green {
  color: #393939;
  background: #CDE9BD;
}
.badge--dark-green {
  background: #B8BE14;
}
.badge--radius-top {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
}
.about__images {
  position: relative;
  min-width: 782px;
  min-height: 530px;
  height: 100%;
  width: 100%;
}
.about__picture {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}
.about__picture img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__logo {
  position: absolute;
  bottom: -1px;
  right: 20px;
  background: #fff;
  padding: 10px;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
}
.about__logo img {
  width: 76px;
  display: flex;
}
.about__box {
  padding: 65px 30px;
  background: #fff;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.about__title {
  margin-top: 14px;
  margin-bottom: 40px;
  color: #393939;
  font-size: 40px;
  font-weight: 600;
  /*max-width: 365px;*/
}
.about__desc p {
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .about__images {
    min-width: 50%;
    height: 465px;
  }
  .about__box {
    padding: 20px 14px;
    min-height: 425px;
  }
}
@media (max-width: 1280px) {
  .about__logo {
    /*padding: 16px 20px;*/
  }
  .about__logo img {
    /*width: 145px;*/
  }
}
@media (max-width: 1170px) {
  .about__inner {
    gap: 16px;
  }
  .about__images {
    height: 400px;
    min-height: auto;
  }
  .about__box {
    padding: 20px 14px;
    min-height: 360px;
  }
  .about__title {
    margin: 16px 0;
    font-size: 26px;
  }
  .about__desc p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .about__inner {
    flex-direction: column;
  }
  .about__logo img {
    width: 50px;
  }
  .about__images {
    height: 280px;
  }
  .about__box {
    align-items: center;
    min-height: auto;
    text-align: center;
  }
  .about__box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about__title {
    /*max-width: 70%;*/
  }
}

.colored-box__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: red;
  padding: 40px;
  min-height: 430px;
  border-radius: 12px;
  background: #C5D12D;
  overflow: hidden;
}
.colored-box__item:before {
  position: absolute;
  bottom: -40px;
  left: 0;
  content: "";
  z-index: 1;
  background-image: url(/Content/images/egitim-bg.png);
  width: 100%;
  height: 175px;
}
.colored-box__item--green {
  background: #9DE471;
}
.colored-box__item--green:before {
  position: absolute;
  bottom: -40px;
  left: 0;
  content: "";
  z-index: 1;
  background-image: url(/Content/images/burs-bg.png);
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
}
.colored-box__item--blue {
  background: #00B6CD;
}
.colored-box__item--blue:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  z-index: 1;
  background-image: url(/Content/images/isbirligi-bg.png);
  width: 100%;
  height: 175px;
  background-repeat: no-repeat;
}
.colored-box__item--blue .colored-box__title {
  color: #fff;
}
.colored-box__item--blue .colored-box__content p {
  color: #fff;
}
.colored-box__title {
  color: #134679;
  font-size: 34px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 40px;
}
.colored-box__content {
  max-width: 340px;
}
.colored-box__content p {
  color: #134679;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
}
.colored-box__action {
  z-index: 2;
}
.colored-box__mobile-head {
  display: none;
}
@media (max-width: 991px) {
  .colored-box__item {
    min-height: auto;
    gap: 30px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .colored-box__title {
    display: none;
  }
  .colored-box__title--mobile {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 140%;
  }
  .colored-box__content p {
    font-size: 14px;
    font-weight: 600;
    line-height: 160%;
  }
  .colored-box__mobile-head {
    display: flex;
    background: #fff;
    padding: 20px;
  }
}

.box-slider {
  overflow: hidden;
}
.box-slider__nav {
  display: none;
  margin-bottom: 30px;
  justify-content: flex-end;
}
.box-slider__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
}
.box-slider__nav a svg {
  height: 12px;
}
.box-slider__nav a.js-box-next svg {
  transform: rotate(180deg);
}
@media (max-width: 1200px) {
  .box-slider__nav {
    display: flex;
  }
}

.photo-gallery {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.photo-gallery .js-photo-gallery-prev {
  position: relative;
  left: 30px;
}
.photo-gallery .js-photo-gallery-next {
  position: relative;
  right: 30px;
}
.photo-gallery .js-photo-gallery-next svg {
  transform: rotate(180deg);
}
.photo-gallery .container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.photo-gallery__slider {
  overflow: hidden;
}
.photo-gallery__item {
  display: flex;
  width: 100%;
  max-height: 300px;
  height: 100%;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.photo-gallery__pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  z-index: 3;
}
.photo-gallery__pagination .swiper-pagination-bullet {
  width: 90px;
  height: 2px;
  border-radius: 0;
  background: #B4D334;
}
@media (max-width: 991px) {
  .photo-gallery .container {
    gap: 0;
  }
  .photo-gallery .js-photo-gallery-prev {
    position: relative;
    left: -10px;
  }
  .photo-gallery .js-photo-gallery-next {
    position: relative;
    right: -10px;
  }
}

.contact-form {
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  background: #fff;
  padding: 30px 40px;
}
.contact-form__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 110%;
  color: #00457A;
  margin-bottom: 10px;
}
.contact-form__desc {
  color: #303030;
  font-size: 20px;
  line-height: 160%;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .contact-form__title {
    font-size: 26px;
  }
  .contact-form__desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 50px 40px 40px 40px;
  }
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.cards__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards__inner {
  background: #fff;
  padding: 40px 30px;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.cards__content {
  margin-bottom: 30px;
}
.cards__content .badge {
  margin-bottom: 14px;
}
.cards__content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  color: #000;
}
.cards__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 110%;
  color: #393939;
  margin-bottom: 30px;
  min-height: 75px;
}
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .cards__title {
    font-size: 28px;
    min-height: 70px;
    margin-bottom: 16px;
  }
  .cards__inner {
    min-height: 265px;
  }
  .cards__content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .cards__inner {
    padding: 20px;
  }
}

.subpage-header {
  width: 100%;
  height: 130px;
  background: #1A5E8F;
}
.subpage-header .container {
  height: 100%;
}
.subpage-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.subpage-header__title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 110%;
}

.breadcrumb {
  padding: 20px 0;
}
.breadcrumb__inner {
  display: flex;
  justify-content: space-between;
}
.breadcrumb__list {
  display: flex;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #393939;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
}
.breadcrumb__item svg {
  margin: 0 20px;
}
.breadcrumb__select .choices {
  width: auto;
}
.breadcrumb__select .choices:after {
  display: none;
}
.breadcrumb__select .choices__inner {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0 !important;
  height: 100%;
  width: auto;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  padding: 0 !important;
  padding-right: 15px;
}
.breadcrumb__select .choices__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("/Content/images/icons/breadcrumb-icon-colored.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.breadcrumb__select .choices__list {
  height: 100%;
  padding: 0;
  z-index: 99999;
  line-height: 110%;
}
.breadcrumb__select .choices__list--single {
  padding-right: 30px;
}
.breadcrumb__select .choices__list--dropdown {
  height: auto;
  min-width: 200px;
}
.breadcrumb__select .choices__placeholder {
  opacity: 1;
}
.breadcrumb__select .choices__item {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
}
.breadcrumb__select .choices__item--choice {
  padding: 0 !important;
  background: transparent !important;
  color: #393939 !important;
  font-size: 13px !important;
  font-weight: 600;
  padding: 10px !important;
}
.breadcrumb__select .choices.is-open .choices__inner::after {
  transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 767px) {
  .breadcrumb__select .choices__list--dropdown {
    left: -50%;
  }
}

.form__row {
  display: flex;
  gap: 20px;
}
.form__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
.form__item label {
  color: #393939;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
.form__item input, .form__item textarea {
  padding: 23px 20px;
  background: #FCFCFC;
  border: none;
  border-bottom: 1px solid #D7D7D7;
  outline: none;
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  color: #393939;
  resize: none;
  font-family: "Red Hat Display", sans-serif;
}
.form__item input:placeholder, .form__item textarea:placeholder {
  color: #393939;
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  color: #393939;
}
.form__item--button {
  width: auto;
}
.form__item--button button {
  border: none;
}
.form__item--button button svg {
  transform: rotate(0deg);
}
.form__item--button button:hover {
  opacity: 1;
}
.form__item--button button:hover svg {
  margin-left: 10px !important;
}
.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form__privacy input[type=checkbox] {
  opacity: 0;
  left: 0;
  position: absolute;
}
.form__privacy label {
  font-size: 16px;
  line-height: 140%;
  color: #393939;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
.form__privacy label.form-error {
  color: #DF2228;
}
.form__privacy label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #EEEEEE;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 13px;
  transform: translateY(-50%);
}
.form__privacy label a {
  color: #393939;
  font-size: 16px;
  text-decoration: underline;
}
.form__privacy input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 15px;
  height: 10px;
  background-image: url("/Content/images/icons/check.png");
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 13px;
  transform: translateY(-50%);
}
.form__privacy input[type=checkbox]:checked + label::before {
  border-color: #7ECFDA;
  background-color: #7ECFDA;
}
@media (max-width: 1024px) {
  .form__item label {
    font-size: 14px;
  }
  .form__item input, .form__item textarea {
    font-size: 14px;
  }
  .form__item input::placeholder, .form__item textarea::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .form__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form__item--button {
    min-width: 195px;
  }
}

.iti input {
  width: 100%;
}

.choices {
  display: flex;
}
.choices__item {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.choices__inner {
  min-height: 52px;
  border: none;
  border-bottom: 1px solid #D7D7D7;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.choices__list--single {
  padding: 0;
  height: 100%;
}

.footer {
  background: #fff;
}
.footer__top {
  padding: 40px 0;
  border-bottom: 1px solid #D6D6D6;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo p {
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #000000;
}
.footer__top-inner {
  display: flex;
  justify-content: space-between;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #303030;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}
.footer__address {
  display: flex;
  gap: 10px;
}
.footer__address p {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  color: #303030;
}
.footer__address p span {
  display: flex;
}
.footer__mobile-info-wrapper {
  display: none;
}
.footer__bottom-inner {
  padding: 40px 0;
}
.footer__bottom-left {
  display: flex;
  gap: 40px;
}
.footer__bottom-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #646464;
  font-size: 13px;
  line-height: 160%;
  font-weight: 500;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
  /*padding-left: 20px;*/
  /* border-left: 1px solid #D6D6D6;*/
}
.footer__links a {
  font-size: 11px;
  color: #000000;
  font-weight: 400;
}
@media (max-width: 991px) {
  .footer__top-inner {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer__logo {
    order: 1;
  }
  .footer__info {
    order: 3;
  }
  .footer__address {
    order: 4;
  }
}
@media (max-width: 767px) {
  .footer__top {
    padding-bottom: 20px;
  }
  .footer__top-inner {
    justify-content: center;
  }
  .footer__logo {
    width: 100%;
    align-items: center;
    order: initial;
  }
  .footer__logo img {
    width: 56px;
  }
  .footer__info {
    display: none;
  }
  .footer__address {
    display: none;
  }
  .footer__mobile-info-wrapper {
    display: flex;
    gap: 20px;
  }
  .footer__mobile-info-wrapper > div {
    display: flex;
    gap: 10px;
  }
  .footer__mobile-info-wrapper > div svg {
    min-width: 16px;
    min-height: 21px;
  }
  .footer__mobile-info-wrapper > div p, .footer__mobile-info-wrapper > div a {
    font-size: 14px;
  }
  .footer__mobile-info-wrapper > div p span, .footer__mobile-info-wrapper > div a span {
    display: inline-flex;
  }
  .footer__bottom-inner {
    padding: 20px 0;
  }
  .footer__bottom-left {
    flex-direction: column;
    gap: 10px;
  }
  .footer__links {
    padding: 0;
    border: none;
  }
}

.social {
  display: flex;
  gap: 15px;
}
.social__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #E8ECEF;
  border-radius: 50%;
  transition: all 0.3s;
}
.social__item:hover {
  background: #393939;
}
.social__item:hover svg path {
  fill: #fff;
}
@media (max-width: 991px) {
  .social {
    order: 2;
  }
}
.form-error {
  border-color: red !important;
}

ul {
  list-style: none;
}
ul li {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 18px;
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  padding-left: 26px;
  gap: 10px;
  text-align: left;
}
ul li:before {
  position: absolute;
  width: 10px;
  height: 19px;
  top: 5px;
  left: 0;
  content: "";
  transition: all 0.3s;
  background-image: url("/Content/images/icons/list-icon-default.png");
  background-position: center;
  background-size: cover;
}
@media (max-width: 991px) {
  ul li {
    flex-direction: column;
    gap: 0;
  }
}

.page {
  padding: 40px 0;
}
.page__title {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 30px;
  margin-top: 20px;
}
.page__spot {
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 30px;
}
.page__img {
  display: flex;
  margin-bottom: 40px;
}
.page__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article ul {
  list-style: disc;
  padding-left: 24px;
}
.article p, .article ul, .article ol {
  color: #242424;
  font-size: 14px;
  line-height: 160%;
  padding: 0;
  margin-bottom: 14px;
  font-weight: 500;
}
.article img {
  display: flex;
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}
.article__date {
  font-size: 14px;
  font-weight: 900;
}

.cross-box {
  padding: 0 50px;
}
.cross-box__wrapper {
  margin-bottom: 50px;
}
.cross-box__wrapper:nth-child(even) .cross-box__inner {
  flex-direction: row-reverse;
}
.cross-box__inner {
  display: flex;
  justify-content: space-between;
  gap: 130px;
}
.cross-box__content {
  max-width: 50%;
  width: 100%;
}
.cross-box__image {
  max-width: 50%;
  width: 100%;
}
.cross-box__image img {
  display: flex;
  /* width: 100%;
  height: 100%;*/
  object-fit: cover;
  border-radius: 12px;
}
.cross-box__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 16px;
}
.cross-box__content p {
  color: #454745;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 26px;
}
.cross-box__content p:last-child {
  margin: 0;
}
@media (max-width: 1200px) {
  .cross-box {
    padding: 0 34px;
  }
  .cross-box__inner {
    gap: 60px;
  }
  .cross-box__title {
    font-size: 38px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .cross-box {
    padding: 0;
  }
  .cross-box__inner {
    flex-direction: column-reverse;
  }
  .cross-box__wrapper:nth-child(even) .cross-box__inner {
    flex-direction: column-reverse;
  }
  .cross-box__content, .cross-box__image {
    max-width: 100%;
  }
  .cross-box__content {
    width: auto;
    padding: 0 20px;
  }
  .cross-box__image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.not-found {
  position: relative;
}
.not-found__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.not-found__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.not-found__content h1 {
  font-weight: 600;
  font-size: 200px;
  margin-bottom: 16px;
}
.not-found__content p {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .not-found__content h1 {
    font-size: 180px;
  }
  .not-found__img {
    height: 70vh;
  }
}
@media (max-width: 525px) {
  .not-found .button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
