@keyframes Rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
@keyframes Expose {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0; }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1; } }
.expose {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  -webkit-transform: translateZ(0); }

.expose--shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1; }

@keyframes Levitate {
  0% {
    transform: translate3d(0, 0, 0); }
  50% {
    transform: translate3d(0, -6%, 0); }
  100% {
    transform: translate3d(0, 0, 0); } }
@keyframes SphereLevitation {
  0% {
    transform: translate3d(0, 0, 0); }
  50% {
    transform: translate3d(0, -15%, 0); }
  100% {
    transform: translate3d(0, 0, 0); } }
@keyframes LevitateShadow {
  0% {
    transform: scaleX(1);
    opacity: 1; }
  50% {
    transform: scaleX(1.1);
    opacity: .8; }
  100% {
    transform: scaleX(1);
    opacity: 1; } }
@keyframes CircleFlash {
  0% {
    transform: scale3d(0, 0, 0); }
  50% {
    transform: scale3d(3, 3, 3); }
  100% {
    transform: scale3d(0, 0, 0); } }
@keyframes CirclePulse {
  0% {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.2, 1.2, 1.2); }
  100% {
    transform: scale3d(1, 1, 1); } }
/***** CONTAINERS *****/
.wrapper {
  display: table;
  width: 100%;
  height: 100%; }
  .wrapper > div {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center; }

.container {
  position: relative; }
  .container:after {
    content: '';
    display: block;
    clear: both; }
  .container .column {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .container .col-9 {
    width: 75%; }
  .container .col-8 {
    width: 66.6666666667%; }
  .container .col-6 {
    width: 50%; }
  .container .col-4 {
    width: 33.3333333333%; }
  .container .col-3 {
    width: 25%; }
  .container .col-2 {
    width: 16.6666666667%; }
  .container .middle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    margin: 0 0 0 -25%; }

.container--reverse .column {
  float: right; }

.container--same-height-columns {
  position: relative; }
  .container--same-height-columns .column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }
  .container--same-height-columns .column--highest {
    position: static; }

/***** MODULES *****/
.dropdown {
  position: relative;
  display: block; }
  .dropdown .dropdown__header {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none; }
  .dropdown .dropdown__list-container {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    z-index: 10;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .dropdown .dropdown__list > li {
    display: block; }
  .dropdown .dropdown__list a {
    display: block; }

.dropdown--expanding .dropdown__list-container {
  position: relative;
  top: 0; }

.bookmarks-manager {
  margin: 0 auto; }
  .bookmarks-manager .bookmarks-manager__bookmarks {
    text-align: center; }
  .bookmarks-manager .bookmarks-manager__bookmark-container {
    display: block; }
  .bookmarks-manager .bookmarks-manager__bookmark {
    cursor: pointer; }
  .bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none; }
  .bookmarks-manager .bookmarks-manager__content-container {
    display: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    min-height: 3px; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__content-container {
        display: block; } }
  .bookmarks-manager .bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .bookmarks-manager .bookmarks-manager__next {
    display: none;
    cursor: pointer; }

.ajax-bookmarks-manager {
  max-width: 900px;
  margin: 0 auto; }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__bookmarks {
    text-align: center; }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container {
    display: block; }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark {
    cursor: pointer; }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none; }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
    display: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
    @media (min-width: 768px) {
      .ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
        display: block; } }
  .ajax-bookmarks-manager .ajax-bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }

.bookmarks-manager-00,
.bookmarks-manager-01,
.bookmarks-manager-02 {
  margin: 0 auto; }
  .bookmarks-manager-00 .bookmarks-manager__inner,
  .bookmarks-manager-01 .bookmarks-manager__inner,
  .bookmarks-manager-02 .bookmarks-manager__inner {
    position: relative; }
  .bookmarks-manager-00 .bookmarks-manager__bookmarks-container,
  .bookmarks-manager-01 .bookmarks-manager__bookmarks-container,
  .bookmarks-manager-02 .bookmarks-manager__bookmarks-container {
    padding: 0 0 10px 0; }
    @media (min-width: 420px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmarks-container {
        padding-bottom: 15px; } }
    @media (min-width: 650px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmarks-container {
        padding-bottom: 25px; } }
    @media (min-width: 1500px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmarks-container {
        padding-bottom: 30px; } }
    @media (min-width: 1700px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmarks-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmarks-container {
        padding-bottom: 35px; } }
  .bookmarks-manager-00 .bookmarks-manager__bookmarks,
  .bookmarks-manager-01 .bookmarks-manager__bookmarks,
  .bookmarks-manager-02 .bookmarks-manager__bookmarks {
    text-align: center; }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks,
      .bookmarks-manager-01 .bookmarks-manager__bookmarks,
      .bookmarks-manager-02 .bookmarks-manager__bookmarks {
        text-align: left; } }
  .bookmarks-manager-00 .bookmarks-manager__bookmark-container,
  .bookmarks-manager-01 .bookmarks-manager__bookmark-container,
  .bookmarks-manager-02 .bookmarks-manager__bookmark-container {
    display: block;
    padding: 5px 0;
    cursor: pointer; }
    @media (min-width: 480px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmark-container {
        display: inline-block;
        padding: 0 20px; } }
    @media (min-width: 650px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmark-container {
        padding: 0 30px; } }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmark-container {
        padding: 0 20px; } }
    @media (min-width: 1500px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-01 .bookmarks-manager__bookmark-container,
      .bookmarks-manager-02 .bookmarks-manager__bookmark-container {
        padding: 0 30px; } }
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container:first-child,
    .bookmarks-manager-01 .bookmarks-manager__bookmark-container:first-child,
    .bookmarks-manager-02 .bookmarks-manager__bookmark-container:first-child {
      padding-left: 0; }
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container:last-child,
    .bookmarks-manager-01 .bookmarks-manager__bookmark-container:last-child,
    .bookmarks-manager-02 .bookmarks-manager__bookmark-container:last-child {
      padding-right: 0; }
  .bookmarks-manager-00 .bookmarks-manager__bookmark,
  .bookmarks-manager-01 .bookmarks-manager__bookmark,
  .bookmarks-manager-02 .bookmarks-manager__bookmark {
    cursor: pointer; }
  .bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content,
  .bookmarks-manager-01 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content,
  .bookmarks-manager-02 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none; }
  .bookmarks-manager-00 .bookmarks-manager__content-container,
  .bookmarks-manager-01 .bookmarks-manager__content-container,
  .bookmarks-manager-02 .bookmarks-manager__content-container {
    display: block;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__content-container,
      .bookmarks-manager-01 .bookmarks-manager__content-container,
      .bookmarks-manager-02 .bookmarks-manager__content-container {
        display: block; } }
  .bookmarks-manager-00 .bookmarks-manager__content-wrapper,
  .bookmarks-manager-01 .bookmarks-manager__content-wrapper,
  .bookmarks-manager-02 .bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .bookmarks-manager-00 .bookmarks-manager__next,
  .bookmarks-manager-01 .bookmarks-manager__next,
  .bookmarks-manager-02 .bookmarks-manager__next {
    display: block;
    position: absolute;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 250; }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__next,
      .bookmarks-manager-01 .bookmarks-manager__next,
      .bookmarks-manager-02 .bookmarks-manager__next {
        right: -10px; } }
    @media (min-width: 1100px) {
      .bookmarks-manager-00 .bookmarks-manager__next,
      .bookmarks-manager-01 .bookmarks-manager__next,
      .bookmarks-manager-02 .bookmarks-manager__next {
        right: -50px; } }
    @media (min-width: 1300px) {
      .bookmarks-manager-00 .bookmarks-manager__next,
      .bookmarks-manager-01 .bookmarks-manager__next,
      .bookmarks-manager-02 .bookmarks-manager__next {
        right: -100px; } }

.bookmarks-manager-01 .bookmarks-manager__next {
  height: 60%;
  top: 40%; }

.bookmarks-manager-02 .bookmarks-manager__bookmarks {
  text-align: center; }

.bookmarks-manager-03 .bookmarks-manager__inner {
  position: relative; }
.bookmarks-manager-03 .bookmarks-manager__bookmarks-container {
  display: none; }
.bookmarks-manager-03 .bookmarks-manager__bookmark {
  cursor: pointer; }
.bookmarks-manager-03 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none; }
.bookmarks-manager-03 .bookmarks-manager__content-container {
  display: block; }
.bookmarks-manager-03 .bookmarks-manager__next {
  display: block; }

.simple-bookmark {
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0;
  cursor: pointer;
  color: #727171;
  padding: 0 0 10px 0; }
  @media (min-width: 650px) {
    .simple-bookmark {
      font-size: 18px; } }
  @media (min-width: 768px) {
    .simple-bookmark {
      font-size: 16px; } }
  @media (min-width: 992px) {
    .simple-bookmark {
      font-size: 18px; } }
  @media (min-width: 1700px) {
    .simple-bookmark {
      font-size: 20px; } }
  .simple-bookmark__wrapper {
    display: inline-block;
    position: relative;
    padding: 0 0 8px 0; }
    .simple-bookmark__wrapper:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: -100%;
      opacity: 0;
      width: 100%;
      height: 2px;
      background: #FF931E;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }

.simple-bookmark.active {
  color: #000; }
  .simple-bookmark.active .simple-bookmark__wrapper:before {
    left: 0;
    opacity: 1; }

.small-simple-bookmark {
  font-weight: 400;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0 10px 15px 10px;
  cursor: pointer; }
  @media (min-width: 992px) {
    .small-simple-bookmark {
      padding: 5px 0; } }
  .small-simple-bookmark__wrapper {
    position: relative;
    padding: 0 10px 10px 10px;
    display: inline-block; }
    @media (min-width: 992px) {
      .small-simple-bookmark__wrapper {
        display: block;
        padding: 4px 0 10px 0; } }
    @media (min-width: 1500px) {
      .small-simple-bookmark__wrapper {
        padding: 10px 0; } }
    .small-simple-bookmark__wrapper:before {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: #FFC80F;
      position: absolute;
      bottom: 0;
      left: -50%;
      opacity: 0;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
      @media (min-width: 992px) {
        .small-simple-bookmark__wrapper:before {
          bottom: 2px; } }
      @media (min-width: 1300px) {
        .small-simple-bookmark__wrapper:before {
          bottom: 2px; } }
  .small-simple-bookmark:hover {
    color: #FFC80F; }

.small-simple-bookmark.active {
  font-weight: 700; }
  .small-simple-bookmark.active .small-simple-bookmark__wrapper:before {
    opacity: 1;
    left: 0; }

.details-list {
  list-style-type: none; }
  .details-list .details-list__item {
    display: block; }
  .details-list .details-list__title {
    cursor: pointer; }

.categorized-items__categories {
  text-align: center;
  list-style-type: none; }
  .categorized-items__categories > li {
    display: block;
    cursor: pointer; }
.categorized-items__no-items {
  float: none;
  display: block; }
.categorized-items__content-container {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.categorized-items-00 .categorized-items__categories-container {
  padding: 0 0 30px 0; }
  @media (min-width: 480px) {
    .categorized-items-00 .categorized-items__categories-container {
      padding: 0 0 50px 0; } }
  @media (min-width: 992px) {
    .categorized-items-00 .categorized-items__categories-container {
      padding: 0 0 70px 0; } }

.ajax-categorized-items__categories-container {
  padding: 0 0 50px 0; }
  @media (min-width: 992px) {
    .ajax-categorized-items__categories-container {
      padding: 0 0 80px 40px; } }
  @media (min-width: 1500px) {
    .ajax-categorized-items__categories-container {
      padding: 0 0 80px 0; } }
.ajax-categorized-items__no-items {
  float: none;
  display: block; }
.ajax-categorized-items__contents-container {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear; }
.ajax-categorized-items__content {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
.ajax-categorized-items__pager-container {
  position: relative;
  padding: 80px 0 0 0; }
  @media (min-width: 650px) {
    .ajax-categorized-items__pager-container {
      padding: 100px 0 0 0; } }
  @media (min-width: 1800px) {
    .ajax-categorized-items__pager-container {
      padding: 120px 0 0 0; } }
  .ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 40px;
    left: 0;
    display: block; }
    @media (min-width: 650px) {
      .ajax-categorized-items__pager-container .decorated-section__decoration-container {
        top: 60px; } }
    @media (min-width: 1800px) {
      .ajax-categorized-items__pager-container .decorated-section__decoration-container {
        top: 80px; } }

/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 999;
  height: 100%;
  display: block;
  text-align: left;
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto; }
  .slide-menu .slide-menu__wrapper {
    min-height: 100%;
    position: relative; }
    @media (min-width: 900px) {
      .slide-menu .slide-menu__wrapper:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background: url("../img/decorations/menu-decoration.svg") no-repeat top left;
        background-size: 60% 0;
        -webkit-transition: all 0.6s ease-out 0;
        -moz-transition: all 0.6s ease-out 0;
        -o-transition: all 0.6s ease-out 0;
        transition: all 0.6s ease-out 0; } }
  .slide-menu.slide-menu--open .slide-menu__wrapper:before {
    opacity: 1;
    background-size: 65% 90%;
    -webkit-transition: all 0.6s ease-out 0.5s;
    -moz-transition: all 0.6s ease-out 0.5s;
    -o-transition: all 0.6s ease-out 0.5s;
    transition: all 0.6s ease-out 0.5s; }
    @media (min-width: 1300px) {
      .slide-menu.slide-menu--open .slide-menu__wrapper:before {
        background-size: 65% 95%; } }
  .slide-menu .slide-menu__inner {
    padding: 100px 20px 20px 20px;
    position: relative; }
    @media (min-width: 480px) {
      .slide-menu .slide-menu__inner {
        padding: 110px 20px 40px 20px; } }
  .slide-menu .slide-menu__content {
    padding: 0 20px; }
    @media (min-width: 1700px) {
      .slide-menu .slide-menu__content {
        padding: 0 30px; } }
  .slide-menu .slide-menu__header {
    padding: 0 0 40px 0; }
    @media (min-width: 380px) {
      .slide-menu .slide-menu__header {
        padding-bottom: 60px; } }
    @media (min-width: 650px) {
      .slide-menu .slide-menu__header {
        padding-bottom: 100px; } }
    @media (min-width: 768px) and (max-height: 580px) {
      .slide-menu .slide-menu__header {
        padding-bottom: 40px; } }
    @media (min-width: 768px) and (max-height: 700px) {
      .slide-menu .slide-menu__header {
        padding-bottom: 40px; } }
  .slide-menu .slide-menu__container {
    position: relative; }
    @media (min-width: 900px) {
      .slide-menu .slide-menu__container {
        padding: 0 0 0 60%; } }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__container {
        padding-left: 68%; } }
    @media (min-width: 900px) {
      .slide-menu .slide-menu__container:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        z-index: 3; } }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__container:after {
        width: 68%; } }
  .slide-menu .slide-menu__logos-column {
    padding: 20px 0 0 0; }
    @media (min-width: 900px) {
      .slide-menu .slide-menu__logos-column {
        position: absolute;
        bottom: -50%;
        left: 0;
        width: 60%;
        z-index: 10; } }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__logos-column {
        width: 68%; } }

