@charset "UTF-8";
/* RWD */
@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: 0.8;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes IntervalMovingDown {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  10% {
    -webkit-transform: translate3d(-50%, 50%, 0);
    -moz-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0);
  }
  20% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(-50%, 50%, 0);
    -moz-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0);
  }
  40% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes Blink {
  0% {
    border-color: #1A3D81;
  }
  48% {
    border-color: #1A3D81;
  }
  50% {
    border-color: #043F3C;
  }
  98% {
    border-color: #043F3C;
  }
  100% {
    border-color: #1A3D81;
  }
}
/***** CONTAINERS *****/
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container, .site-footer__major-container, .site-footer__outer-container, .site-footer__inner-container, .site-footer__second-row, .site-footer__main-row, .site-bar__container {
  position: relative;
}
.container:after, .site-footer__major-container:after, .site-footer__outer-container:after, .site-footer__inner-container:after, .site-footer__second-row:after, .site-footer__main-row:after, .site-bar__container:after {
  content: "";
  display: block;
  clear: both;
}

.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;
}

.column {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-height: 1px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .column {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .column__wrapper--desktop-top-padding {
    padding-top: 80px;
  }
}

@media (min-width: 768px) {
  .col-9 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1100px) {
  .col-8-from-1100 {
    width: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-6-from-992 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-5 {
    width: 40.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-5-from-992 {
    width: 40.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1100px) {
  .col-4-from-1100 {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-3 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-desktop {
    width: 33.3333333333%;
  }
}
@media (min-width: 1300px) {
  .col-3-desktop {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-2 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-1 {
    width: 16.6666666667%;
  }
}

@media (min-width: 992px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.flex-column {
  padding: 40px 0 0 0;
}
@media (min-width: 992px) {
  .flex-column {
    padding: 0;
  }
}
.flex-column:first-child {
  padding: 0;
}

/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 6800;
  display: block;
  text-align: left;
  width: 100%;
  overflow: auto;
  height: 100%;
  background-color: #fff;
  background-image: url("../img/decoration/shape-04.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 70%;
}
@media (min-width: 650px) {
  .slide-menu {
    background-size: 40%;
    padding: 40px;
    box-sizing: border-box;
  }
}
@media (min-width: 992px) {
  .slide-menu {
    background-color: #fff;
  }
}
@media (min-width: 1100px) {
  .slide-menu {
    text-align: center;
  }
}
.slide-menu__row {
  padding: 20px;
}
@media (min-width: 650px) {
  .slide-menu__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .slide-menu__row {
    padding-right: 160px;
  }
}
@media (min-width: 1300px) {
  .slide-menu__row {
    padding-right: 60px;
  }
}
@media (min-width: 1500px) {
  .slide-menu__row {
    padding-right: 0px;
  }
}
.slide-menu__row:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 650px) {
  .slide-menu__row:last-child {
    padding: 50px 20px 60px;
  }
}
.slide-menu__row:last-child .arrow-link {
  text-align: left;
}
.slide-menu__logo {
  text-align: left;
}
.slide-menu__nav {
  width: 100%;
}
@media (min-width: 992px) {
  .slide-menu__nav {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .slide-menu__nav {
    width: 70%;
  }
}
@media (min-width: 1100px) {
  .slide-menu__nav {
    width: 100%;
  }
}
.slide-menu__contact {
  margin-top: 50px;
  display: inline-block;
}
.slide-menu__contact .list__item {
  margin-bottom: 30px;
}
.slide-menu__contact .list__item:nth-child(1) .contact-item a, .slide-menu__contact .list__item:nth-child(2) .contact-item a {
  text-decoration: none;
}
.slide-menu__contact .list__item:last-child .contact-item {
  align-items: flex-start;
}
.slide-menu__contact .title-md-04 {
  font-weight: bold;
}
.slide-menu__decoration-container {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-20%, 0, 0);
  -moz-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  display: none;
}
@media (min-width: 650px) and (min-height: 630px) {
  .slide-menu__decoration-container {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-menu__decoration-container {
    width: 36%;
    display: block;
  }
}
@media (min-width: 1300px) {
  .slide-menu__decoration-container {
    width: 34%;
  }
}
.slide-menu__decoration {
  padding: 0 0 130% 0;
  background: url("../img/decorations/decoration-south-west-heads.svg") no-repeat left bottom;
  background-size: contain;
}
@media (min-width: 1300px) {
  .slide-menu__decoration {
    padding-bottom: 120%;
  }
}
.slide-menu .slide-menu__wrapper {
  height: 100%;
  position: relative;
  max-width: 1024px;
  margin: auto;
}
.slide-menu .slide-menu__inner {
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
    padding: 40px 60px;
  }
}
@media (min-width: 992px) {
  .slide-menu__container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
  }
}
.slide-menu__menu-container {
  background: #fff;
}
@media (min-width: 992px) {
  .slide-menu__menu-container {
    padding: 0 0 0 15%;
  }
}
@media (min-width: 1300px) {
  .slide-menu__menu-container {
    padding-left: 18%;
  }
}
@media (min-width: 1700px) {
  .slide-menu__menu-container {
    padding-left: 22%;
  }
}
.slide-menu__menu-wrapper {
  text-align: left;
  display: flex;
  justify-content: center;
}
.slide-menu__social .icon-social path {
  fill: #1A3D81;
}
.slide-menu__social .icon-social circle {
  stroke: #1A3D81;
}
.slide-menu__social .icon-social:hover path {
  fill: #D39079;
}
.slide-menu__social .icon-social:hover circle {
  stroke: #D39079;
}
.slide-menu__info {
  padding-top: 20px;
}

/** fade **/
.slide-menu--fade {
  display: none;
}

.slide-menu--fade.slide-menu--top {
  top: 0px;
  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: -110%;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0px;
}

.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);
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98);
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98);
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98);
}
.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;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.slide-menu--slide-fade.slide-menu--top {
  -webkit-transform: translate3d(0, -200%, 0);
  -moz-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0px;
}

.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 {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(4, 63, 60, 0.85);
  color: #000;
  overflow-x: hidden;
  padding: 0;
}
.overlayer__main-content--limited {
  max-width: 900px;
}
.overlayer .overlayer__loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6900;
  display: none;
  font-size: 52px;
  color: #fff;
}
.overlayer .overlayer__inner {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  padding: 50px 20px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .overlayer .overlayer__inner {
    padding: 50px 20px;
  }
}
@media (min-width: 650px) {
  .overlayer .overlayer__inner {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .overlayer .overlayer__inner {
    margin: 40px auto;
    padding: 80px 80px;
    max-width: 900px;
  }
}
@media (min-width: 1300px) {
  .overlayer .overlayer__inner {
    padding: 80px 60px 80px 60px;
  }
}
.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__content {
  display: none;
  width: 100%;
}

.overlayer-02 .overlayer__inner,
.overlayer-03 .overlayer__inner {
  padding: 0;
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__inner,
  .overlayer-03 .overlayer__inner {
    margin: 40px auto;
    max-width: 1100px;
  }
}
@media (min-width: 1700px) {
  .overlayer-02 .overlayer__inner,
  .overlayer-03 .overlayer__inner {
    max-width: 1500px;
  }
}

/* extended icon */
.extended-icon, .icon-arrow-medium, .icon-youtube, .icon-instagram, .icon-facebook, .icon-arrow-long, .icon-download, .icon-arrow-with-belt {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-indent: -10000px;
}
.extended-icon:before, .icon-arrow-medium:before, .icon-youtube:before, .icon-instagram:before, .icon-facebook:before, .icon-arrow-long:before, .icon-download:before, .icon-arrow-with-belt:before, .extended-icon:after, .icon-arrow-medium:after, .icon-youtube:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-long:after, .icon-download:after, .icon-arrow-with-belt: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-arrow-medium:after, .icon-youtube:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-long:after, .icon-download:after, .icon-arrow-with-belt:after {
  opacity: 0;
}
.extended-icon:hover:before, .icon-arrow-medium:hover:before, .icon-youtube:hover:before, .icon-instagram:hover:before, .icon-facebook:hover:before, .icon-arrow-long:hover:before, .icon-download:hover:before, .icon-arrow-with-belt:hover:before {
  opacity: 0;
}
.extended-icon:hover:after, .icon-arrow-medium:hover:after, .icon-youtube:hover:after, .icon-instagram:hover:after, .icon-facebook:hover:after, .icon-arrow-long:hover:after, .icon-download:hover:after, .icon-arrow-with-belt:hover:after {
  opacity: 1;
}

.simple-extended-icon {
  display: block;
  position: relative;
}
.simple-extended-icon__base-layer {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.simple-extended-icon__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.simple-extended-icon img {
  display: block;
}

@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__base-layer {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__above-layer {
    opacity: 1;
  }
}

/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.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: #000;
  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 {
  background: #000;
}
.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);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--primary .icon-hamburger__inner > div {
  background: #1A3D81;
}

.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;
}

/***** MODULES *****/
.dropdown {
  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;
}
@media (min-width: 900px) {
  .dropdown {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.dropdown__header {
  margin-bottom: 9px;
}
@media (min-width: 900px) {
  .dropdown__header {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.dropdown__title {
  font-size: 14px;
  color: #4b4b4b;
}
.dropdown__lead {
  position: relative;
  cursor: pointer;
  height: 42px;
  width: 100%;
  max-width: 308px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  -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__lead .dropdown__icon {
  position: absolute;
  top: calc(50% - 5px);
  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;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  transform-origin: center;
  width: 12px;
  height: 10px;
}
.dropdown__core {
  width: 100%;
  max-width: 308px;
  -webkit-transition: margin 0.2s linear;
  -moz-transition: margin 0.2s linear;
  -o-transition: margin 0.2s linear;
  transition: margin 0.2s linear;
  position: relative;
}
.dropdown__content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
  line-height: 42px;
  display: block;
  width: 100%;
  margin: 0;
  border: none;
  color: #7d7d7d;
  font-size: 14px;
  font-family: hero-new, sans-serif;
  font-weight: 400;
  text-align: left;
  padding-left: 5px;
}
@media (min-width: 480px) {
  .dropdown__content {
    padding-left: 15px;
  }
}
.dropdown__list-container {
  overflow: hidden;
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  width: 100%;
  z-index: 100;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dropdown__list > li input {
  display: none;
}
.dropdown__list a {
  display: block;
}
.dropdown__error-container {
  width: 100%;
  max-width: 308px;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s linear;
  -moz-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
}
.dropdown .dropdown-item {
  cursor: pointer;
}
.dropdown .dropdown-item .dropdown-item__description {
  padding-left: 5px;
}
@media (min-width: 385px) {
  .dropdown .dropdown-item .dropdown-item__description {
    padding-left: 15px;
  }
}
.dropdown.error {
  margin-bottom: 30px;
}
.dropdown.error * {
  border-color: #DB2B39;
}
.dropdown.error .dropdown__error-container {
  opacity: 1;
}
.dropdown:focus {
  border-color: #1A3D81;
}

.dropdown--expanding .dropdown__list-container {
  position: relative;
  top: 0;
}

.dropdown.dropdown--open .dropdown__lead {
  border-color: #1A3D81;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dropdown.dropdown--open .dropdown__lead .dropdown__icon {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.dropdown--short {
  display: flex;
}
.dropdown--short .dropdown__core {
  align-self: center;
  max-width: 80px;
  margin-left: 20px;
}
.dropdown--short .dropdown__lead, .dropdown--short .dropdown__list-container {
  margin: 0 0 0 auto;
}

.hawk-dropdown {
  position: relative;
  display: block;
  width: 100%;
}
.hawk-dropdown__sensor, .hawk-dropdown__start-escape-sensor {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-dropdown__end-sensor, .hawk-dropdown__escape-sensor {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-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;
  width: 100%;
}
.hawk-dropdown__header-inner {
  position: relative;
}
.hawk-dropdown__searching-field {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  outline: none;
  z-index: 4;
}
.hawk-dropdown__searching-field:focus ~ * {
  opacity: 0.2;
}
.hawk-dropdown__searching-field[disabled] {
  display: none;
  width: 0;
  height: 0;
}
.hawk-dropdown__list-container {
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  min-width: 140%;
  z-index: 10;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.hawk-dropdown__list > li {
  display: block;
}
.hawk-dropdown__list a {
  display: block;
}
.hawk-dropdown.hawk-dropdown--open {
  z-index: 8000;
}

.hawk-dropdown--expanding .hawk-dropdown__list-container {
  position: relative;
  top: 0;
}

.hawk-dropdown--upwards .hawk-dropdown__list-container {
  top: auto;
  bottom: 100%;
}

.std-dropdown__title {
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}
.std-dropdown__list-container {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 8px 0;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__header {
  border-color: #1A3D81;
  border-bottom-color: transparent;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__list-container {
  border-color: #1A3D81;
}

.dropdown-item {
  cursor: pointer;
  position: relative;
}
.dropdown-item__description {
  padding: 10px 16px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  color: #000;
  font-size: 16px;
}
.dropdown-item__description:hover, .dropdown-item__field:focus ~ .dropdown-item__description {
  background: transparent;
  color: #D39079;
}
.dropdown-item__field:checked ~ .dropdown-item__description {
  background: transparent;
}
.dropdown-item__field {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.bookmarks-manager {
  margin: 0 auto;
}
.bookmarks-manager .bookmarks-manager__bookmarks-container {
  width: 100%;
}
.bookmarks-manager .bookmarks-manager__bookmark-container {
  display: block;
}
.bookmarks-manager .bookmarks-manager__bookmark {
  cursor: pointer;
  position: relative;
}
.bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}
.bookmarks-manager .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;
  min-height: 3px;
}
.bookmarks-manager .bookmarks-manager__content-wrapper {
  padding: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.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;
}

.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: none;
}
.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;
  }
}

/***** OVERLAYERS *****/
.overlayer-content {
  display: none !important;
}

.ajax-overlayer-button {
  cursor: pointer;
}

.ajax-overlayer-close {
  cursor: pointer;
}

.overlayer-00 {
  color: #222222;
}
.overlayer-00 .overlayer__inner {
  max-width: unset;
}
.overlayer-00 .overlayer__inner .flex-container {
  align-items: center;
}
@media (min-width: 768px) {
  .overlayer-00 .overlayer__inner .flex-container {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .overlayer-00 .overlayer__inner .image-wrapper {
    margin-left: 50px;
  }
}
.overlayer-00 .overlayer__content {
  margin: 0 auto;
  width: auto;
}
.overlayer-00 .skew-main-decoration__content {
  background-color: #043F3C;
}

.overlayer-02 {
  background-color: #043F3C;
}
.overlayer-02 .overlayer__inner {
  max-width: 1200px;
}
.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;
}

.overlayer-02 .overlayer__decoration-container-01 {
  content: "";
  display: block;
  position: fixed;
  width: 70%;
  left: -10%;
  bottom: -8%;
}
@media (min-width: 650px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 40%;
    bottom: -12%;
    left: -5%;
  }
}
@media (min-width: 992px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 36%;
    bottom: -16%;
    left: -8%;
  }
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    bottom: -10%;
    left: -5%;
    width: 30%;
  }
}
.overlayer-02 .overlayer__decoration-01 {
  padding: 0 0 100% 0;
  background: url("../img/drafts/racket.png") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    content: "";
    display: block;
    position: fixed;
    width: 24%;
    bottom: 2%;
    right: -2%;
  }
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    bottom: 30%;
    right: -6%;
  }
}
@media (min-width: 1700px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    bottom: 25%;
    right: -6%;
  }
}
.overlayer-02 .overlayer__decoration-02 {
  padding: 0 0 100% 0;
  background: url("../img/drafts/racket-01.png") no-repeat center;
  background-size: contain;
}
.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.audio__wrapper {
  padding: 30px 0;
}
.audio__top-label {
  text-align: right;
}
.audio__content {
  padding: 10px 0 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #4b4b4b;
}
.progress-bar__core {
  height: 100%;
  width: 0;
  background-color: #043F3C;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-bar--movable:hover {
  cursor: pointer;
}

.volume-bar {
  margin-left: 4px;
  position: relative;
  width: 80px;
  height: 30px;
}
.volume-bar__core {
  width: 100%;
  height: 2px;
  background-color: #1A3D81;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.volume-bar__slider {
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: #043F3C;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.volume-bar:hover {
  cursor: pointer;
}

.timer-label > * {
  font-family: hero-new, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 16px;
}
@media (min-width: 1100px) {
  .timer-label > * {
    font-size: 14px;
    line-height: 18px;
  }
}

