:root {
  --def: 70px;
  --big: 100px;
}
@media (max-width: 47.99em) {
  :root {
    --def: 40px;
  }
}
@media (max-width: 47.99em) {
  :root {
    --big: 50px;
  }
}

.cleaner:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

.cleaner {
  display: inline-block;
  overflow: hidden;
}

/* Hides from IE Mac \*/
* html .cleaner {
  height: 1%;
}

.cleaner {
  display: block;
}

/* End Hack */
@font-face {
  font-family: "HelveticaNeueLTPro";
  font-display: swap;
  src: url("../fonts/HelveticaNeueLTPro-Bd.woff") format("woff"), url("http://blacksand/fonts/HelveticaNeueLTPro-Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
}
.wow {
  visibility: hidden;
}

* {
  outline: none !important;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
  background: #fff;
  color: #000;
}

.mb-div {
  margin-bottom: 50px;
}

.mb-big {
  margin-bottom: var(--big);
}

.pt-big {
  padding-top: var(--big);
}

.pb-big {
  padding-bottom: var(--big);
}

button {
  border: none;
  background: none;
}

.header-block {
  padding-bottom: 150px;
}

.after-header-block {
  margin-top: -100px;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
}
.scroll-direct .header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.header__search-mobile {
  color: #000;
  display: flex;
  height: 60px;
  align-items: center;
}

.table-wrapper {
  overflow: auto;
}

.textblock b {
  font-weight: 900;
}
.textblock ul {
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 20px;
}
.textblock ul li {
  padding-left: 40px;
  margin-bottom: 25px;
  position: relative;
}
.textblock ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-left: 10px solid #FBB03B;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.textblock h3 {
  font-size: 22px;
  color: #FBB03B;
  font-weight: 900;
}
.textblock ol {
  list-style: decimal;
  margin-left: 25px;
}
.textblock ol li {
  color: #FBB03B;
}
.textblock ol li p {
  color: #000;
}
.textblock--bigtext h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}
.textblock--ulshift ul {
  margin-left: 70px;
}
@media (max-width: 1620px) {
  .textblock--ulshift ul {
    margin-left: calc(20px + 50 * ((100vw - 375px) / 1245));
  }
}
.textblock--ulshift ul li {
  padding-left: 40px;
}
@media (max-width: 1620px) {
  .textblock--ulshift ul li {
    padding-left: calc(30px + 10 * ((100vw - 375px) / 1245));
  }
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #999;
  border-radius: 50%;
  margin: 5px 10px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fbb03b;
}

.center {
  text-align: center;
}
.center th, .center td {
  text-align: center;
}