/** fade **/
.slide-menu--fade {
  display: none; }

.slide-menu--fade.slide-menu--top {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto; }

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0; }

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto; }

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear; }

.slide-menu--slide.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0; }

.slide-menu--slide.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto; }

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0; }

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%; }

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0; }

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto; }

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0; }

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s; }
  .slide-menu--slide-fade .slide-menu__inner {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out; }

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08); }
  .slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
    opacity: 1; }

.slide-menu--slide-fade.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  top: 0; }

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0; }

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%; }

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0; }

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0; }

/***** OVERLAYERS *****/
.overlayer-content {
  display: none !important; }

.ajax-overlayer-button {
  cursor: pointer; }

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10100;
  background: #fff;
  color: #000;
  overflow: hidden;
  padding: 0; }
  .overlayer:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: url("../img/backgrounds/scew-corner-bottom-left.svg") no-repeat bottom left;
    background-size: contain; }
  .overlayer__wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto; }
    .overlayer__wrapper > .wrapper > div {
      vertical-align: middle; }
  .overlayer .overlayer__loading-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6900;
    display: none;
    font-size: 36px;
    color: #fff;
    background: rgba(255, 255, 255, 0.7); }
  .overlayer .overlayer__inner {
    text-align: left;
    margin: 60px 20px;
    position: relative;
    padding: 20px 30px 30px 30px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    -webkit-box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08); }
    @media (min-width: 420px) {
      .overlayer .overlayer__inner {
        padding: 40px; } }
    @media (min-width: 650px) {
      .overlayer .overlayer__inner {
        margin: 60px 40px; } }
    @media (min-width: 1100px) {
      .overlayer .overlayer__inner {
        max-width: 950px;
        margin: 60px auto; } }
    @media (min-width: 1300px) {
      .overlayer .overlayer__inner {
        max-width: 1100px; } }
  .overlayer .overlayer__close {
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 7000;
    display: block;
    cursor: pointer; }
    .overlayer .overlayer__close:hover .icon-plus:before, .overlayer .overlayer__close:hover .icon-plus:after {
      background-color: #000;
      transform: rotate(90deg); }
    @media (min-width: 480px) {
      .overlayer .overlayer__close {
        top: 20px; } }
    @media (min-width: 768px) {
      .overlayer .overlayer__close {
        right: 20px; } }
    @media (min-width: 1300px) {
      .overlayer .overlayer__close {
        top: 30px;
        right: 30px; } }
  .overlayer .overlayer__content {
    display: none;
    width: 100%; }

.overlayer-02 .overlayer__inner {
  padding: 0 0 20px 0;
  -webkit-box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08); }
  @media (min-width: 768px) {
    .overlayer-02 .overlayer__inner {
      max-width: 720px;
      max-width: 80%;
      margin: 60px auto; } }
  @media (min-width: 1700px) {
    .overlayer-02 .overlayer__inner {
      max-width: 820px;
      max-width: 70%;
      margin: 60px auto; } }

.popup-01 {
  background: rgba(0, 0, 0, 0.7); }
  .popup-01 > .wrapper > div {
    vertical-align: middle; }
  .popup-01 .overlayer__inner {
    padding: 20px;
    margin: 0 auto;
    background: none; }

.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999; }

/***** ICONS *****/
/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 24px;
  position: relative; }
  .icon-hamburger__inner {
    height: 17px;
    position: relative;
    overflow: hidden; }
    .icon-hamburger__inner > div {
      position: absolute;
      left: 0;
      height: 2px;
      background: #000;
      width: 100%;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .icon-hamburger__inner > div:nth-child(1),
    .icon-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-hamburger__inner > div:nth-child(2),
    .icon-hamburger__inner > div:nth-child(5) {
      top: 7px; }
    .icon-hamburger__inner > div:nth-child(3),
    .icon-hamburger__inner > div:nth-child(6) {
      top: 14px; }
    .icon-hamburger__inner > div:nth-child(4) {
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .icon-hamburger__inner > div:nth-child(5) {
      -webkit-transition: all 0.4s linear;
      -moz-transition: all 0.4s linear;
      -o-transition: all 0.4s linear;
      transition: all 0.4s linear; }
    .icon-hamburger__inner > div:nth-child(6) {
      -webkit-transition: all 0.6s linear;
      -moz-transition: all 0.6s linear;
      -o-transition: all 0.6s linear;
      transition: all 0.6s linear; }
    .icon-hamburger__inner > .icon-hamburger__hover-item {
      background: #FFC80F;
      left: -100%; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
        -webkit-transition: all 0.6s linear;
        -moz-transition: all 0.6s linear;
        -o-transition: all 0.6s linear;
        transition: all 0.6s linear; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
        -webkit-transition: all 0.4s linear;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear; }
  .icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-item {
    left: 0; }

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
    top: 7px;
    left: auto;
    right: 0;
    width: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
    opacity: 0;
    left: -100%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
    top: 7px;
    left: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    right: 0;
    width: 24px; }

.icon-hamburger--medium .icon-hamburger__inner > div {
  background: #FFC80F; }

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff; }

.icon-hamburger--large {
  width: 32px; }
  .icon-hamburger--large .icon-hamburger__inner {
    height: 20px; }
    .icon-hamburger--large .icon-hamburger__inner > div {
      height: 4px;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
      top: 8px; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
      top: 16px; }

.icon-hamburger--small {
  width: 20px;
  height: 12px; }
  .icon-hamburger--small .icon-hamburger__inner > div {
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
    top: 0; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
    top: 5px; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
    top: 10px; }

.icon-spectacular-hamburger {
  display: block;
  width: 28px;
  position: relative; }
  @media (min-width: 992px) {
    .icon-spectacular-hamburger {
      width: 24px; } }
  .icon-spectacular-hamburger__inner {
    height: 15px;
    position: relative;
    overflow: hidden; }
    .icon-spectacular-hamburger__inner > div {
      position: absolute;
      left: 0;
      height: 2px;
      background: #5B5B5B;
      width: 100%;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      @media (min-width: 992px) {
        .icon-spectacular-hamburger__inner > div {
          background: #074578; } }
    .icon-spectacular-hamburger__inner > div:nth-child(1),
    .icon-spectacular-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-spectacular-hamburger__inner > div:nth-child(2),
    .icon-spectacular-hamburger__inner > div:nth-child(5) {
      top: 6px; }
    .icon-spectacular-hamburger__inner > div:nth-child(3),
    .icon-spectacular-hamburger__inner > div:nth-child(6) {
      top: 12px;
      width: 50%; }
    .icon-spectacular-hamburger__inner > div:nth-child(4) {
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .icon-spectacular-hamburger__inner > div:nth-child(5) {
      -webkit-transition: all 0.4s linear;
      -moz-transition: all 0.4s linear;
      -o-transition: all 0.4s linear;
      transition: all 0.4s linear; }
    .icon-spectacular-hamburger__inner > div:nth-child(6) {
      -webkit-transition: all 0.6s linear;
      -moz-transition: all 0.6s linear;
      -o-transition: all 0.6s linear;
      transition: all 0.6s linear; }
    .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
      background: #FFC80F;
      left: -100%; }
      .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(4) {
        -webkit-transition: all 0.6s linear;
        -moz-transition: all 0.6s linear;
        -o-transition: all 0.6s linear;
        transition: all 0.6s linear; }
      .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(5) {
        -webkit-transition: all 0.4s linear;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear; }
      .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(6) {
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear; }
  .icon-spectacular-hamburger:hover .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item, .icon-spectacular-hamburger:focus .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
    left: 0; }

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner {
  overflow: visible; }
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(1),
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(4) {
    top: 7px;
    left: auto;
    right: 0;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg); }
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(2),
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(5) {
    opacity: 0;
    left: -100%; }
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(3),
  .icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(6) {
    top: 7px;
    left: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 0;
    width: 100%; }

.icon-spectacular-hamburger--medium .icon-spectacular-hamburger__inner > div {
  background: #FFC80F; }

/* icon arrow */
.icon-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.icon-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px; }

.icon-arrow--up {
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 3px; }

.icon-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px; }

.icon-arrow--down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -3px; }

.icon-arrow--small {
  width: 8px;
  height: 8px;
  border-width: 2px; }

.icon-arrow--another-small {
  width: 6px;
  height: 6px;
  border-width: 2px; }

.icon-arrow--very-small {
  width: 6px;
  height: 6px;
  border-width: 2px; }
  @media (min-width: 1500px) {
    .icon-arrow--very-small {
      width: 8px;
      height: 8px; } }

.icon-arrow--extra-small {
  width: 6px;
  height: 6px;
  border-width: 2px; }

.icon-arrow--left.icon-arrow--small {
  left: 2px; }

.icon-arrow--up.icon-arrow--small {
  top: 2px; }

.icon-arrow--right.icon-arrow--small {
  left: -2px; }

.icon-arrow--down.icon-arrow--small {
  top: -2px; }

.icon-arrow--large {
  width: 18px;
  height: 18px;
  border-width: 3px; }