/***** ICONS *****/
.icon-half-hamburger {
  display: block;
  width: 36px;
  position: relative;
}
.icon-half-hamburger__inner {
  height: 36px;
  position: relative;
  overflow: hidden;
}
.icon-half-hamburger__bar {
  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-half-hamburger__bar:nth-child(1) {
  top: 0;
}
.icon-half-hamburger__bar:nth-child(2) {
  top: 7px;
  width: 50%;
}
.icon-half-hamburger__bar:nth-child(3) {
  top: 14px;
  width: 0;
}
.icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(3), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(3) {
  width: 100%;
}

.icon-half-hamburger.open .icon-half-hamburger__inner {
  overflow: visible;
}
.icon-half-hamburger.open .icon-half-hamburger__bar {
  background: #fff;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(1) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(2) {
  opacity: 0;
  left: -100%;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(3) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-half-hamburger--light .icon-half-hamburger__bar {
  background: #fff;
}

/* icon arrow */
.icon-simple-arrow {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrows/icon-simple-arrow-right.svg") no-repeat 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;
}
@media (min-width: 1700px) {
  .icon-simple-arrow {
    width: 28px;
    height: 28px;
  }
}

.icon-simple-arrow--light {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-light.svg");
}

.icon-simple-arrow--up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon-simple-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-simple-arrow--down {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-simple-arrow--secondary {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-secondary.svg");
}

.icon-arrow-with-belt {
  background-size: 100% auto;
  width: 39px;
  height: 16px;
}
.icon-arrow-with-belt::before, .icon-arrow-with-belt::after {
  background-size: auto 100% !important;
  background-position: right !important;
}
.icon-arrow-with-belt:before {
  background-image: url("/img/icons/icon-arrow-yellow.svg");
}
.icon-arrow-with-belt:after {
  background-image: url("/img/icons/icon-arrow-green.svg");
}

.icon-arrow-with-belt--second-theme:before {
  background-image: url("/img/icons/icon-arrow-gold.svg");
}
.icon-arrow-with-belt--second-theme:after {
  background-image: url("/img/icons/icon-arrow-navy.svg");
}

.icon-arrow-with-belt--long {
  width: 110px;
}

.icon-arrow-with-belt--right {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-arrow-with-belt--up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon-arrow-with-belt--down {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-arrow-with-belt--light:before {
  background-image: url("/img/icons/icon-arrow-white.svg");
}
.icon-arrow-with-belt--light:after {
  background-image: url("/img/icons/icon-arrow-green.svg");
}

.icon-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  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--very-small {
  width: 8px;
  height: 8px;
  border-width: 1px;
}

.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: #F6F4F4;
}

.icon-arrow--dark-grey {
  border-color: #F6F4F4;
}

.icon-arrow--dark-grey-02 {
  border-color: #535353;
}

.icon-arrow--primary {
  border-color: #1A3D81;
}

.icon-arrow--light {
  border-color: #fff;
}

.icon-arrow--primary {
  border-color: #1A3D81;
}

.icon-arrow--primary:hover {
  border-color: #043F3C;
}

/* icon spectacular arrow */
.icon-spectacular-arrow {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
}
@media (min-width: 1300px) {
  .icon-spectacular-arrow {
    width: 48px;
    height: 48px;
  }
}
.icon-spectacular-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icons/arrow-right.svg") no-repeat center right;
  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;
}
.disabled .icon-spectacular-arrow:hover:before {
  padding: 0;
}

.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: 24px;
}
@media (min-width: 1700px) {
  .icon-spectacular-arrow--large {
    width: 32px;
    height: 28px;
  }
}

/* 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--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--primary {
  border-right-color: #1A3D81;
}

.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--primary {
  border-bottom-color: #1A3D81;
}

.icon-triangular-arrow-up--light {
  border-bottom-color: #fff;
}

.icon-triangular-arrow-right {
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-right--small {
  border-left-width: 8px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-right__black {
  border-left-color: #000;
}

.icon-triangular-arrow-right--primary {
  border-left-color: #1A3D81;
}

.icon-triangular-arrow-right--light {
  border-left-color: #fff;
}

.icon-triangular-arrow-down {
  border-top: 12px solid #1A3D81;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 8px;
  border-left-width: 8px;
}

.icon-triangular-arrow-down--large {
  border-top-width: 16px;
  border-right-width: 15px;
  border-left-width: 15px;
}

.icon-triangular-arrow-down--primary {
  border-top-color: #1A3D81;
}

.icon-triangular-arrow-down--tertiary {
  border-top-color: #F6DCEC;
}

.icon-triangular-arrow-down--light {
  border-top-color: #fff;
}

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden;
  background: url("../img/icons/icon-plus.svg") no-repeat 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;
}

.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--small {
  width: 15px;
  height: 15px;
}

.icon-plus--very-small {
  width: 12px;
  height: 12px;
}

.icon-plus--light {
  background-image: url("../img/icons/icon-plus-white.svg");
}

.icon-plus--primary:before, .icon-plus--primary:after {
  background: #1A3D81;
}

.icon-plus--grey:before, .icon-plus--grey:after {
  background: #E1E1E1;
}

.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;
}

/* 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: 16px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media (min-width: 768px) {
  .icon-play {
    border-left: 20px solid #000;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    left: 2px;
  }
}
@media (min-width: 1500px) {
  .icon-play {
    border-left: 26px solid #000;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    left: 3px;
  }
}

.icon-download {
  width: 18px;
  height: 18px;
}
@media (min-width: 650px) {
  .icon-download {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1500px) {
  .icon-download {
    width: 25px;
    height: 25px;
  }
}
.icon-download:before {
  background-image: url("../img/icons/icon-download-pink.svg");
}
.icon-download:after {
  background-image: url("../img/icons/icon-download-green.svg");
}

.icon-download--second-theme:before {
  background-image: url("../img/icons/icon-download-navy.svg");
}
.icon-download--second-theme:after {
  background-image: url("../img/icons/icon-download-gold.svg");
}

.icon-play--light {
  border-left-color: #fff;
}

.icon-pause {
  position: relative;
  width: 12px;
  height: 12px;
}
.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;
}

.icon-square {
  position: relative;
  width: 12px;
  height: 12px;
}
.icon-square:after {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}
.icon-square:after {
  left: 0;
}

.icon-square--light:before, .icon-square--light:after {
  background: #fff;
}

.icon-bullet {
  position: relative;
  width: 24px;
  height: 24px;
}
.icon-bullet:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #1A3D81;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
}
@media (min-width: 1300px) {
  .icon-bullet:before {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
  }
}

.icon-speaker {
  display: block;
  width: 20px;
  height: 30px;
  background-image: url("../img/icons/icon-speaker.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.icon-speaker--safari-mobile {
  background-image: url("../img/icons/icon-speaker-safari-mobile.svg");
  width: 36px;
}

.icon-speaker--navy {
  background-image: url("../img/icons/icon-speaker-navy.svg");
}

.icon-rectangle {
  width: 2px;
  height: 20px;
  background-color: #1A3D81;
}
.icon-rectangle--small {
  height: 14px;
}
.icon-rectangle--height {
  height: 28px;
}

.icon-wrapper {
  padding-left: 4px;
}
.icon-wrapper button {
  display: block;
}

/** icons-end **/
.site-bar {
  position: relative;
}
@media (min-width: 550px) {
  .site-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.site-bar__wrapper {
  padding: 16px 0;
}
.site-bar__inner {
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .site-bar__inner {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .site-bar__inner {
    padding: 0 80px;
  }
}
.site-bar__social-list {
  display: none;
}
@media (min-width: 650px) {
  .site-bar__social-list {
    display: block;
    width: 30%;
  }
}
.site-bar__social-list .horizontal-links {
  text-align: left;
}
.site-bar__nav {
  margin-left: auto;
  display: none;
  box-sizing: border-box;
  text-align: right;
}
@media (min-width: 650px) {
  .site-bar__nav {
    display: block;
    width: 30%;
    padding-right: 85px;
  }
}
@media (min-width: 992px) {
  .site-bar__nav {
    padding-right: 85px;
  }
}
@media (min-width: 1100px) {
  .site-bar__nav {
    padding-right: 85px;
  }
}
@media (min-width: 1700px) {
  .site-bar__nav {
    padding-right: 0;
  }
}
.site-bar--dark .link-bar {
  color: #000;
}
.site-bar--dark .icon-social path {
  fill: #000;
}
.site-bar--dark .icon-social circle {
  stroke: #000;
}
.site-bar__logo-container {
  height: 100%;
  width: auto;
  flex: 0 0 30%;
  width: 30%;
}
@media (min-width: 550px) {
  .site-bar__logo-container {
    flex: 0 0 10%;
    width: 10%;
  }
}
.site-bar__main-container {
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 100px;
  display: none;
}
@media (min-width: 550px) {
  .site-bar__main-container {
    display: flex;
  }
}
@media (min-width: 768px) {
  .site-bar__main-container {
    padding-right: 50px;
  }
}
@media (min-width: 1100px) {
  .site-bar__main-container {
    padding-right: 0;
  }
}
.site-bar__main-content {
  padding: 0 8px 6px 0;
  display: none;
}
@media (min-width: 1100px) {
  .site-bar__main-content {
    display: block;
  }
}
@media (min-width: 1300px) {
  .site-bar__main-content {
    padding-right: 20px;
  }
}
.site-bar__side-container {
  margin-left: auto;
}
.site-bar__main-container--dark .dropdown::after {
  filter: invert(100%);
}
.site-bar__main-container--dark .dropdown__item {
  color: #000;
}
.site-bar__main-container--dark .dropdown__item:hover {
  color: #1A3D81;
}
.site-bar__main-container--dark .dropdown__list > li {
  background-color: #fff;
  border-left: 1px solid #D39079;
  border-right: 1px solid #D39079;
}
.site-bar__main-container--dark .dropdown__list > li:first-child {
  border-top: 1px solid #D39079;
}
.site-bar__main-container--dark .dropdown__list > li:last-child {
  border-bottom: 1px solid #D39079;
}
.site-bar__main-container--dark .dropdown:hover .dropdown__button {
  background-color: #fff;
}
.site-bar__main-container--dark .dropdown:hover .dropdown__button::before {
  background-color: #fff;
  border-top: 1px solid #D39079;
}
.site-bar__main-container--dark .menu-item {
  color: #000;
}
.site-bar__main-container--dark .menu-item::before {
  background-color: #fff;
  border-top: 1px solid #D39079;
  border-bottom: 1px solid #D39079;
}
.site-bar__main-container--dark .std-text__link--dark {
  color: #000;
}
.site-bar__main-container--dark .button {
  border: 1px solid #000;
  color: #000;
}
.site-bar__main-container--light .dropdown::after {
  filter: invert(100%);
}
.site-bar__main-container--light .dropdown__item {
  color: #000;
}
.site-bar__main-container--light .dropdown__item:hover {
  color: #1A3D81;
}
.site-bar__main-container--light .dropdown__list {
  left: 6px;
}
@media (min-width: 1300px) {
  .site-bar__main-container--light .dropdown__list {
    left: 10px;
  }
}
.site-bar__main-container--light .dropdown__list > li {
  background-color: #fff;
}
.site-bar__main-container--light .dropdown:hover .dropdown__button {
  background-color: #fff;
}
.site-bar__main-container--light .dropdown:hover .dropdown__button::before {
  background-color: #fff;
}
.site-bar__main-container--light .menu-item {
  color: #fff;
}
.site-bar__main-container--light .menu-item::before {
  background-color: #fff;
}
.site-bar__main-container--light .std-text__link--dark {
  color: #fff;
}
.site-bar__main-container--light .button {
  border: 1px solid #fff;
  color: #fff;
}

.logo, .logo-kniaz {
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  display: block;
  text-indent: -100000px;
  text-align: left;
  background-color: transparent;
  border: 0;
}

.logo-kniaz {
  transition: all 0.2s linear;
  background-image: url("/img/logo-dark.svg");
  width: auto;
  height: 82px;
}
@media (min-width: 1100px) {
  .logo-kniaz {
    height: 92px;
  }
}
.logo-kniaz--dark {
  background-image: url("/img/logo-dark.svg");
}
.logo-kniaz--light {
  background-image: url("/img/logo.svg");
}

.dropdown {
  position: relative;
}
.dropdown__button {
  padding-right: 38px !important;
  z-index: 0 !important;
}
.dropdown__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.2s linear;
  z-index: -1;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url("/img/icons/icon-down-dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
}
.dropdown__list {
  height: auto;
  position: absolute;
  top: 100%;
  left: 6px;
  background-color: transparent;
  list-style: none;
  overflow: hidden;
  transition: all 0.2s linear 0.2s;
  border-radius: 3px;
  border-top-left-radius: 0;
}
@media (min-width: 1300px) {
  .dropdown__list {
    left: 10px;
  }
}
.dropdown__list > li {
  width: 270px;
  padding: 0 5px;
  height: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  transition: all 0.2s linear;
}
.dropdown__list > li:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.dropdown__list > li:first-child {
  padding-top: 0px;
}
.dropdown__item {
  display: block;
  padding: 0 10px;
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 1300px) {
  .dropdown__item {
    font-size: 14px;
  }
}
.dropdown__item:hover {
  color: #D39079;
}
.dropdown:hover .dropdown__button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #fff;
  color: #000;
  z-index: 0;
  transition: all 0.2s linear 0.2s;
  color: #000;
}
.dropdown:hover .dropdown__button::before {
  left: 0;
}
.dropdown:hover .dropdown__list {
  box-shadow: 1px 20px 24px 0px rgba(0, 0, 0, 0.08);
}
.dropdown:hover .dropdown__list li {
  height: 26px;
  padding: 10px 5px;
}
.dropdown:hover::after {
  transform: rotate(-180deg) translateY(50%);
  filter: invert(0%);
}
.dropdown--primary-color {
  color: #1A3D81;
}
.dropdown--primary-color::after {
  background-image: url("/img/icons/icon-down-primary.svg");
}

.vertical-menu__core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1100px) {
  .vertical-menu__core {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.vertical-menu__column {
  text-align: center;
}
@media (min-width: 1100px) {
  .vertical-menu__column {
    flex: 0 0 calc(50% - 40px);
    margin-right: 40px;
    display: block;
  }
}
.vertical-menu__column:nth-child(2n) {
  margin-right: 0;
}
.vertical-menu__column > li {
  width: auto;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .vertical-menu__column > li {
    align-items: flex-start;
  }
}

.dropdown-action {
  position: relative;
}
.dropdown-action__list {
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1100px) {
  .dropdown-action__list {
    width: 80%;
    text-align: left;
  }
}
.dropdown-action__list.active {
  display: block;
  text-align: center;
}
.dropdown-action__list > li {
  padding-bottom: 10px;
  text-align: center;
}
@media (min-width: 1100px) {
  .dropdown-action__list > li {
    text-align: left;
  }
}
.dropdown-action__list > li:first-child {
  padding-top: 20px;
}
.dropdown-action__list > li:last-child {
  padding-bottom: 20px;
}
.dropdown-action__item {
  font-size: 18px;
  display: block;
  color: #1A3D81;
  font-weight: 200;
  transition: all 0.3s linear;
}
.dropdown-action__item:hover {
  color: #D39079;
}
@media (min-width: 768px) {
  .dropdown-action__item {
    font-size: 20px;
  }
}
.dropdown-action__button {
  position: relative;
  text-transform: initial;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  margin-left: 30px;
}
@media (min-width: 1100px) {
  .dropdown-action__button {
    margin-left: 0;
  }
}
.dropdown-action__button::after {
  content: "";
  position: relative;
  height: 24px;
  margin-left: 30px;
  margin-top: 10px;
  width: 21px;
  height: 23px;
  background-image: url("/img/icons/icon-down-primary.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
  font-weight: 300;
}
@media (min-width: 768px) {
  .dropdown-action__button::after {
    width: 27px;
  }
}
.dropdown-action__button.active::after {
  transform: rotate(-180deg) translateY(50%);
}
.dropdown-action:hover {
  box-shadow: none !important;
  color: #D39079 !important;
}

.menu-item__hover-color {
  padding: 0;
  font-family: arpona, serif;
}
@media (min-width: 1100px) {
  .menu-item__hover-color {
    text-transform: initial !important;
    height: auto !important;
    font-size: 30px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto !important;
    font-weight: 200;
  }
}
@media (min-width: 1100px) {
  .menu-item__hover-color::after {
    position: relative;
    height: 24px;
    margin-left: 30px;
    margin-top: 10px;
    top: 0;
  }
}
.menu-item__hover-color:hover {
  box-shadow: none !important;
  color: #D39079 !important;
}

button.menu-item.dropdown-action__button {
  font-family: arpona, serif;
}

.social-link {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #fff;
  -webkit-mask: url("/img/icons/icon-fb.svg") no-repeat center;
  mask: url("/img/icons/icon-fb.svg") no-repeat center;
  mask-size: contain;
  transition: background-color 0.2s linear, transform 0.2s linear;
}
.social-link:hover {
  transform: scale(1.2);
  background-color: #D39079;
}
.social-link--fb {
  width: 20px;
  height: 22px;
}
.social-link--google {
  -webkit-mask: url("/img/icons/icon-google-white.svg") no-repeat center;
  mask: url("/img/icons/icon-google-white.svg") no-repeat center;
}

.social-img {
  position: relative;
  margin-left: 24px;
  height: 22px;
  width: 134px;
}
.social-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.social-img--znany-lekarz::before {
  background-image: url("/img/znanylekarz.svg");
}

.icon-std-arrow {
  width: 16px;
  height: 16px;
  -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;
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -10000px;
  text-align: left;
}
.icon-std-arrow::before, .icon-std-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-std-arrow::before {
  background-image: url("/img/icons/icon-down-orange.svg");
}
.icon-std-arrow::after {
  background-image: url("/img/icons/icon-up-orange.svg");
  opacity: 0;
}
.icon-std-arrow.icon-std-arrow--up::before {
  transform: rotate(180deg) translateY(2px);
}

.button-wrapper__loader {
  right: 100%;
  padding: 0 10px 0 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  text-align: center;
  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;
  position: absolute;
  top: 50%;
}

.icon-loader {
  width: 32px;
  height: 32px;
  display: block;
  background: url("../img/icons/icon-loader.svg") no-repeat center;
  background-size: auto;
  background-size: contain;
  -webkit-animation: Rotate 2s infinite linear;
  -moz-animation: Rotate 2s infinite linear;
  animation: Rotate 2s infinite linear;
}

.icon-loader--smaller {
  width: 20px;
  height: 20px;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.2s linear;
  gap: 10px;
}
.video-controls__control-btn {
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  border-radius: 50%;
}
.video-controls__control-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.image-ratio:hover .video-controls {
  opacity: 1;
}

.video-player__central-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.video-player__full-screen-button {
  width: 20px;
  height: 20px;
  background-image: url("/img/icons/icon-fullscreen.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.video-player__progress {
  background-color: #D39079;
  height: 100%;
}

.video-tile__timeline {
  width: 86% !important;
  background: #1A3D81;
}

.video-player__progress-bar {
  width: 100%;
  background: #1A3D81;
}

.seek-bar {
  flex-grow: 1;
  margin: 0 10px;
  cursor: pointer;
  -webkit-appearance: none; /* Wyłącza domyślny styl */
  appearance: none;
  width: 100%;
  height: 5px;
  background: #ddd; /* Kolor tła */
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.seek-bar:hover {
  opacity: 1;
}

/* Styl dla Chrome, Safari, i Edge */
.seek-bar::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #D39079; /* Kolor suwaka */
}

.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none; /* Wyłącza domyślny styl */
  appearance: none;
  width: 15px;
  height: 15px;
  background: #1A3D81; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
  margin-top: -5px; /* Środek kciuka w środku suwaka */
}

/* Styl dla Firefox */
.seek-bar::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #1A3D81; /* Kolor suwaka */
}

.seek-bar::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #D39079; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
}

/* Styl dla IE */
.seek-bar::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.seek-bar::-ms-fill-lower {
  background: #1A3D81; /* Kolor suwaka */
}

.seek-bar::-ms-fill-upper {
  background: #ddd; /* Kolor tła */
}

.seek-bar::-ms-thumb {
  width: 15px;
  height: 15px;
  background: #D39079; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
}

table {
  border-spacing: 0;
}

.simple-comparison-table {
  color: #000;
  margin: auto;
  border-spacing: 0;
  width: 100%;
  border-collapse: separate;
}
@media (min-width: 992px) {
  .simple-comparison-table {
    margin: 0;
    margin-left: auto;
    max-width: 800px;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .simple-comparison-table {
    margin: 0;
    margin-left: auto;
    max-width: 900px;
    width: 100%;
  }
}
.simple-comparison-table tr {
  width: 100%;
}
.simple-comparison-table td, .simple-comparison-table th {
  padding: 16px;
  width: 33.33%;
}
.simple-comparison-table td {
  text-align: center;
  font-weight: 700;
}
.simple-comparison-table thead tr th {
  border-top: 1px solid #D39079;
  border-left: 1px solid #D39079;
  border-bottom: none;
}
.simple-comparison-table thead tr th:first-child {
  border: none;
}
.simple-comparison-table thead tr th:nth-child(2) {
  border-top-left-radius: 24px;
}
.simple-comparison-table thead tr th:last-child {
  border-top-right-radius: 24px;
  border-right: 1px solid #D39079;
}
.simple-comparison-table td:first-of-type {
  border-left: 1px solid #D39079;
}
.simple-comparison-table td:last-of-type {
  border-right: 1px solid #D39079;
}
.simple-comparison-table tr:first-child td:first-of-type {
  border-top: 1px solid #D39079;
}
.simple-comparison-table tr:last-child td:first-of-type {
  border-bottom: 1px solid #D39079;
  border-bottom-left-radius: 24px;
}
.simple-comparison-table tr:nth-child(2n+2) td {
  background: #F6DCEC;
}
.simple-comparison-table tbody tr:first-child td {
  border-top: 1px solid #D39079;
}
.simple-comparison-table tbody tr:last-child td {
  border-bottom: 1px solid #D39079;
}
.simple-comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}
.simple-comparison-table tr:first-child td:first-of-type {
  border-top: 1px solid #D39079;
}
.simple-comparison-table__footer > td {
  border: none !important;
}
.simple-comparison-table__footer .button {
  white-space: wrap;
  font-size: 12px;
  padding: 12px 18px;
}
@media (min-width: 992px) {
  .simple-comparison-table__footer .button {
    font-size: 14px;
    padding: 12px 22px;
  }
}

.titled-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
  align-items: center;
  border: 1px solid #D39079;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  text-align: center;
  padding: 15px 10px;
  color: #000;
}
@media (min-width: 650px) {
  .titled-cell {
    font-size: 14px;
  }
}
.titled-cell__header {
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 650px) {
  .titled-cell__header {
    font-size: 16px;
  }
}
.titled-cell__content {
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 650px) {
  .titled-cell__content {
    font-size: 14px;
  }
}
@media (min-width: 480px) {
  .titled-cell {
    align-items: flex-start;
    text-align: left;
    font-size: 16px;
    border: none;
    padding: 0;
  }
}
.titled-cell--pink {
  background-color: #F6DCEC;
}

.tables-container {
  width: 90%;
  margin: 0 auto;
}
.tables-container__row {
  margin-top: 12px;
}

.table-header {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
.table-header__cell {
  padding: 20px 16px;
  width: 100%;
  height: 100%;
  border: 1px solid #D39079;
  text-align: center;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-header__cell:first-child {
  border-right: none;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.table-header__cell:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.custom-table {
  border-spacing: 0;
  width: 100%;
}
.custom-table thead tr {
  width: 100%;
}
.custom-table tbody {
  font-size: 12px;
}
.custom-table tbody td {
  border: 1px solid #D39079;
  border-right: none;
}
.custom-table tbody td:first-child {
  border: 1px solid #D39079;
  border-top: none;
  border-bottom-left-radius: 16px;
}
.custom-table tbody tr:first-child td:last-child {
  border-bottom: 1px solid #D39079;
  border-right: 1px solid #D39079;
  border-bottom-right-radius: 16px;
  border-top: none;
  border-left: none;
}
.custom-table td {
  padding: 16px;
  width: 50%;
  text-align: center;
}
.custom-table .titled-cell {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.selected-lists__item {
  display: none;
}
.selected-lists__item.active {
  display: block;
}

.comparison-table {
  display: flex;
}
.comparison-table__reference-column {
  flex: 0 0 35%;
}
@media (min-width: 650px) {
  .comparison-table__reference-column {
    flex: 0 0 25%;
  }
}
.comparison-table__header-column {
  flex: 0 0 25%;
  margin-bottom: 30px;
}
.comparison-table__relating-column {
  width: 100%;
  flex: 0 0 40%;
  max-width: 40%;
  position: relative;
}
@media (min-width: 650px) {
  .comparison-table__relating-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.comparison-table__relating-column:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -22px;
  border: 1px solid #D39079;
  width: calc(100% + 20px);
  height: 80px;
  border-top-right-radius: 24px;
}
.comparison-table--mobile {
  flex-direction: column;
}
.comparison-table--mobile .titled-cell {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.comparison-table__text {
  width: auto;
  margin-left: 60%;
  padding-top: 3px;
  font-size: 14px;
  color: #D39079;
}
@media (min-width: 650px) {
  .comparison-table__text {
    margin-left: 50%;
  }
}

.std-table__header {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.std-table__header .std-table__header-cell:first-child {
  width: 160px;
  padding-left: 20px;
}
@media (min-width: 650px) {
  .std-table__header .std-table__header-cell:first-child {
    width: 220px;
    padding-left: 20px;
  }
}
.std-table__header .std-table__header-cell:last-child {
  width: 160px;
  padding-right: 20px;
}
@media (min-width: 650px) {
  .std-table__header .std-table__header-cell:last-child {
    width: 220px;
    padding-right: 20px;
  }
}
.std-table__row {
  display: flex;
  width: 100%;
}
.std-table__row:nth-child(2n) .std-table__cell {
  background-color: #F6DCEC;
}
.std-table__row .std-table__cell:first-child {
  width: 160px;
  padding-left: 20px;
}
@media (min-width: 650px) {
  .std-table__row .std-table__cell:first-child {
    width: 220px;
    padding-left: 20px;
  }
}
.std-table__row .std-table__cell:last-child {
  width: 160px;
  padding-right: 20px;
}
@media (min-width: 650px) {
  .std-table__row .std-table__cell:last-child {
    width: 220px;
    padding-right: 20px;
  }
}
.std-table__content {
  display: flex;
  flex-direction: column;
}
.std-table__header-cell {
  padding: 0px 10px;
  flex: 0 0 140px;
  width: 140px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 650px) {
  .std-table__header-cell {
    flex: 0 0 200px;
    width: 200px;
  }
}
.std-table__header-cell h3 {
  white-space: wrap;
}
.std-table__cell {
  padding: 10px;
  flex: 0 0 140px;
  width: 140px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 700;
  z-index: -1;
  text-align: center;
}
@media (min-width: 650px) {
  .std-table__cell {
    flex: 0 0 200px;
    width: 200px;
    font-size: 14px;
  }
}
.std-table--ready-attach-on-left {
  margin-left: -12px;
}

.scrollable-inner-section__content {
  border-bottom-right-radius: 24px;
  cursor: grab;
}
.scrollable-inner-section__content:active {
  cursor: grabbing;
}
.scrollable-inner-section__content .mCSB_dragger_bar {
  background-color: #D39079 !important;
}
.scrollable-inner-section__content .mCSB_draggerRail {
  height: 2px !important;
  margin-top: 7px !important;
  background-color: #D39079 !important;
}
.scrollable-inner-section__content .mCSB_container {
  border-bottom-right-radius: 24px !important;
}

.std-clear-table {
  border: 1px solid #D39079;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.std-clear-table__header {
  padding: 0px 5px;
  border-bottom: 1px solid #D39079;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 85px;
}
.std-clear-table__row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.std-clear-table__cell {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 650px) {
  .std-clear-table__cell {
    font-size: 14px;
  }
}

.plain-table {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}
.plain-table__row {
  padding: 10px;
  display: flex;
  align-items: center;
}
.plain-table--space-top {
  margin-top: 80.8px;
}

.adjustable-item {
  min-height: 80px; /* Przykładowa minimalna wysokość */
  box-sizing: border-box;
  width: 100%;
}

.ui-icon, .icon-arrow-short, .icon-youtube, .icon-instagram, .icon-facebook, .icon-google, .icon-star {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 16px;
  height: 16px;
}

.ui-icon[class*="--large"], [class*="--large"].icon-arrow-short, [class*="--large"].icon-youtube, [class*="--large"].icon-instagram, [class*="--large"].icon-facebook, [class*="--large"].icon-google, [class*="--large"].icon-star {
  width: 24px;
  height: 24px;
}

.icon-star {
  background-image: url("../img/icons/icon-star-full.svg");
}
.icon-star--half {
  background-image: url("../img/icons/icon-star-half.svg");
}
.icon-star--outline {
  background-image: url("../img/icons/icon-star-outline.svg");
}

.icon-google {
  background-image: url("../img/icons/icon-google.svg");
}

.extended-icon, .icon-arrow-medium, .icon-youtube, .icon-instagram, .icon-facebook, .icon-arrow-long, .icon-arrow-with-belt, .icon-download {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -10000px;
  text-align: left;
  -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:before, .icon-arrow-medium:before, .icon-youtube:before, .icon-instagram:before, .icon-facebook:before, .icon-arrow-long:before, .icon-arrow-with-belt:before, .icon-download:before, .extended-icon:after, .icon-arrow-medium:after, .icon-youtube:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-long:after, .icon-arrow-with-belt:after, .icon-download:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -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-arrow-medium:after, .icon-youtube:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-long:after, .icon-arrow-with-belt:after, .icon-download:after {
  opacity: 0;
}

.extended-icon[class*="--interactive"], [class*="--interactive"].icon-arrow-medium, [class*="--interactive"].icon-youtube, [class*="--interactive"].icon-instagram, [class*="--interactive"].icon-facebook, [class*="--interactive"].icon-arrow-long, [class*="--interactive"].icon-arrow-with-belt, [class*="--interactive"].icon-download {
  cursor: pointer;
}
.extended-icon[class*="--interactive"]:hover:after, [class*="--interactive"].icon-arrow-medium:hover:after, [class*="--interactive"].icon-youtube:hover:after, [class*="--interactive"].icon-instagram:hover:after, [class*="--interactive"].icon-facebook:hover:after, [class*="--interactive"].icon-arrow-long:hover:after, [class*="--interactive"].icon-arrow-with-belt:hover:after, [class*="--interactive"].icon-download:hover:after, .extended-icon[class*="--interactive"]:focus:after, [class*="--interactive"].icon-arrow-medium:focus:after, [class*="--interactive"].icon-youtube:focus:after, [class*="--interactive"].icon-instagram:focus:after, [class*="--interactive"].icon-facebook:focus:after, [class*="--interactive"].icon-arrow-long:focus:after, [class*="--interactive"].icon-arrow-with-belt:focus:after, [class*="--interactive"].icon-download:focus:after {
  opacity: 1;
}

.icon-arrow-long::after {
  background-image: url("../img/icons/icon-arrow.svg");
  width: 46px;
  height: 20px;
}
.icon-arrow-long::before {
  background-image: url("../img/icons/icon-arrow.svg");
  width: 46px;
  height: 20px;
}
.icon-arrow-long--revert::after, .icon-arrow-long--revert::before {
  margin-top: -1px;
  transform: rotate(180deg);
}

.simple-icon {
  width: 16px;
  height: 16px;
}
.simple-icon__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-facebook--primary::before {
  background-image: url("../img/icons/icon-facebook-circle-copper.svg");
}
.icon-facebook--primary::after {
  background-image: url("../img/icons/icon-facebook-circle.svg");
}

.icon-instagram--primary::before {
  background-image: url("../img/icons/icon-instagram-copper.svg");
}
.icon-instagram--primary::after {
  background-image: url("../img/icons/icon-instagram-blue.svg");
}

.icon-youtube--primary::before {
  background-image: url("../img/icons/icon-youtube-copper.svg");
}
.icon-youtube--primary::after {
  background-image: url("../img/icons/icon-youtube-blue.svg");
}

.icon-arrow-short {
  background-image: url("../img/icons/icon-arrow-short.svg");
}
.icon-arrow-short--diagonal {
  transform: rotate(-45deg);
}

.icon-arrow-medium::after {
  background-image: url("../img/icons/icon-arrow-medium.svg");
  width: 32px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.icon-arrow-medium::before {
  background-image: url("../img/icons/icon-arrow-medium.svg");
  width: 32px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.icon-arrow-medium--revert::after, .icon-arrow-medium--revert::before {
  transform: translateY(-50%) rotate(180deg) !important;
  margin-top: -1px;
}

.horizontal-box__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.horizontal-box--top-space-auto {
  margin-top: auto;
}

.opinion-tile {
  border: 1px solid #D39079;
  border-radius: 24px;
  padding: 24px 26px;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
.opinion-tile__content {
  padding: 16px 0 32px 0;
}
.opinion-tile__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-tile {
  max-width: 920px;
  margin-inline: auto;
}
.image-tile img {
  transition: all 0.3s linear;
}
@media (hover: hover) {
  .image-tile:hover img {
    transform: scale(1.05);
  }
}

.image-tile-extended__decoration-container {
  position: relative;
}
.image-tile-extended__decoration-image {
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 200px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1300px) {
  .image-tile-extended__decoration-image {
    bottom: auto;
    top: -50px;
    width: 400px;
  }
}

.rate {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rate__item {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 0;
}
.rate__item:before, .rate__item:after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rate__item:before {
  background-image: url("../img/icons/icon-star-outline.svg");
  z-index: 5;
  opacity: 1;
}
.rate__item:after {
  background-image: url("../img/icons/icon-star-full.svg");
  z-index: 10;
  opacity: 0;
}
.rate.rate--1 .rate__item:nth-child(1):before, .rate.rate--2 .rate__item:nth-child(1):before, .rate.rate--3 .rate__item:nth-child(1):before, .rate.rate--4 .rate__item:nth-child(1):before, .rate.rate--5 .rate__item:nth-child(1):before {
  opacity: 0;
}
.rate.rate--1 .rate__item:nth-child(1):after, .rate.rate--2 .rate__item:nth-child(1):after, .rate.rate--3 .rate__item:nth-child(1):after, .rate.rate--4 .rate__item:nth-child(1):after, .rate.rate--5 .rate__item:nth-child(1):after {
  opacity: 1;
}
.rate.rate--2 .rate__item:nth-child(2):before, .rate.rate--3 .rate__item:nth-child(2):before, .rate.rate--4 .rate__item:nth-child(2):before, .rate.rate--5 .rate__item:nth-child(2):before {
  opacity: 0;
}
.rate.rate--2 .rate__item:nth-child(2):after, .rate.rate--3 .rate__item:nth-child(2):after, .rate.rate--4 .rate__item:nth-child(2):after, .rate.rate--5 .rate__item:nth-child(2):after {
  opacity: 1;
}
.rate.rate--3 .rate__item:nth-child(3):before, .rate.rate--4 .rate__item:nth-child(3):before, .rate.rate--5 .rate__item:nth-child(3):before {
  opacity: 0;
}
.rate.rate--3 .rate__item:nth-child(3):after, .rate.rate--4 .rate__item:nth-child(3):after, .rate.rate--5 .rate__item:nth-child(3):after {
  opacity: 1;
}
.rate.rate--4 .rate__item:nth-child(4):before, .rate.rate--5 .rate__item:nth-child(4):before {
  opacity: 0;
}
.rate.rate--4 .rate__item:nth-child(4):after, .rate.rate--5 .rate__item:nth-child(4):after {
  opacity: 1;
}
.rate.rate--5 .rate__item:nth-child(5):before {
  opacity: 0;
}
.rate.rate--5 .rate__item:nth-child(5):after {
  opacity: 1;
}
.rate.rate--4-and-half .rate__item:nth-child(1):before, .rate.rate--4-and-half .rate__item:nth-child(2):before, .rate.rate--4-and-half .rate__item:nth-child(3):before, .rate.rate--4-and-half .rate__item:nth-child(4):before {
  opacity: 0;
}
.rate.rate--4-and-half .rate__item:nth-child(1):after, .rate.rate--4-and-half .rate__item:nth-child(2):after, .rate.rate--4-and-half .rate__item:nth-child(3):after, .rate.rate--4-and-half .rate__item:nth-child(4):after {
  opacity: 1;
}
.rate.rate--4-and-half .rate__item:nth-child(5):before {
  opacity: 0;
}
.rate.rate--4-and-half .rate__item:nth-child(5):after {
  opacity: 1;
  background-image: url("../img/icons/icon-star-half.svg");
}
.rate.rate--3-and-half .rate__item:nth-child(1):before, .rate.rate--3-and-half .rate__item:nth-child(2):before, .rate.rate--3-and-half .rate__item:nth-child(3):before {
  opacity: 0;
}
.rate.rate--3-and-half .rate__item:nth-child(1):after, .rate.rate--3-and-half .rate__item:nth-child(2):after, .rate.rate--3-and-half .rate__item:nth-child(3):after {
  opacity: 1;
}
.rate.rate--3-and-half .rate__item:nth-child(4):before {
  opacity: 0;
}
.rate.rate--3-and-half .rate__item:nth-child(4):after {
  opacity: 1;
  background-image: url("../img/icons/icon-star-half.svg");
}
.rate.rate--2-and-half .rate__item:nth-child(1):before, .rate.rate--2-and-half .rate__item:nth-child(2):before {
  opacity: 0;
}
.rate.rate--2-and-half .rate__item:nth-child(1):after, .rate.rate--2-and-half .rate__item:nth-child(2):after {
  opacity: 1;
}
.rate.rate--2-and-half .rate__item:nth-child(3):before {
  opacity: 0;
}
.rate.rate--2-and-half .rate__item:nth-child(3):after {
  opacity: 1;
  background-image: url("../img/icons/icon-star-half.svg");
}
.rate.rate--1-and-half .rate__item:nth-child(1):before {
  opacity: 0;
}
.rate.rate--1-and-half .rate__item:nth-child(1):after {
  opacity: 1;
}
.rate.rate--1-and-half .rate__item:nth-child(2):before {
  opacity: 0;
}
.rate.rate--1-and-half .rate__item:nth-child(2):after {
  opacity: 1;
  background-image: url("../img/icons/icon-star-half.svg");
}

.simple-table {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .simple-table {
    display: table;
    width: 100%;
    border-spacing: 0 16px;
  }
}
@media (min-width: 768px) {
  .simple-table__row {
    display: table-row;
  }
}
.simple-table__column-main {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .simple-table__column-main {
    padding-bottom: 0;
    display: table-cell;
    padding-right: 26px;
    white-space: nowrap;
    vertical-align: top;
    text-align: right;
  }
}
@media (min-width: 768px) {
  .simple-table__column-side {
    display: table-cell;
    vertical-align: top;
  }
}

.content-icon-box__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.content-icon-box__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 6px;
}
.content-icon-box__title {
  font-size: 14px;
  line-height: 1.2;
  color: #1A3D81;
  font-weight: 400;
  display: block;
  padding-bottom: 4px;
}
.content-icon-box__title.content-icon-box__link {
  text-decoration: underline;
}
.content-icon-box__text {
  font-weight: 300;
  font-size: 12px;
}

.social-media-wrapper {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .social-media-wrapper {
    padding-top: 26px;
  }
}
@media (min-width: 1300px) {
  .social-media-wrapper {
    padding-top: 34px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

html {
  font-family: hero-new, sans-serif;
  font-size: 14px;
  color: #1A3D81;
}

body {
  font-weight: 400;
  font-family: hero-new, sans-serif;
}

a {
  color: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
}

svg {
  display: inherit;
}

ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
section,
header {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}
a:hover {
  outline: none;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

.line {
  display: block;
}

/***** LINKS *****/
.link-bar {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.link-bar:hover {
  color: #D39079;
}

.link-nav {
  letter-spacing: 0.05em;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  display: block;
  padding: 10px;
  transition: color 0.35s ease;
}
.link-nav:hover {
  color: #1A3D81;
}
@media (min-width: 1700px) {
  .link-nav {
    font-size: 14px;
  }
}

.arrow-link {
  color: #1A3D81;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 14px;
  line-height: 123%;
  display: inline-block;
  transition: color 0.25s ease;
  text-align: center;
  display: flex;
  align-items: center;
  white-space: wrap;
  text-align: left;
  /*&:after {
  	content: '';
  	margin-top: 20px;
  	display: inline-block;
  	width: 50px;
  	height: 12px;
  	background: url('../img/icons/icon-arrow.svg') no-repeat 100% 50%;
  	background-size: cover;
  	vertical-align: super;
  	transform: perspective(10px) translateY(6px);
  	margin-left: 20px;
  	margin-right: 20px;
  	@media (min-width: $rwd-370) {
  		margin-right: 0;
  		margin-top: auto;
  	}
  	@media (min-width: $rwd-768) {
  		transform: perspective(10px) translateY(5px);
  	}
  }*/
}
@media (min-width: 370px) {
  .arrow-link {
    text-align: left;
  }
}
.arrow-link .arrow-link__arrow {
  margin-left: 15px;
  margin-bottom: -2px;
}
.arrow-link path {
  transition: all 0.25s ease;
}
.arrow-link:hover {
  color: #D39079;
}
.arrow-link:hover path {
  stroke: #D39079;
}

.arrow-link__text--special {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .arrow-link__text--special {
    font-size: 14px;
  }
}

.arrow-link--reverse {
  position: relative;
}
.arrow-link--reverse .arrow-link__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 0;
  margin: 0;
}
.arrow-link--reverse .arrow-link__text {
  padding-left: 70px;
}

/***** TITLES *****/
.subtitle {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
}

.subtitle-02 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.subtitle-03 {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.02em;
}

.subtitle-04 {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.subtitle-05 {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.title-lg {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 24px;
  font-family: arpona, serif;
}
@media (min-width: 370px) {
  .title-lg {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .title-lg {
    line-height: 1;
    font-size: 44px;
  }
}
@media (min-width: 992px) {
  .title-lg {
    font-size: 59px;
  }
}

.title-md {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 24px;
  font-family: arpona, serif;
}
@media (min-width: 768px) {
  .title-md {
    line-height: 1;
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .title-md {
    font-size: 32px;
  }
}

.title-md-02 {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 22px;
  font-family: arpona, serif;
}
@media (min-width: 768px) {
  .title-md-02 {
    line-height: 1;
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .title-md-02 {
    font-size: 32px;
  }
}

.title-md-03 {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 20px;
  font-family: arpona, serif;
}
@media (min-width: 992px) {
  .title-md-03 {
    line-height: 1;
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .title-md-03 {
    line-height: 1;
    font-size: 26px;
  }
}

.title-md-04 {
  font-size: 16px;
  color: #1A3D81;
  display: inline-block;
  font-weight: 300;
  font-family: arpona, serif;
}

.title-md-05 {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 24px;
  font-family: arpona, serif;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .title-md-05 {
    line-height: 1;
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .title-md-05 {
    font-size: 36px;
  }
}

.title-serif-font {
  font-family: arpona, serif;
}

.title-primary-color-02 {
  color: #D39079;
}

.title-md-06 {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 20px;
  font-family: arpona, serif;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .title-md-06 {
    line-height: 1;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .title-md-06 {
    font-size: 28px;
  }
}

.title-md-07 {
  font-weight: 300;
  color: #d39079;
  line-height: 1.2;
  font-size: 24px;
  font-family: arpona, serif;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .title-md-07 {
    line-height: 1;
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .title-md-07 {
    font-size: 48px;
    line-height: 50px;
  }
}

.title-md-08 {
  font-weight: 300;
  color: #D39079;
  line-height: 1.2;
  font-size: 18px;
  font-family: arpona, serif;
  transition: color 0.3s ease;
  text-align: center;
}
@media (min-width: 768px) {
  .title-md-08 {
    line-height: 1;
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .title-md-08 {
    line-height: 1;
    font-size: 22px;
  }
}

/***** HEADERS *****/
.site-header {
  position: relative;
  background-size: cover;
  color: #fff;
  background-position: center;
}
@media (min-width: 768px) {
  .site-header {
    height: auto;
  }
}
.site-header__main--subpage {
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}
@media (min-width: 550px) {
  .site-header__main--subpage {
    height: auto;
    padding-bottom: 30%;
    max-height: 430px;
  }
}
.site-header__main--subpage .menu-toggler {
  opacity: 0.2;
}
.site-header__main--subpage .menu-toggler .menu-toggler__wrapper svg {
  stroke: #000;
}
.site-header__main--subpage .menu-toggler .menu-toggler__wrapper div span:before,
.site-header__main--subpage .menu-toggler .menu-toggler__wrapper div span:after {
  background-color: #000;
}
@media (min-width: 1100px) {
  .site-header__main--subpage-smaller {
    padding-bottom: 16%;
  }
}
.site-header__main--subpage-02 {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
}
.site-header__main--full-heigth {
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
.site-header__main--without-image {
  background: none;
  background-color: #fff;
  height: 100px;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .site-header__main--without-image {
    height: 120px;
  }
}
.site-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 50px 25px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 550px) {
  .site-header__inner {
    padding: 60px 40px;
  }
}
@media (min-width: 768px) {
  .site-header__inner {
    padding: 180px 60px 80px;
  }
}
@media (min-width: 992px) {
  .site-header__inner {
    padding: 180px 80px 100px;
  }
}
@media (min-width: 1100px) {
  .site-header__inner {
    padding: 180px 100px 60px;
  }
}
@media (min-width: 1700px) {
  .site-header__inner {
    padding: 180px 100px 120px;
  }
}
.site-header__content {
  position: relative;
  z-index: 10;
}
.site-header__video {
  position: absolute;
  top: -1%;
  left: 0;
  width: 102%;
  height: 101%;
}
.site-header__video video {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
.site-header .simple-box {
  max-width: 330px;
}
@media (min-width: 768px) {
  .site-header .simple-box {
    max-width: 445px;
  }
}
@media (min-width: 992px) {
  .site-header .simple-box {
    max-width: 545px;
  }
}
@media (min-width: 1300px) {
  .site-header .simple-box {
    max-width: 645px;
  }
}
@media (min-width: 768px) {
  .site-header .simple-box__description {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .site-header .simple-box__description {
    max-width: 430px;
  }
}

.section-header {
  padding: 0 0 32px 0;
}
.section-header--more-space {
  padding: 0 0 42px 0;
}
@media (min-width: 1100px) {
  .section-header--more-space {
    padding: 0 0 94px 0;
  }
}
.section-header--right {
  text-align: right;
}

.header-title {
  font-family: arpona, serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 116%;
}
@media (min-width: 370px) {
  .header-title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .header-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .header-title {
    font-size: 40px;
  }
}
@media (min-width: 1100px) {
  .header-title {
    font-size: 44px;
  }
}
@media (min-width: 1300px) {
  .header-title {
    font-size: 48px;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  font-family: arpona, serif;
  line-height: 100%;
  color: rgba(211, 144, 121, 0.8);
}
@media (min-width: 370px) {
  .section-title {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .section-title {
    font-size: 62px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 86px;
  }
}
@media (min-width: 1300px) {
  .section-title {
    font-size: 106px;
  }
}
.section-title--small {
  font-size: 40px;
}
@media (min-width: 768px) {
  .section-title--small {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .section-title--small {
    font-size: 48px;
  }
}
@media (min-width: 1700px) {
  .section-title--small {
    font-size: 56px;
  }
}
.section-title--primary-color {
  color: #1A3D81;
}

.section-title-02 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1A3D81;
}

.page-title {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  font-family: hero-new, sans-serif;
}
@media (min-width: 480px) {
  .page-title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 992px) {
  .page-title {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 1300px) {
  .page-title {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (min-width: 1500px) {
  .page-title {
    font-size: 88px;
    line-height: 96px;
  }
}
@media (min-width: 1700px) {
  .page-title {
    font-size: 96px;
    line-height: 104px;
  }
}

.lead {
  text-align: center;
}
.lead__header {
  padding: 0 0 20px 0;
}
@media (min-width: 1500px) {
  .lead__header {
    padding-bottom: 28px;
  }
}
.lead__button-container {
  padding: 28px 0 0 0;
}
@media (min-width: 1700px) {
  .lead__button-container {
    padding-top: 36px;
  }
}
.lead__button-container--desktop {
  display: none;
}
@media (min-width: 992px) {
  .lead__button-container--desktop {
    display: block;
  }
}

.lead--type-01 {
  text-align: left;
}

.lead--type-03 {
  text-align: left;
  max-width: 420px;
}
.lead--type-03 .lead__content {
  margin: 0;
}
.lead--type-03 .lead__button-container {
  padding-left: 20px;
}

.subsection-header {
  position: relative;
  padding: 18px 0 32px 0;
}
@media (min-width: 420px) {
  .subsection-header {
    padding: 0 0 0 96px;
    margin: 0 0 40px 0;
  }
}
@media (min-width: 768px) {
  .subsection-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1300px) {
  .subsection-header {
    margin-bottom: 40px;
  }
}
.subsection-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  margin: 0 0 0 -40px;
  background: #000;
}
@media (min-width: 420px) {
  .subsection-header:before {
    left: 0;
    margin: -1px 0 0 0;
    top: 50%;
  }
}

.subsection-title {
  text-align: center;
}

/* headers-end */
/***** FOOTER *****/
.site-footer {
  text-align: center;
  position: relative;
  z-index: 100;
  background: #1A3D81;
}
@media (min-width: 768px) {
  .site-footer {
    text-align: left;
  }
}
.site-footer__main-row {
  color: #fff;
}
@media (min-width: 768px) {
  .site-footer__main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.site-footer__main-row * {
  color: #fff;
}
.site-footer__second-row {
  color: #fff;
  padding: 60px 0 0 0;
}
@media (min-width: 768px) {
  .site-footer__second-row {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .site-footer__second-row {
    align-items: center;
  }
}
.site-footer__second-row * {
  color: #fff;
}
.site-footer__second-row .horizontal-links > li {
  margin-right: 25px;
}
.site-footer__wrapper {
  padding: 40px 0 30px 0;
}
.site-footer__inner {
  padding: 0 20px;
  max-width: 1350px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1700px) {
  .site-footer__inner {
    max-width: 1500px;
  }
}
.site-footer__logo-container {
  padding: 0 0 40px 0;
}
@media (min-width: 992px) {
  .site-footer__logo-container {
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .site-footer__logo-container {
    padding-right: 60px;
  }
}
@media (min-width: 1300px) {
  .site-footer__logo-container {
    padding-right: 80px;
  }
}
@media (min-width: 1700px) {
  .site-footer__logo-container {
    padding-right: 100px;
  }
}
.site-footer__logo {
  width: auto;
  height: 150px;
  display: block;
  margin: 0 auto 60px;
}
.site-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .site-footer__logo {
    margin: 0 60px 0px 0;
  }
}
@media (min-width: 992px) {
  .site-footer__logo {
    margin-right: auto;
  }
}
.site-footer__nav {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .site-footer__nav {
    max-width: 509px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .site-footer__nav {
    max-width: 555px;
  }
}
.site-footer__nav .footer-nav__item {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .site-footer__social {
    margin: 40px auto 0;
  }
}
@media (min-width: 992px) {
  .site-footer__social {
    margin: 0;
    margin-left: auto;
  }
}
.site-footer__social .text-container {
  margin-bottom: 17px;
  white-space: nowrap;
}
.site-footer__social .text-container p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 20px;
}
@media (min-width: 992px) {
  .site-footer__social .horizontal-links {
    text-align: left;
  }
}
.site-footer__sub-links {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .site-footer__sub-links {
    margin: auto;
    margin-left: 0;
  }
}
.site-footer__sub-links .horizontal-list__item {
  margin-bottom: 15px;
}
.site-footer__secondary-column {
  padding: 48px 0 0 0;
}
@media (min-width: 768px) {
  .site-footer__secondary-column {
    padding: 0;
  }
}
.site-footer__inner-container {
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .site-footer__inner-container {
    max-width: 100%;
  }
}
@media (min-width: 1300px) {
  .site-footer__inner-container {
    padding-right: 10%;
  }
}
@media (min-width: 650px) {
  .site-footer__inner-container > .column {
    float: left;
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .site-footer__main-column {
    float: left;
    width: 60%;
    padding: 0 40px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (min-width: 1100px) {
  .site-footer__main-column {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .site-footer__secondary-column {
    float: left;
    width: 40%;
  }
}
@media (min-width: 1100px) {
  .site-footer__secondary-column {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .site-footer__major-container {
    display: flex;
  }
}
.site-footer__main-container {
  width: 100%;
}
.site-footer__secondary-row {
  background: #fff;
}
.site-footer__copyright-row {
  padding: 12px 0;
}
.site-footer__logotypes-row {
  padding: 8px 0 20px 0;
}

@media (min-width: 992px) {
  .main-nav__list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 650px) {
  .main-nav__list {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .main-nav__item {
    width: 50%;
  }
}

.main-nav__link {
  display: inline-block;
  font-family: arpona, serif;
  color: #1A3D81;
  font-weight: 300;
  font-size: 18px;
  display: inline-block;
  padding: 7px;
  outline: none;
  text-decoration: none;
}
.main-nav__link:hover {
  color: #D39079;
}
@media (min-width: 650px) {
  .main-nav__link {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .main-nav__link {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .main-nav__link {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .main-nav__link {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .main-nav__link {
    font-size: 22px;
  }
}
@media (min-width: 1500px) {
  .main-nav__link {
    font-size: 24px;
  }
}

.footer-nav {
  text-align: center;
}
@media (min-width: 650px) {
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .footer-nav {
    text-align: left;
  }
}

@media (min-width: 650px) {
  .footer-nav__item {
    width: 50%;
  }
}

.footer-nav__link {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  transition: all 0.2s linear;
}
.footer-nav__link:hover {
  color: #D39079;
}

/***** LISTS *****/
.horizontal-items > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
}
.horizontal-items > li:first-child {
  padding-left: 0;
}
.horizontal-items > li:last-child {
  padding-right: 0;
}

.social-media {
  text-align: center;
}
@media (min-width: 768px) {
  .social-media {
    text-align: left;
  }
}
.social-media > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px;
}
.social-media > li:first-child {
  padding-left: 0;
}
.social-media > li:last-child {
  padding-right: 0;
}

@media (max-width: 991px) {
  .social-media--vertical > li {
    display: block;
    padding: 8px 0;
  }
}

.horizontal-links {
  text-align: center;
}
@media (min-width: 992px) {
  .horizontal-links {
    text-align: left;
  }
}
.horizontal-links div {
  cursor: pointer;
}
.horizontal-links a {
  display: inline-block;
}
.horizontal-links > li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.horizontal-links > li:last-child {
  margin-right: 0;
}

/***** PICTURES *****/
/***** TEXT *****/
.failure {
  color: #DB2B39;
}

.text {
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.text h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0 0 0;
  margin: 0;
}
@media (min-width: 1700px) {
  .text h3 {
    font-size: 18px;
    padding: 32px 0 8px 0;
  }
}
.text h3:first-child {
  padding-top: 0;
}
.text p {
  padding: 10px 0;
}
.text p:first-child {
  padding-top: 0;
}
.text p:last-child {
  padding-bottom: 0;
}
.text img {
  width: auto;
  display: block;
}
.text ul,
.text ol {
  padding: 0 0 16px 20px;
}
.text ul > li,
.text ol > li {
  position: relative;
  padding: 3px 0 3px 28px;
}
@media (min-width: 1700px) {
  .text ul > li,
  .text ol > li {
    padding: 5px 0 5px 32px;
  }
}
.text ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 10px;
  width: 6px;
  height: 6px;
  background: #1A3D81;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (min-width: 1100px) {
  .text ul > li:before {
    top: 14px;
  }
}
.text ol {
  counter-reset: stdCounter;
}
.text ol > li:before {
  content: counters(stdCounter, ".") ".";
  counter-increment: stdCounter;
  width: 20px;
  text-align: right;
  top: 3px;
  position: absolute;
  left: 0;
}
@media (min-width: 1700px) {
  .text ol > li:before {
    width: 24px;
    top: 5px;
  }
}
.text ol > li::marker {
  content: "";
}
.text ol > li > ol {
  counter-reset: stdCounterInner;
}
.text ol > li > ol > li:before {
  content: counters(stdCounterInner, ".", lower-latin) ".";
  counter-increment: stdCounterInner;
}
.text ol > li > ol > li > ol {
  counter-reset: deepCounterInner;
}
.text ol > li > ol > li > ol > li:before {
  content: counters(deepCounterInner, ".", lower-roman) ".";
  counter-increment: deepCounterInner;
}
.text img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.text--special {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.text--uppercase {
  text-transform: uppercase;
}

.text--justify {
  text-align: justify;
}
.text--justify p {
  text-align: justify;
}

.text--strong {
  font-weight: 500;
}
.text--strong p {
  font-weight: 500;
}

.text--large {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1300px) {
  .text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .text--large {
    font-size: 24px;
    line-height: 32px;
  }
}

.text--small {
  font-size: 12px;
  letter-spacing: 0;
}
@media (min-width: 370px) {
  .text--small {
    letter-spacing: 0.02em;
    font-size: 14px;
  }
}

.text--very-small {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.text--independent {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

/***** CONTAINERS *****/
.site-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.horizontal-menu__core {
  display: flex;
}
.horizontal-menu__core > li {
  padding: 0 6px;
}
@media (min-width: 1300px) {
  .horizontal-menu__core > li {
    padding: 0 10px;
  }
}

.info-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1100px) {
  .info-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

.info-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 1100px) {
  .info-block {
    align-items: flex-end;
  }
}

.created-by {
  text-align: center;
}
@media (min-width: 768px) {
  .created-by {
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .created-by {
    display: flex;
    align-items: center;
  }
}
.created-by__description {
  padding: 0 0 8px 0;
  font-size: 12px;
}
@media (min-width: 1100px) {
  .created-by__description {
    padding: 0 12px 0 0;
  }
}
.created-by__logo {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .created-by__logo {
    margin: 0;
  }
}

.std-simple-bookmark {
  display: inline-block;
  font-family: hero-new, sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 0 0 13px 0;
  position: relative;
}
.std-simple-bookmark:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1A3D81;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.std-simple-bookmark.active:before {
  height: 9px;
}

.std-dropdown__icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  margin: -2px 0 0 0;
}
.std-dropdown__title {
  font-weight: 300;
  text-align: left;
}
.std-dropdown__list-container {
  border-color: transparent;
  width: 100%;
  border: none;
  background: #fff;
  padding: 10px 0;
  -webkit-box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
  box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
}
.std-dropdown__header-inner {
  display: flex;
  justify-content: space-between;
}

.std-dropdown-item input:checked ~ .std-dropdown-item__wrapper {
  background: #1A3D81;
}
.std-dropdown-item__wrapper {
  padding: 8px 20px;
  font-size: 16px;
}

.std-dropdown--underline {
  position: relative;
}
.std-dropdown--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #D39079;
}

.simple-carousel {
  position: relative;
  overflow: hidden;
}
.simple-carousel__wrapper {
  padding: 20px 0;
  position: relative;
  z-index: 4;
}
.simple-carousel__inner {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1500px) {
  .simple-carousel__inner {
    max-width: 1200px;
  }
}
.video {
  position: relative;
  width: 100%;
  height: 100%;
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__file {
  width: 100%;
  height: 100%;
}
.video__play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  z-index: 1;
  transition: all 0.75s ease;
}
.video__play:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border: 1.5px solid #1A3D81;
  border-radius: 99999px 0 0 0;
}
.video__fullscreen-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 21px;
  height: 21px;
  z-index: 1;
  background: url("../img/icons/icon-fullscreen.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .video__fullscreen-icon {
    bottom: 20px;
    left: 20px;
    width: 23px;
    height: 23px;
  }
}
@media (min-width: 992px) {
  .video__fullscreen-icon {
    bottom: 27px;
    left: 27px;
    width: 29px;
    height: 29px;
  }
}
.video__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/video-cover.jpg") no-repeat center;
  background-size: cover;
  z-index: 0;
  transition: all 0.75s ease;
}
.video--cover {
  padding-bottom: 60%;
}
@media (min-width: 768px) {
  .video--cover {
    padding-bottom: 51%;
  }
}
@media (min-width: 1500px) {
  .video--cover {
    padding-bottom: 42%;
  }
}
@media (min-width: 1700px) {
  .video--cover {
    padding-bottom: 35%;
  }
}
.video--cover .video__file video {
  width: 106%;
  margin-left: -3%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video--with-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.video--playing .video__play,
.video--playing .video__cover {
  opacity: 0;
  visibility: hidden;
}
.video--fullscreen .video__file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video--fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video--fullscreen .video__actions {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #D39079;
  display: flex;
  align-items: center;
  text-align: center;
}
.video--fullscreen .video__headphones-toggle {
  width: 100px;
}
.video--fullscreen .video__play-toggle {
  margin-right: 30px;
}

.section-video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video--flat {
  padding-bottom: 42%;
}

.video-with-cover {
  position: relative;
}
.video-with-cover__cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
}

/** containers-end **/
/***** MENU *****/
.menu-toggler-container {
  cursor: pointer;
}

#menu-toggler {
  position: fixed;
  top: 54px;
  right: 26px;
  z-index: 9000;
  display: block;
}
@media (min-width: 650px) {
  #menu-toggler {
    top: 52px;
    right: 26px;
  }
}
@media (min-width: 1100px) {
  #menu-toggler {
    display: none;
  }
}
@media (min-width: 1300px) {
  #menu-toggler {
    top: 52px;
    right: 36px;
  }
}
@media (min-width: 992px) {
  .menu {
    text-align: left;
  }
}
.menu__core {
  list-style-type: none;
}
.menu__core > li {
  display: block;
  padding: 6px 0;
}
@media (min-width: 768px) {
  .menu__core > li:first-child {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .menu__core > li:last-child {
    padding-bottom: 0;
  }
}

.menu--large .menu__core > li {
  padding: 12px 0;
}
@media (min-width: 1300px) {
  .menu--large .menu__core > li {
    padding: 16px 0;
  }
}

.menu-item {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  background-color: transparent;
  border-radius: 3px;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
  font-weight: 300 !important;
  padding: 0 10px;
  padding-left: 0;
}
@media (min-width: 1100px) {
  .menu-item {
    padding: 0 10px;
    text-transform: uppercase;
    height: 36px;
  }
}
@media (min-width: 1300px) {
  .menu-item {
    padding: 0 16px;
    font-size: 14px;
  }
}
.menu-item::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.2s linear;
  z-index: -1;
}
@media (min-width: 1100px) {
  .menu-item::before {
    display: block;
  }
}
.menu-item:hover {
  color: #D39079;
}
@media (min-width: 1100px) {
  .menu-item:hover {
    color: #000;
    -webkit-box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.08);
  }
}
.menu-item:hover::before {
  left: 0;
}
.menu-item--large {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 1300px) {
  .menu-item--large {
    font-size: 20px;
  }
}
.menu-item--big {
  font-size: 24px;
  font-weight: 400;
  border: none;
  background-color: transparent;
}
@media (min-width: 768px) {
  .menu-item--big {
    font-size: 28px;
  }
}
@media (min-width: 1300px) {
  .menu-item--big {
    font-size: 40px;
  }
}
.menu-item--primary-color {
  color: #1A3D81;
}

button.menu-item,
button.dropdown__button {
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0 10px;
  padding-left: 0;
  vertical-align: baseline;
  text-align: left;
}
@media (min-width: 1100px) {
  button.menu-item,
  button.dropdown__button {
    padding: 0 10px;
  }
}
@media (min-width: 1300px) {
  button.menu-item,
  button.dropdown__button {
    padding: 0 16px;
  }
}

.menu-item--dark {
  color: #000;
}
.menu-item--dark:hover, .menu-item--dark:focus {
  color: #1A3D81;
}

.menu-item--contrast {
  color: #000;
}
.menu-item--contrast:hover, .menu-item--contrast:focus {
  color: #fff;
}

@media (min-width: 650px) {
  .menu-groups {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 650px) {
  .menu-groups__item {
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .menu-groups__item {
    padding: 0 40px;
  }
}
.menu-groups__item:first-child {
  padding-left: 0;
}
.menu-groups__item:last-child {
  padding-right: 0;
}

/* menu-end */
/***** FORMS *****/
.form {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .form {
    margin: 0;
  }
}
@media (min-width: 1100px) {
  .form {
    max-width: 420px;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .form {
    max-width: 520px;
  }
}
.form__wrapper {
  border: 0;
  display: block;
}
.form__row {
  display: flex;
  align-items: center;
}
.form__group .form__row {
  margin-bottom: 0;
}
.form__conditions {
  margin-top: 10px;
}
.form__field-container {
  margin-right: 20px;
  margin-bottom: 35px;
  width: 100%;
}
.form__field-container:last-child {
  margin-right: 0;
}
.form__field-container--zero-margin {
  margin: 0;
}
.form__button-container {
  display: inline-block;
  margin-top: 25px;
  margin-left: auto;
}
.form__button-container button {
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  text-align: left;
}
.form__header {
  padding: 0 0 16px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .form__header {
    text-align: left;
  }
}
.form__button-row-button-container {
  text-align: center;
  padding: 20px 0 0 0;
}
@media (min-width: 768px) {
  .form__button-row-button-container {
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .form__button-row-button-container {
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .form__button-row {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 1300px) {
  .form__button-row-field {
    padding: 0 16px 0 0;
    width: 265px;
  }
}
@media (min-width: 1700px) {
  .form__button-row-field {
    padding-right: 24px;
  }
}
.form__info-container {
  padding: 20px 0 0 0;
}

.form-field {
  display: block;
  position: relative;
}
.form-field__core {
  display: block;
  padding: 8px 0;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1px solid #1A3D81;
  color: #1A3D81;
  position: relative;
  font-size: 14px;
  z-index: 5;
  font-family: hero-new, sans-serif;
  background: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  .form-field__core {
    text-align: left;
  }
}
.form-field__core:focus {
  border-color: #043F3C;
}
.form-field__core--textarea {
  border: 1px solid #1A3D81;
  height: 140px;
  padding: 24px 10px 8px 10px;
  resize: vertical;
  position: relative;
}
.form-field__title {
  color: #1A3D81;
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  opacity: 1;
  text-align: left;
  position: absolute;
  top: -10px;
  left: 0px;
}
@media (min-width: 768px) {
  .form-field__title {
    text-align: left;
  }
}
.form-field--textarea .form-field__title {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: 24px;
  padding-top: 4px;
  padding-left: 10px;
  z-index: 10;
  background-color: white;
}
.form-field.error .form-field__core {
  border-color: #DB2B39;
}

.form-field--light .form-field__core {
  color: #fff;
  border-color: #fff;
}
.form-field--light .form-field__core::-webkit-input-placeholder {
  color: #fff;
}
.form-field--light .form-field__core:-moz-placeholder {
  color: #fff;
}
.form-field--light .form-field__core::-moz-placeholder {
  color: #fff;
}
.form-field--light .form-field__core:-ms-input-placeholder {
  color: #fff;
}

/***** BUTTONS *****/
.button-container {
  text-align: center;
  padding: 48px 0 0 0;
}

.button-container--type-01 {
  padding: 30px 0 0 0;
}
@media (min-width: 768px) {
  .button-container--type-01 {
    text-align: left;
  }
}

@media (min-width: 420px) {
  .button-container--type-02 {
    text-align: right;
  }
}

.circle-button {
  font-size: 14px;
  text-align: center;
  position: relative;
  color: #fff;
  z-index: 1;
}

.button-wrapper {
  display: inline-block;
  position: relative;
}
.button-wrapper__inner {
  position: relative;
}
.button-wrapper__spinner {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 0 0 10px;
  -webkit-transform: translateZ(0);
  z-index: 2;
  text-align: center;
}

.button {
  clear: both;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 -3px;
  padding: 0;
  cursor: pointer;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  font-family: hero-new, sans-serif;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: none;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  white-space: nowrap;
}
@media (min-width: 1700px) {
  .button {
    font-size: 16px;
  }
}
.button .button__wrapper {
  padding: 4px 20px 6px 20px;
  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;
}
.button .button__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -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: 2;
  background: #043F3C;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.button .button__wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: #1A3D81;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button__inner {
  position: relative;
  z-index: 10;
}
.button:hover .button__wrapper:after {
  top: 0;
}
.button--outer-light {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  border-radius: 16px;
}
.button--outer-light .button__wrapper {
  padding: 8px 20px 8px 20px;
}
.button--outer-light .button__wrapper::before {
  background: transparent;
}
.button--outer-light .button__wrapper::after {
  top: 0;
  left: 100%;
  background: #fff;
}
.button--outer-light:hover .button__wrapper::after {
  left: 0;
}
.button--outer-light:hover .button__inner {
  color: #000;
}
.button.button--primary-color-second {
  color: #D39079;
  border: 1px solid #D39079;
}

.button--light {
  color: #000;
}
.button--light .button__wrapper:before {
  background: #fff;
}

.button--dark {
  color: #000;
  border: 1px solid #000;
}

.button--stroke {
  color: #043F3C;
}
.button--stroke .button__wrapper:before {
  border: 1px solid #043F3C;
  background: none;
}
.button--stroke .button__wrapper:after {
  background: #043F3C;
}
.button--stroke:hover, .button--stroke:focus {
  color: #fff;
}

.button--stroke.button--light {
  color: #fff;
}
.button--stroke.button--light .button__wrapper:before {
  border: 1px solid #fff;
  background: none;
}
.button--stroke.button--light .button__wrapper:after {
  background: #fff;
}
.button--stroke.button--light:hover, .button--stroke.button--light:focus {
  color: #043F3C;
}

.button--full-width {
  display: block;
}

/***** ICONS *****/
.icon-social {
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
}
.icon-social path,
.icon-social circle {
  transition: fill 0.35s ease, stroke 0.35s ease;
}
.icon-social:hover path {
  fill: #D39079;
}
.icon-social:hover circle {
  stroke: #D39079;
}

.icon-contact {
  display: block;
  width: 35px;
  height: 35px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-phone {
  background-image: url("../img/icons/icon-phone.svg");
}

.icon-email {
  background-image: url("../img/icons/icon-email.svg");
}

.icon-marker {
  background-image: url("../img/icons/icon-marker.svg");
}

.icon-close {
  width: 24px;
  height: 24px;
  position: relative;
}
.icon-close:before, .icon-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #D39079;
}
.icon-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.icon-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/***** SECTIONS *****/
.site-section {
  position: relative;
}
.site-section__layer {
  padding: 0 26px;
}
@media (min-width: 650px) {
  .site-section__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer {
    padding: 0 80px;
  }
}
.site-section__wrapper {
  padding: 45px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .site-section__wrapper {
    padding: 70px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper {
    padding: 80px 0;
  }
}
.site-section__wrapper--more-top-space {
  padding: 60px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper--more-top-space {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--more-top-space {
    padding: 90px 0;
  }
}
@media (min-width: 992px) {
  .site-section__wrapper--more-top-space {
    padding: 90px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--more-top-space {
    padding: 110px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--high {
    padding: 100px 0;
  }
}
@media (min-width: 1700px) {
  .site-section__wrapper--high {
    padding: 160px 0;
  }
}
.site-section__wrapper--only-top {
  padding-bottom: 0;
}
.site-section__wrapper--only-bottom {
  padding-top: 0;
}
.site-section__wrapper--max-width {
  width: 100%;
}
.site-section__wrapper--top-space-for-navbar {
  padding-top: 159px;
}
@media (min-width: 650px) {
  .site-section__wrapper--top-space-for-navbar {
    padding-top: 174px;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--top-space-for-navbar {
    padding-top: 184px;
  }
}
@media (min-width: 992px) {
  .site-section__wrapper--top-space-for-navbar {
    padding-top: 184px;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--top-space-for-navbar {
    padding-top: 204px;
  }
}
.site-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .site-section__inner {
    max-width: 850px;
  }
}
@media (min-width: 1100px) {
  .site-section__inner {
    max-width: 950px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner {
    max-width: 1100px;
  }
}
@media (min-width: 1700px) {
  .site-section__inner {
    max-width: 1300px;
  }
}
@media (min-width: 1100px) {
  .site-section__inner--wide {
    max-width: 860px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner--wide {
    max-width: 950px;
  }
}
@media (min-width: 1700px) {
  .site-section__inner--wide {
    max-width: 1200px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner--more-bottom-space {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .site-section__outer {
    margin: 0 5vw;
  }
}
.site-section__outer--only-left {
  margin-right: 0 !important;
}
.site-section__container {
  max-width: 800px;
  margin-inline: auto;
}
.site-section__raw {
  padding: 32px 0;
}
.site-section__raw--only-bottom {
  padding-top: 0;
}
.site-section__raw--only-top {
  padding-bottom: 0;
}

.site-section--space-for-menu {
  padding-top: 180px;
}
@media (min-width: 1300px) {
  .site-section--space-for-menu {
    padding-top: 250px;
  }
}

.site-section--bg-light-rose {
  background-color: rgba(242, 233, 233, 0.3882352941);
}

@media (min-width: 768px) {
  .site-section__layer--mobile {
    padding: 0 0;
  }
}

@media (min-width: 768px) {
  .site-section__layer--inner-right {
    padding-right: 100px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--inner-right {
    padding-right: 200px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--inner-right {
    padding-right: 300px;
  }
}

@media (min-width: 768px) {
  .site-section__layer--inner-left {
    padding-left: 100px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--inner-left {
    padding-left: 200px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--inner-left {
    padding-left: 300px;
  }
}

.site-section__layer--only-left-mobile {
  padding-right: 0;
}
@media (min-width: 768px) {
  .site-section__layer--only-left-mobile {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--only-left-mobile {
    padding: 0 80px;
  }
}

.site-section__decoration-image-center-right {
  position: absolute;
  right: 0;
  top: 50%;
  width: 160px;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 992px) {
  .site-section__decoration-image-center-right {
    display: block;
  }
}

.std-text--center {
  width: 100%;
}
.std-text--center .site-section__layer {
  width: 100%;
  box-sizing: border-box;
}

.icon-hamburger {
  transform: scale(-1, 1) translateX(0px);
  transition: transform 0.4s ease;
}
.icon-hamburger.open {
  transform: scale(-1, 1) translateX(80px);
}
@media (min-width: 768px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(102px);
  }
}
@media (min-width: 1300px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(130px);
  }
}
@media (min-width: 1700px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(160px);
  }
}
.icon-hamburger .path-line {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  transition: stroke-dasharray 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-hamburger .path-line-1 {
  stroke-dasharray: 60 207;
}
.icon-hamburger .path-line-2 {
  stroke-dasharray: 30 60;
}
.icon-hamburger .path-line-3 {
  stroke-dasharray: 0 207;
}
.icon-hamburger.open .path-line-1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.icon-hamburger.open .path-line-2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.icon-hamburger.open .path-line-3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.simple-box__header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .simple-box__header {
    margin-bottom: 30px;
  }
}

.simple-box__footer {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .simple-box__footer {
    margin-top: 45px;
  }
}

.simple-box__button {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 550px) {
  .simple-box__button {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.player {
  z-index: -1;
}

.player .vp-unmute {
  z-index: -1;
}

.menu-toggler {
  display: block;
  cursor: pointer;
}
.menu-toggler * {
  box-sizing: border-box;
}
.menu-toggler.open svg {
  stroke: #D39079;
}
.menu-toggler.open .menu-toggler__wrapper {
  width: 20px;
}
.menu-toggler.open .menu-toggler__wrapper div {
  transform: rotate(90deg);
}
.menu-toggler.open .menu-toggler__wrapper div span:before, .menu-toggler.open .menu-toggler__wrapper div span:after {
  background: #D39079;
}
.menu-toggler.open .menu-toggler__wrapper div span:first-child {
  transform: translateX(0px);
}
.menu-toggler.open .menu-toggler__wrapper div span:first-child:before {
  transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
}
.menu-toggler.open .menu-toggler__wrapper div span:first-child:after {
  transform: rotate(-45deg) translate(-1.2px, -2px) scaleX(1.05);
}
.menu-toggler.open .menu-toggler__wrapper div span:last-child:before {
  opacity: 1;
  transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
}
.menu-toggler.open .menu-toggler__wrapper div span:last-child:after {
  opacity: 1;
  transform: rotate(45deg) translate(-1.2px, 2px) scaleX(1.05);
}
.menu-toggler.open .menu-toggler__wrapper svg {
  stroke-dashoffset: 62;
  stroke-dasharray: 0 82.801 62 82.801;
  transform: rotate(90deg);
  stroke: #D39079;
}
.menu-toggler.open .menu-toggler__wrapper svg:nth-child(3) {
  transform: rotate(270deg);
}
.menu-toggler .menu-toggler__wrapper {
  width: 40px;
  height: 14px;
  position: relative;
  transition: all 0.4s ease;
}
.menu-toggler .menu-toggler__wrapper div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease;
}
.menu-toggler .menu-toggler__wrapper div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  transition: transform 0.5s ease;
}
.menu-toggler .menu-toggler__wrapper div span:first-child {
  top: 0;
  transform: translateX(-10px);
}
.menu-toggler .menu-toggler__wrapper div span:first-child:before, .menu-toggler .menu-toggler__wrapper div span:first-child:after {
  top: 0;
}
.menu-toggler .menu-toggler__wrapper div span:last-child {
  bottom: 0;
}
.menu-toggler .menu-toggler__wrapper div span:last-child:before, .menu-toggler .menu-toggler__wrapper div span:last-child:after {
  bottom: 0;
  opacity: 0;
}
.menu-toggler .menu-toggler__wrapper div span:before, .menu-toggler .menu-toggler__wrapper div span:after {
  content: "";
  display: block;
  width: 47%;
  height: 1px;
  border-radius: 1px;
  background: #000;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s ease, border-radius 0.3s ease, background 0.4s ease, opacity 0.4s ease;
}
.menu-toggler .menu-toggler__wrapper div span:before {
  left: 0;
  transform-origin: 0 50%;
  transform: translate(1px, 0) scaleX(1.1);
}
.menu-toggler .menu-toggler__wrapper div span:after {
  right: 0;
  transform-origin: 100% 50%;
  transform: translate(-1px, 0) scaleX(1.1);
}
.menu-toggler .menu-toggler__wrapper svg {
  display: block;
  fill: none;
  stroke: #000;
  stroke-width: 1px;
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  stroke-dasharray: 0 82.801 8 82.801;
  stroke-dashoffset: 82.801;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  transform: scale(1);
  transition: stroke-dashoffset 0.5s ease, stroke-dasharray 0.6s ease, transform 0.5s ease, stroke 0.4s ease;
}
.menu-toggler .menu-toggler__wrapper svg:nth-child(3) {
  transform: rotate(180deg) scale(1);
}
.menu-toggler--dark .menu-toggler__wrapper svg {
  stroke: #000;
}
.menu-toggler--dark .menu-toggler__wrapper div span:before,
.menu-toggler--dark .menu-toggler__wrapper div span:after {
  background-color: #000;
}
.menu-toggler--light .menu-toggler__wrapper svg {
  stroke: #fff;
}
.menu-toggler--light .menu-toggler__wrapper div span:before,
.menu-toggler--light .menu-toggler__wrapper div span:after {
  background-color: #fff;
}

.image-container img {
  width: 100%;
}

.flex-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .flex-box {
    justify-content: center;
    flex-direction: row;
  }
}
.flex-box * {
  box-sizing: border-box;
}
.flex-box__wrapper-button {
  margin-top: 30px;
}
.flex-box__item--video {
  width: 100%;
}
.flex-box--column-reverse {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .flex-box--column-reverse {
    flex-direction: row;
  }
}
.flex-box--align-start {
  align-items: flex-start;
}
.flex-box--with-gap {
  gap: 30px;
}
.flex-box--with-more-gap {
  gap: 30px;
}
@media (min-width: 992px) {
  .flex-box--with-more-gap {
    gap: 40px;
  }
}
@media (min-width: 1500px) {
  .flex-box--with-more-gap {
    gap: 64px;
  }
}

.flex-box__item--flex-1 {
  flex: 1;
  width: 100%;
}

.flex-box__item--flex-2 {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-box__item--flex-2 {
    flex: 2;
  }
}

.accordeon__item {
  margin-bottom: 20px;
  position: relative;
}

.accordeon__question {
  border-bottom: 1px solid #1A3D81;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
}
.accordeon__question:after {
  content: "";
  width: 46px;
  height: 46px;
  display: inline-block;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 0;
  background: url("../img/icons/icon-down.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.35s ease;
}

.accordeon__item.active .accordeon__question:after {
  transform: translateY(50%) rotate(180deg);
}

.accordeon__answer {
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .accordeon__answer {
    display: flex;
    align-items: center;
  }
}

.accordeon--numbered .accordeon__list {
  counter-reset: faq;
}
.accordeon--numbered .accordeon__item {
  margin-bottom: 0;
  counter-increment: faq;
}
.accordeon--numbered .accordeon__item .title-md-04 {
  padding-left: 20px;
}
.accordeon--numbered .accordeon__question {
  padding: 20px 54px 20px 0;
}
.accordeon--numbered .accordeon__question:before {
  content: counters(faq, ".") ".";
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  margin-top: 1px;
}

.circle-button-container {
  position: relative;
  margin-top: 45px;
  text-align: right;
}
@media (min-width: 768px) {
  .circle-button-container {
    margin: auto 0 auto 45px;
    position: relative;
  }
}
.circle-button-container .circle-button {
  padding: 25px 15px;
  display: block;
}
.circle-button-container .button-shape {
  position: absolute;
  bottom: -26px;
  right: 0;
  z-index: -1;
  bottom: unset;
  right: unset;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle-button-container .button-shape path {
  transition: fill 0.35s ease;
}
.circle-button-container:hover .button-shape path {
  fill: #D39079;
}
.circle-button-container--no-space {
  margin: 0;
}

.circle-button-container--right {
  text-align: center;
  position: absolute;
  top: 60%;
  z-index: 2;
  right: -2%;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .circle-button-container--right {
    margin: auto 0 auto 0;
    top: 50%;
    right: -10%;
  }
}
@media (min-width: 1300px) {
  .circle-button-container--right {
    top: 60%;
  }
}
.circle-button-container--right .button-shape {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.features {
  text-align: center;
  display: inline-block;
}

.features__icon {
  width: 90px;
  height: 64px;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
  background-position: 50% 50%;
}
.features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features__text-contaoner {
  margin-bottom: 20px;
  margin-top: 20px;
}

.features__icon--flower {
  background-image: url("../img/icons/icon-feature-01.svg");
}

.features__icon--lighting {
  background-image: url("../img/icons/icon-feature-02.svg");
}

.features__icon--1 {
  background-image: url("../img/icons/icon-feature-01.svg");
}

.features__icon--2 {
  background-image: url("../img/icons/icon-feature-02.svg");
}

.features__icon--3 {
  background-image: url("../img/icons/icon-feature-03.svg");
}

.features__icon--4 {
  background-image: url("../img/icons/icon-feature-04.svg");
}

.features__icon--5 {
  background-image: url("../img/icons/icon-feature-05.svg");
}

.features__title {
  font-size: 22px;
  margin-top: 20px;
}

.features__text {
  font-size: 14px;
  line-height: 20px;
}

.slider-nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
}
.slider-nav .slider-nav__left,
.slider-nav .slider-nav__right {
  cursor: pointer;
}
.slider-nav__icon {
  width: 32px;
  height: 14px;
}

.slider-nav__current {
  margin-left: 9px;
  margin-right: 9px;
}

.employee-box {
  width: 100%;
  max-width: 300px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .employee-box {
    max-width: 200px;
  }
}
@media (min-width: 860px) {
  .employee-box {
    max-width: 250px;
  }
}
@media (min-width: 992px) {
  .employee-box {
    max-width: 320px;
  }
}
@media (min-width: 1100px) {
  .employee-box {
    max-width: 280px;
  }
}
@media (min-width: 1300px) {
  .employee-box {
    max-width: 340px;
  }
}
@media (min-width: 1500px) {
  .employee-box {
    max-width: 360px;
  }
}

.employee-box__image {
  max-width: 70%;
  margin: auto;
  position: relative;
}
@media (min-width: 768px) {
  .employee-box__image {
    max-width: 100%;
  }
}
.employee-box__image img {
  width: 100%;
}

.employee-box__title {
  margin-top: 35px;
}

.employee-box__subtitle {
  margin-top: 10px;
}

.read-more-container {
  cursor: pointer;
  display: block;
}

.read-more__button {
  width: 28px;
  height: 28px;
  position: relative;
  transition: all 0.25s ease;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .read-more__button {
    margin-top: 30px;
  }
}
.read-more__button:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 23%;
  width: 50%;
  height: 50%;
  border-left: 1.5px solid #D39079;
  border-bottom: 1.5px solid #D39079;
  transform: rotate(-45deg) perspective(10px);
  transition: transform 0.35s ease;
}
.read-more__button:hover {
  transform: scale(1.05) perspective(10px);
}

.read-more__content {
  transition: opacity 0.35s ease;
  margin-top: 15px;
}

.read-more.active .read-more__content {
  opacity: 1;
}
.read-more.active .read-more__button:after {
  top: 10%;
  transform: rotate(135deg) perspective(10px);
}

.single-checkbox {
  cursor: pointer;
}

.single-checkbox__inner {
  position: relative;
  text-align: left;
  display: flex;
  align-items: flex-start;
}

.single-checkbox__link {
  text-decoration: underline;
}

.single-checkbox__description {
  color: #1A3D81;
  padding: 0;
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  display: inline-block;
  transition: all 0.35s ease;
}
.single-checkbox__description:hover {
  border-bottom-color: #1A3D81;
}
.single-checkbox__description a {
  text-decoration: underline;
  color: inherit;
}
.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 {
  margin-right: 15px;
  margin-top: 2px;
}

.choice-field {
  display: block;
  cursor: pointer;
}

.choice-field__wrapper {
  border: 1px solid #1A3D81;
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}
.choice-field__wrapper:hover {
  border-color: #1A3D81;
}

.choice-field__inner {
  width: 11px;
  height: 11px;
  background: #1A3D81;
  opacity: 0;
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s 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: #1A3D81;
  background-color: #1A3D81;
}
.choice-field.error .choice-field__wrapper {
  border-color: #e9190f;
}

.contact-item {
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  color: #1A3D81;
}
.contact-item a {
  color: #1A3D81;
  text-decoration: underline;
  transition: all 0.25s ease;
}
.contact-item a:hover {
  color: #D39079;
}

.contact-item__group {
  margin-bottom: 20px;
}
.contact-item__group:last-child {
  margin-bottom: 0;
}
.contact-item__group .contact-item__title {
  margin-bottom: 15px;
}

.contact-item__icon {
  margin-right: 20px;
}

.creator {
  display: inline-flex;
  align-items: center;
}

.creator__text {
  margin-right: 15px;
  font-weight: 300;
  font-size: 10px;
  line-height: 14px;
}

.creator__logo {
  max-width: 125px;
}
.creator__logo svg {
  display: inherit;
  width: 100%;
}

.price-list {
  width: 100%;
  margin: auto;
}

.price-list__item {
  border-bottom: 1px solid #1A3D81;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-list__item:last-child {
  border: none;
}

.price-list__value {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.price-list__title .title-md-06 {
  margin-bottom: 15px;
}

.document-overlayer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("../img/decoration/shape-03.svg") no-repeat 0 0;
  background-size: 17%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .document-overlayer {
    background-size: 10%;
  }
}

.document-overlayer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  padding: 20px;
  z-index: 100;
}

.document-overlayer__main {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 990px;
  margin: auto;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .document-overlayer__main {
    padding: 50px;
  }
}

.document-overlayer__title {
  margin-bottom: 30px;
}

.document-overlayer__text {
  padding-left: 30px;
}
.document-overlayer__text .text {
  margin-bottom: 20px;
}
.document-overlayer__text:last-child {
  margin-bottom: 0;
}

.document-overlayer__text--numeric {
  counter-reset: document;
}
.document-overlayer__text--numeric .text {
  counter-increment: document;
  position: relative;
}
.document-overlayer__text--numeric .text:before {
  content: counters(document, ".") ")";
  position: absolute;
  top: 0;
  font-weight: 500;
  left: -30px;
}

.document-overlayer.document-overlayer--active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.employee-overlayer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.employee-overlayer__image {
  position: relative;
  width: 70%;
  max-width: 330px;
  margin: 20px auto 30px;
}
.employee-overlayer__image:before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  background: url("../img/decoration/shape-02.svg") no-repeat center;
  background-size: contain;
  top: -27%;
  left: -45%;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .employee-overlayer__image {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .employee-overlayer__image {
    margin-right: 75px;
  }
}
.employee-overlayer__image img {
  width: 100%;
}

.employee-overlayer__info {
  width: 100%;
  max-width: 560px;
}
@media (min-width: 768px) {
  .employee-overlayer__info {
    margin-right: auto;
  }
}

.employee-overlayer__name {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .employee-overlayer__name {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .employee-overlayer__name {
    text-align: left;
    padding-left: 135px;
  }
}
.employee-overlayer__name h3 {
  color: #D39079;
}

.employee-overlayer__item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .employee-overlayer__item {
    margin-bottom: 15px;
  }
}

.employee-overlayer__subtitle {
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .employee-overlayer__subtitle {
    min-width: 135px;
    text-align: right;
  }
}

.employee-overlayer__text {
  padding-left: 20px;
}
.employee-overlayer__text p {
  text-align: justify;
}
.employee-overlayer__text a {
  display: block;
  color: #1A3D81;
  outline: none;
  text-decoration: none;
  margin-bottom: 5px;
}

.employee-overlayer__main {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .employee-overlayer__main {
    flex-direction: row;
    padding: 50px;
    justify-content: center;
  }
}

.employee-overlayer.employee-overlayer--active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.employee-overlayer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  padding: 20px;
  z-index: 100;
}

.media-overlayer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.media-overlayer.media-overlayer--active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.media-overlayer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  padding: 20px;
  z-index: 100;
}

.my-overlayer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.my-overlayer--active {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.my-overlayer__decoration {
  width: 35%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url("../img/decoration/decoration-04.svg") no-repeat 0 100%;
  padding-bottom: 9%;
  background-size: contain;
  z-index: 5;
}

.my-overlayer__main {
  height: 100%;
  width: 100%;
}

.my-overlayer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  padding: 20px;
  z-index: 100;
}

.image-caption {
  text-align: center;
  margin-top: 25px;
}
.image-caption span {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.image-caption span:after {
  content: "|";
  margin-left: 20px;
  margin-right: 20px;
}
.image-caption span:last-child:after {
  display: none;
}

.button-irregular-shape {
  width: 85px;
  height: 66px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-irregular-shape__wrapper {
  z-index: 1;
  color: #fff;
}
.button-irregular-shape__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.4s ease-in-out;
}
.button-irregular-shape__image--default {
  background-image: url("../img/decoration/circle-shape.svg");
  opacity: 1;
}
.button-irregular-shape__image--hover {
  background-image: url("../img/decoration/circle-shape-cooper.svg");
  opacity: 0;
}
.button-irregular-shape:hover .button-irregular-shape__image--hover {
  opacity: 1;
}
.button-irregular-shape:hover .button-irregular-shape__image--default {
  opacity: 0;
}
.button-irregular-shape--with-after .button-irregular-shape__wrapper {
  margin-bottom: 6px;
}
.button-irregular-shape--with-after::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 13px;
  width: 44px;
  background-image: url("../img/icons/icon-arrow-white.svg");
  z-index: 1;
  background-repeat: no-repeat;
}

.image-container:hover .button-irregular-shape__image--default {
  opacity: 0;
}

.image-container:hover .button-irregular-shape__image--hover {
  opacity: 1;
}

.my-overlayer-01 .flex-box {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px 0;
  box-sizing: border-box;
  flex-direction: column-reverse;
  min-height: 100%;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .my-overlayer-01 .flex-box {
    flex-direction: row;
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .my-overlayer-01 .flex-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 40%;
    height: 100%;
  }
}
.my-overlayer-01 .flex-box__item {
  max-width: 1300px;
}
.my-overlayer-01 .flex-box__item:nth-child(1) {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .my-overlayer-01 .flex-box__item:nth-child(1) {
    width: 80%;
    position: relative;
    z-index: 10;
  }
}
@media (min-width: 992px) {
  .my-overlayer-01 .flex-box__item:nth-child(1) {
    margin-right: 100px;
  }
}
.my-overlayer-01 .flex-box__item:nth-child(2) {
  width: 90%;
}
@media (min-width: 768px) {
  .my-overlayer-01 .flex-box__item:nth-child(2) {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .my-overlayer-01 .flex-box__item:nth-child(2) {
    width: 40%;
    max-width: 500px;
  }
}
.my-overlayer-01 .slider-nav-container {
  margin-bottom: 60px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .my-overlayer-01 .slider-nav-container {
    margin-left: -35px;
  }
}
@media (min-width: 992px) {
  .my-overlayer-01 .slider-nav-container {
    margin-left: -5px;
  }
}
@media (min-width: 1300px) {
  .my-overlayer-01 .slider-nav-container {
    margin-left: -35px;
  }
}
@media (min-width: 1700px) {
  .my-overlayer-01 .slider-nav-container {
    margin-left: 35px;
  }
}
.my-overlayer-01 .slider-nav {
  justify-content: center;
}
@media (min-width: 768px) {
  .my-overlayer-01 .slider-nav {
    justify-content: flex-start;
  }
}
.my-overlayer-01 .slider-container {
  width: 100%;
}
.my-overlayer-01 .simple-box-container {
  max-width: 90%;
  margin: auto;
}
@media (min-width: 992px) {
  .my-overlayer-01 .simple-box-container {
    max-width: 600px;
    width: 600px;
  }
}
.my-overlayer-01 .slick-list {
  overflow: visible;
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .my-overlayer-01 .slick-list {
    margin: 0 -26px;
  }
}
.my-overlayer-01 .slick-slide {
  opacity: 0;
  transition: all 0.45s ease;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .my-overlayer-01 .slick-slide {
    margin: 0 26px;
  }
}
.my-overlayer-01 .slick-active {
  opacity: 1;
}
.my-overlayer-01 .title-container {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .my-overlayer-01 .title-container {
    text-align: left;
  }
}
.my-overlayer-01 .image-container {
  margin: auto;
  transition: box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.my-overlayer-01 .image-container img {
  width: 100%;
  box-shadow: 0 4px 27px rgba(0, 0, 0, 0.05);
  aspect-ratio: 600/400;
  object-fit: cover;
}

.section-01 {
  position: relative;
}
.section-01 .decoration-01-container {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: -1;
}
@media (min-width: 370px) {
  .section-01 .decoration-01-container {
    top: 30%;
  }
}
@media (min-width: 768px) {
  .section-01 .decoration-01-container {
    top: 60%;
  }
}
.section-01 .decoration-01 {
  padding-bottom: 150%;
  background: url("../img/decoration/shape-05.svg") no-repeat 0 50%;
  background-size: contain;
  width: 70px;
}
@media (min-width: 370px) {
  .section-01 .decoration-01 {
    width: 80px;
  }
}
@media (min-width: 768px) {
  .section-01 .decoration-01 {
    width: 100px;
    padding-bottom: 250%;
  }
}
@media (min-width: 992px) {
  .section-01 .decoration-01 {
    width: 155px;
  }
}
.section-01 .image-container {
  max-width: 70%;
  margin: auto;
}
@media (min-width: 768px) {
  .section-01 .image-container {
    max-width: 100%;
  }
}
.section-01 .simple-box-container {
  margin-top: 50px;
  max-width: 430px;
}
@media (min-width: 768px) {
  .section-01 .simple-box-container {
    margin: auto;
  }
}
.section-01 .simple-box__subtitle {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .section-01 .simple-box__subtitle {
    margin-bottom: 20px;
  }
}
.section-01 .simple-box__button {
  text-align: right;
}
@media (min-width: 1300px) {
  .section-01 .flex-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 550px) {
  .section-01 .flex-box__item:first-child {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .section-01 .flex-box__item:first-child {
    width: 40%;
    max-width: 390px;
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  .section-01 .flex-box__item:first-child {
    margin-right: 60px;
  }
}
@media (min-width: 1100px) {
  .section-01 .flex-box__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-01 .flex-box__item:first-child {
    margin-right: 120px;
  }
}
@media (min-width: 1700px) {
  .section-01 .flex-box__item:first-child {
    margin-right: 180px;
  }
}

.section-02 .section-header {
  text-align: right;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .section-02 .section-header {
    padding-bottom: 40px;
    padding-right: 35px;
  }
}
@media (min-width: 1300px) {
  .section-02 .section-header {
    padding-bottom: 80px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) {
  .section-02 .accordeoon-container {
    width: 400px;
  }
}
@media (min-width: 1100px) {
  .section-02 .accordeoon-container {
    width: 450px;
  }
}
@media (min-width: 1300px) {
  .section-02 .accordeoon-container {
    width: 600px;
  }
}
@media (min-width: 768px) {
  .section-02 .flex-box {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-02 .flex-box {
    justify-content: start;
    flex-direction: row;
  }
}
.section-02 .flex-box__item:first-child {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-02 .flex-box__item:first-child {
    margin: auto;
    margin-bottom: 45px;
  }
}
@media (min-width: 992px) {
  .section-02 .flex-box__item:first-child {
    margin-left: 0;
    margin-bottom: auto;
    margin-top: 0;
    max-width: 350px;
  }
}
.section-02 .flex-box__item:last-child {
  width: 100%;
}
@media (min-width: 992px) {
  .section-02 .flex-box__item:last-child {
    width: auto;
  }
}

.section-03 .site-section__video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #f5e0f1, #eed7e9);
}
@media (min-width: 992px) {
  .section-03 .site-section__video {
    height: 460px;
  }
}
@media (min-width: 1100px) {
  .section-03 .site-section__video {
    height: 482px;
  }
}
@media (min-width: 1300px) {
  .section-03 .site-section__video {
    height: 600px;
    bottom: 12px;
  }
}
@media (min-width: 1300px) {
  .section-03 .site-section__video--bottom-desktop {
    bottom: 0;
  }
}
.section-03 .video__file {
  height: auto;
}
@media (min-width: 768px) {
  .section-03 .video__file {
    height: 100%;
  }
}
.section-03 .section-header {
  position: relative;
  z-index: 1;
}
.section-03 .section-main {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .section-03 .section-main {
    margin-left: 50px;
  }
}
@media (min-width: 1100px) {
  .section-03 .section-main {
    margin-left: 100px;
    margin-top: 20px;
  }
}
.section-03 .text-container {
  max-width: 400px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .section-03 .text-container {
    max-width: 500px;
    margin-bottom: 50px;
  }
}

.section-04 {
  text-align: center;
}
@media (min-width: 1300px) {
  .section-04 {
    padding-top: 90px;
  }
}
.section-04 .site-section__inner {
  position: relative;
}
.section-04 .section-header {
  margin-bottom: 15px;
}
.section-04 .slider-container {
  position: relative;
}
.section-04 .slick-slider {
  padding-left: 50px;
  padding-right: 50px;
}
.section-04 .slick-list {
  overflow: visible;
  margin: 0 -15px;
  z-index: 100;
  cursor: grab;
}
@media (min-width: 992px) {
  .section-04 .slick-list {
    margin: 0 -26px;
  }
}
.section-04 .slick-slide {
  opacity: 0;
  transition: all 0.5s ease;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .section-04 .slick-slide {
    margin: 0 26px;
  }
}
.section-04 .slick-active {
  opacity: 1;
  transition: all 0.5s ease;
}
.section-04 .slick-cloned {
  transition: all 0.5s ease;
}
.section-04 .slider-nav-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  z-index: 101;
}
.section-04 .slider-nav {
  height: 100%;
}
.section-04 .slider-nav__left,
.section-04 .slider-nav__right {
  z-index: 10;
  position: absolute;
  top: 50%;
  transition: all 0.25s ease;
  cursor: pointer;
  transform: translateY(-50%);
}
.section-04 .slider-nav__left {
  left: 20px;
}
.section-04 .slider-nav__right {
  right: 20px;
}

.section-05 {
  background: url("../img/history-bg.png") no-repeat center;
  background-position: 0px 100%;
  background-size: 350px;
}
.section-05:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #ffdeeb;
  z-index: -1;
}
@media (min-width: 370px) {
  .section-05:before {
    height: 85%;
  }
}
@media (min-width: 370px) {
  .section-05 {
    background-size: 450px;
  }
}
@media (min-width: 420px) {
  .section-05 {
    background-size: 100%;
  }
}
@media (min-width: 768px) {
  .section-05 {
    height: 590px;
    background-position: 0px 100%;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .section-05 {
    height: 700px;
    background-size: cover;
    background-position: 50% 50%;
  }
}
@media (min-width: 1300px) {
  .section-05 {
    height: 940px;
    padding-bottom: 0;
  }
}
@media (min-width: 1700px) {
  .section-05 {
    height: 1080px;
  }
}
@media (min-width: 768px) {
  .section-05 .site-section__inner {
    padding-left: 50%;
  }
}
.section-05 .section-main {
  margin-top: 0px;
  margin-bottom: 175px;
}
@media (min-width: 550px) {
  .section-05 .section-main {
    margin-bottom: 200px;
    padding-left: 75px;
  }
}
@media (min-width: 650px) {
  .section-05 .section-main {
    margin-bottom: 250px;
    padding-left: 100px;
  }
}
@media (min-width: 768px) {
  .section-05 .section-main {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 0px;
  }
}
@media (min-width: 1300px) {
  .section-05 .section-main {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .section-05 .simple-box__header {
    margin-left: 50px;
  }
}
.section-05 .simple-box__subtitle {
  margin: 10px 0;
}
.section-05 .simple-box__description {
  max-width: 390px;
  max-height: 300px;
  position: relative;
  margin: auto;
}
@media (min-width: 768px) {
  .section-05 .simple-box__description {
    max-height: 220px;
  }
}
@media (min-width: 992px) {
  .section-05 .simple-box__description {
    margin-left: 0;
    max-width: 80%;
  }
}
@media (min-width: 1300px) {
  .section-05 .simple-box__description {
    max-height: 280px;
  }
}
.section-05 .slider-container {
  position: relative;
  max-width: 530px;
  padding-top: 40px;
  overflow: hidden;
}
.section-05 .slider-nav {
  position: absolute;
  top: 0;
  right: 0;
}
.section-05 .slider-nav__left,
.section-05 .slider-nav__right {
  display: inherit;
}
.section-05 .slick-list {
  overflow: visible;
  margin: 0 -15px;
  z-index: 100;
  cursor: grab;
}
@media (min-width: 992px) {
  .section-05 .slick-list {
    margin: 0 -26px;
  }
}
.section-05 .slick-slide {
  opacity: 0;
  transition: all 0.5s ease;
  margin: 0 20px;
}
@media (min-width: 768px) {
  .section-05 .slick-slide {
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  .section-05 .slick-slide {
    margin: 0 26px;
  }
}
.section-05 .slick-active,
.section-05 .slick-cloned {
  opacity: 1;
  transition: all 0.5s ease;
}
.section-05 .slick-cloned:nth-child(1) {
  opacity: 0;
}
.section-05 .mCSB_container {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .section-05 .mCSB_container {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .section-05 .mCSB_container {
    padding-left: 50px;
  }
}
.section-05 .mCSB_scrollTools {
  left: -5px;
}
@media (min-width: 992px) {
  .section-05 .mCSB_scrollTools {
    left: 0px;
  }
}
.section-05 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #1A3D81;
}

@media (min-width: 768px) {
  .section-06 {
    padding: 160px 0 60px 0;
  }
}
@media (min-width: 1100px) {
  .section-06 {
    padding: 160px 0 120px 0;
  }
}
.section-06 .section-main {
  margin-top: 12px;
}
@media (min-width: 1100px) {
  .section-06 .section-main {
    margin-top: 32px;
  }
}
@media (min-width: 1300px) {
  .section-06 .section-main {
    margin-top: 52px;
  }
}
.section-06 .flex-box {
  position: relative;
}
@media (min-width: 768px) {
  .section-06 .flex-box {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .section-06 .flex-box__item {
    width: 50%;
  }
}
.section-06 .flex-box__item:first-child {
  max-width: 300px;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .section-06 .flex-box__item:first-child {
    max-width: 350px;
    margin-right: auto;
  }
}
.section-06 .flex-box__item:first-child:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -20%;
  width: 120%;
  height: 100%;
}
@media (min-width: 768px) {
  .section-06 .flex-box__item:first-child:before {
    background: linear-gradient(to right, white 20%, rgba(255, 255, 255, 0));
  }
}
.section-06 .flex-box__item:last-child {
  max-width: 300px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section-06 .flex-box__item:last-child {
    position: absolute;
    right: -10px;
    max-width: initial;
    margin-right: 0;
    z-index: 0;
  }
}
@media (min-width: 992px) {
  .section-06 .flex-box__item:last-child {
    right: -10px;
  }
}
@media (min-width: 1300px) {
  .section-06 .flex-box__item:last-child {
    right: 0px;
  }
}
.section-06 .simple-box-container {
  max-width: 350px;
  margin: auto;
}
@media (min-width: 992px) {
  .section-06 .simple-box-container {
    margin-left: 0;
  }
}
.section-06 .slider-nav-container {
  position: absolute;
  top: 50%;
  width: 100%;
}
@media (min-width: 480px) {
  .section-06 .slider-nav-container {
    width: 80%;
  }
}
@media (min-width: 1300px) {
  .section-06 .slider-nav-container {
    margin-top: 100px;
  }
}
.section-06 .slider-nav {
  justify-content: space-between;
}
@media (min-width: 768px) {
  .section-06 .slider-nav {
    justify-content: flex-start;
  }
}
.section-06 .employee-box {
  margin: 0 auto;
  max-width: 75%;
  position: relative;
}
@media (min-width: 370px) {
  .section-06 .employee-box {
    max-width: 85%;
  }
}
@media (min-width: 768px) {
  .section-06 .employee-box {
    max-width: 100%;
  }
}
.section-06 .slick-list {
  overflow: visible;
  margin: 0 -45px;
}
@media (min-width: 992px) {
  .section-06 .slick-list {
    margin: 0 -25px;
  }
}
@media (min-width: 1100px) {
  .section-06 .slick-list {
    margin: 0 -40px;
  }
}
@media (min-width: 1600px) {
  .section-06 .slick-list {
    margin-top: 80px;
  }
}
.section-06 .slick-slide {
  opacity: 0;
  width: 300px;
  transition: all 0.45s ease;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .section-06 .slick-slide {
    margin: 0 25px;
  }
}
@media (min-width: 1100px) {
  .section-06 .slick-slide {
    margin: 0 40px;
  }
}
.section-06 .slick-active {
  opacity: 1;
}
@media (min-width: 768px) {
  .section-06 .slick-active {
    transform: translateY(-60px);
  }
}
.section-06 .slick-active + .slick-active {
  transform: scale(1);
}
.section-06 .slick-active + .slick-active + .slick-active {
  transform: scale(1);
}
.section-06 .slider-nav__left {
  z-index: 99;
}
.section-06 .slider-nav__right {
  z-index: 99;
}

@media (min-width: 992px) {
  .section-07 .section-header {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .section-07 .section-header {
    margin-bottom: 50px;
  }
}
.section-07 .image-container {
  max-width: 100%;
  margin: auto;
  min-width: 260px;
}
@media (min-width: 768px) {
  .section-07 .image-container {
    max-width: 100%;
  }
}
.section-07 .simple-box-container {
  max-width: 385px;
}
@media (min-width: 992px) {
  .section-07 .simple-box-container {
    margin-left: 60px;
  }
}
.section-07 .flex-box {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .section-07 .flex-box {
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .section-07 .flex-box__item {
    width: 45%;
  }
}
.section-07 .flex-box__item:first-child {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section-07 .flex-box__item:first-child {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .section-07 .flex-box__item:first-child {
    margin-right: 75px;
  }
}
@media (min-width: 1300px) {
  .section-07 .flex-box__item:first-child {
    margin-right: 100px;
  }
}
.section-07 .decoration-01-container {
  position: absolute;
  top: 65%;
  left: 0;
  z-index: -1;
}
@media (min-width: 370px) {
  .section-07 .decoration-01-container {
    top: 70%;
  }
}
@media (min-width: 768px) {
  .section-07 .decoration-01-container {
    top: 55%;
  }
}
.section-07 .decoration-01 {
  padding-bottom: 350%;
  background: url("../img/decoration/shape-06.svg") no-repeat 0 50%;
  background-size: contain;
  width: 70px;
}
@media (min-width: 370px) {
  .section-07 .decoration-01 {
    width: 80px;
  }
}
@media (min-width: 768px) {
  .section-07 .decoration-01 {
    width: 100px;
  }
}
@media (min-width: 992px) {
  .section-07 .decoration-01 {
    width: 155px;
  }
}

.section-08 {
  position: relative;
}
.section-08 .section-header__subtitle {
  margin-top: 25px;
  margin-left: 12px;
}
@media (min-width: 768px) {
  .section-08 .section-header__subtitle {
    margin-top: 50px;
  }
}
.section-08 .simple-box-container {
  max-width: 310px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-08 .simple-box-container {
    max-width: 380px;
    margin: 0;
  }
}
.section-08 .simple-box__header {
  position: relative;
}
.section-08 .simple-box__header:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -87px;
  left: -38px;
  width: 120px;
  height: 120px;
  background: url("../img/decoration/shape-00.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .section-08 .simple-box__header:before {
    top: -50px;
    left: -108px;
    width: 130px;
    height: 130px;
  }
}
.section-08 .simple-box__header:after {
  content: "KROK " counter(section);
  position: absolute;
  top: -30px;
  left: 0;
}
@media (min-width: 992px) {
  .section-08 .simple-box__header:after {
    top: 7px;
    letter-spacing: 0.15em;
    left: -75px;
  }
}
@media (min-width: 992px) {
  .section-08 .flex-box {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .section-08 .flex-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
}
.section-08 .flex-box__item {
  width: 100%;
}
@media (min-width: 768px) {
  .section-08 .flex-box__item {
    width: 50%;
  }
}
.section-08 .flex-box__item:first-child {
  max-width: 400px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-08 .flex-box__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-08 .flex-box__item:first-child {
    margin-right: 200px;
  }
}
.section-08 .flex-box__item:last-child {
  max-width: 460px;
}
@media (min-width: 992px) {
  .section-08 .flex-box__item:last-child {
    margin-top: 80px;
  }
}
.section-08 .slider-nav-container {
  position: relative;
  z-index: 10;
}
.section-08 .slider-nav {
  justify-content: flex-end;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-08 .slider-nav {
    margin-bottom: 65px;
  }
}
.section-08 .slider-container {
  counter-reset: section;
}
.section-08 .slick-list {
  overflow: visible;
  margin: 0 -15px;
  z-index: 100;
  cursor: grab;
}
@media (min-width: 992px) {
  .section-08 .slick-list {
    margin: 0 -26px;
  }
}
.section-08 .slick-slide {
  opacity: 0;
  transition: all 0.45s ease;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .section-08 .slick-slide {
    margin: 0 26px;
  }
}
.section-08 .slick-active {
  opacity: 1;
}
.section-08 .slider__item:not(.slick-cloned) {
  counter-increment: section;
}
.section-08 .arrow-link {
  justify-content: center;
}
@media (min-width: 768px) {
  .section-08 .arrow-link {
    justify-content: flex-start;
  }
}

.section-09 {
  background: url("../img/group-bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}
@media (min-width: 550px) {
  .section-09 {
    background-size: contain;
  }
}
@media (min-width: 768px) {
  .section-09 {
    background-size: cover;
  }
}
.section-09 .section-header {
  max-width: 300px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-09 .section-header {
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .section-09 .section-header {
    max-width: 600px;
  }
}
.section-09 .section-header__subtitle {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-09 .site-section__wrapper {
    padding: 7vw 0;
  }
}
@media (min-width: 1300px) {
  .section-09 .site-section__wrapper {
    padding: 8vw 0;
  }
}
@media (min-width: 1500px) {
  .section-09 .site-section__wrapper {
    padding: 9vw 0;
  }
}
@media (min-width: 1500px) {
  .section-09 .site-section__wrapper {
    padding: 10vw 0;
  }
}
.section-09 .decoration-01-container {
  position: absolute;
  top: 87%;
  left: 0;
  z-index: -1;
  width: 40%;
}
.section-09 .decoration-01 {
  width: 100%;
  padding-bottom: 40%;
  background: url("../img/decoration/shape-07.svg") no-repeat 0 0;
  background-size: contain;
}

.section-10 {
  position: relative;
}
.section-10 .section-header {
  text-align: left;
}
@media (min-width: 768px) {
  .section-10 .section-header {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .section-10 .section-header {
    max-width: 800px;
  }
}
@media (min-width: 1300px) {
  .section-10 .section-header {
    margin-bottom: 80px;
  }
}
.section-10 .accordeon-container {
  margin: auto;
  position: relative;
}
@media (min-width: 768px) {
  .section-10 .accordeon-container {
    max-height: 760px;
    width: 100%;
    max-width: 640px;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .section-10 .accordeon-container {
    max-width: 800px;
  }
}
.section-10 .accordeon__list {
  counter-reset: faq;
}
.section-10 .accordeon__item {
  margin-bottom: 0;
  counter-increment: faq;
}
.section-10 .accordeon__item .title-md-04 {
  padding-left: 20px;
}
.section-10 .accordeon__question {
  padding: 20px 44px 20px 0;
}
.section-10 .accordeon__question:before {
  content: counters(faq, ".") ".";
  display: inline-block;
  margin-right: 10px;
  position: absolute;
}
.section-10 .mCSB_container {
  padding-left: 20px;
}
.section-10 .mCSB_scrollTools {
  left: -15px;
}
@media (min-width: 992px) {
  .section-10 .mCSB_scrollTools {
    left: -35px;
  }
}
.section-10 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #1A3D81;
}

.section-11 {
  position: relative;
}
.section-11 .decoration-01-container {
  position: absolute;
  z-index: -1;
  bottom: -3%;
  left: 0;
  width: 80%;
}
@media (min-width: 550px) {
  .section-11 .decoration-01-container {
    bottom: -4%;
  }
}
@media (min-width: 768px) {
  .section-11 .decoration-01-container {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .section-11 .decoration-01-container {
    width: 60%;
  }
}
@media (min-width: 1100px) {
  .section-11 .decoration-01-container {
    bottom: -6%;
  }
}
.section-11 .decoration-01 {
  width: 100%;
  background: url("../img/decoration/shape-08.svg") no-repeat 0 100%;
  background-size: contain;
  padding-bottom: 50%;
  z-index: -1;
  max-width: 700px;
}
@media (min-width: 768px) {
  .section-11 .decoration-01 {
    padding-bottom: 30%;
  }
}
.section-11 .subtitle-container {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .section-11 .subtitle-container {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.section-11 .section-main {
  margin-top: 35px;
}
@media (min-width: 1100px) {
  .section-11 .section-main {
    margin-top: 50px;
  }
}
.section-11 .form-container {
  margin-top: 35px;
}
.section-11 .title-md-04 {
  font-size: 16px;
  font-weight: 600;
}
.section-11 .list__item {
  margin-bottom: 25px;
}
.section-11 .list__item:nth-child(1) a, .section-11 .list__item:nth-child(2) a {
  text-decoration: none;
}
.section-11 .list__item:nth-child(3) .contact-item {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-11 .flex-box__item:first-child {
    margin-right: 50px;
  }
}
@media (min-width: 1100px) {
  .section-11 .flex-box__item:first-child {
    margin-right: 100px;
    width: 400px;
  }
}
@media (min-width: 1300px) {
  .section-11 .flex-box__item:first-child {
    margin-right: 150px;
    width: 500px;
  }
}
.section-11 .flex-box__item:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 550px) {
  .section-11 .flex-box__item:last-child {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .section-11 .flex-box__item:last-child {
    width: 30%;
  }
}
.section-11 .contact-details-container {
  margin-top: 40px;
  width: 100%;
}
.section-11 .description-container {
  max-width: 360px;
}

@media (min-width: 768px) {
  .section-12 .section-main {
    margin-top: 40px;
  }
}
.section-12 .section-main__row {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section-12 .section-main__row {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .section-12 .section-main__row {
    margin-bottom: 60px;
  }
}
.section-12 .section-main__row:last-child {
  margin-bottom: 0;
}
.section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(1) {
  margin-top: 45px;
}
@media (min-width: 992px) {
  .section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(1) {
    margin-bottom: 0;
    margin-top: 0;
    flex: 0 0 50%;
    width: calc(50% - 70px);
    margin-right: 70px;
  }
}
@media (min-width: 1300px) {
  .section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(1) {
    flex: 0 0 60%;
    width: calc(60% - 70px);
  }
}
.section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(2) .text-container {
  max-width: 670px;
}
.section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(2) .button-container {
  cursor: pointer;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(1) .flex-box__item:nth-child(2) .button-container {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .section-12 .section-main__row:nth-child(2) .my-overlayer-01 .flex-box {
    padding-right: 58%;
  }
}
@media (min-width: 1300px) {
  .section-12 .section-main__row:nth-child(2) .my-overlayer-01 .flex-box {
    padding: 30px;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box {
    align-items: flex-start;
    justify-content: space-between;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item {
  counter-reset: indications;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) {
  margin-bottom: 40px;
  flex: 0 0 40%;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) {
    margin-top: 0;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container {
  counter-increment: indications;
  text-align: left;
  padding: 0;
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container .title-md-05 {
  color: #D39079;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:after {
  content: "";
  width: 55px;
  height: 1px;
  background-color: #D39079;
  position: absolute;
  top: 65%;
  transition: background-color 0.3s ease;
  left: 0;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:before {
  position: absolute;
  transition: all 0.3s ease;
  left: 0;
  top: 100%;
  font-size: 18px;
  display: none;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:before {
    font-size: 20px;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:nth-child(-n+9):before {
  content: "0" counter(indications);
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:nth-child(n+10):before {
  content: counter(indications);
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:last-child {
  margin-bottom: 0;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container.active .title-md-05 {
  color: #D39079;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container.active:before {
  color: #D39079;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container.active:after {
  background-color: #D39079;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:hover .title-md-05 {
  color: #D39079;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:hover:before {
  color: #D39079;
  padding-left: 14px;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(1) .button-container:hover:after {
  background-color: #D39079;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) {
    max-width: 630px;
    flex: 0 0 60%;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .accordeon-item {
  padding-left: 0;
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .accordeon-item {
    padding-left: 40px;
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .list__item {
  margin-bottom: 28px;
  position: relative;
  font-size: 14px;
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .list__item:before {
  content: "";
  width: 27px;
  height: 6px;
  position: absolute;
  right: calc(100% + 6px);
  top: 6px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../img/icons/icon-wave.svg");
  background-size: contain;
  transform: scale(0.7);
}
@media (min-width: 768px) {
  .section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .list__item:before {
    transform: scale(1);
  }
}
.section-12 .section-main__row:nth-child(3) .flex-box__item:nth-child(2) .list__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section-12-1 .section-main {
    margin-top: 40px;
  }
}
.section-12-1 .section-main__row {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .section-12-1 .section-main__row {
    margin-bottom: 120px;
  }
}
.section-12-1 .section-main__row:last-child {
  margin-bottom: 0;
}
@media (min-width: 1300px) {
  .section-12-1 .section-main__row:nth-child(1) {
    margin-right: 100px;
  }
}
.section-12-1 .section-main__row:nth-child(1) .flex-box {
  align-items: flex-start;
}
.section-12-1 .section-main__row:nth-child(1) .flex-box__item:nth-child(1) {
  margin-bottom: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(1) .flex-box__item:nth-child(1) {
    margin-bottom: 0;
    margin-top: 0;
    flex: 0 0 20%;
    width: calc(20% - 70px);
    margin-right: 70px;
  }
}
.section-12-1 .section-main__row:nth-child(1) .flex-box__item:nth-child(2) .button-container .title-md-05 {
  color: #D39079;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(1) .flex-box__item:nth-child(2) .button-container {
    text-align: left;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box {
    align-items: flex-start;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item {
  counter-reset: indications;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) {
    margin-top: 0;
    margin-right: 60px;
  }
}
@media (min-width: 1100px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) {
    margin-right: 170px;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container {
  counter-increment: indications;
  text-align: left;
  padding: 0;
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container .title-md-05 {
  color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:after {
  content: "";
  width: 55px;
  height: 1px;
  background-color: #D39079;
  position: absolute;
  top: 65%;
  transition: background-color 0.3s ease;
  left: 0;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:before {
  position: absolute;
  transition: all 0.3s ease;
  left: 0;
  top: 100%;
  font-size: 18px;
  display: none;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:before {
    font-size: 20px;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:nth-child(-n+9):before {
  content: "0" counter(indications);
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:nth-child(n+10):before {
  content: counter(indications);
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:last-child {
  margin-bottom: 0;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container.active .title-md-05 {
  color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container.active:before {
  color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container.active:after {
  background-color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:hover .title-md-05 {
  color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:hover:before {
  color: #D39079;
  padding-left: 14px;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(1) .button-container:hover:after {
  background-color: #D39079;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) {
  max-width: 100%;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) {
    max-width: 630px;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .accordeon-item {
  padding-left: 0;
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .accordeon-item {
    padding-left: 40px;
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .list__item {
  margin-bottom: 28px;
  position: relative;
  font-size: 14px;
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .list__item:before {
  content: "";
  width: 27px;
  height: 6px;
  position: absolute;
  right: calc(100% + 6px);
  top: 6px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../img/icons/icon-wave.svg");
  background-size: contain;
  transform: scale(0.7);
}
@media (min-width: 768px) {
  .section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .list__item:before {
    transform: scale(1);
  }
}
.section-12-1 .section-main__row:nth-child(2) .flex-box__item:nth-child(2) .list__item:last-child {
  margin-bottom: 0;
}

.section-13 .simple-box-container {
  max-width: 310px;
}
@media (min-width: 768px) {
  .section-13 .simple-box-container {
    max-width: 380px;
  }
}
.section-13 .slick-list {
  cursor: grab;
}
.section-13 .simple-box__header {
  position: relative;
}
.section-13 .simple-box__header:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -87px;
  left: -38px;
  width: 120px;
  height: 120px;
  background: url("../img/decoration/circle-shape-02.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .section-13 .simple-box__header:before {
    top: -50px;
    left: -105px;
    width: 130px;
    height: 130px;
  }
}
.section-13 .simple-box__header:after {
  content: "KROK " counter(section);
  position: absolute;
  top: -30px;
  left: 0;
}
@media (min-width: 992px) {
  .section-13 .simple-box__header:after {
    top: 7px;
    letter-spacing: 0.15em;
    left: -83px;
  }
}
@media (min-width: 768px) {
  .section-13 .site-section__inner {
    padding-left: 50%;
  }
}
.section-13 .site-section__video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  bottom: 0;
  left: 0;
  background-color: #f5d5de;
}
@media (min-width: 768px) {
  .section-13 .site-section__video {
    background: url("../img/section-13-bg.jpg") no-repeat center;
    background-size: cover;
    height: 422px;
  }
}
@media (min-width: 992px) {
  .section-13 .site-section__video {
    height: 512px;
  }
}
@media (min-width: 1100px) {
  .section-13 .site-section__video {
    height: 533px;
  }
}
@media (min-width: 1300px) {
  .section-13 .site-section__video {
    height: 560px;
  }
}
.section-13 .video {
  height: auto;
}
.section-13 .video__file {
  display: none;
}
@media (min-width: 768px) {
  .section-13 .video__file {
    height: 100%;
  }
}
.section-13 .section-header {
  position: relative;
  z-index: 1;
}
.section-13 .section-main {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .section-13 .section-main {
    margin-left: 50px;
  }
}
@media (min-width: 1100px) {
  .section-13 .section-main {
    margin-left: 100px;
    margin-top: 20px;
  }
}
@media (min-width: 1300px) {
  .section-13 .section-main {
    margin-left: 175px;
  }
}
.section-13 .text-container {
  max-width: 400px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .section-13 .text-container {
    max-width: 500px;
    margin-bottom: 50px;
  }
}
.section-13 .slider-nav-container {
  position: relative;
  z-index: 10;
}
.section-13 .slider-nav {
  justify-content: flex-end;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-13 .slider-nav {
    margin-bottom: 65px;
  }
}
.section-13 .slider-container {
  counter-reset: section;
}
.section-13 .slick-list {
  overflow: visible;
}
.section-13 .slick-slide {
  opacity: 0;
  transition: all 0.45s ease;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .section-13 .slick-slide {
    margin: 0 26px;
  }
}
.section-13 .slick-active {
  opacity: 1;
}
@media (min-width: 768px) {
  .section-13 .slick-active {
    transform: scale(1) translateX(-20px);
  }
}
.section-13 .slider__item:not(.slick-cloned) {
  counter-increment: section;
}

.section-14 .text-container {
  margin-bottom: 20px;
}
.section-14 .text-container:last-child {
  margin-bottom: 0;
}
.section-14 .flex-box__item:nth-child(1) {
  max-width: 400px;
  margin: auto;
}
@media (min-width: 768px) {
  .section-14 .flex-box__item:nth-child(1) {
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  .section-14 .flex-box__item:nth-child(1) {
    margin-right: 80px;
  }
}
@media (min-width: 1100px) {
  .section-14 .flex-box__item:nth-child(1) {
    margin-right: 120px;
  }
}
@media (min-width: 1300px) {
  .section-14 .flex-box__item:nth-child(1) {
    margin-right: 140px;
  }
}
@media (min-width: 1500px) {
  .section-14 .flex-box__item:nth-child(1) {
    margin-right: 160px;
  }
}
.section-14 .flex-box__item:nth-child(2) {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section-14 .flex-box__item:nth-child(2) {
    width: 50%;
  }
}

.logo .img-logo-dark, .logo-kniaz .img-logo-dark {
  display: none;
}

.logo-dark .img-logo-standard {
  display: none;
}
.logo-dark .img-logo-dark {
  display: block;
}

.rellax {
  transition: transform 0.35s ease;
}

.bottom-right {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-family: hero-new, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .bottom-right {
    right: 50px;
  }
}

.bottom-right img {
  margin-left: 24px;
  height: 22px;
  width: 134px;
}

.bottom-right a {
  display: flex;
}

.icon-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .flex-box__item--row {
    display: flex;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .my-overlayer-01 .slider-container {
    margin-left: -105px;
    margin-top: 55px;
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .my-overlayer-01--static flex-box__item:nth-child(1) {
    margin-right: 345px;
  }
}

.simple-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
.simple-gallery__wrapper {
  position: relative;
  padding: 0 5%;
}
.simple-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-gallery__previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.simple-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.icon-arrow-next {
  width: 35px;
  height: 17px;
  padding: 14px;
}
@media (min-width: 650px) {
  .icon-arrow-next {
    width: 40px;
    height: 19px;
  }
}

.icon-arrow-prev {
  width: 35px;
  height: 17px;
  padding: 14px;
}
@media (min-width: 650px) {
  .icon-arrow-prev {
    width: 40px;
    height: 19px;
  }
}

.std-text {
  font-size: 14px;
}
.std-text--light {
  color: #fff;
}
.std-text--thin {
  font-weight: 300;
}
.std-text--big {
  font-size: 20px;
}
@media (min-width: 768px) {
  .std-text--big {
    font-size: 22px;
  }
}
.std-text__link {
  color: #1A3D81;
  transition: all 0.3s linear;
}
.std-text__link:hover {
  color: #D39079;
}
.std-text__link--dark {
  color: #000;
  transition: all 0.3s linear;
}
.std-text__link--dark:hover {
  color: #1A3D81;
}
.std-text__link--light {
  color: #fff;
  position: relative;
}
.std-text__link--light::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s linear;
  width: 0;
  height: 1px;
}
.std-text__link--light:hover::before {
  width: 100%;
}
.std-text--uppercase {
  text-transform: uppercase;
}

.button {
  display: inline-block;
  letter-spacing: 0.02em;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: normal;
  border-radius: 16px;
  transition: all 0.35s ease;
}
.button:hover {
  background-color: #D39079;
  color: #fff;
  border-color: #D39079;
}
.button--dark {
  color: #000;
  border: 1px solid #000;
}
.button--dark:hover {
  background-color: #D39079;
  color: #fff;
}

.std-icon {
  position: relative;
  width: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.std-icon__phone {
  background-image: url("/img/icons/phone.svg");
  height: 35px;
}
.std-icon__envelope {
  background-image: url("/img/icons/envelope.svg");
  height: 21px;
}
.std-icon__map-marker {
  background-image: url("/img/icons/map-marker.svg");
  height: 34px;
}

.icon-note {
  display: flex;
  gap: 20px;
}
.icon-note__icon {
  flex: 0 0 10%;
}
.icon-note__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.simple-list > li {
  margin-bottom: 20px;
}
.simple-list > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .simple-list > li {
    margin-bottom: 28px;
  }
}
@media (min-width: 1300px) {
  .simple-list > li {
    margin-bottom: 34px;
  }
}
.simple-list--small-space > li {
  margin-bottom: 4px;
}
.simple-list--small-space > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .simple-list--small-space > li {
    margin-bottom: 6px;
  }
}
@media (min-width: 1300px) {
  .simple-list--small-space > li {
    margin-bottom: 6px;
  }
}
.simple-list--medium-space > li {
  margin-bottom: 16px;
}
.simple-list--medium-space > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .simple-list--medium-space > li {
    margin-bottom: 16px;
  }
}
@media (min-width: 1300px) {
  .simple-list--medium-space > li {
    margin-bottom: 16px;
  }
}
.simple-list--more-space > li {
  margin-bottom: 6px;
}
.simple-list--more-space > li:last-child {
  margin-bottom: 0;
}
.simple-list--huge-space > li {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .simple-list--huge-space > li {
    margin-bottom: 120px;
  }
}
.simple-list--huge-space > li:last-child {
  margin-bottom: 0;
}
.simple-list--decoration-line > li {
  padding-bottom: 6px;
  border-bottom: 1px solid #1A3D81;
}
@media (min-width: 768px) {
  .simple-list--two-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .simple-list--two-rows.simple-list--medium-space > li:last-child {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .simple-list--two-rows.simple-list--medium-space > li:last-child {
    margin-bottom: 16px;
  }
}

.slider-navigation {
  max-height: 200px;
}

.simple-box__button-shape {
  position: absolute;
  top: 50%;
  pointer-events: none;
  left: -2vw;
}
.simple-box__element-wrapper {
  z-index: -1;
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 1300px) {
  .simple-box__element-wrapper {
    transform: translateX(-21px);
  }
}
@media (min-width: 768px) {
  .simple-box__header--bounded {
    width: 70%;
  }
}

.custome-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .custome-box {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .custome-box__item:first-child {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (min-width: 1100px) {
  .section-two-containers {
    padding-top: 30px;
  }
}

.image-ratio {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.image-ratio::before {
  display: block;
  content: "";
  padding-top: 70%;
}
.image-ratio__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.image-ratio--squere::before {
  padding-top: 100%;
}
.image-ratio--rectangle-110::before {
  padding-top: 110%;
}
.image-ratio--rectangle-50::before {
  padding-top: 50%;
}
.image-ratio--rectangle-66::before {
  padding-top: 66%;
}
.image-ratio--rectangle::before {
  padding-top: 120%;
}
.image-ratio--rectangle-horizontal::before {
  padding-top: 88%;
}
.image-ratio--rectangle-small::before {
  padding-top: 128%;
}
.image-ratio--rectangle-narrow::before {
  padding-top: 146%;
}
.image-ratio--rectangle-horizontal-wide::before {
  padding-top: 72%;
}
.image-ratio--rectangle-horizontal-very-wide::before {
  padding-top: 61%;
}
.image-ratio--video::before {
  padding-top: 56%;
}
.image-ratio--video2 .image-ratio__image {
  object-fit: contain;
  width: 96%;
  left: 2%;
}
@media (min-width: 992px) {
  .image-ratio--video2 .image-ratio__image {
    width: 100%;
    left: 0;
  }
}
.image-ratio__decoration {
  position: relative;
  overflow: visible;
}
.image-ratio__decoration::after {
  content: "";
  position: absolute;
  width: 111%;
  height: 134%;
  top: 15%;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.image-ratio__decoration .image-ratio__image {
  z-index: 1;
}
.image-ratio__decoration-1::after {
  background-image: url("/img/decoration/line-02.svg");
}
.image-ratio__decoration-2::after {
  background-image: url("/img/decoration/line-02.svg");
}
.image-ratio__decoration-1--higher::after {
  width: 106%;
  height: 155%;
  top: -12%;
}
.image-ratio__video {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

.image-ratio--no-before::before {
  display: none;
}

.image-ratio__image--contain {
  object-fit: contain;
}

.element-decoration {
  position: relative;
}
.element-decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background-image: url("/img/decoration/circle-shape-02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
}

.special-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: #1A3D81;
  z-index: 1;
  position: relative;
}

.slide-decoration {
  position: absolute;
  z-index: -1;
}
.slide-decoration--top {
  top: 10%;
}
@media (min-width: 768px) {
  .slide-decoration--top {
    top: -10%;
  }
}
.slide-decoration--top-2 {
  top: 2%;
}
@media (min-width: 768px) {
  .slide-decoration--top-2 {
    top: -10%;
  }
}
.slide-decoration--bottom {
  bottom: 30%;
}
@media (min-width: 768px) {
  .slide-decoration--bottom {
    bottom: 40%;
  }
}
.slide-decoration__item {
  background-size: contain;
  width: 72px;
  height: 200px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .slide-decoration__item {
    width: 170px;
    height: 470px;
  }
}
@media (min-width: 1300px) {
  .slide-decoration__item {
    width: 200px;
    height: 548px;
  }
}
.slide-decoration__item--small {
  width: 58px;
  height: 200px;
}
@media (min-width: 768px) {
  .slide-decoration__item--small {
    width: 135px;
    height: 470px;
  }
}
@media (min-width: 1300px) {
  .slide-decoration__item--small {
    width: 157px;
    height: 548px;
  }
}
.slide-decoration__item--large {
  width: 58px;
  height: 200px;
}
@media (min-width: 768px) {
  .slide-decoration__item--large {
    width: 220px;
    height: 270px;
  }
}
@media (min-width: 1300px) {
  .slide-decoration__item--large {
    width: 400px;
    height: 548px;
  }
}
.slide-decoration__item-01 {
  background-image: url("../img/decoration/shape-09.svg");
}
.slide-decoration__item-02 {
  background-image: url("../img/decoration/shape-10.svg");
  opacity: 0.3;
}
@media (min-width: 480px) {
  .slide-decoration__item-02 {
    opacity: 1;
  }
}
.slide-decoration__item-03 {
  background-image: url("../img/decoration/shape-11.svg");
  opacity: 0.3;
}
@media (min-width: 480px) {
  .slide-decoration__item-03 {
    opacity: 1;
  }
}
.slide-decoration__item-04 {
  background-image: url("../img/decoration/shape-12.svg");
}
.slide-decoration__item-05 {
  background-image: url("../img/decoration/shape-13.svg");
  opacity: 0.3;
}
@media (min-width: 480px) {
  .slide-decoration__item-05 {
    opacity: 1;
  }
}
.slide-decoration__item-06 {
  background-image: url("../img/decoration/shape-14.svg");
}
.slide-decoration__item-07 {
  background-image: url("../img/decoration/shape-15.svg");
}
.slide-decoration__item-08 {
  background-image: url("../img/decoration/shape-16.svg");
  opacity: 0.3;
}
@media (min-width: 480px) {
  .slide-decoration__item-08 {
    opacity: 1;
  }
}
.slide-decoration__item-09 {
  background-image: url("../img/decoration/shape-17.svg");
}

.slide-decoration--right {
  right: 0;
}

.slide-decoration--left {
  left: 0;
}

.column-layout__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 550px) {
  .column-layout__wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .column-layout__wrapper {
    gap: 100px;
  }
}
@media (min-width: 1300px) {
  .column-layout__wrapper {
    gap: 130px;
  }
}
@media (min-width: 550px) {
  .column-layout__wrapper--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 550px) {
  .column-layout__main {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .column-layout__main {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media (min-width: 1100px) {
  .column-layout__main {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1300px) {
  .column-layout__main {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 50px;
  }
}
@media (min-width: 1700px) {
  .column-layout__main {
    flex: 0 0 30%;
    max-width: 30%;
    margin-right: 200px;
  }
}
@media (min-width: 1300px) {
  .column-layout__main--more-space-desktop {
    flex: 0 0 calc(50% - 200px);
    max-width: calc(50% - 200px);
  }
}
@media (min-width: 1300px) {
  .column-layout__main--more-space-top-desktop {
    margin-top: 120px;
  }
}
@media (min-width: 1300px) {
  .column-layout__main--no-top-space {
    margin-top: 0;
  }
}
@media (min-width: 550px) {
  .column-layout__side {
    width: 100%;
  }
}
@media (min-width: 1100px) {
  .column-layout__side {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (min-width: 1300px) {
  .column-layout__side--more-space-desktop {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.site-section--half-height {
  position: relative;
  min-height: 70vh;
  margin-top: 80px;
  height: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .site-section--half-height {
    margin-top: 120px;
    min-height: 40vh;
  }
}
@media (min-width: 992px) {
  .site-section--half-height {
    margin-top: 120px;
    min-height: 60vh;
  }
}
@media (min-width: 1300px) {
  .site-section--half-height {
    margin-top: 160px;
  }
}

.full-screen-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.full-screen-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wrapper-header--top {
  position: absolute;
  top: -60px;
  right: 20px;
}
@media (min-width: 480px) {
  .wrapper-header--top {
    top: -65px;
    right: 40px;
  }
}
@media (min-width: 768px) {
  .wrapper-header--top {
    left: 50%;
  }
}
@media (min-width: 992px) {
  .wrapper-header--top {
    top: -92px;
    right: 0;
  }
}
@media (min-width: 992px) {
  .wrapper-header--top {
    top: -110px;
  }
}
@media (min-width: 1100px) {
  .wrapper-header--top {
    top: -88px;
  }
}
@media (min-width: 1300px) {
  .wrapper-header--top {
    top: -110px;
  }
}

.inforamtion {
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .inforamtion {
    backdrop-filter: blur(0px);
    width: 50%;
    margin-left: auto;
    padding: 0;
  }
}
@media (min-width: 1100px) {
  .inforamtion {
    width: 36%;
    margin-left: 50%;
  }
}
.inforamtion__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.split-pictures {
  width: 100%;
  height: 100%;
}
.split-pictures__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .split-pictures__wrapper {
    gap: 40px;
  }
}
@media (min-width: 1300px) {
  .split-pictures__wrapper {
    justify-content: center;
  }
}
.split-pictures__item {
  height: 80%;
  width: calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
}
.split-pictures__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.std-box__header {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .std-box__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .std-box__side {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (min-width: 1300px) {
  .std-box__side {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (min-width: 992px) {
  .std-box__main {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1300px) {
  .std-box__main {
    flex: 0 0 65%;
    max-width: 65%;
  }
}

.text-container--space-bottom {
  margin-bottom: 20px;
}

.simple-marker ul {
  padding: 0 0 16px 0px;
}
.simple-marker ul li {
  padding: 0px 0 20px 16px;
  position: relative;
}
@media (min-width: 1500px) {
  .simple-marker ul li {
    padding: 0px 0 30px 20px;
  }
}
.simple-marker ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #1A3D81;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.section-main__wrapper {
  flex-direction: column;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .section-main__wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.section-main__button {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  .section-main__button {
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .section-main__button {
    justify-content: center;
    width: 25%;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .section-main--common {
    margin-top: 40px;
  }
}

.section-main--more-top-space {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .section-main--more-top-space {
    padding-top: 60px;
  }
}
@media (min-width: 1500px) {
  .section-main--more-top-space {
    padding-top: 80px;
  }
}

.simple-link {
  color: #1A3D81;
  text-decoration: underline;
  transition: all 0.2s linear;
}
.simple-link:hover {
  text-decoration: underline;
  color: #D39079;
}

.stop-scroll {
  overflow: hidden;
}

.hawk-dropdown__title {
  text-align: left;
  font-weight: 300;
  font-size: 16px;
}

.wrapper-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  row-gap: 60px;
  column-gap: 30px;
}
@media (min-width: 420px) {
  .wrapper-grid-layout--less-space-mobile {
    padding: 0 50px;
  }
}
@media (min-width: 650px) {
  .wrapper-grid-layout--less-space-mobile {
    padding: 0;
  }
}

.box-info {
  color: #1A3D81;
  transition: all 0.2s linear;
  height: 100%;
}
.box-info__picture {
  position: relative;
}
.box-info__wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}
.box-info__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: space-between;
}
.box-info__content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box-info__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  text-decoration: underline;
  user-select: auto;
  -webkit-user-select: auto;
}
.box-info__picture {
  width: 100%;
  transition: all 0.2s linear;
  display: block;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.box-info__picture::before {
  display: block;
  content: "";
  padding-top: 100%;
}
.box-info__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s linear;
}
.box-info:hover .box-info__image {
  transform: scale(1.05);
}

.wrapper-button--space-top {
  margin-top: 60px;
}
.wrapper-button--center {
  display: flex;
  justify-content: center;
}

.presentation-box {
  display: flex;
  align-items: stretch;
}
.presentation-box__picture {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  flex: 0 0 50px;
}
.presentation-box__picture::before {
  display: block;
  content: "";
  padding-top: 100%;
}
.presentation-box__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.presentation-box__content {
  margin-left: 20px;
}

.common-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}
.common-info__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -0.14px;
}

.common-info__text--bold {
  font-weight: 700;
}

.article {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1500px) {
  .article {
    font-size: 16px;
  }
}
.article__image {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .article__image {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.article .image-ratio__image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.article img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.article p {
  padding: 10px 0;
}
.article h1 {
  font-weight: 300;
  color: #1A3D81;
  line-height: 1.2;
  font-size: 24px;
  font-family: arpona, serif;
  color: #D39079;
}
@media (min-width: 768px) {
  .article h1 {
    line-height: 1;
    font-size: 32px;
  }
}
@media (min-width: 1100px) {
  .article h1 {
    font-size: 36px;
  }
}
.article h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 6px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .article h2 {
    line-height: 1;
    font-size: 24px;
  }
}
@media (min-width: 1100px) {
  .article h2 {
    font-size: 28px;
  }
}
.article h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 6px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .article h3 {
    line-height: 1;
    font-size: 22px;
  }
}
@media (min-width: 1100px) {
  .article h3 {
    font-size: 24px;
  }
}
.article h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 6px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .article h4 {
    line-height: 1;
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .article h4 {
    font-size: 22px;
  }
}
.article ul {
  list-style: none;
}
.article ul li {
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
}
.article ul li:before {
  content: "";
  width: 27px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 6px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../img/icons/icon-wave.svg");
  background-size: contain;
  transform: scale(0.7);
}
@media (min-width: 768px) {
  .article ul li:before {
    transform: scale(1);
  }
}
.article ol {
  padding-left: 36px;
}
.article ol li {
  list-style-type: decimal;
  margin-bottom: 28px;
  position: relative;
}
.article .text p {
  padding-bottom: 20px;
}
.article .text--bold p {
  font-weight: 700;
}
.article .text--md p {
  font-size: 16px;
}
@media (min-width: 1500px) {
  .article .text--md p {
    font-size: 18px;
  }
}

.std-text ul {
  list-style: none;
}
.std-text ul li {
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
}
.std-text ul li:before {
  content: "";
  width: 27px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 6px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../img/icons/icon-wave.svg");
  background-size: contain;
  transform: scale(0.7);
}
@media (min-width: 768px) {
  .std-text ul li:before {
    transform: scale(1);
  }
}
.std-text ol {
  padding-left: 36px;
}
.std-text ol li {
  list-style-type: decimal;
  margin-bottom: 28px;
  position: relative;
}

.swiper__button {
  cursor: pointer;
  padding: 10px;
}
.swiper__button svg {
  width: 40px;
}
@media (min-width: 650px) {
  .swiper__button svg {
    width: 60px;
  }
}
@media (min-width: 1100px) {
  .swiper__button svg {
    width: auto;
  }
}
.swiper__button--reverse {
  transform: rotate(180deg);
}
.swiper__button-next {
  padding-right: 0;
}

.swiper-button-disabled {
  opacity: 0.4;
}

.container-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
  padding-right: 26px;
}
@media (min-width: 650px) {
  .container-navigation {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .container-navigation {
    padding-right: 0;
  }
}
.container-navigation__title {
  flex: 0 0 50%;
}
.container-navigation__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.common-ajax-loading-items-manager__loading-layer {
  position: absolute;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 10px;
}
.common-ajax-loading-items-manager__loading-layer .icon-loader {
  position: absolute;
  top: 50%;
  left: 50%;
}
.common-ajax-loading-items-manager__container {
  position: relative;
}

.only-desktop {
  display: none;
}
@media (min-width: 480px) {
  .only-desktop {
    display: block;
    width: 100%;
  }
}
@media (min-width: 480px) {
  .only-desktop--from-tablet {
    display: none;
  }
}
@media (min-width: 1100px) {
  .only-desktop--from-tablet {
    display: block;
  }
}

@media (min-width: 480px) {
  .only-mobile {
    display: none;
  }
}
@media (min-width: 480px) {
  .only-mobile--to-tablet {
    display: block;
  }
}
@media (min-width: 1100px) {
  .only-mobile--to-tablet {
    display: none;
  }
}

.video-player__video {
  cursor: pointer;
}

.horizontal-list {
  display: flex;
}
.horizontal-list > li {
  padding-right: 4px;
}
.horizontal-list > li:last-child {
  padding-right: 0;
}
@media (min-width: 768px) {
  .horizontal-list > li {
    padding-right: 8px;
  }
}
@media (min-width: 1300px) {
  .horizontal-list > li {
    padding-right: 10px;
  }
}

.horizontal-list--more-space > li {
  padding-right: 20px;
}
.horizontal-list--more-space > li:last-child {
  padding-right: 0;
}
@media (min-width: 768px) {
  .horizontal-list--more-space > li {
    padding-right: 28px;
  }
}
@media (min-width: 1300px) {
  .horizontal-list--more-space > li {
    padding-right: 34px;
  }
}

.simple-slider .swiper-wrapper {
  padding-top: 2px;
}
.simple-slider__nav {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}
.simple-slider__controller {
  padding: 12px 8px;
  width: 46px;
}
.simple-slider .swiper-slide {
  height: auto;
}
.simple-slider__prev, .simple-slider__next {
  cursor: pointer;
}

.simple-lead__header {
  margin-bottom: 10px;
  display: block;
}
.simple-lead__subtitle {
  margin-bottom: 10px;
}
.simple-lead__content {
  margin-bottom: 16px;
}
.simple-lead__footer--flex-start {
  display: flex;
  justify-content: flex-start;
}

.mySwiper .swiper-slide {
  height: auto !important;
}

.span-block {
  display: block;
}

.common-link {
  color: inherit;
  transition: all 0.2s linear;
}
.common-link:hover {
  color: #D39079;
}