.navbar {
  align-items: flex-end;
  padding: 0;
  /*
  &-brand {
    padding: 12px;
    opacity: 0;
    //height: 0;
    display: block;
    width: auto;
    overflow: hidden;
    height: 60px;
    transition: opacity 1s ease, height 1s ease;
    @include mq($from: max) {
      //height: 70px;
      display: inline-block;
      position: absolute;
      right: 0;
      //transform: translate(0,-50%);
      //top: 50%;
      height: auto;
      max-height: 70px;
      bottom:8px; //top:0;
      //height: auto;
    }


    @include mq($from: 1620px) {
      //height: 80px;
      max-height: inherit;
    }

    img {

        max-height: 100%;
        width: auto;

    }

    .scroll-direct & {
      opacity: 1;
      //height: auto;
    }
  }
  */
}
.navbar .svg-search {
  width: 30px;
  height: 30px;
  margin-left: 30px;
}
.navbar-header {
  height: 100%;
  position: relative;
}
@media (max-width: 86.865em) {
  .navbar-header {
    display: flex;
  }
}
.navbar-brand {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 18px;
  display: block;
  background-position: 50% 100%;
  background-size: contain;
  opacity: 0;
  transition: opacity 1s ease, height 1s ease;
  background-repeat: no-repeat;
}
body:not(.home) .navbar-brand, .scroll-direct .navbar-brand {
  opacity: 1;
}
@media (max-width: 86.865em) {
  .navbar-brand {
    left: 45px;
    background-position: 0 50%;
  }
}
.navbar-nav {
  padding-top: 0;
  transition: padding-top 1s ease;
  flex-wrap: nowrap;
  align-items: flex-end;
}
@media (min-width: 75em) {
  .navbar-nav {
    padding-top: 12px;
  }
}
.navbar-nav > .dropdown {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.scroll-direct .navbar-nav {
  padding-top: 10px;
  padding-bottom: 40px;
}
@media (min-width: 81.25em) {
  .scroll-direct .navbar-nav {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media (max-width: 86.865em) {
  .navbar-nav {
    align-items: flex-start;
  }
}
.navbar-nav a {
  display: block;
  white-space: normal;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #000;
  padding: 12px 14px;
  margin: 0 5px;
  position: relative;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
@media (max-width: 1620px) {
  .navbar-nav a {
    font-size: calc(14px + 5 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 86.865em) {
  .navbar-nav a {
    margin-left: 0;
    padding-left: 0;
  }
}
.navbar-nav a:hover {
  color: #f9af48;
}
.navbar-nav a:hover:before {
  left: 0;
  right: 0;
  height: 4px;
}
.navbar-nav a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 0;
  background: #f9af48;
  transition: left 0.3s ease, right 0.3s ease, height 0.3s ease;
  border: none;
}
.navbar-nav a:after {
  display: none;
}
.navbar .dropdown.show .dropdown-toggle {
  color: #f9af48;
}
.navbar .dropdown-toggle .caret {
  display: block;
  position: absolute;
  right: 0;
  top: 20%;
  transform: rotate3d(0, 0, 1, 45deg);
  transition: color 0.3s ease, transform 0.5s ease;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.navbar .dropdown-toggle[aria-expanded=true] .caret {
  border-color: #f9af48;
  transform: rotate3d(1, -0.4, 0, 175deg);
}
.navbar .dropdown-toggle:hover .caret {
  border-color: #f9af48;
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 0;
}
@media (min-width: 86.875em) {
  .navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
  }
}
.navbar .dropdown-menu a {
  white-space: nowrap;
}
@media (min-width: 86.875em) {
  .navbar .dropdown-menu a {
    color: #fff;
    padding: 24px;
  }
}
.navbar .dropdown-menu a:before {
  display: none;
}
.navbar .dropdown-menu a:hover {
  color: #f9af48;
}

.pad-left {
  padding-left: 15px !important;
}
@media (min-width: 36em) {
  .pad-left {
    padding-left: calc((100vw - 540px) / 2 + 15px) !important;
  }
}
@media (min-width: 48em) {
  .pad-left {
    padding-left: calc((100vw - 720px) / 2 + 15px) !important;
  }
}
@media (min-width: 62em) {
  .pad-left {
    padding-left: calc((100vw - 960px) / 2 + 15px) !important;
  }
}
@media (min-width: 64em) {
  .pad-left {
    padding-left: calc((100vw - 1024px) / 2 + 15px) !important;
  }
}
@media (min-width: 75em) {
  .pad-left {
    padding-left: calc((100vw - 1200px) / 2 + 15px) !important;
  }
}
@media (min-width: 101.25em) {
  .pad-left {
    padding-left: calc((100vw - 1620px) / 2 + 15px) !important;
  }
}
.pad-right {
  padding-right: 15px !important;
}
@media (min-width: 62em) {
  .pad-right {
    padding-right: 48px;
  }
}
@media (min-width: 101.25em) {
  .pad-right {
    padding-right: calc((100vw - 1620px) / 2 + 48px) !important;
  }
}

.with-icon {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #000;
  text-decoration: none;
}
@media (max-width: 1620px) {
  .with-icon {
    font-size: calc(18px + 4 * ((100vw - 375px) / 1245));
  }
}
.with-icon span {
  padding-left: 60px;
}
@media (max-width: 1620px) {
  .with-icon span {
    padding-left: calc(40px + 20 * ((100vw - 375px) / 1245));
  }
}
.with-icon .svg {
  width: 38px;
  height: 49px;
}
.with-icon:hover {
  color: #000;
}

.logo-orange .animation path {
  stroke: #F2AF4A;
  color: #F2AF4A;
}

.finance-icon {
  height: auto;
  margin-bottom: 40px;
  width: 138px;
}
@media (max-width: 1620px) {
  .finance-icon {
    width: calc(80px + 58 * ((100vw - 375px) / 1245));
  }
}

.form-group {
  margin-bottom: 50px;
}
@media (max-width: 1620px) {
  .form-group {
    margin-bottom: calc(25px + 25 * ((100vw - 375px) / 1245));
  }
}
.form-group label {
  margin-bottom: 25px;
}
@media (max-width: 1620px) {
  .form-group label {
    margin-bottom: calc(12px + 13 * ((100vw - 375px) / 1245));
  }
}
textarea.form-control {
  height: 195px;
}

.btn {
  font-size: 22px;
}
.btn-primary {
  background: #fbb03b;
  border: none !important;
}
.btn-primary:hover {
  background: #fbb03b;
}

.collapse .blob {
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.2s;
}
.collapse.show .blob {
  opacity: 1;
}

.icon-bar {
  background: #000;
  height: 3px;
  width: 20px;
  margin: 3px;
  display: block;
}

.navbar-toggle {
  padding: 10px 0;
}
@media (min-width: 86.875em) {
  .navbar-toggle {
    display: none;
  }
}

.toplogo {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  padding-top: 20px;
}
@media (min-width: 75em) {
  .toplogo {
    padding-top: 56px;
  }
}
@media (min-width: 62em) {
  .toplogo__inner {
    margin-left: -53px;
  }
}

.swiper-container-fade .swiper-slide {
  opacity: 0;
}
.swiper-container-fade .swiper-slide-active {
  opacity: 1;
}

.container {
  padding: 0 24px;
  max-width: 1620px !important;
}
@media (min-width: 48em) {
  .container {
    padding: 0 48px;
  }
}

/*
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1620px;
    padding: 0 48px;
  }
}
/*
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1620px) {
  .container {
    max-width: 1620px;
  }
}
*/
@media (min-width: 75em) {
  .offset-xl-bs {
    margin-left: 11%;
  }

  .col-xl-bs {
    flex: 0 0 11%;
    max-width: 11%;
  }

  .col-xl-bs-6 {
    flex: 0 0 39%;
    max-width: 39%;
  }
}
@media (min-width: 86.875em) {
  .col-huge-bs {
    flex: 0 0 11%;
    max-width: 11%;
  }

  .d-huge-none {
    display: none;
  }

  .d-huge-block {
    display: block !important;
  }

  .navbar-expand-huge .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-huge {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-huge .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-huge {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
.bg-cover {
  background-size: cover;
}

.modal-prev, .modal-next {
  opacity: 0;
  cursor: pointer;
  transition: all 0.1s ease, transform 0.8s ease, opacity 0.5s ease;
  position: fixed;
  top: 50%;
  z-index: -1;
  padding: 20px;
}
.modal-prev .svg, .modal-next .svg {
  width: 20px;
  height: 20px;
}
.modal-open.show-modal-nav .modal-prev, .modal-open.show-modal-nav .modal-next {
  z-index: 1070;
  display: block;
  opacity: 1;
  transform: translate(0, -50%);
}

.modal-prev {
  left: 10%;
  transform: translate(-20px, -50%);
}
@media (max-width: 87.5em) {
  .modal-prev {
    left: 20px;
  }
}
@media (max-width: 72.5em) {
  .modal-prev {
    left: 0;
  }
}
@media (max-width: 68.75em) {
  .modal-prev {
    display: none !important;
  }
}

.modal-next {
  right: 10%;
  transform: translate(20px, -50%);
}
@media (max-width: 87.5em) {
  .modal-next {
    right: 20px;
  }
}
@media (max-width: 72.5em) {
  .modal-next {
    right: 0;
  }
}
@media (max-width: 68.75em) {
  .modal-next {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 15px;
  }
}
.modal--external .modal-dialog {
  max-width: 1320px;
}
@media (max-width: 576px) {
  .modal--external .modal-dialog {
    margin: 0;
  }
}
.modal--form .modal-dialog {
  max-width: 466px;
}

.modal-body {
  padding: 0;
}

.modal-content {
  border-radius: 0;
  border: none !important;
  padding: 0;
  margin: 0 auto;
  /*
  @include mq($until:lg) {
    margin: 0 15px;
    padding: 60px 40px 40px 40px;
  }
  @include mq($until:md) {
    margin: 0 5px;
    padding: 55px 15px 15px 20px;
  }

   */
}

.modal-header {
  padding-left: 0;
  padding-right: 0;
  background: none;
  border: none;
  align-items: center;
}
/*
.modal__close {
  position: absolute;
  top:20px; right: 20px; color:#fff;
  opacity: 1;
  .svg {
    width: 20px; height: 20px;
  }
}
*/
.modal-backdrop {
  background: #000;
}
.modal-backdrop.show {
  opacity: 0.46;
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
  opacity: 1;
}
.modal .close .svg {
  width: 45px;
  height: 45px;
}
@media (max-width: 47.99em) {
  .modal .close {
    top: 10px;
    right: 10px;
  }
}
.modal__logo .svg {
  width: 257px;
  height: 53px;
}
.modal--form .close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.modal--form .close .svg {
  color: #fff;
  fill: #fff;
}

/* Holy Grail */
html {
  height: 100%;
}

.hg {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.header,
.footer, .hg__nav {
  flex: none;
}

.hg__body {
  flex: 1 0 auto;
  position: relative;
}

.topslider {
  padding-top: 70px;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 3;
  padding-bottom: 100px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vh), 19% 100%, 0 calc(100% - 5vh));
}
@media (min-width: 75em) {
  .topslider {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 324px), 19% 100%, 0 calc(100% - 300px));
  }
}
.topslider-next {
  position: relative;
  z-index: 7;
}

.slider__item {
  position: relative;
  z-index: 1;
}
.slider__content {
  position: relative;
  z-index: 9;
  padding-top: 200px;
  padding-bottom: 100px;
}
@media (min-width: 75em) {
  .slider__content {
    padding-top: 260px;
    padding-bottom: 100px;
  }
}
.slider__wrapper {
  padding-right: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 75em) {
  .slider__wrapper {
    min-height: 450px;
  }
}
@media (max-width: 35.99em) {
  .slider__wrapper {
    padding-right: 15px;
  }
}
.slider__nav {
  position: absolute;
  top: 20%;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 35.99em) {
  .slider__nav {
    display: none;
  }
}
.slider__nav-text {
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-size: 19px;
  padding: 50px 0;
  border-radius: 50%;
}
.slider__nav .svg {
  height: 80px;
  width: 30px;
  transition: transform 1s ease;
}
.slider__nav .swiper-button-next, .slider__nav .swiper-button-prev {
  padding: 12px;
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.slider__nav .swiper-button-next.swiper-button-disabled, .slider__nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.slider__nav .swiper-button-next:hover .svg {
  transform: translate(0, -50%);
}
.slider__nav .swiper-button-prev:hover .svg {
  transform: translate(0, 50%);
}
.slider__title {
  font-size: 100px;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 2px;
}
@media (max-width: 1620px) {
  .slider__title {
    font-size: calc(38px + 62 * ((100vw - 375px) / 1245));
  }
}
.slider__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: 50% 50%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vh), 19% 100%, 0 calc(100% - 5vh));
}
@media (min-width: 75em) {
  .slider__bg {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 324px), 19% 100%, 0 calc(100% - 300px));
  }
}
.slider__bg-image {
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.slider__text {
  font-size: 24px;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 50px;
}
@media (max-width: 1620px) {
  .slider__text {
    font-size: calc(18px + 6 * ((100vw - 375px) / 1245));
  }
}
.slider__more {
  font-size: 30px;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  color: #f9af48;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
@media (max-width: 1620px) {
  .slider__more {
    font-size: calc(24px + 6 * ((100vw - 375px) / 1245));
  }
}
.slider__more .icon {
  overflow: hidden;
}
.slider__more .svg {
  margin-top: 15px;
  width: 20px;
  height: 80px;
  transition: transform 1s ease, color 0.3s ease;
}
.slider__more:hover {
  color: #fff;
}
.slider__more:hover .svg {
  transform: translate(0, -50%);
}
.slider .swiper-slide-active {
  z-index: 999;
}

.block {
  background: #fff;
  padding: 40px 40px 60px 34px;
}
@media (max-width: 47.99em) {
  .block {
    padding: 30px 20px 20px 30px;
  }
}
.block__title {
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  color: #f9af48;
  font-family: "HelveticaNeueLTPro", sans-serif;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 1620px) {
  .block__title {
    font-size: calc(24px + 6 * ((100vw - 375px) / 1245));
  }
}
.block__title .svg {
  margin-right: 25px;
  width: 66px;
  height: 66px;
}
.block__title {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 1620px) {
  .block__title {
    font-size: calc(23px + 6 * ((100vw - 375px) / 1245));
  }
}
.block--vertical {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.block__subtitle {
  font-weight: bold;
  padding: 5px 0 20px 0;
  line-height: 1;
  font-size: 29px;
}
@media (max-width: 1620px) {
  .block__subtitle {
    font-size: calc(23px + 6 * ((100vw - 375px) / 1245));
  }
}

.reliases {
  margin-top: -250px;
  margin-bottom: 30px;
}
.reliases .block {
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  transform: translate(0, -100%);
}
@media (min-width: 75em) {
  .reliases {
    margin-top: -345px;
  }
}
.reliases__title {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 1620px) {
  .reliases__title {
    font-size: calc(23px + 6 * ((100vw - 375px) / 1245));
  }
}
.reliases__date {
  font-size: 22px;
  font-weight: 700;
  color: #999999;
  padding: 20px 0;
}
@media (max-width: 1620px) {
  .reliases__date {
    font-size: calc(20px + 2 * ((100vw - 375px) / 1245));
  }
}
.reliases__slide {
  min-height: 176px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media (min-width: 75em) {
  .reliases__nav {
    margin-right: 12%;
  }
}

.round-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.round-nav .swiper-button-next, .round-nav .swiper-button-prev {
  position: relative;
  color: #fff;
  top: auto;
  left: auto;
  right: auto;
  margin: 5px;
  cursor: pointer;
  background: #f9af48;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  transform: scale(1);
}
@media (min-width: 48em) {
  .round-nav .swiper-button-next, .round-nav .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
}
.round-nav .swiper-button-next .svg, .round-nav .swiper-button-prev .svg {
  color: #fff;
  width: 10px;
  height: 20px;
}
.round-nav .swiper-button-next.swiper-button-disabled, .round-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.round-nav .swiper-button-next:hover:not(.swiper-button-disabled), .round-nav .swiper-button-prev:hover:not(.swiper-button-disabled) {
  transform: scale(1.15);
}
.round-nav .swiper-button-next:active, .round-nav .swiper-button-prev:active {
  transform: scale(1);
}

.link-icon {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 22px;
  line-height: 1;
  color: #999999;
  transition: color 0.4s ease;
  text-decoration: none !important;
}
@media (max-width: 1620px) {
  .link-icon {
    font-size: calc(18px + 4 * ((100vw - 375px) / 1245));
  }
}
.link-icon span.same {
  flex: 80% 0;
}
@media (min-width: 48em) {
  .link-icon span.same {
    flex: 50% 0;
  }
}
.link-icon .svg {
  margin-left: 20px;
  width: 15px;
  height: 15px;
  margin-bottom: 4px;
  color: #f9af48;
}
.link-icon:hover {
  color: #f9af48;
}

.info__title {
  letter-spacing: -0.07em;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 60px;
  padding-bottom: 0;
  font-size: 50px;
  line-height: 0.8;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
}
@media (max-width: 1620px) {
  .info__title {
    font-size: calc(28px + 22 * ((100vw - 375px) / 1245));
  }
}
@media (min-width: 75em) {
  .info {
    margin-top: -180px;
  }
}

.news {
  margin-bottom: 150px;
}
.news__item {
  max-width: 475px;
  padding: 0 15px;
}
@media (max-width: 47.99em) {
  .news .news__item {
    max-width: inherit;
  }
}
.news__item-wrapper:nth-child(3n+1) .news__item {
  margin: 0;
}
.news__item-wrapper:nth-child(3n+2) .news__item {
  margin: 0 auto;
}
.news__item-wrapper:nth-child(3n+3) .news__item {
  margin: 0 0 0 auto;
}
.news__image {
  height: 275px;
  background-size: cover;
  background-position: 50% 50%;
}
.news__image-wrapper {
  background: #fff;
  padding: 15px;
  margin: 0 -15px;
}
.news__title {
  display: block;
  padding: 20px 0;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-size: 27px;
}
@media (max-width: 1620px) {
  .news__title {
    font-size: calc(24px + 3 * ((100vw - 375px) / 1245));
  }
}
.news__text {
  color: #999999;
  font-size: 22px;
}
@media (max-width: 1620px) {
  .news__text {
    font-size: calc(18px + 4 * ((100vw - 375px) / 1245));
  }
}

.info-graphics__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 !important;
  padding-bottom: 40px;
}
.info-graphics__item-wrapper {
  display: flex;
}
@media (max-width: 74.99em) {
  .info-graphics__item {
    margin: 0 auto !important;
  }
}
@media (max-width: 1620px) {
  .info-graphics__item {
    padding-bottom: calc(30px + 10 * ((100vw - 375px) / 1245));
  }
}
.info-graphics__image {
  width: 200px;
  height: 200px;
  width: 200px;
  height: 200px;
  margin-bottom: 40px;
}
@media (max-width: 1620px) {
  .info-graphics__image {
    width: calc(120px + 80 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .info-graphics__image {
    height: calc(120px + 80 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .info-graphics__image {
    margin-bottom: calc(20px + 20 * ((100vw - 375px) / 1245));
  }
}
.info-graphics__title {
  display: inline-block;
}
.info-graphics__title-wrapper {
  align-self: flex-start;
  display: flex;
}
@media (max-width: 90em) {
  .info-graphics__title-wrapper .info-graphics__title {
    font-size: 50px;
  }
}
@media (max-width: 90em) and (max-width: 1620px) {
  .info-graphics__title-wrapper .info-graphics__title {
    font-size: calc(35px + 15 * ((100vw - 375px) / 1245));
  }
}
.info-graphics__number {
  padding-top: 0.3em;
  display: inline-block;
  color: #f9af48;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-size: 178px;
  line-height: 0.9;
  min-width: 100px;
}
@media (max-width: 1620px) {
  .info-graphics__number {
    font-size: calc(80px + 98 * ((100vw - 375px) / 1245));
  }
}
@media (min-width: 75em) {
  .info-graphics__number {
    min-width: 200px;
  }
}
@media (max-width: 90em) {
  .info-graphics__number {
    font-size: 150px;
  }
}
@media (max-width: 90em) and (max-width: 1620px) {
  .info-graphics__number {
    font-size: calc(90px + 60 * ((100vw - 375px) / 1245));
  }
}

.title {
  font-size: 30px;
  font-weight: 700;
  color: #f9af48;
  font-family: "HelveticaNeueLTPro", sans-serif;
}

.subtitle {
  font-weight: bold;
  padding: 15px 0;
  font-size: 29px;
  font-family: "HelveticaNeueLTPro", sans-serif;
  line-height: 0.9;
}

.offices {
  padding: 100px 0;
  background-size: contain;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
@media (max-width: 61.99em) {
  .offices {
    background: none !important;
  }
}
@media (min-width: 100em) {
  .offices {
    background-position: 50% 50%;
  }
}
@media (min-width: 62em) {
  .offices__title {
    margin-bottom: 100px !important;
  }
}
.offices__block {
  padding: 40px 40px 60px 34px;
  max-width: 516px;
}
@media (max-width: 61.99em) {
  .offices__block {
    padding: 0;
  }
}
.offices dl {
  color: #999999;
  font-size: 22px;
}
@media (max-width: 1620px) {
  .offices dl {
    font-size: calc(18px + 4 * ((100vw - 375px) / 1245));
  }
}
.offices dl a {
  color: #999999;
  text-decoration: none;
}
.offices dt {
  font-weight: normal;
}

a.und {
  text-decoration: underline !important;
}

.section__title {
  color: #563603;
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-size: 57px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
@media (max-width: 1620px) {
  .section__title {
    font-size: calc(36px + 21 * ((100vw - 375px) / 1245));
  }
}

.facts__nav {
  right: auto;
  left: 0;
  position: relative;
}
.facts__nav .swiper-button-next, .facts__nav .swiper-button-prev {
  width: 30px;
  height: 30px;
  margin: 3px;
}
.facts__nav .swiper-button-next .svg, .facts__nav .swiper-button-prev .svg {
  width: 10px;
  height: 14px;
}
.facts__info {
  font-weight: 700;
  font-family: "HelveticaNeueLTPro", sans-serif;
  font-size: 70px;
  color: #f9af48;
  line-height: 0.8;
  padding: 0.5em 0 1em 0;
}
@media (max-width: 1620px) {
  .facts__info {
    font-size: calc(26px + 44 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 47.99em) {
  .facts__info {
    line-height: 1;
  }
}

a.c-white:hover {
  color: white;
}

a.c-select:hover {
  color: #f9af48;
}

.rel {
  position: relative;
  z-index: 7;
}

.footer {
  overflow: hidden;
  position: relative;
  background: #000;
  color: #fff;
  padding: 8vh 0 40px 0;
  font-size: 22px;
  clip-path: polygon(0 0, 19% 5vh, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1620px) {
  .footer {
    font-size: calc(16px + 6 * ((100vw - 375px) / 1245));
  }
}
@media (min-width: 75em) {
  .footer {
    padding-top: 250px;
    clip-path: polygon(0 0, 19% 200px, 100% 0, 100% 100%, 0 100%);
  }
}
.footer__graph {
  position: absolute;
  left: 45%;
  top: -46%;
  z-index: 1;
  width: 61%;
  height: 300%;
  background: url(../img/vector.svg) 0 0 no-repeat;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__link {
  color: gray;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.7s ease;
  text-decoration: none !important;
}
.footer__link:hover {
  color: #fff;
}
.footer dl {
  margin-bottom: 0;
}
.footer dt {
  font-weight: normal;
  margin-bottom: 5px;
}
.footer dd {
  margin-bottom: 20px;
}
.footer dd:last-child {
  margin-bottom: 0;
}
.footer__copy {
  padding-top: 30px;
  color: gray;
}

.page {
  padding-top: 160px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vh), 80% 100%, 0 calc(100% - 6vh));
}
@media (max-width: 1620px) {
  .page {
    padding-top: calc(120px + 40 * ((100vw - 375px) / 1245));
  }
}
.page__container {
  backgorund: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 10.53%, rgba(0, 0, 0, 0.393055) 32.68%, rgba(0, 0, 0, 0) 36.31%);
}
.page__title {
  font-style: normal;
  font-weight: 700;
  font-size: 110px;
  line-height: 100%;
  letter-spacing: -0.041em;
  color: #fbb03b;
  margin-bottom: 80px;
}
@media (max-width: 1620px) {
  .page__title {
    font-size: calc(50px + 60 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .page__title {
    margin-bottom: calc(60px + 20 * ((100vw - 375px) / 1245));
  }
}
.page__quote {
  clip-path: polygon(0 6vh, 19% 0%, 100% 6vh, 100% 100%, 0 100%);
  font-weight: 700;
  font-size: 48px;
  line-height: 127.49%;
  letter-spacing: -0.041em;
  color: #FFFFFF;
  background: #000;
  padding-top: 185px;
  padding-bottom: 150px;
}
@media (max-width: 1620px) {
  .page__quote {
    font-size: calc(24px + 24 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .page__quote {
    padding-top: calc(80px + 105 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .page__quote {
    padding-bottom: calc(70px + 80 * ((100vw - 375px) / 1245));
  }
}

table {
  font-weight: 400;
  font-size: 22px;
  line-height: 127.49%;
  text-align: center;
  letter-spacing: -0.041em;
}
@media (max-width: 1620px) {
  table {
    font-size: calc(14px + 8 * ((100vw - 375px) / 1245));
  }
}
table thead {
  background: #fbb03b;
  color: #000;
}
table thead th {
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (max-width: 1620px) {
  table thead th {
    padding-top: calc(20px + 20 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  table thead th {
    padding-bottom: calc(10px + 10 * ((100vw - 375px) / 1245));
  }
}
table thead td {
  border-bottom: none;
  font-weight: 400;
}
table tbody {
  background: #ececec;
}
table tbody tr td.select, table tbody tr th {
  font-weight: 700;
  background: #e6e6e6;
}
table tbody tr th {
  text-align: left;
  padding: 32px;
  border-bottom: 1px solid #000;
}
@media (max-width: 1620px) {
  table tbody tr th {
    padding: calc(10px + 22 * ((100vw - 375px) / 1245));
  }
}
table tbody tr:last-child td, table tbody tr:last-child th {
  border-bottom: none;
}
table td {
  text-align: left;
  padding: 32px;
  border-bottom: 1px solid #000;
}
@media (max-width: 1620px) {
  table td {
    padding: calc(10px + 22 * ((100vw - 375px) / 1245));
  }
}

.nav__pages {
  max-width: 255px;
  display: flex;
  flex-direction: column;
}
.nav__pages-link {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 45px;
  line-height: 126.69%;
  letter-spacing: -0.041em;
  color: rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  transition: color 0.4s ease;
  position: relative;
  padding-right: 36px;
}
@media (max-width: 1620px) {
  .nav__pages-link {
    font-size: calc(26px + 19 * ((100vw - 375px) / 1245));
  }
}
.nav__pages-link:hover {
  color: #000;
}
.nav__pages-link:after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  transform: translate(0, -50%) scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav__pages-link.active {
  color: #000;
}
.nav__pages-link.active:after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.blob {
  padding-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  overflow: visible !important;
  max-width: 1620px !important;
  margin-right: auto;
  margin-left: auto;
  /*
    @include mq($from: xl) {
      padding-left: 135px;
      padding-right: 135px;
    }
  */
  /*
  &__nav {
    position: absolute;
    top:50%;
    left:0; right: 0;
  }

   */
}
@media (max-width: 1620px) {
  .blob {
    padding-top: calc(30px + 70 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .blob {
    padding-left: calc(30px + 70 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .blob {
    padding-right: calc(30px + 70 * ((100vw - 375px) / 1245));
  }
}
@media (min-width: 48em) {
  .blob.center .swiper-wrapper {
    justify-content: center;
  }
}
.blob-container {
  overflow: hidden;
}
.blob .swiper-button-prev, .blob .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #FBB03B;
  z-index: 99;
  opacity: 0.7;
}
.blob .swiper-button-prev .svg, .blob .swiper-button-next .svg {
  width: 25px;
  height: 80px;
}
.blob .swiper-button-prev:hover, .blob .swiper-button-next:hover {
  opacity: 1;
}
.blob .swiper-button-prev.swiper-button-disabled, .blob .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.blob .swiper-button-prev {
  left: 50px;
}
@media (max-width: 1620px) {
  .blob .swiper-button-prev {
    left: calc(5px + 45 * ((100vw - 375px) / 1245));
  }
}
.blob .swiper-button-next {
  right: 50px;
}
@media (max-width: 1620px) {
  .blob .swiper-button-next {
    right: calc(5px + 45 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 47.99em) {
  .blob .blob__nav {
    display: none;
  }
}
@media (min-width: 48em) {
  .blob__pagination {
    display: none;
  }
}
@media (min-width: 75em) {
  .blob .swiper-button-prev {
    left: 50px;
  }
  .blob .swiper-button-next {
    right: 50px;
  }
}
.blob__title {
  font-weight: 400;
  font-size: 44px;
  line-height: 127.49%;
  margin-bottom: 10px;
}
@media (max-width: 1620px) {
  .blob__title {
    font-size: calc(24px + 20 * ((100vw - 375px) / 1245));
  }
}
.blob__text {
  font-weight: 400;
  font-size: 25px;
  line-height: 127.49%;
  margin-bottom: 32px;
}
@media (max-width: 1620px) {
  .blob__text {
    font-size: calc(18px + 7 * ((100vw - 375px) / 1245));
  }
}
.blob__content {
  transform: translate(0, 0);
  transition: transform 0.4s linear;
}
.blob__link {
  position: relative;
  cursor: pointer;
  padding: 23% 17% 15% 19%;
  transition: background 0.4s ease;
  background: transparent;
  clip-path: url(#clipblob1);
  /*
  &--1 {
    &:hover {
      .blob__content {
        transform: translate(-10%, 0);
      }
    }
  }
  &--2 {
    clip-path: url(#clipblob2);
  }
  &--3 {
    clip-path: url(#clipblob3);
    &:hover {
      .blob__content {
        transform: translate(10%, 0);
      }
    }
  }

   */
}
.blob__link:hover {
  background: #fbb03b;
}
.blob__item {
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.3s;
}
@media (max-width: 47.99em) {
  .blob__item .blob__link {
    opacity: 0.5;
    background: #fbb03b;
  }
}
@media (max-width: 47.99em) {
  .blob__item.swiper-slide-active .blob__link {
    opacity: 0.8;
    background: #fbb03b;
  }
}
.blob__item.active {
  transform: scale(1);
}
.blob__item.active .blob__link {
  opacity: 1;
  background: #fbb03b;
}
.blob__item:first-child .blob__link:hover .blob__content {
  transform: translate(-10%, 0);
}
.blob__item:nth-child(3n) .blob__link {
  clip-path: url(#clipblob1);
}
.blob__item:nth-child(3n+1) .blob__link {
  clip-path: url(#clipblob2);
}
.blob__item:nth-child(3n+2) .blob__link {
  clip-path: url(#clipblob3);
}
.blob__item:last-child .blob__link {
  clip-path: url(#clipblob3);
}
.blob__item:last-child .blob__link:hover .blob__content {
  transform: translate(10%, 0);
}
.blob__btm {
  display: flex;
  justify-content: flex-end;
}
.blob__add {
  width: 94px;
  height: 94px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1620px) {
  .blob__add {
    width: calc(40px + 54 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .blob__add {
    height: calc(40px + 54 * ((100vw - 375px) / 1245));
  }
}
.blob__add .svg {
  width: 31px;
  height: 31px;
}
@media (max-width: 1620px) {
  .blob__add .svg {
    width: calc(20px + 11 * ((100vw - 375px) / 1245));
  }
}
@media (max-width: 1620px) {
  .blob__add .svg {
    height: calc(20px + 11 * ((100vw - 375px) / 1245));
  }
}
.blob__item {
  padding: 0 10px;
}

.fact {
  font-weight: 700;
}
.fact__top {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 36em) {
  .fact__top {
    justify-content: flex-end;
  }
}
.fact__number {
  font-size: 179px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #F2AF4A;
}
@media (max-width: 1620px) {
  .fact__number {
    font-size: calc(80px + 99 * ((100vw - 375px) / 1245));
  }
}
.fact__sub {
  font-size: 24px;
  line-height: 1;
  padding-left: 20px;
  color: #F2AF4A;
  padding-bottom: 23px;
}
.fact__per {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  color: #333;
}

.contant__map {
  min-height: 400px;
}

.address {
  padding-top: 40px;
}
@media (max-width: 1620px) {
  .address {
    padding-top: calc(20px + 20 * ((100vw - 375px) / 1245));
  }
}
.address__region {
  color: #F2AF4A;
  margin-bottom: 60px;
}
.address__title {
  margin-bottom: 10px;
}
.address__item {
  position: relative;
  padding-left: 42px;
  margin-bottom: 40px;
}
@media (max-width: 1620px) {
  .address__item {
    padding-left: calc(30px + 12 * ((100vw - 375px) / 1245));
  }
}
.address__item a {
  color: #fbb03b;
}
.address__item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  border-left: 10px solid #FBB03B;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.fs-main_title {
  font-size: 43px;
}
@media (max-width: 1620px) {
  .fs-main_title {
    font-size: calc(25px + 18 * ((100vw - 375px) / 1245));
  }
}

.fs-22 {
  font-size: 22px;
}
@media (max-width: 1620px) {
  .fs-22 {
    font-size: calc(18px + 4 * ((100vw - 375px) / 1245));
  }
}

.c-black {
  color: black;
  fill: black;
}

.b-black {
  background-color: black;
}

.c-white {
  color: white;
  fill: white;
}

.b-white {
  background-color: white;
}

.c-select {
  color: #f9af48;
  fill: #f9af48;
}

.b-select {
  background-color: #f9af48;
}

.c-yellow {
  color: #fbb03b;
  fill: #fbb03b;
}

.b-yellow {
  background-color: #fbb03b;
}

.c-gray {
  color: #e6e6e6;
  fill: #e6e6e6;
}

.b-gray {
  background-color: #e6e6e6;
}

.c-lightgray {
  color: #ececec;
  fill: #ececec;
}

.b-lightgray {
  background-color: #ececec;
}

.c-light {
  color: #999999;
  fill: #999999;
}

.b-light {
  background-color: #999999;
}

.c-green {
  color: #563603;
  fill: #563603;
}

.b-green {
  background-color: #563603;
}

.c-lightonblack {
  color: gray;
  fill: gray;
}

.b-lightonblack {
  background-color: gray;
}

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