.icon-arrow--dark {
  border-color: #5B5B5B; }

.icon-arrow--dark-grey {
  border-color: #5B5B5B; }

.icon-arrow--dark-grey-02 {
  border-color: #727171; }

.icon-arrow--medium {
  border-color: #FFC80F; }

.icon-arrow--medium-10 {
  border-color: #074578; }

.icon-arrow--light {
  border-color: #fff; }

/* icon spectacular arrow */
.icon-spectacular-arrow {
  display: block;
  width: 9px;
  height: 40px;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  left: 0; }
  .icon-spectacular-arrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/icons/icon-spectacular-arrow-right.svg") no-repeat center;
    background-size: contain; }

.icon-spectacular-arrow.icon-spectacular-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg); }

.icon-spectacular-arrow--large {
  width: 28px;
  height: 28px; }
  @media (min-width: 1700px) {
    .icon-spectacular-arrow--large {
      width: 32px;
      height: 32px; } }

/* icon nice arrow */
.icon-nice-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
  .icon-nice-arrow:before, .icon-nice-arrow:after {
    content: '';
    display: block;
    position: absolute;
    background: #000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .icon-nice-arrow:before {
    width: 3px;
    height: 100%;
    top: 0;
    right: 0;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px; }
  .icon-nice-arrow:after {
    height: 3px;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-border-radius: 8px 0 0 8px;
    -moz-border-radius: 8px 0 0 8px;
    border-radius: 8px 0 0 8px; }

.icon-nice-arrow--down {
  top: -3px; }

.icon-nice-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px;
  top: 0; }

.icon-nice-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px;
  top: 0; }

.icon-nice-arrow--medium-10:before, .icon-nice-arrow--medium-10:after {
  background: #074578; }

.icon-nice-arrow--light:before, .icon-nice-arrow--light:after {
  background: #fff; }

.icon-nice-arrow--small {
  width: 12px;
  height: 12px; }

.icon-nice-arrow--small.icon-nice-arrow--left {
  left: 2px; }

.icon-nice-arrow--small.icon-nice-arrow--right {
  left: -2px; }

.icon-nice-arrow--large {
  width: 20px;
  height: 20px; }
  @media (min-width: 1300px) {
    .icon-nice-arrow--large {
      width: 24px;
      height: 24px; } }

/* icon triangular icon */
.icon-triangular-arrow-left {
  border-right: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-left--small {
  border-right-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px; }

.icon-triangular-arrow-left--large {
  border-right-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px; }

.icon-triangular-arrow-left--medium {
  border-right-color: #FFC80F; }

.icon-triangular-arrow-left--light {
  border-right-color: #fff; }

.icon-triangular-arrow-up {
  border-bottom: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-up--small {
  border-bottom-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px; }

.icon-triangular-arrow-up--large {
  border-bottom-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px; }

.icon-triangular-arrow-up--medium {
  border-bottom-color: #FFC80F; }

.icon-triangular-arrow-up--light {
  border-bottom-color: #fff; }

.icon-triangular-arrow-right {
  border-left: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-right--small {
  border-left-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px; }

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px; }

.icon-triangular-arrow-right--medium {
  border-left-color: #FFC80F; }

.icon-triangular-arrow-right--light {
  border-left-color: #fff; }

.icon-triangular-arrow-down {
  border-top: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px; }

.icon-triangular-arrow-down--large {
  border-top-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px; }

.icon-triangular-arrow-down--medium {
  border-top-color: #FFC80F; }

.icon-triangular-arrow-down--light {
  border-top-color: #fff; }

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden; }
  .icon-plus:before, .icon-plus:after {
    content: '';
    position: absolute;
    background: #000;
    display: block;
    transition: all .25s ease;
    transform: rotate(0deg); }
  .icon-plus:before {
    width: 100%;
    left: 0;
    top: 50%;
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus:after {
    width: 2px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1px;
    height: 100%; }

.icon-plus--large {
  width: 26px;
  height: 26px; }
  .icon-plus--large:before {
    height: 4px;
    margin: -2px 0 0 0; }
  .icon-plus--large:after {
    width: 4px;
    margin: 0 0 0 -2px; }

.icon-plus--large-thin {
  width: 26px;
  height: 26px; }
  .icon-plus--large-thin:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--large-thin:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--small {
  width: 16px;
  height: 16px; }
  .icon-plus--small:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--small:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff; }

.icon-plus--medium:before, .icon-plus--medium:after {
  background: #FFC80F; }

.icon-plus--grey:before, .icon-plus--grey:after {
  background: #ACACAC; }

.icon-plus--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

.icon-minus {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden; }
  .icon-minus:before {
    content: '';
    position: absolute;
    background: #000;
    display: block;
    width: 100%;
    left: 0;
    top: 50%;
    height: 3px;
    margin: -1.5px 0 0 0; }

.icon-minus--small {
  width: 16px;
  height: 16px; }
  .icon-minus--small:before {
    height: 2px;
    margin: -1px 0 0 0; }

.icon-minus--light:before {
  background: #fff; }

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden; }
  .icon-plus:before, .icon-plus:after {
    content: '';
    position: absolute;
    background: #000;
    display: block; }
  .icon-plus:before {
    width: 100%;
    left: 0;
    top: 50%;
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus:after {
    width: 2px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1px;
    height: 100%; }

.icon-plus--large {
  width: 26px;
  height: 26px; }
  .icon-plus--large:before {
    height: 4px;
    margin: -2px 0 0 0; }
  .icon-plus--large:after {
    width: 4px;
    margin: 0 0 0 -2px; }

.icon-plus--large-thin {
  width: 26px;
  height: 26px; }
  .icon-plus--large-thin:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--large-thin:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--small {
  width: 16px;
  height: 16px; }
  .icon-plus--small:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--small:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--very-small {
  width: 12px;
  height: 12px; }
  .icon-plus--very-small:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--very-small:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff; }

.icon-plus--medium:before, .icon-plus--medium:after {
  background: #FFC80F; }

.icon-plus--grey:before, .icon-plus--grey:after {
  background: #ACACAC; }

.icon-plus--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

.icon-minus {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden; }
  .icon-minus:before {
    content: '';
    position: absolute;
    background: #000;
    display: block;
    width: 100%;
    left: 0;
    top: 50%;
    height: 3px;
    margin: -1.5px 0 0 0; }

.icon-minus--small {
  width: 16px;
  height: 16px; }
  .icon-minus--small:before {
    height: 2px;
    margin: -1px 0 0 0; }

.icon-minus--very-small {
  width: 12px;
  height: 12px; }
  .icon-minus--very-small:before {
    height: 2px;
    margin: -1px 0 0 0; }

.icon-minus--light:before {
  background: #fff; }

/* extended icon */
.extended-icon, .icon-facebook, .icon-youtube, .icon-instagram, .icon-twitter {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-indent: -10000px; }
  .extended-icon:before, .icon-facebook:before, .icon-youtube:before, .icon-instagram:before, .icon-twitter:before, .extended-icon:after, .icon-facebook:after, .icon-youtube:after, .icon-instagram:after, .icon-twitter:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .extended-icon:after, .icon-facebook:after, .icon-youtube:after, .icon-instagram:after, .icon-twitter:after {
    opacity: 0; }
  .extended-icon:hover:before, .icon-facebook:hover:before, .icon-youtube:hover:before, .icon-instagram:hover:before, .icon-twitter:hover:before {
    opacity: 0; }
  .extended-icon:hover:after, .icon-facebook:hover:after, .icon-youtube:hover:after, .icon-instagram:hover:after, .icon-twitter:hover:after {
    opacity: 1; }

.icon-facebook {
  width: 24px;
  height: 24px; }
  @media (min-width: 1700px) {
    .icon-facebook {
      width: 28px;
      height: 28px; } }
  .icon-facebook:before {
    background-image: url("../img/icons/social-media/icon-facebook-sky.svg"); }
  .icon-facebook:after {
    background-image: url("../img/icons/social-media/icon-facebook-light.svg"); }

.icon-youtube {
  width: 24px;
  height: 24px; }
  @media (min-width: 1700px) {
    .icon-youtube {
      width: 28px;
      height: 28px; } }
  .icon-youtube:before {
    background-image: url("../img/icons/social-media/icon-youtube-sky.svg"); }
  .icon-youtube:after {
    background-image: url("../img/icons/social-media/icon-youtube-light.svg"); }

.icon-instagram {
  width: 16px;
  height: 16px; }
  .icon-instagram:before {
    background-image: url("../img/icons/social-media/icon-instagram-light.svg"); }
  .icon-instagram:after {
    background-image: url("../img/icons/social-media/icon-instagram-medium.svg"); }

.icon-twitter {
  width: 16px;
  height: 16px; }
  .icon-twitter:before {
    background-image: url("../img/icons/social-media/icon-twitter-light.svg"); }
  .icon-twitter:after {
    background-image: url("../img/icons/social-media/icon-twitter-medium-03.svg"); }

/* player */
.icon-play {
  border-left: 10px solid #000;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  width: 0;
  position: relative;
  left: 1px; }
  @media (min-width: 420px) {
    .icon-play {
      border-left: 12px solid #000;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent; } }

.icon-play--light {
  border-left-color: #fff; }

.icon-pause {
  position: relative;
  width: 12px;
  height: 12px; }
  @media (min-width: 420px) {
    .icon-pause {
      height: 16px; } }
  .icon-pause:before, .icon-pause:after {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0; }
  .icon-pause:before {
    left: 0; }
  .icon-pause:after {
    right: 0; }

.icon-pause--light:before, .icon-pause--light:after {
  background: #fff; }

/** icons-end **/
*::selection {
  background-color: #FFC80F;
  color: #fff; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul,
ol {
  padding: 0; }

fieldset {
  border: none; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "din-2014", sans-serif;
  overflow-x: hidden; }
  body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(189.53deg, #4CB7B0 12.75%, #80D598 74.91%);
    visibility: hidden;
    opacity: 0;
    transition: all .25s ease 1s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0); }

body.gradient-bg:before {
  opacity: 1;
  visibility: visible;
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

*:focus {
  outline: none; }

html {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000; }

img {
  display: inline-block;
  max-width: 100%; }

button {
  background: none;
  border: 0;
  cursor: pointer; }

ul, li, ol {
  list-style-type: none; }

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: all .25s ease; }
  a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
    color: inherit; }

.visible-sm {
  display: block; }
  @media (min-width: 768px) {
    .visible-sm {
      display: none; } }

.visible-md {
  display: none; }
  @media (min-width: 768px) {
    .visible-md {
      display: block; } }

.hidden-lg {
  display: block; }
  @media (min-width: 992px) {
    .hidden-lg {
      display: none; } }

.gray-background {
  background-color: #f2f2f2; }

.title-xl {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  text-transform: uppercase; }
  @media (min-width: 320px) {
    .title-xl {
      font-size: 32px; } }
  @media (min-width: 370px) {
    .title-xl {
      font-size: 36px; } }
  @media (min-width: 768px) {
    .title-xl {
      font-size: 52px;
      line-height: 120%; } }
  @media (min-width: 992px) {
    .title-xl {
      font-size: 68px;
      line-height: 110%; } }
  @media (min-width: 1300px) {
    .title-xl {
      font-size: 84px; } }
  @media (min-width: 1500px) {
    .title-xl {
      font-size: 94px; } }
  @media (min-width: 1750px) {
    .title-xl {
      font-size: 108px; } }

.title-xl-2 {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  text-transform: uppercase; }
  @media (min-width: 370px) {
    .title-xl-2 {
      font-size: 30px; } }
  @media (min-width: 768px) {
    .title-xl-2 {
      font-size: 52px;
      line-height: 120%; } }
  @media (min-width: 992px) {
    .title-xl-2 {
      font-size: 72px; } }

.title-1 {
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  font-family: "termina", sans-serif;
  font-size: 22px; }
  @media (min-width: 370px) {
    .title-1 {
      font-size: 28px; } }
  @media (min-width: 768px) {
    .title-1 {
      font-size: 45px; } }
  @media (min-width: 992px) {
    .title-1 {
      font-size: 56px; } }
  @media (min-width: 1750px) {
    .title-1 {
      font-size: 66px; } }

.title-2 {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase; }
  @media (min-width: 370px) {
    .title-2 {
      font-size: 22px; } }
  @media (min-width: 768px) {
    .title-2 {
      font-size: 36px; } }

.title-3 {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.04em;
  text-transform: uppercase; }
  @media (min-width: 370px) {
    .title-3 {
      font-size: 18px; } }
  @media (min-width: 768px) {
    .title-3 {
      font-size: 20px; } }
  @media (min-width: 992px) {
    .title-3 {
      font-size: 22px; } }
  @media (min-width: 1100px) {
    .title-3 {
      font-size: 26px; } }
  @media (min-width: 1300px) {
    .title-3 {
      white-space: nowrap; } }
  @media (min-width: 1750px) {
    .title-3 {
      font-size: 36px; } }

.title-4 {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .title-4 {
      font-size: 16px; } }
  @media (min-width: 1100px) {
    .title-4 {
      font-size: 18px; } }
  @media (min-width: 1750px) {
    .title-4 {
      font-size: 20px; } }

.title-5 {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.04em; }
  @media (min-width: 370px) {
    .title-5 {
      font-size: 14px; } }
  @media (min-width: 768px) {
    .title-5 {
      font-size: 16px; } }
  @media (min-width: 992px) {
    .title-5 {
      font-size: 22px; } }
  @media (min-width: 1100px) {
    .title-5 {
      font-size: 26px; } }
  @media (min-width: 1750px) {
    .title-5 {
      font-size: 28px; } }

.title-6 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 124%;
  letter-spacing: 0.12em; }
  @media (min-width: 370px) {
    .title-6 {
      font-size: 17px; } }
  @media (min-width: 768px) {
    .title-6 {
      font-size: 22px; } }
  @media (min-width: 1100px) {
    .title-6 {
      font-size: 26px; } }
  @media (min-width: 1750px) {
    .title-6 {
      font-size: 28px; } }

.subtitle-1 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 124%; }
  @media (min-width: 768px) {
    .subtitle-1 {
      font-size: 24px; } }
  @media (min-width: 1300px) {
    .subtitle-1 {
      font-size: 32px; } }

.subtitle-2 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: 0.13em; }
  @media (min-width: 370px) {
    .subtitle-2 {
      font-size: 16px; } }
  @media (min-width: 768px) {
    .subtitle-2 {
      font-size: 22px; } }
  @media (min-width: 1100px) {
    .subtitle-2 {
      font-size: 24px; } }
  @media (min-width: 1750px) {
    .subtitle-2 {
      font-size: 26px; } }

.subtitle-3 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: 0.13em; }
  @media (min-width: 768px) {
    .subtitle-3 {
      font-size: 16px; } }

.text-1 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 134%;
  letter-spacing: 0.12em; }
  @media (min-width: 992px) {
    .text-1 {
      font-size: 18px;
      line-height: 124%; } }
  @media (min-width: 992px) {
    .text-1 {
      font-size: 20px;
      line-height: 124%; } }
  @media (min-width: 1750px) {
    .text-1 {
      font-size: 24px; } }

.text-2 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: 0.12em; }
  @media (min-width: 370px) {
    .text-2 {
      font-size: 16px; } }
  @media (min-width: 768px) {
    .text-2 {
      font-size: 18px; } }
  @media (min-width: 1750px) {
    .text-2 {
      font-size: 22px; } }

.text-3 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: 0.12em; }
  @media (min-width: 768px) {
    .text-3 {
      font-size: 16px; } }
  @media (min-width: 1750px) {
    .text-3 {
      font-size: 18px; } }

.text-4 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 128%;
  letter-spacing: 0.12em; }
  @media (min-width: 768px) {
    .text-4 {
      font-size: 14px; } }
  @media (min-width: 1750px) {
    .text-4 {
      font-size: 18px; } }

.button {
  border: none;
  background: none;
  outline: none;
  border: 1px solid #4B4BE1;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  height: 58px;
  line-height: 48px;
  width: 223px;
  min-width: 223px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all .25s ease; }
  .button:hover {
    background-color: #4B4BE1;
    color: #fff; }

.button--disabled {
  background: #ccc;
  color: #fff;
  border-color: #ccc;
  cursor: not-allowed; }

.button--filled {
  background-color: #4B4BE1;
  color: #fff; }

.button--accent {
  background-color: #FFC80F;
  color: #333;
  border-color: #FFC80F;
  position: relative;
  z-index: -1; }
  .button--accent:hover {
    background-color: #FFC80F;
    color: #333;
    border-color: #FFC80F; }

.button--fullwidth {
  width: 100%; }

.button-line {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-left: 3px;
  padding-right: 3px;
  transition: color .35s ease .35s;
  cursor: pointer; }
  .button-line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 50%;
    background-color: #FFC80F;
    z-index: -1;
    transition: all .35s ease;
    transform: translateX(-50%) perspective(10px); }
  @media (min-width: 1750px) {
    .button-line {
      font-size: 16px; } }
  .button-line:hover:before {
    height: 100%; }

.link-1 {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.14em;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .link-1 {
      font-size: 40px; } }

.link-2 {
  cursor: pointer;
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FA4B32;
  transition: all .25s ease; }
  @media (min-width: 1750px) {
    .link-2 {
      font-size: 16px; } }
  .link-2:hover {
    color: #FFC80F; }

.line {
  display: block; }

.main-menu {
  position: fixed;
  bottom: 0;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 420;
  opacity: 0;
  transition: all .25s ease .45s, top 0s 1s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }
  .main-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    transition: all .45s ease .45s; }
  .main-menu:after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background-color: #FFC80F;
    z-index: -2;
    opacity: 0;
    transition: all .45s ease .45s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0); }

.main-menu.active {
  top: 0;
  opacity: 1;
  transition: all .25s ease, top 0s; }
  .main-menu.active:before {
    left: 0;
    opacity: 1;
    transition: all .45s ease; }
  .main-menu.active:after {
    right: 0;
    opacity: 1;
    transition: all .45s ease; }
  .main-menu.active .main-menu__main {
    opacity: 1;
    padding-top: 0;
    transition: all .45s ease .45s;
    margin-top: 30px; }

.main-menu__main {
  opacity: 0;
  transition: all .45s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  overflow-y: auto; }

.main-menu__wrapper,
.main-menu__inner,
.main-menu__main {
  height: 100%; }

.main-menu__item {
  padding: 8px 0;
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }
  .main-menu__item:last-child {
    margin-top: 45px; }
    @media (min-width: 768px) {
      .main-menu__item:last-child {
        margin-top: 75px; } }
  .main-menu__item.submenu-open {
    margin: 10px 0; }
    .main-menu__item.submenu-open [data-submenu-toggle]:after {
      transform: rotate(-135deg) perspective(10px);
      top: 10px; }

.main-menu__link {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  cursor: pointer; }
  @media (min-width: 768px) {
    .main-menu__link {
      font-size: 18px; } }
  .main-menu__link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #F2F2F2;
    z-index: -1;
    transition: all .25s ease; }
  .main-menu__link:hover:before {
    height: 50%; }
  .main-menu__link[data-submenu-toggle]:after {
    content: '';
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg) perspective(10px);
    position: absolute;
    top: 4px;
    right: -28px;
    transition: all .5s ease; }

.submenu__item {
  padding: 8px 0; }

.submenu__link {
  font-size: 14px; }
  @media (min-width: 768px) {
    .submenu__link {
      font-size: 15px; } }

.main-menu__button {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  cursor: pointer;
  transition: all .25s ease;
  font-weight: bold;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  padding: 12px 43px;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 3px solid #000;
  overflow: hidden; }
  .main-menu__button:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 300px;
    height: 300px;
    left: -100%;
    background-color: #FFC80F;
    z-index: -1;
    transform: rotate(45deg) perspective(10px) translateX(-50%);
    transition: all .35s ease; }
  .main-menu__button:hover {
    color: #000; }
    .main-menu__button:hover:before {
      left: 50px; }

.site {
  overflow-x: hidden; }

.site-header {
  position: relative;
  top: -30px;
  transition: all .35s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }
  @media (min-width: 1200px) {
    .site-header {
      padding-bottom: 100px; } }
  @media (min-width: 1200px) {
    .site-header {
      background: url(../img/illustration-1.svg) no-repeat;
      background-position: 0 100%;
      background-size: 45%;
      padding-bottom: 210px; } }
  @media (min-width: 1300px) {
    .site-header {
      background-size: 47%;
      padding-bottom: 250px; } }
  @media (min-width: 1400px) {
    .site-header {
      background-size: auto;
      padding-bottom: 280px; } }
  @media (min-width: 1500px) {
    .site-header {
      background-size: 760px;
      padding-bottom: 315px; } }
  @media (min-width: 1750px) {
    .site-header {
      background-size: 850px;
      padding-bottom: 365px; } }

.top-bar {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 999; }

.top-bar__logo {
  width: 150px;
  position: fixed;
  top: 20px;
  left: 20px; }
  .top-bar__logo img {
    width: 100%; }
  @media (min-width: 768px) {
    .top-bar__logo {
      width: 184px; } }
  @media (min-width: 992px) {
    .top-bar__logo {
      top: 48px;
      left: 60px; } }

.top-bar__hamburger {
  position: fixed;
  top: 20px;
  right: 20px; }
  @media (min-width: 992px) {
    .top-bar__hamburger {
      top: 48px;
      right: 60px; } }

.hamburger {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px; }
  @media (min-width: 768px) {
    .hamburger {
      width: 40px;
      height: 40px; } }
  .hamburger:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #FFC80F;
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    z-index: -1;
    transition: all .25s ease; }
  .hamburger:active:before {
    left: 0px; }
  .hamburger:active .hamburger__line {
    left: 50%; }
    .hamburger:active .hamburger__line:first-child {
      top: calc(50% - 0px); }
    .hamburger:active .hamburger__line:last-child {
      top: calc(50% + 0px); }

.hamburger.active:before {
  background-color: #fff; }
.hamburger.active .hamburger__line {
  width: 24px; }
  .hamburger.active .hamburger__line:first-child {
    transform: perspective(10px) translate(-50%, -50%) rotate(45deg);
    top: calc(50%); }
  .hamburger.active .hamburger__line:last-child {
    transform: perspective(10px) translate(-50%, -50%) rotate(-45deg);
    top: calc(50%); }

.hamburger.hamburger--medium:before {
  background-color: #FFC80F; }

.hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 1px;
  background-color: #000;
  transform: perspective(10px) translate(-50%, -50%);
  transition: all .25s ease; }
  .hamburger__line:first-child {
    top: calc(50% - 3.5px); }
  .hamburger__line:last-child {
    top: calc(50% + 3.5px); }

.site-wrapper {
  overflow: hidden; }

.site-header__main {
  color: #000;
  padding: 20px;
  padding-top: 242px; }
  @media (min-width: 370px) {
    .site-header__main {
      padding-top: 222px; } }
  @media (min-width: 768px) {
    .site-header__main {
      padding: 39% 0 0 12%; } }
  @media (min-width: 992px) {
    .site-header__main {
      padding: 19% 0 0 12%; } }
  @media (min-width: 1200px) {
    .site-header__main {
      padding: 200px 0 0 21%; } }
  @media (min-width: 1250px) {
    .site-header__main {
      padding: 200px 0 0 22%; } }
  @media (min-width: 1300px) {
    .site-header__main {
      padding: 210px 0 0 22%; } }
  @media (min-width: 1500px) {
    .site-header__main {
      padding: 230px 0 0 22%; } }
  @media (min-width: 1750px) {
    .site-header__main {
      padding: 240px 0 0 22%; } }

@media (min-width: 992px) {
  .site-header__subtitle {
    padding-left: 40px; } }
@media (min-width: 1300px) {
  .site-header__subtitle {
    padding-left: 50px; } }
@media (min-width: 1500px) {
  .site-header__subtitle {
    padding-left: 55px; } }

.site-header__title {
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 0px; }
  @media (min-width: 768px) {
    .site-header__title {
      margin-top: 24px;
      margin-bottom: 38px; } }
  @media (min-width: 992px) {
    .site-header__title {
      margin-top: 8px;
      margin-bottom: 48px; } }
  @media (min-width: 1500px) {
    .site-header__title {
      margin-bottom: 73px; } }
  @media (min-width: 1750px) {
    .site-header__title {
      margin-top: 24px; } }

.site-header__description {
  padding-left: 35px;
  padding-top: 165px;
  max-width: 450px; }
  @media (min-width: 768px) {
    .site-header__description {
      max-width: 520px;
      margin-left: auto;
      margin-right: 20px;
      padding-top: 205px; } }
  @media (min-width: 992px) {
    .site-header__description {
      max-width: 490px;
      padding: 0;
      margin: 0;
      margin-left: 88px;
      width: 70%; } }
  @media (min-width: 1300px) {
    .site-header__description {
      margin-left: 140px;
      max-width: 600px; } }
  @media (min-width: 1400px) {
    .site-header__description {
      width: 79%;
      margin-left: 160px;
      max-width: 600px; } }
  @media (min-width: 1750px) {
    .site-header__description {
      max-width: 700px; } }

.site-header__description-link {
  display: inline-block;
  margin-top: 50px;
  margin-right: 0;
  position: relative;
  z-index: 100;
  width: 187px;
  margin-left: 73px; }
  @media (min-width: 370px) {
    .site-header__description-link {
      margin-left: 114px;
      margin-bottom: 5px; } }
  @media (min-width: 475px) {
    .site-header__description-link {
      margin-left: 154px; } }
  @media (min-width: 768px) {
    .site-header__description-link {
      margin-top: 30px;
      justify-content: center;
      display: inline-block;
      margin-left: 300px; } }
  @media (min-width: 992px) {
    .site-header__description-link {
      margin-left: 305px; } }
  @media (min-width: 1200px) {
    .site-header__description-link {
      margin-left: 15vw;
      width: 200px; } }
  .site-header__description-link:hover .arrows-group .arrow-down:nth-child(1) {
    top: 50%;
    opacity: 1;
    visibility: visible; }
  .site-header__description-link:hover .arrows-group .arrow-down:nth-child(2) {
    top: 40px;
    opacity: 0;
    visibility: hidden; }
  .site-header__description-link .arrows-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%; }
    @media (min-width: 370px) {
      .site-header__description-link .arrows-group {
        left: -50px; } }
    @media (min-width: 768px) {
      .site-header__description-link .arrows-group {
        left: -60px; } }
    .site-header__description-link .arrows-group .arrow-down {
      position: absolute;
      transform: translateY(-50%);
      transition: all .25s ease;
      left: 0; }
      .site-header__description-link .arrows-group .arrow-down:nth-child(1) {
        top: -40px;
        opacity: 0;
        visibility: hidden; }
      .site-header__description-link .arrows-group .arrow-down:nth-child(2) {
        top: 50%;
        opacity: 1;
        visibility: visible; }
  .site-header__description-link svg {
    display: block; }
  .site-header__description-link path {
    transition: all .25s ease; }
  .site-header__description-link .link-2:hover a {
    color: #FFC80F; }
  .site-header__description-link .link-2:hover path {
    stroke: #FFC80F; }

.site-header__corner-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: auto;
  height: 490px; }
  .site-header__corner-image img {
    height: 100%; }
  @media (min-width: 768px) {
    .site-header__corner-image {
      height: 700px; } }
  @media (min-width: 992px) {
    .site-header__corner-image {
      height: 105%; } }
  @media (min-width: 1200px) {
    .site-header__corner-image {
      height: 90%; } }

.site-header__illustration {
  width: 90%;
  margin-top: -75px; }
  @media (min-width: 370px) {
    .site-header__illustration {
      margin-top: -80px;
      width: 90%; } }
  @media (min-width: 370px) {
    .site-header__illustration {
      width: 70%; } }
  @media (min-width: 768px) {
    .site-header__illustration {
      margin-top: -310px;
      width: 60%;
      z-index: -1; } }
  .site-header__illustration img {
    width: 100%; }

.site-section__title {
  padding: 20px;
  text-transform: uppercase; }
  @media (min-width: 1200px) {
    .site-section__title {
      padding-left: 125px; } }
  @media (min-width: 1750px) {
    .site-section__title {
      padding-left: 265px; } }

.site-section__subtitle {
  padding: 0 20px; }
  @media (min-width: 1200px) {
    .site-section__subtitle {
      padding-left: 125px; } }
  @media (min-width: 1750px) {
    .site-section__subtitle {
      padding-left: 265px; } }

.site-section-01 {
  margin-top: 30px; }
  .site-section-01 .site-section__title {
    margin-bottom: 22px; }
    @media (min-width: 768px) {
      .site-section-01 .site-section__title {
        margin-bottom: 44px; } }
  @media (min-width: 768px) {
    .site-section-01 .title-1 .line:last-child {
      padding-left: 225px; } }
  @media (min-width: 992px) {
    .site-section-01 .title-1 .line:last-child {
      padding-left: 282px; } }

@media (min-width: 768px) {
  .site-section-02 {
    margin-top: 150px; } }
@media (min-width: 992px) {
  .site-section-02 .site-section__header {
    margin-bottom: 40px; } }
@media (min-width: 1200px) {
  .site-section-02 .site-section__header {
    margin-bottom: 80px; } }

.site-section-03 {
  margin-top: 48px; }
  @media (min-width: 768px) {
    .site-section-03 {
      margin-top: 96px; } }
  .site-section-03 .site-section__header {
    margin-bottom: 70px; }
  @media (min-width: 1200px) {
    .site-section-03 .title-1 .line:last-child {
      padding-left: 277px; } }
  @media (min-width: 992px) {
    .site-section-03 .offer__row {
      padding: 0 40px; } }
  @media (min-width: 1200px) {
    .site-section-03 .offer__row {
      padding: 0; } }
  .site-section-03 .offer-01 .offer__image {
    max-width: 190px; }
    @media (min-width: 370px) {
      .site-section-03 .offer-01 .offer__image {
        max-width: 210px;
        width: 75%; } }
    @media (min-width: 768px) {
      .site-section-03 .offer-01 .offer__image {
        max-width: 767px; } }
  .site-section-03 .offer-02 .offer__header {
    text-align: right; }
    .site-section-03 .offer-02 .offer__header .offer__title .title-xl-2 {
      text-align: left; }
      .site-section-03 .offer-02 .offer__header .offer__title .title-xl-2 .line:nth-child(2) {
        margin-left: auto; }
    @media (min-width: 768px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 70px; } }
    @media (min-width: 992px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 110px; } }
    @media (min-width: 1100px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 130px; } }
    @media (min-width: 1200px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 140px; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 230px; } }
    @media (min-width: 1400px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 250px; } }
    @media (min-width: 1500px) {
      .site-section-03 .offer-02 .offer__header {
        margin-bottom: 270px; } }
    .site-section-03 .offer-02 .offer__header:before {
      left: auto;
      right: 0; }
  @media (min-width: 768px) {
    .site-section-03 .offer-02 .offer__item {
      margin-right: 30px; }
      .site-section-03 .offer-02 .offer__item:last-child {
        margin-right: 0; } }
  @media (min-width: 992px) {
    .site-section-03 .offer-02 .offer__item {
      margin-right: 60px; } }
  @media (min-width: 1300px) {
    .site-section-03 .offer-02 .offer__item {
      margin-right: 104px; } }
  .site-section-03 .offer-02 .offer__image {
    width: 60%;
    right: auto;
    left: 0;
    margin-left: 0;
    max-width: 225px; }
    @media (min-width: 370px) {
      .site-section-03 .offer-02 .offer__image {
        width: 90%;
        max-width: 255px; } }
    @media (min-width: 768px) {
      .site-section-03 .offer-02 .offer__image {
        width: 55%;
        top: 235px;
        max-width: 425px; } }
    @media (min-width: 992px) {
      .site-section-03 .offer-02 .offer__image {
        width: 50%;
        top: 216px;
        max-width: initial; } }
    @media (min-width: 1200px) {
      .site-section-03 .offer-02 .offer__image {
        top: 218px; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-02 .offer__image {
        top: 102px;
        width: 60%; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-02 .offer__image {
        top: 60px;
        width: 64%;
        max-width: 890px; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-02 .offer__image {
        top: 29px;
        width: 68%;
        max-width: 950px; } }
  .site-section-03 .offer-03 .offer__header {
    margin-bottom: 20px; }
    @media (min-width: 370px) {
      .site-section-03 .offer-03 .offer__header {
        margin-bottom: 40px; } }
    .site-section-03 .offer-03 .offer__header:before {
      width: 250px; }
      @media (min-width: 370px) {
        .site-section-03 .offer-03 .offer__header:before {
          width: 286px; } }
      @media (min-width: 768px) {
        .site-section-03 .offer-03 .offer__header:before {
          width: 482px; } }
      @media (min-width: 992px) {
        .site-section-03 .offer-03 .offer__header:before {
          width: 659px; } }
      @media (min-width: 1200px) {
        .site-section-03 .offer-03 .offer__header:before {
          width: 739px; } }
      @media (min-width: 1300px) {
        .site-section-03 .offer-03 .offer__header:before {
          width: 783px; } }
  @media (min-width: 768px) {
    .site-section-03 .offer-03 {
      margin-top: 80px; } }
  @media (min-width: 992px) {
    .site-section-03 .offer-03 {
      margin-top: 200px; } }
  @media (min-width: 1200px) {
    .site-section-03 .offer-03 {
      margin-top: 260px; } }
  @media (min-width: 1300px) {
    .site-section-03 .offer-03 {
      margin-top: 320px; } }
  @media (min-width: 1400px) {
    .site-section-03 .offer-03 {
      margin-top: 350px; } }
  .site-section-03 .offer-03 .offer__image {
    width: 65%;
    top: 150px;
    max-width: 208px; }
    @media (min-width: 370px) {
      .site-section-03 .offer-03 .offer__image {
        top: 160px;
        max-width: 245px; } }
    @media (min-width: 768px) {
      .site-section-03 .offer-03 .offer__image {
        top: auto;
        bottom: 55%;
        width: 70%;
        max-width: 525px; } }
    @media (min-width: 992px) {
      .site-section-03 .offer-03 .offer__image {
        max-width: 705px; } }
    @media (min-width: 1100px) {
      .site-section-03 .offer-03 .offer__image {
        bottom: 52%; } }
    @media (min-width: 1200px) {
      .site-section-03 .offer-03 .offer__image {
        max-width: 795px;
        bottom: 55%; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-03 .offer__image {
        max-width: 915px;
        bottom: 52%; } }
    @media (min-width: 1400px) {
      .site-section-03 .offer-03 .offer__image {
        max-width: 960px; } }
  .site-section-03 .offer-04 .offer__header {
    text-align: right; }
    .site-section-03 .offer-04 .offer__header .offer__title .title-xl-2 {
      text-align: left; }
      .site-section-03 .offer-04 .offer__header .offer__title .title-xl-2 .line:nth-child(2) {
        margin-left: auto; }
    @media (min-width: 1300px) {
      .site-section-03 .offer-04 .offer__header {
        margin-bottom: 20px; } }
    .site-section-03 .offer-04 .offer__header:before {
      left: auto;
      right: 0;
      width: 230px; }
      @media (min-width: 370px) {
        .site-section-03 .offer-04 .offer__header:before {
          width: 257px; } }
      @media (min-width: 768px) {
        .site-section-03 .offer-04 .offer__header:before {
          width: 420px; } }
      @media (min-width: 992px) {
        .site-section-03 .offer-04 .offer__header:before {
          width: 570px; } }
      @media (min-width: 1200px) {
        .site-section-03 .offer-04 .offer__header:before {
          width: 715px; } }
      @media (min-width: 1300px) {
        .site-section-03 .offer-04 .offer__header:before {
          width: 765px; } }
  .site-section-03 .offer-04 .offer__image {
    right: auto;
    left: 0;
    margin-left: 0; }
    @media (min-width: 370px) {
      .site-section-03 .offer-04 .offer__image {
        top: 140px;
        max-width: 210px; } }
    @media (min-width: 768px) {
      .site-section-03 .offer-04 .offer__image {
        top: 60px;
        max-width: 420px; } }
    @media (min-width: 992px) {
      .site-section-03 .offer-04 .offer__image {
        top: 30px;
        width: 45%; } }
    @media (min-width: 1100px) {
      .site-section-03 .offer-04 .offer__image {
        top: -30px;
        width: 47%; } }
    @media (min-width: 1200px) {
      .site-section-03 .offer-04 .offer__image {
        width: 45%; } }
    @media (min-width: 1300px) {
      .site-section-03 .offer-04 .offer__image {
        width: 47%;
        top: -140px;
        max-width: 635px; } }
    @media (min-width: 1400px) {
      .site-section-03 .offer-04 .offer__image {
        width: 50%;
        top: -220px;
        max-width: 715px; } }

.site-section-04 {
  padding-top: 48px; }
  @media (min-width: 768px) {
    .site-section-04 {
      padding-top: 96px; } }
  .site-section-04 .site-section__subtitle {
    padding-left: 50px; }
    @media (min-width: 768px) {
      .site-section-04 .site-section__subtitle {
        padding-left: 340px; } }
    @media (min-width: 992px) {
      .site-section-04 .site-section__subtitle {
        padding-left: 565px; } }
    @media (min-width: 1100px) {
      .site-section-04 .site-section__subtitle {
        padding-left: 530px; } }
    @media (min-width: 1200px) {
      .site-section-04 .site-section__subtitle {
        text-align: left;
        padding-left: 735px; } }
    @media (min-width: 1750px) {
      .site-section-04 .site-section__subtitle {
        padding-left: 1025px; } }
  @media (min-width: 768px) {
    .site-section-04 .title-1 .line:last-child {
      padding-left: 42px; } }
  @media (min-width: 992px) {
    .site-section-04 .title-1 .line:last-child {
      padding-left: 104px; } }
  @media (min-width: 1200px) {
    .site-section-04 .title-1 .line:last-child {
      padding-left: 206px; } }
  @media (min-width: 1750px) {
    .site-section-04 .title-1 .line:last-child {
      padding-left: 245px; } }
  .site-section-04 .portfolio-container {
    padding-top: 72px;
    padding-bottom: 55px; }
    @media (min-width: 768px) {
      .site-section-04 .portfolio-container {
        padding-top: 144px;
        padding-bottom: 111px; } }

.site-section-05 {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .site-section-05 {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (min-width: 1300px) {
    .site-section-05 {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media (min-width: 992px) {
    .site-section-05 .title-1 .line:last-child {
      padding-left: 90px; } }
  @media (min-width: 1100px) {
    .site-section-05 .title-1 .line:last-child {
      padding-left: 208px; } }
  @media (min-width: 1100px) {
    .site-section-05 .title-1 .line:last-child {
      padding-left: 258px; } }

.site-section-06 .site-section__header {
  color: #fff;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 40px; }
  @media (min-width: 768px) {
    .site-section-06 .site-section__header {
      padding-top: 50px;
      padding-bottom: 70px; } }
  @media (min-width: 1300px) {
    .site-section-06 .site-section__header {
      padding-top: 100px;
      padding-bottom: 140px; } }
  .site-section-06 .site-section__header:before {
    content: '';
    background-color: #4B4BE1;
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    width: 286px;
    height: 100%;
    z-index: -1; }
    @media (min-width: 370px) {
      .site-section-06 .site-section__header:before {
        max-width: 380px;
        width: 87%; } }
    @media (min-width: 768px) {
      .site-section-06 .site-section__header:before {
        width: 540px;
        max-width: initial; } }
    @media (min-width: 992px) {
      .site-section-06 .site-section__header:before {
        width: 940px; } }
    @media (min-width: 1100px) {
      .site-section-06 .site-section__header:before {
        width: 1090px; } }
    @media (min-width: 1300px) {
      .site-section-06 .site-section__header:before {
        width: 1170px; } }
    @media (min-width: 1750px) {
      .site-section-06 .site-section__header:before {
        width: 1400px; } }
.site-section-06 .title-xl-2 .line:last-child {
  padding-left: 25px; }
  @media (min-width: 992px) {
    .site-section-06 .title-xl-2 .line:last-child {
      padding-left: 196px; } }

.site-section-07 {
  margin-bottom: 60px;
  margin-top: 50px; }
  @media (min-width: 768px) {
    .site-section-07 {
      margin-bottom: 52px;
      margin-top: 30px; } }
  @media (min-width: 992px) {
    .site-section-07 {
      margin-bottom: 112px; } }
  .site-section-07 .site-section__title {
    padding: 0; }
  .site-section-07 .site-section__main {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 40px 20px 40px 50px; }
    @media (min-width: 768px) {
      .site-section-07 .site-section__main {
        padding: 60px 60px 60px 110px; } }
    @media (min-width: 1200px) {
      .site-section-07 .site-section__main {
        padding: 96px 96px 96px 145px; } }
    @media (min-width: 1200px) {
      .site-section-07 .site-section__main {
        max-width: 1352px;
        margin-left: auto; } }
    @media (min-width: 1500px) {
      .site-section-07 .site-section__main {
        max-width: 1452px; } }
    @media (min-width: 1750px) {
      .site-section-07 .site-section__main {
        max-width: 1852px; } }
    .site-section-07 .site-section__main:before {
      content: '';
      position: absolute;
      z-index: -1;
      top: 0;
      right: 0;
      width: calc(100% - 25px);
      height: 100%;
      background-color: #4B4BE1; }
      @media (min-width: 768px) {
        .site-section-07 .site-section__main:before {
          width: calc(100% - 56px); } }
  .site-section-07 .contact-info-container {
    margin-top: 32px; }
    @media (min-width: 768px) {
      .site-section-07 .contact-info-container {
        margin-top: 64px; } }
  .site-section-07 .float-image {
    width: 100%;
    max-width: 432px;
    margin-top: 35px;
    margin-left: 20px;
    margin-bottom: -82px; }
    .site-section-07 .float-image img {
      width: 100%; }
    @media (min-width: 768px) {
      .site-section-07 .float-image {
        position: absolute;
        top: 134px;
        right: 50px;
        z-index: -1;
        margin: 0;
        max-width: 33%; } }
    @media (min-width: 992px) {
      .site-section-07 .float-image {
        top: 148px;
        right: 60px;
        max-width: 35%; } }
    @media (min-width: 1100px) {
      .site-section-07 .float-image {
        max-width: 363px; } }
    @media (min-width: 1200px) {
      .site-section-07 .float-image {
        top: 170px;
        right: 95px;
        max-width: 382px; } }
    @media (min-width: 1500px) {
      .site-section-07 .float-image {
        top: 170px;
        right: 170px;
        max-width: 382px; } }
    @media (min-width: 1750px) {
      .site-section-07 .float-image {
        right: 400px;
        max-width: 370px;
        top: 190px; } }

.site-section-08 {
  margin-bottom: 50px; }
  @media (min-width: 768px) {
    .site-section-08 {
      margin-bottom: 100px; } }
  @media (min-width: 992px) {
    .site-section-08 .title-1 .line:last-child {
      padding-left: 87px; } }
  @media (min-width: 1200px) {
    .site-section-08 .title-1 .line:last-child {
      padding-left: 136px; } }
  @media (min-width: 1300px) {
    .site-section-08 .title-1 .line:last-child {
      padding-left: 218px; } }
  @media (min-width: 1750px) {
    .site-section-08 .title-1 .line:last-child {
      padding-left: 257px; } }
  @media (min-width: 768px) {
    .site-section-08 .site-section__header {
      max-width: 730px;
      margin: auto; } }
  @media (min-width: 992px) {
    .site-section-08 .site-section__header {
      max-width: 990px;
      margin: auto; } }
  @media (min-width: 1200px) {
    .site-section-08 .site-section__header {
      max-width: 1020px; } }
  @media (min-width: 1300px) {
    .site-section-08 .site-section__header {
      max-width: 1080px; } }
  @media (min-width: 1750px) {
    .site-section-08 .site-section__header {
      max-width: 1270px; } }
  @media (min-width: 1200px) {
    .site-section-08 .site-section__title {
      padding-left: 0;
      padding-right: 0; } }
  .site-section-08 .site-section__subtitle {
    margin-left: 50px;
    max-width: 448px;
    margin-top: 10px; }
    @media (min-width: 370px) {
      .site-section-08 .site-section__subtitle {
        margin-left: 50px; } }
    @media (min-width: 768px) {
      .site-section-08 .site-section__subtitle {
        max-width: 418px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 50px;
        padding-right: 0; } }
    @media (min-width: 992px) {
      .site-section-08 .site-section__subtitle {
        max-width: 455px; } }
    @media (min-width: 1500px) {
      .site-section-08 .site-section__subtitle {
        padding-left: 55px; } }
    @media (min-width: 1750px) {
      .site-section-08 .site-section__subtitle {
        max-width: 475px; } }
  .site-section-08 .site-section__main {
    padding: 20px;
    text-align: center; }
  .site-section-08 .vertical-arrow-container {
    margin-top: 20px;
    margin-bottom: 25px; }
    @media (min-width: 768px) {
      .site-section-08 .vertical-arrow-container {
        margin-top: 40px;
        margin-bottom: 50px; } }

.tabs {
  background-color: #F2F2F2;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .tabs {
      display: flex;
      align-items: center; } }
  .tabs:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 30px;
    background-color: #fff;
    z-index: -1; }
    @media (min-width: 768px) {
      .tabs:before {
        display: none; } }

.tabs__header {
  padding: 20px;
  background-color: #FFC80F; }
  @media (min-width: 768px) {
    .tabs__header {
      width: 341px;
      border-bottom: none;
      border-right: 32px solid #fff; } }
  @media (min-width: 992px) {
    .tabs__header {
      width: 390px;
      padding: 60px 40px; } }
  @media (min-width: 1300px) {
    .tabs__header {
      width: 448px;
      padding: 80px 40px; } }
  @media (min-width: 1750px) {
    .tabs__header {
      width: 702px;
      padding-left: 150px; } }

.tabs__list_item {
  margin: 16px 0;
  cursor: pointer; }
  @media (min-width: 768px) {
    .tabs__list_item {
      margin: 32px 0; } }

.tabs__list_item.active .tabs__title:before {
  height: 50%; }

.tabs__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap; }
  .tabs__title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #F2F2F2;
    z-index: -1;
    transition: all .25s ease; }
  .tabs__title:hover:before {
    height: 50%; }

.tabs__hidden-content {
  padding: 20px 40px;
  margin: 15px 0 20px;
  position: relative;
  z-index: 1;
  width: calc(100% + 40px);
  margin-left: -20px; }

.tabs__main {
  padding: 40px 40px 20px;
  display: none; }
  @media (min-width: 768px) {
    .tabs__main {
      display: block; } }
  @media (min-width: 992px) {
    .tabs__main {
      padding: 40px;
      width: 50%;
      max-width: 420px; } }
  @media (min-width: 1200px) {
    .tabs__main {
      padding: 0;
      margin-left: 66px; } }
  @media (min-width: 1300px) {
    .tabs__main {
      padding: 0;
      margin-left: 96px; } }
  @media (min-width: 1500px) {
    .tabs__main {
      margin: auto;
      margin-right: 36%;
      max-width: 420px; } }
  @media (min-width: 1750px) {
    .tabs__main {
      margin-right: 33%;
      max-width: 520px; } }

.tabs__text {
  display: none; }
  @media (min-width: 768px) {
    .tabs__text {
      display: block;
      transition: all .25s ease;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0); } }

.tabs__image {
  width: 100%;
  position: relative;
  z-index: 100;
  padding-left: 10%; }
  .tabs__image img {
    width: 100%; }
    @media (min-width: 768px) {
      .tabs__image img {
        transform: translateY(-50%); } }
  @media (min-width: 768px) {
    .tabs__image {
      position: absolute;
      top: 70%;
      right: 0;
      width: 300px;
      margin-left: 0;
      display: none; } }
  @media (min-width: 992px) {
    .tabs__image {
      top: 50%;
      width: 30%;
      display: block; } }
  @media (min-width: 1200px) {
    .tabs__image {
      top: 73%;
      width: 33%; } }
  @media (min-width: 1300px) {
    .tabs__image {
      top: 71%;
      width: 40%;
      max-width: 576px; } }
  @media (min-width: 1300px) {
    .tabs__image {
      max-width: 806px; } }

.number-list-container {
  position: relative; }

.number-list {
  position: relative;
  background-color: #F2F2F2;
  padding-top: 35px;
  padding-bottom: 50px;
  z-index: 1; }
  .number-list:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: -90%;
    background-color: #F2F2F2;
    z-index: -1; }
  .number-list:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    right: -90%;
    top: 0;
    background-color: #F2F2F2;
    z-index: -1; }
  @media (min-width: 992px) {
    .number-list {
      padding-top: 70px;
      padding-bottom: 100px; } }
  @media (min-width: 1200px) {
    .number-list {
      padding-left: 50px;
      padding-right: 50px;
      padding-left: 0;
      padding-right: 0;
      max-width: 1120px;
      margin: auto;
      padding-left: 5px; } }
  @media (min-width: 1300px) {
    .number-list {
      padding-left: 35px; } }
  @media (min-width: 1500px) {
    .number-list {
      max-width: 1300px;
      padding-left: 70px; } }
  @media (min-width: 1750px) {
    .number-list {
      max-width: 2000px; } }

.number-list__item {
  margin-bottom: 25px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }
  .number-list__item:hover {
    transform: scale(1.1); }
    .number-list__item:hover .number-list__value {
      color: #FFC80F; }
  @media (min-width: 370px) {
    .number-list__item {
      width: 320px; } }
  @media (min-width: 768px) {
    .number-list__item {
      padding: 0 20px;
      width: 100%; } }
  @media (min-width: 992px) {
    .number-list__item {
      flex-direction: column;
      width: 50%; } }
  @media (min-width: 1300px) {
    .number-list__item {
      margin-bottom: 50px;
      padding: 0; } }
  @media (min-width: 1300px) {
    .number-list__item {
      margin-bottom: 70px; } }
  @media (min-width: 1750px) {
    .number-list__item {
      width: 25%; } }

.number-list__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  @media (min-width: 768px) {
    .number-list__group:first-child {
      width: 50%;
      margin-left: auto;
      padding-right: 30px; } }
  @media (min-width: 992px) {
    .number-list__group:first-child {
      padding-right: 0; } }
  @media (min-width: 1750px) {
    .number-list__group:first-child {
      width: 65%;
      padding-right: 0; } }
  @media (min-width: 768px) {
    .number-list__group:nth-child(2) .number-list__item {
      width: 50%; } }
  @media (min-width: 992px) {
    .number-list__group:nth-child(2) .number-list__item {
      width: 25%;
      margin-bottom: 0; } }
  @media (min-width: 1750px) {
    .number-list__group:nth-child(2) {
      width: 65%;
      margin-left: auto; } }

.number-list__value {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  width: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F2F2F2;
  transition: all .35s ease;
  text-shadow: -1px -1px 0 #000,   1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; }
  @media (min-width: 370px) {
    .number-list__value {
      width: 100px;
      font-size: 110px;
      margin-right: 20px; } }
  @media (min-width: 768px) {
    .number-list__value {
      width: 100px;
      font-size: 120px; } }
  @media (min-width: 992px) {
    .number-list__value {
      text-align: left; } }
  @media (min-width: 1750px) {
    .number-list__value {
      font-size: 150px; } }

@media (max-width: 370px) {
  .number-list__description .text-4 {
    font-size: 10px; } }

.number-list__text {
  margin-bottom: 6px; }

@media (max-width: 370px) {
  .number-list__title .title-4 {
    font-size: 12px; } }

.number-list__image {
  width: 90%;
  position: relative; }
  @media (min-width: 768px) {
    .number-list__image {
      position: absolute;
      top: 80px;
      left: 0;
      width: 48%;
      z-index: 10; } }
  @media (min-width: 992px) {
    .number-list__image {
      top: -50px;
      width: 48%;
      max-width: 500px; } }
  @media (min-width: 1200px) {
    .number-list__image {
      top: -90px;
      max-width: 43%; } }
  @media (min-width: 1400px) {
    .number-list__image {
      max-width: 44%; } }
  @media (min-width: 1400px) {
    .number-list__image {
      max-width: 600px; } }
  @media (min-width: 1750px) {
    .number-list__image {
      max-width: initial;
      width: 30%; } }
  .number-list__image img {
    width: 100%; }

.offer {
  position: relative; }

.offer__header {
  padding: 20px;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 50px; }
  @media (min-width: 768px) {
    .offer__header {
      padding-top: 120px;
      padding-bottom: 100px; } }
  @media (min-width: 1200px) {
    .offer__header {
      padding-left: 100px;
      padding-right: 100px;
      padding-bottom: 124px;
      padding-top: 124px; } }
  @media (min-width: 1300px) {
    .offer__header {
      padding-left: 144px;
      padding-right: 144px; } }
  .offer__header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 190px;
    background-color: #FFC80F;
    z-index: -1; }
    @media (min-width: 370px) {
      .offer__header:before {
        width: 216px; } }
    @media (min-width: 768px) {
      .offer__header:before {
        width: 345px; } }
    @media (min-width: 992px) {
      .offer__header:before {
        width: 470px; } }
    @media (min-width: 1200px) {
      .offer__header:before {
        width: 548px; } }
    @media (min-width: 1300px) {
      .offer__header:before {
        width: 592px; } }

.offer__title {
  position: relative;
  z-index: 1100; }
  .offer__title .title-xl-2 {
    display: inline-flex;
    flex-direction: column; }
  .offer__title .line {
    display: inline-block;
    width: auto; }

.offer__subtitle {
  margin-top: 24px; }
  @media (min-width: 768px) {
    .offer__subtitle {
      margin-top: 48px; } }

.offer__main {
  padding-top: 115px;
  padding-bottom: 115px; }
  @media (min-width: 370px) {
    .offer__main {
      padding-top: 125px;
      padding-bottom: 125px; } }
  @media (min-width: 768px) {
    .offer__main {
      padding-top: 100px;
      padding-bottom: 100px; } }

.offer__row {
  margin-bottom: 36px;
  padding: 0 20px; }
  @media (min-width: 768px) {
    .offer__row {
      margin-bottom: 72px;
      display: flex;
      align-items: flex-start; } }
  @media (min-width: 1200px) {
    .offer__row {
      padding: 0;
      max-width: 1072px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1750px) {
    .offer__row {
      max-width: 1450px; } }
  .offer__row:nth-child(2), .offer__row:last-child {
    margin-bottom: 0; }
  @media (min-width: 1750px) {
    .offer__row {
      margin-bottom: 110px; } }

.offer__item {
  width: 100%;
  max-width: 288px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto; }
  .offer__item:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .offer__item {
      margin-bottom: 0;
      margin-right: 30px;
      margin-left: 0; }
      .offer__item:last-child {
        margin-right: 0; } }
  @media (min-width: 992px) {
    .offer__item {
      margin-right: 50px; } }
  @media (min-width: 1200px) {
    .offer__item {
      margin-right: 104px; } }
  @media (min-width: 1750px) {
    .offer__item {
      max-width: 360px;
      margin-right: 150px; } }

.offer__image {
  width: 50%;
  margin-left: 20%;
  position: absolute;
  top: 140px;
  right: 0;
  z-index: 50; }
  .offer__image img {
    width: 100%; }
  @media (min-width: 768px) {
    .offer__image {
      top: 200px; } }
  @media (min-width: 1200px) {
    .offer__image {
      top: 100px;
      width: 50%; } }
  @media (min-width: 1300px) {
    .offer__image {
      top: -38px;
      width: 55%; } }
  @media (min-width: 1500px) {
    .offer__image {
      width: 53%;
      max-width: 800px; } }
  @media (min-width: 1600px) {
    .offer__image {
      max-width: 820px; } }

.article__header {
  margin-bottom: 12px; }
  @media (min-width: 768px) {
    .article__header {
      margin-bottom: 24px; } }

@media (min-width: 768px) {
  .portfolio {
    padding: 20px; } }
@media (min-width: 1200px) {
  .portfolio {
    padding-left: 100px;
    padding-right: 100px; } }
@media (min-width: 1300px) {
  .portfolio {
    padding-left: 120px;
    padding-right: 120px; } }
@media (min-width: 1500px) {
  .portfolio {
    padding-left: 144px;
    padding-right: 144px; } }
@media (min-width: 1750px) {
  .portfolio {
    padding-left: 200px;
    padding-right: 200px; } }

.portfolio__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 543px;
  margin: auto;
  margin-bottom: 75px;
  padding: 0 20px; }
  .portfolio__item:hover .portfolio__number {
    color: #FFC80F; }
  @media (min-width: 768px) {
    .portfolio__item {
      max-width: initial;
      flex-wrap: nowrap;
      padding-bottom: 80px;
      margin-bottom: 80px;
      position: relative; }
      .portfolio__item:after {
        content: '';
        position: absolute;
        right: 0;
        top: 100%;
        background-color: #000;
        width: calc(100% - 100px);
        height: 1px;
        transform: perspective(10px); }
      .portfolio__item:nth-child(2n) {
        flex-direction: row-reverse; }
        .portfolio__item:nth-child(2n):after {
          right: auto;
          left: 0; }
      .portfolio__item:last-child {
        padding-bottom: 0; }
        .portfolio__item:last-child:after {
          display: none; } }
  @media (min-width: 992px) {
    .portfolio__item:after {
      width: calc(100% - 150px); } }
  @media (min-width: 1100px) {
    .portfolio__item:nth-child(2n) .portfolio__image {
      padding-left: 40px;
      padding-right: 20px; } }
  @media (min-width: 1200px) {
    .portfolio__item {
      padding-bottom: 120px;
      margin-bottom: 120px; }
      .portfolio__item:nth-child(2n) .portfolio__image {
        padding-left: 66px;
        padding-right: 20px; } }
  @media (min-width: 1300px) {
    .portfolio__item:nth-child(2n) .portfolio__image {
      padding: 0;
      margin-left: auto;
      margin-right: 30px; } }
  .portfolio__item:last-child {
    margin-bottom: 0; }

.portfolio__number {
  font-family: "termina", sans-serif;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  font-size: 60px;
  width: 60px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F2F2F2;
  margin-right: 15px;
  transition: all .35s ease;
  text-shadow: -1px -1px 0 #000,   1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; }
  @media (min-width: 370px) {
    .portfolio__number {
      font-size: 60px;
      width: 60px; } }
  @media (min-width: 768px) {
    .portfolio__number {
      min-width: 80px;
      font-size: 100px;
      margin-right: 0; } }
  @media (min-width: 992px) {
    .portfolio__number {
      min-width: 130px;
      font-size: 130px; } }
  @media (min-width: 1200px) {
    .portfolio__number {
      align-self: flex-start;
      padding-top: 20px; } }
  @media (min-width: 1750px) {
    .portfolio__number {
      font-size: 150px; } }

.portfolio__image {
  width: 100%;
  margin-left: auto;
  max-width: 543px;
  order: 1;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 768px) {
    .portfolio__image {
      order: 0;
      margin-top: 0;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px; } }
  @media (min-width: 1100px) {
    .portfolio__image {
      padding-right: 40px; } }
  @media (min-width: 1200px) {
    .portfolio__image {
      padding-right: 66px; } }
  @media (min-width: 1300px) {
    .portfolio__image {
      padding: 0;
      width: 42%;
      margin-left: 30px; } }
  @media (min-width: 1400px) {
    .portfolio__image {
      padding: 0;
      width: 44%;
      margin-left: 30px; } }
  @media (min-width: 1500px) {
    .portfolio__image {
      max-width: 650px;
      width: 46%; } }
  @media (min-width: 1750px) {
    .portfolio__image {
      width: 48%; } }
  .portfolio__image img {
    width: 100%; }

.portfolio__info {
  max-width: 480px;
  width: calc(100% - 80px); }
  @media (min-width: 768px) {
    .portfolio__info {
      width: auto;
      min-width: 300px; } }
  @media (min-width: 992px) {
    .portfolio__info {
      min-width: 400px; } }

.portfolio__subtitle {
  margin-bottom: 12px; }
  @media (min-width: 768px) {
    .portfolio__subtitle {
      margin-bottom: 24px; } }

.portfolio__description {
  margin-top: 12px;
  max-width: 352px; }
  @media (min-width: 768px) {
    .portfolio__description {
      margin-top: 24px;
      margin-left: 24px; } }

.portfolio__button {
  margin-top: 20px; }
  @media (min-width: 768px) {
    .portfolio__button {
      margin-top: 40px; } }

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px; }
  @media (min-width: 1200px) {
    .partners {
      padding-left: 125px;
      padding-right: 125px;
      padding: 50px 125px 0; } }
  @media (min-width: 1750px) {
    .partners {
      padding: 100px 265px 0; } }

.partners__item {
  width: 140px;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all .25s ease; }
  @media (min-width: 370px) {
    .partners__item {
      width: 160px; } }
  @media (min-width: 768px) {
    .partners__item {
      margin: 20px 0;
      width: 180px; } }
  @media (min-width: 1500px) {
    .partners__item {
      width: 15%; } }
  .partners__item img {
    width: 100%; }
  .partners__item:hover {
    transform: scale(1.2); }

.about {
  padding: 20px;
  position: relative;
  z-index: 10; }
  @media (min-width: 768px) {
    .about {
      padding: 50px 20px; } }
  @media (min-width: 1200px) {
    .about {
      padding: 50px 40px 80px; } }
  @media (min-width: 1300px) {
    .about {
      max-width: 1225px;
      padding: 50px 0 80px;
      margin: auto; } }
  @media (min-width: 1750px) {
    .about {
      max-width: 1425px;
      padding: 70px 0 80px; } }

.about__group {
  margin-bottom: 50px; }
  @media (min-width: 992px) {
    .about__group {
      display: flex;
      justify-content: space-between; } }
  .about__group:nth-child(1) .about__item:nth-child(1) {
    max-width: 480px;
    margin-bottom: 275px; }
    @media (min-width: 768px) {
      .about__group:nth-child(1) .about__item:nth-child(1) {
        margin-bottom: 75px; } }
    @media (min-width: 1200px) {
      .about__group:nth-child(1) .about__item:nth-child(1) {
        width: auto; } }
    .about__group:nth-child(1) .about__item:nth-child(1) .about__subtitle {
      margin-bottom: 16px; }
    .about__group:nth-child(1) .about__item:nth-child(1) .about__title {
      margin-bottom: 16px;
      text-transform: uppercase; }
  @media (min-width: 1200px) {
    .about__group:nth-child(1) .about__item:nth-child(2) {
      width: auto;
      max-width: initial; } }
  .about__group:nth-child(1) .about__item:nth-child(2) .about__subtitle {
    margin-bottom: 42px; }
    @media (min-width: 768px) {
      .about__group:nth-child(1) .about__item:nth-child(2) .about__subtitle {
        max-width: 650px; } }
  .about__group:nth-child(1) .about__item:nth-child(2) .about__description {
    padding-left: 30px; }
    @media (min-width: 992px) {
      .about__group:nth-child(1) .about__item:nth-child(2) .about__description {
        padding-left: 50px; } }
    @media (min-width: 1300px) {
      .about__group:nth-child(1) .about__item:nth-child(2) .about__description {
        padding-left: 165px; } }
  .about__group:nth-child(1) .about__item:nth-child(2) .about__text {
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .about__group:nth-child(1) .about__item:nth-child(2) .about__text {
        margin-bottom: 40px;
        max-width: 450px; } }
    .about__group:nth-child(1) .about__item:nth-child(2) .about__text:last-child {
      margin-bottom: 0; }
  .about__group:nth-child(2) {
    margin-bottom: 0; }
    @media (min-width: 1300px) {
      .about__group:nth-child(2) {
        margin-top: -80px;
        align-items: center; } }
    .about__group:nth-child(2) .about__item:last-child {
      margin-bottom: 0; }
    @media (min-width: 992px) {
      .about__group:nth-child(2) .about__item {
        margin: auto;
        margin-left: 0; }
        .about__group:nth-child(2) .about__item:last-child {
          margin-bottom: auto;
          width: auto; } }
    .about__group:nth-child(2) .about__item:nth-child(1) {
      max-width: 546px; }
      .about__group:nth-child(2) .about__item:nth-child(1) .about__subtitle {
        margin-bottom: 19px; }
      .about__group:nth-child(2) .about__item:nth-child(1) .about__title {
        margin-bottom: 24px; }
        @media (min-width: 768px) {
          .about__group:nth-child(2) .about__item:nth-child(1) .about__title {
            margin-bottom: 48px; } }
      .about__group:nth-child(2) .about__item:nth-child(1) .about__button {
        margin-top: 20px;
        margin-bottom: 25px; }
        @media (min-width: 768px) {
          .about__group:nth-child(2) .about__item:nth-child(1) .about__button {
            margin-bottom: 3px;
            text-align: right;
            padding-right: 50px; } }
      .about__group:nth-child(2) .about__item:nth-child(1) .about__logo {
        width: 150px;
        display: inline-block; }
        @media (min-width: 768px) {
          .about__group:nth-child(2) .about__item:nth-child(1) .about__logo {
            width: 204px; } }
        .about__group:nth-child(2) .about__item:nth-child(1) .about__logo svg {
          width: 100%; }
    .about__group:nth-child(2) .about__item:nth-child(2) .about__subtitle {
      margin-bottom: 37px; }
      @media (min-width: 768px) {
        .about__group:nth-child(2) .about__item:nth-child(2) .about__subtitle .line {
          display: inline; } }
    .about__group:nth-child(2) .about__item:nth-child(2) .about__title {
      padding-left: 60px; }
    .about__group:nth-child(2) .about__item:nth-child(2) .hatch {
      display: flex;
      align-items: center; }
    .about__group:nth-child(2) .about__item:nth-child(2) .hatch__image {
      height: 100px;
      margin-right: 30px; }
      .about__group:nth-child(2) .about__item:nth-child(2) .hatch__image img {
        height: 100%; }
    .about__group:nth-child(2) .about__item:nth-child(2) .hatch__title {
      font-family: "termina", sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 22px;
      line-height: 120%;
      text-transform: uppercase; }
      @media (min-width: 768px) {
        .about__group:nth-child(2) .about__item:nth-child(2) .hatch__title {
          font-size: 28px; } }

.about__item {
  margin-bottom: 75px; }
  @media (min-width: 992px) {
    .about__item {
      width: 47%; } }

.about__image {
  position: absolute;
  top: -25px;
  right: 0;
  z-index: -1;
  width: 100%;
  max-width: 300px; }
  .about__image img {
    width: 100%; }
  @media (min-width: 992px) {
    .about__image {
      width: 50%;
      right: auto;
      left: 50px;
      max-width: 510px;
      top: 60px; } }
  @media (min-width: 1200px) {
    .about__image {
      top: 5px;
      left: 0;
      max-width: 610px; } }
  @media (min-width: 1300px) {
    .about__image {
      max-width: 52%;
      left: 12%;
      top: -80px; } }
  @media (min-width: 1750px) {
    .about__image {
      max-width: 55%;
      left: 9%;
      top: -65px; } }

.contact-info__subtitle {
  margin-bottom: 8px; }

.contact-info__item {
  margin-bottom: 38px; }
  @media (min-width: 768px) {
    .contact-info__item {
      margin-bottom: 76px; } }
  .contact-info__item:last-child {
    margin-bottom: 0; }

.contact-info__link a {
  transition: all .25s ease;
  position: relative;
  z-index: 10; }
  .contact-info__link a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #FFC80F;
    z-index: -1;
    transition: all .25s ease; }
    @media (min-width: 768px) {
      .contact-info__link a:before {
        height: 12px; } }
    @media (min-width: 1200px) {
      .contact-info__link a:before {
        bottom: 5.5px; } }
  .contact-info__link a:hover:before {
    height: 23px; }
    @media (min-width: 768px) {
      .contact-info__link a:hover:before {
        height: 32px; } }
    @media (min-width: 1200px) {
      .contact-info__link a:hover:before {
        height: 32px; } }

.vertical-arrow {
  display: flex;
  flex-direction: column;
  align-items: center; }

.vertical-arrow__line {
  height: 72px;
  width: 1px;
  background-color: #000; }

.vertical-arrow__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #000;
  position: relative; }
  .vertical-arrow__dot:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: #000;
    border-radius: 50%; }

.footer-contact__item:last-child {
  margin-bottom: 0; }
@media (min-width: 768px) {
  .footer-contact__item {
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px; } }
@media (min-width: 992px) {
  .footer-contact__item {
    display: block; } }
@media (min-width: 1300px) {
  .footer-contact__item {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px; } }
@media (min-width: 1300px) {
  .footer-contact__item {
    margin-left: 15px;
    margin-right: 15px; } }

.footer-contact__link {
  display: inline-block;
  padding: 10px;
  transition: all .35s ease; }
  .footer-contact__link:hover {
    color: #FFC80F; }

.site-footer__contact {
  margin-bottom: 20px; }
  @media (min-width: 992px) {
    .site-footer__contact {
      margin-bottom: auto; } }

.site-footer__main {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center; }
  @media (min-width: 768px) {
    .site-footer__main {
      padding: 40px 20px; } }
  @media (min-width: 992px) {
    .site-footer__main {
      display: flex;
      justify-content: space-around;
      align-items: center; } }
  @media (min-width: 1300px) {
    .site-footer__main {
      justify-content: center;
      padding: 70px 20px; } }

.footer-nav__link {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  letter-spacing: 0.2em;
  text-transform: uppercase; }
  @media (min-width: 1750px) {
    .footer-nav__link {
      font-size: 18px; } }

@media (min-width: 768px) {
  .footer-nav__item {
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px; } }
@media (min-width: 992px) {
  .footer-nav__item {
    margin-left: 15px;
    margin-right: 15px; } }
@media (min-width: 1300px) {
  .footer-nav__item {
    margin-left: 10px;
    margin-right: 10px; } }
@media (min-width: 1400px) {
  .footer-nav__item {
    margin-left: 15px;
    margin-right: 15px; } }

.footer-nav__link {
  transition: all .35s ease;
  padding: 10px;
  display: inline-block; }
  .footer-nav__link:hover {
    color: #FFC80F; }

.site-footer__bar {
  padding: 32px 20px;
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 768px) {
    .site-footer__bar {
      flex-direction: row;
      justify-content: space-between;
      padding: 32px 50px; } }

.site-footer__logo {
  position: relative;
  z-index: 1;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .site-footer__logo {
      margin-bottom: auto; } }
  .site-footer__logo:before {
    content: '';
    width: 45px;
    height: 45px;
    background-color: #FFC80F;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 50%; }

.partner {
  display: flex;
  align-items: center; }

.partner__text {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  text-align: right;
  letter-spacing: 0.08em;
  margin-right: 15px; }

.partner__logo {
  width: 135px;
  display: inline-block; }
  .partner__logo svg {
    width: 100%;
    display: block; }

.popup {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
  background-color: #fff;
  z-index: 777;
  transition: all .55s ease;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  -webkit-transform: translateZ(0) perspective(10px);
  -moz-transform: translateZ(0) perspective(10px);
  -ms-transform: translateZ(0) perspective(10px);
  -o-transform: translateZ(0) perspective(10px);
  transform: translateZ(0) perspective(10px); }

.popup.active {
  top: 0;
  visibility: visible;
  opacity: 1; }

.popup--brief .popup__header {
  padding-left: 45px;
  padding-top: 115px;
  padding-right: 30px;
  height: auto;
  position: relative;
  padding-bottom: 32px; }
  .popup--brief .popup__header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFC80F;
    height: 100%;
    width: 127px;
    z-index: -1; }
    @media (min-width: 370px) {
      .popup--brief .popup__header:before {
        width: 158px; } }
    @media (min-width: 768px) {
      .popup--brief .popup__header:before {
        width: 198px; } }
    @media (min-width: 992px) {
      .popup--brief .popup__header:before {
        width: 360px; } }
    @media (min-width: 1300px) {
      .popup--brief .popup__header:before {
        width: 460px; } }
    @media (min-width: 1400px) {
      .popup--brief .popup__header:before {
        width: 560px; } }
    @media (min-width: 1800px) {
      .popup--brief .popup__header:before {
        width: 710px; } }
  @media (min-width: 370px) {
    .popup--brief .popup__header {
      padding-left: 65px;
      padding-right: 30px; } }
  @media (min-width: 992px) {
    .popup--brief .popup__header {
      padding-left: 135px;
      padding-top: 160px; } }
  @media (min-width: 1300px) {
    .popup--brief .popup__header {
      padding-left: 236px; } }
  @media (min-width: 1400px) {
    .popup--brief .popup__header {
      padding-left: 336px; } }
  @media (min-width: 1750px) {
    .popup--brief .popup__header {
      padding-left: 436px; } }
.popup--brief .popup__subtitle {
  padding-left: 33px;
  padding-top: 33px; }
  @media (min-width: 370px) {
    .popup--brief .popup__subtitle {
      padding-left: 38px;
      padding-top: 38px; } }
  @media (min-width: 768px) {
    .popup--brief .popup__subtitle {
      padding-left: 58px;
      padding-top: 55px; } }
  @media (min-width: 992px) {
    .popup--brief .popup__subtitle {
      padding-left: 98px; } }
  @media (min-width: 1750px) {
    .popup--brief .popup__subtitle {
      padding-left: 118px; } }

.popup__description {
  margin-left: 33px;
  padding-top: 33px;
  max-width: 348px; }
  @media (min-width: 768px) {
    .popup__description {
      margin-left: 277px; } }
  @media (min-width: 992px) {
    .popup__description {
      max-width: 448px;
      margin-left: 337px;
      padding-top: 45px; } }
  @media (min-width: 1300px) {
    .popup__description {
      margin-left: 383px; } }
  @media (min-width: 1750px) {
    .popup__description {
      margin-left: 515px;
      max-width: 520px; } }

.popup__more-link {
  display: inline-block;
  margin-top: 50px;
  margin-right: 0;
  position: relative;
  z-index: 100;
  width: 187px;
  margin-left: 113px; }
  @media (min-width: 370px) {
    .popup__more-link {
      margin-left: 134px; } }
  @media (min-width: 768px) {
    .popup__more-link {
      justify-content: center;
      display: inline-block;
      margin-left: 418px; } }
  @media (min-width: 992px) {
    .popup__more-link {
      margin-left: 540px; } }
  @media (min-width: 1300px) {
    .popup__more-link {
      margin-left: 595px; } }
  @media (min-width: 1750px) {
    .popup__more-link {
      margin-left: 795px; } }
  .popup__more-link:hover .arrows-group .arrow-down:nth-child(1) {
    top: 50%;
    opacity: 1;
    visibility: visible; }
  .popup__more-link:hover .arrows-group .arrow-down:nth-child(2) {
    top: 40px;
    opacity: 0;
    visibility: hidden; }
  .popup__more-link .arrows-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%; }
    @media (min-width: 370px) {
      .popup__more-link .arrows-group {
        left: -50px; } }
    @media (min-width: 768px) {
      .popup__more-link .arrows-group {
        left: -60px; } }
    .popup__more-link .arrows-group .arrow-down {
      position: absolute;
      transform: translateY(-50%);
      transition: all .25s ease;
      left: 0; }
      .popup__more-link .arrows-group .arrow-down:nth-child(1) {
        top: -40px;
        opacity: 0;
        visibility: hidden; }
      .popup__more-link .arrows-group .arrow-down:nth-child(2) {
        top: 50%;
        opacity: 1;
        visibility: visible; }
  .popup__more-link svg {
    display: block; }
  .popup__more-link path {
    transition: all .25s ease; }
  .popup__more-link .link-2:hover a {
    color: #FFC80F; }
  .popup__more-link .link-2:hover path {
    stroke: #FFC80F; }

.anim--loop-rotate {
  animation: rotate 30s linear infinite; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.form__row {
  padding: 44px 30px;
  max-width: 1120px;
  margin: auto; }
  @media (min-width: 992px) {
    .form__row {
      display: flex;
      padding: 44px 50px; } }
  @media (min-width: 1200px) {
    .form__row {
      padding: 88px 0; } }
  @media (min-width: 1750px) {
    .form__row {
      max-width: 1220px; } }
  @media (min-width: 992px) {
    .form__row:nth-child(1) {
      flex-direction: column; }
      .form__row:nth-child(1) .form__main {
        width: 100%; } }
  .form__row:nth-child(2n) {
    position: relative;
    background-color: #f2f2f2; }
    .form__row:nth-child(2n):before {
      content: '';
      position: absolute;
      right: 100%;
      width: 100%;
      height: 100%;
      top: 0;
      background-color: #f2f2f2; }
    .form__row:nth-child(2n):after {
      content: '';
      position: absolute;
      left: 100%;
      width: 100%;
      height: 100%;
      top: 0;
      background-color: #f2f2f2; }

@media (min-width: 992px) {
  .form__row--center {
    align-items: center; }
    .form__row--center .form__header {
      margin-bottom: 0; } }

.form-file {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .form-file .form-file__button {
    width: 100%;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .form-file .form-file__button {
        width: auto;
        margin-bottom: auto; } }
  .form-file .form-file__value {
    opacity: 0;
    margin-right: 12px;
    transition: all .25s ease;
    position: relative;
    bottom: -10px; }
    @media (min-width: 768px) {
      .form-file .form-file__value {
        margin-left: 19px; } }
    @media (min-width: 992px) {
      .form-file .form-file__value {
        margin-right: 24px;
        margin-left: 38px; } }
  .form-file .form-file__remove {
    opacity: 0;
    position: relative;
    bottom: -10px;
    transition: all .25s ease; }
    .form-file .form-file__remove svg {
      cursor: pointer;
      display: block; }
      .form-file .form-file__remove svg path {
        transition: all .35s ease; }
      .form-file .form-file__remove svg circle {
        transition: all .35s ease; }
      .form-file .form-file__remove svg:hover path {
        fill: #4B4BE1; }
      .form-file .form-file__remove svg:hover circle {
        stroke: #4B4BE1; }
  .form-file .form-file__add {
    opacity: 0;
    position: relative;
    bottom: -10px;
    transition: all .25s ease;
    transform: rotate(45deg); }
    .form-file .form-file__add svg {
      cursor: pointer;
      display: block; }
      .form-file .form-file__add svg path {
        transition: all .35s ease; }
      .form-file .form-file__add svg circle {
        transition: all .35s ease; }
      .form-file .form-file__add svg:hover path {
        fill: #4B4BE1; }
      .form-file .form-file__add svg:hover circle {
        stroke: #4B4BE1; }
  .form-file .form-file__item {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
    .form-file .form-file__item:last-child {
      margin-bottom: 0; }

.form-file.active .form-file__value {
  bottom: 0;
  opacity: 1; }
.form-file.active .form-file__remove {
  bottom: 0;
  opacity: 1; }

@media (min-width: 992px) {
  .form__main {
    width: 50%;
    margin-left: auto; } }

.form__header {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .form__header {
      margin-bottom: 60px; } }
  @media (min-width: 992px) {
    .form__header {
      width: 45%; } }

.form__description {
  margin-bottom: 25px; }
  @media (min-width: 768px) {
    .form__description {
      margin-bottom: 50px; } }

.form-choice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.form-choice__item {
  width: 194px;
  border: 1px solid #4B4BE1;
  height: 72px;
  text-align: center;
  margin-bottom: 19px;
  position: relative;
  transition: all .35s ease;
  cursor: pointer; }
  .form-choice__item.error {
    border-color: #E9190F; }
  .form-choice__item:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .form-choice__item {
      margin: 18px; }
      .form-choice__item:first-child {
        margin-left: 0; }
      .form-choice__item:last-child {
        margin-bottom: auto;
        margin-right: 0; } }
  @media (min-width: 1200px) {
    .form-choice__item {
      margin: auto; } }
  @media (min-width: 1750px) {
    .form-choice__item {
      width: 214px;
      height: 82px; } }
  .form-choice__item .link-2 {
    color: #000;
    transition: all .25s ease; }

.form-choice__item.active {
  background-color: #4B4BE1;
  transform: scale(1.1) perspective(10px); }
  .form-choice__item.active .link-2 {
    color: #fff; }

.form-choice__item:hover {
  background-color: #4B4BE1;
  transform: scale(1) perspective(10px); }
  .form-choice__item:hover .link-2 {
    color: #fff; }

.form-choice__item.active:hover {
  transform: scale(1.1) perspective(10px); }

.form-choice__item:active {
  transform: scale(0.95) perspective(10px); }

.form-choice__title {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translateY(-50%); }

.form-choice__input {
  opacity: 0;
  visibility: hidden;
  font-size: 0; }

label {
  margin: 0; }

.single-checkbox {
  margin: 0;
  cursor: pointer; }
  .single-checkbox:hover .single-checkbox__description {
    color: #4B4BE1; }
  .single-checkbox.error .choice-field__wrapper {
    border-color: #E9190F; }
  .single-checkbox.error .single-checkbox__description {
    color: #E9190F; }

.single-checkbox.active {
  color: #4B4BE1; }

.single-checkbox__inner {
  padding: 0px 0 0 55px;
  position: relative;
  text-align: left; }
  @media (min-width: 370px) {
    .single-checkbox__inner {
      padding: 0px 0 0 65px; } }
  @media (min-width: 768px) {
    .single-checkbox__inner {
      padding: 0px 0 0 55px; } }

.single-checkbox__description {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 124%;
  letter-spacing: 0.12em;
  transition: all .35s ease; }
  @media (min-width: 1750px) {
    .single-checkbox__description {
      font-size: 18px; } }
  .single-checkbox__description:hover {
    border-bottom-color: #FFC80F; }
  .single-checkbox__description p {
    padding: 3px 0; }
    .single-checkbox__description p:first-child {
      padding-top: 0; }
    .single-checkbox__description p:last-child {
      padding-bottom: 0; }

.single-checkbox__field-container {
  position: absolute;
  top: -1px;
  left: 15px; }
  @media (min-width: 370px) {
    .single-checkbox__field-container {
      left: 20px; } }
  @media (min-width: 768px) {
    .single-checkbox__field-container {
      top: -2px;
      left: 0px; } }

.choice-field {
  display: block;
  cursor: pointer; }

.choice-field__wrapper {
  border: 1px solid #4B4BE1;
  border-radius: 50%;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
  position: relative; }
  .choice-field__wrapper:hover {
    border-color: #FFC80F; }
  .choice-field__wrapper:after {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 7px;
    transform: rotate(45deg) perspective(10px);
    width: 0px;
    height: 0;
    border-bottom: 1px solid #4B4BE1;
    border-right: 1px solid #4B4BE1;
    opacity: 0;
    transition: all .25s ease; }

.choice-field__inner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFC80F;
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear; }

.choice-field input {
  width: 0;
  height: 0;
  display: none; }
  .choice-field input:checked ~ .choice-field__wrapper .choice-field__inner {
    opacity: 1; }
  .choice-field input:checked ~ .choice-field__wrapper {
    border-color: #FFC80F;
    background-color: #FFC80F; }
    .choice-field input:checked ~ .choice-field__wrapper:after {
      opacity: 1;
      height: 20px;
      width: 6px; }
.choice-field.error .choice-field__wrapper {
  border-color: #E9190F; }

.checkbox-list__item {
  margin-bottom: 20px; }

.form__field-container {
  text-align: center; }
  @media (min-width: 768px) {
    .form__field-container {
      text-align: left; } }

.form-field {
  width: 100%;
  display: block;
  position: relative; }
  .form-field .form-field__core {
    background: none;
    border: 1px solid #4B4BE1;
    padding: 25px 23px 8px 23px;
    font-size: 15px;
    line-height: 144%;
    letter-spacing: 0.12em;
    color: #000;
    transition: all 0.1s ease, padding 0.1s ease;
    width: 100%; }
    .form-field .form-field__core::placeholder {
      font-size: 14px;
      line-height: 144%;
      letter-spacing: 0.12em;
      color: #000; }
  .form-field.error .form-field__core {
    border-color: #E9190F; }
  .form-field.focus .form-field__core {
    border-width: 2px;
    padding: 24px 22px 7px 22px; }
  .form-field.focus .form-field__title {
    color: #4B4BE1; }

.form-field__title {
  position: absolute;
  top: 7px;
  font-weight: normal;
  left: 23px;
  font-size: 14px;
  line-height: 144%;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: all .25s ease; }

.form-field--textarea {
  width: 100%; }
  .form-field--textarea .form-field__title {
    top: 14px; }
  .form-field--textarea .form-field__core {
    width: 100%;
    padding: 40px 22px 7px 22px;
    resize: none;
    font-size: 14px;
    line-height: 144%;
    letter-spacing: 0.12em;
    color: #000;
    height: 212px; }
    @media (min-width: 992px) {
      .form-field--textarea .form-field__core {
        height: 312px; } }
  .form-field--textarea.focus .form-field__core {
    border-width: 2px;
    padding: 39px 21px 6px 21px; }
  .form-field--textarea.focus .form-field__title {
    color: #4B4BE1; }

.form__row--data .form-field--textarea .form-field__core {
  height: 100px; }
  @media (min-width: 992px) {
    .form__row--data .form-field--textarea .form-field__core {
      height: 165px; } }

.my-datepicker-container {
  max-width: 256px;
  margin: auto;
  width: 100%; }

.my-datepicker {
  padding: 34px 24px 44px;
  border: 1px solid #4B4BE1;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all .1s ease; }

.my-datepicker.focus {
  border: 2px solid #4B4BE1;
  padding: 33px 23px 43px; }
  .my-datepicker.focus .datepicker-here {
    opacity: 1;
    visibility: visible; }
  .my-datepicker.focus .timepicker__input {
    width: 40px;
    border-bottom-color: #4B4BE1;
    color: #4B4BE1; }
  .my-datepicker.focus .timepicker__separator {
    color: #4B4BE1; }
  .my-datepicker.focus .my-datepicker__checkbox {
    border-width: 1.5px; }
  .my-datepicker.focus .my-datepicker__value {
    border-width: 1.5px; }
    .my-datepicker.focus .my-datepicker__value:after {
      border-width: 1.5px; }

.my-datepicker.my-datepicker--timepicker.focus .timepicker__container {
  opacity: 1; }
.my-datepicker.my-datepicker--timepicker.focus .my-datepicker__value {
  border-bottom-color: transparent; }
  .my-datepicker.my-datepicker--timepicker.focus .my-datepicker__value span {
    opacity: 0; }
.my-datepicker.my-datepicker--timepicker.focus .my-datepicker__value:after {
  opacity: 0; }
.my-datepicker.my-datepicker--timepicker.focus .timepicker__item {
  font-size: 34px; }

.my-datepicker.active {
  background-color: #4B4BE1; }
  .my-datepicker.active .my-datepicker__title {
    color: #fff; }
  .my-datepicker.active .my-datepicker__value {
    color: #fff;
    border-bottom-color: #fff; }
    .my-datepicker.active .my-datepicker__value .my-datepicker__input {
      color: #fff; }
  .my-datepicker.active .my-datepicker__checkbox {
    border-color: #FFC80F;
    background-color: #FFC80F; }
    .my-datepicker.active .my-datepicker__checkbox:after {
      opacity: 1;
      height: 20px;
      width: 6px; }
  .my-datepicker.active .my-datepicker__value:after {
    border-color: #fff; }
  .my-datepicker.active .my-datepicker__input {
    border-bottom-color: #fff;
    color: #fff; }

.my-datepicker__header {
  display: flex; }

.my-datepicker__checkbox {
  border: 1px solid #4B4BE1;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  margin-right: 28px;
  margin-bottom: 33px;
  transition: all .25s ease, border-width .1s ease; }
  .my-datepicker__checkbox:after {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 7px;
    transform: rotate(45deg) perspective(10px);
    width: 0px;
    height: 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    opacity: 0;
    transition: all .25s ease; }
  .my-datepicker__checkbox:hover {
    border-color: #FFC80F; }

.my-datepicker__title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 128%;
  letter-spacing: 0.12em;
  transition: all .25s ease, font-weight .1s ease;
  margin-bottom: 32px; }

.my-datepicker__value {
  position: relative;
  margin-right: 20px;
  font-size: 14px;
  height: 24px;
  line-height: 128%;
  letter-spacing: 0.12em;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #4B4BE1;
  transition: all .25s ease, border-width .1s ease; }
  .my-datepicker__value .my-datepicker__input {
    transition: all .25s ease;
    border: none;
    background: none;
    position: relative; }
  .my-datepicker__value:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 5px;
    width: 11px;
    height: 11px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) perspective(10px);
    transition: all .25s ease, border-width .1s; }

.datepicker-here {
  position: absolute;
  left: -24px;
  top: 85%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  -webkit-transform: translateZ(0) perspective(10px);
  -moz-transform: translateZ(0) perspective(10px);
  -ms-transform: translateZ(0) perspective(10px);
  -o-transform: translateZ(0) perspective(10px);
  transform: translateZ(0) perspective(10px); }

.datepicker {
  z-index: 7777; }

.datepicker.own-datepicker {
  border: 1px solid #4B4BE1;
  border-radius: 0;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.04), 24px 24px 72px rgba(0, 0, 0, 0.02);
  font-family: "din-2014", sans-serif;
  width: calc(100% + 24px); }
  .datepicker.own-datepicker .datepicker--nav-title {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.12em; }
    .datepicker.own-datepicker .datepicker--nav-title i {
      text-transform: uppercase;
      color: #000;
      font-weight: 500;
      font-size: 14px;
      line-height: 17px;
      text-align: center;
      letter-spacing: 0.12em; }
  .datepicker.own-datepicker .datepicker--day-name {
    color: #4B4BE1;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase; }
  .datepicker.own-datepicker .datepicker--nav-action path {
    stroke: #4B4BE1;
    stroke-width: 1px;
    stroke-linecap: round; }
  .datepicker.own-datepicker .datepicker--nav-action svg {
    transform: scale(0.8); }
  .datepicker.own-datepicker .datepicker--nav {
    border-bottom: none;
    padding: 14px 12px; }
  .datepicker.own-datepicker .datepicker--cell-day.-other-month-, .datepicker.own-datepicker .datepicker--cell-year.-other-decade- {
    color: rgba(0, 0, 0, 0.5); }
  .datepicker.own-datepicker .datepicker--cell {
    height: 40px;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
    transition: all .25s ease;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0); }
    .datepicker.own-datepicker .datepicker--cell:after {
      content: '';
      width: 30px;
      height: 30px;
      background-color: #4B4BE1;
      z-index: -1;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0;
      transition: all .25s ease;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
      border-radius: 50%; }
  .datepicker.own-datepicker .datepicker--cell-month.datepicker--cell:after {
    width: 60%;
    border-radius: 20px; }
  .datepicker.own-datepicker .datepicker--cell-year.datepicker--cell:after {
    width: 80%;
    border-radius: 20px; }
  .datepicker.own-datepicker .datepicker--cell.-current- {
    color: #4B4BE1;
    font-weight: bold; }
  .datepicker.own-datepicker .datepicker--content {
    padding: 0px 14px 14px; }
  .datepicker.own-datepicker .datepicker--days-names {
    margin: 0px 0 13px; }
  .datepicker.own-datepicker .datepicker--cell.-focus-, .datepicker.own-datepicker .datepicker--cell.-selected-, .datepicker.own-datepicker .datepicker--cell.-selected-.-current- {
    color: #fff;
    background: none; }
    .datepicker.own-datepicker .datepicker--cell.-focus-:after, .datepicker.own-datepicker .datepicker--cell.-selected-:after, .datepicker.own-datepicker .datepicker--cell.-selected-.-current-:after {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1); }

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  display: none; }

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (min-width: 768px) {
    .form-group {
      flex-direction: row;
      justify-content: space-between; } }
  .form-group .form-group__item--fullwidth {
    width: 100%; }

.form-group__item {
  margin-bottom: 16px;
  width: 100%; }
  @media (min-width: 768px) {
    .form-group__item {
      width: calc(100% - 16px);
      margin-bottom: 32px; }
      .form-group__item:last-child {
        margin-right: 0; } }
  @media (min-width: 768px) {
    .form-group__item {
      width: calc(50% - 16px); } }

.form__buttons {
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 768px) {
    .form__buttons {
      width: 90%;
      margin: auto;
      align-items: center;
      flex-direction: row;
      justify-content: space-around; } }
  @media (min-width: 992px) {
    .form__buttons {
      width: 50%;
      align-items: flex-end;
      margin-right: 0;
      justify-content: space-between; } }

.form__button {
  margin: 20px auto;
  position: relative; }
  @media (min-width: 768px) {
    .form__button {
      margin: 0px; }
      .form__button .button {
        width: 100%;
        min-width: auto;
        outline: none; } }
  @media (min-width: 768px) {
    .form__button:last-child {
      width: calc(60% - 30px); } }
  @media (min-width: 992px) {
    .form__button:last-child {
      width: calc(60% - 30px); } }
  @media (min-width: 1200px) {
    .form__button:last-child {
      width: calc(73% - 40px); } }
  @media (min-width: 768px) {
    .form__button:first-child {
      width: 40%; } }
  @media (min-width: 992px) {
    .form__button:first-child {
      width: 40%; } }
  @media (min-width: 1200px) {
    .form__button:first-child {
      width: 27%; } }

.main-menu__parallax {
  width: 340px;
  height: 288px;
  position: absolute;
  right: 93px;
  bottom: 216px;
  z-index: -1;
  display: none; }
  @media (min-width: 768px) {
    .main-menu__parallax {
      display: block;
      transform: scale(0.6);
      right: 0;
      bottom: 150px; } }
  @media (min-width: 1200px) {
    .main-menu__parallax {
      display: block;
      transform: scale(1);
      right: 93px;
      bottom: 216px; } }
  .main-menu__parallax .parallax__item:nth-child(1) {
    margin-top: 0;
    margin-left: 35%;
    width: 30px; }
  .main-menu__parallax .parallax__item:nth-child(2) {
    margin-top: 30%;
    margin-left: 0%;
    width: 65px; }
  .main-menu__parallax .parallax__item:nth-child(3) {
    margin-top: 40%;
    margin-left: 65%;
    width: 11px; }
  .main-menu__parallax .parallax__item:nth-child(4) {
    margin-top: 30%;
    margin-left: 50%;
    width: 105px; }

.timepicker__container {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 19px;
  opacity: 0;
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.timepicker {
  color: #fff;
  display: flex;
  align-items: center; }

.timepicker__value {
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.timepicker__value {
  font-size: 30px; }

.timepicker__input {
  text-align: center;
  width: 20px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  border-bottom: 2px solid #fff;
  transition: all .25s ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.toRight, .toLeft {
  transition: all .2s linear;
  -webkit-transform: translateZ(0) perspective(10px);
  -moz-transform: translateZ(0) perspective(10px);
  -ms-transform: translateZ(0) perspective(10px);
  -o-transform: translateZ(0) perspective(10px);
  transform: translateZ(0) perspective(10px); }

[data-scroll-opacity] {
  opacity: 1;
  transition: all .2s linear;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

[data-type-anim] {
  opacity: 0; }
  [data-type-anim].show:first-letter {
    opacity: 0;
    font-size: 0px;
    visibility: hidden; }

.rellax {
  transition: all .2s linear; }

.button-wrapper__spinner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px; }

.form__info-container {
  position: absolute;
  text-align: center;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%; }
