:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("../img/flags.webp");
  --iti-path-flags-2x: url("../img/flags@2x.webp");
  --iti-path-globe-1x: url("../img/globe.webp");
  --iti-path-globe-2x: url("../img/globe@2x.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
/*----------------------------------*/
/*----------------------------------*/
/*----------------------------------*/
/*  fonts */
/*----------------------------------*/
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/client/e-Ukraine-Bold.woff2") format("woff2"), url("../fonts/client/e-Ukraine-Bold.woff") format("woff"), url("../fonts/client/e-Ukraine-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/client/e-Ukraine-Light.woff2") format("woff2"), url("../fonts/client/e-Ukraine-Light.woff") format("woff"), url("../fonts/client/e-Ukraine-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/client/e-Ukraine-Medium.woff2") format("woff2"), url("../fonts/client/e-Ukraine-Medium.woff") format("woff"), url("../fonts/client/e-Ukraine-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/client/e-Ukraine-Regular.woff2") format("woff2"), url("../fonts/client/e-Ukraine-Regular.woff") format("woff"), url("../fonts/client/e-Ukraine-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/client/e-Ukraine-UltraLight.woff2") format("woff2"), url("../fonts/client/e-Ukraine-UltraLight.woff") format("woff"), url("../fonts/client/e-Ukraine-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 480px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1872px;
  }
}

.container-fluid, .wrapper, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  .container-sm, .container-b375, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-b680, .container-sm, .container-b375, .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container-lg, .container-md, .container-b680, .container-sm, .container-b375, .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container-xl, .container-lg, .container-md, .container-b680, .container-sm, .container-b375, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1920px) {
  .container-xxl, .container-b1400, .container-b1366, .container-xl, .container-lg, .container-md, .container-b680, .container-sm, .container-b375, .container {
    max-width: 1872px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-b1400,
.col-b1400-auto, .col-b1400-12, .col-b1400-11, .col-b1400-10, .col-b1400-9, .col-b1400-8, .col-b1400-7, .col-b1400-6, .col-b1400-5, .col-b1400-4, .col-b1400-3, .col-b1400-2, .col-b1400-1, .col-b1366,
.col-b1366-auto, .col-b1366-12, .col-b1366-11, .col-b1366-10, .col-b1366-9, .col-b1366-8, .col-b1366-7, .col-b1366-6, .col-b1366-5, .col-b1366-4, .col-b1366-3, .col-b1366-2, .col-b1366-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-b680,
.col-b680-auto, .col-b680-12, .col-b680-11, .col-b680-10, .col-b680-9, .col-b680-8, .col-b680-7, .col-b680-6, .col-b680-5, .col-b680-4, .col-b680-3, .col-b680-2, .col-b680-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-b375,
.col-b375-auto, .col-b375-12, .col-b375-11, .col-b375-10, .col-b375-9, .col-b375-8, .col-b375-7, .col-b375-6, .col-b375-5, .col-b375-4, .col-b375-3, .col-b375-2, .col-b375-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

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

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 375px) {
  .col-b375 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-b375-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-b375-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-b375-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-b375-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-b375-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-b375-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b375-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-b375-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-b375-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b375-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-b375-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-b375-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-b375-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-b375-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-b375-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-b375-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-b375-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-b375-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-b375-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-b375-first {
    order: -1;
  }
  .order-b375-last {
    order: 13;
  }
  .order-b375-0 {
    order: 0;
  }
  .order-b375-1 {
    order: 1;
  }
  .order-b375-2 {
    order: 2;
  }
  .order-b375-3 {
    order: 3;
  }
  .order-b375-4 {
    order: 4;
  }
  .order-b375-5 {
    order: 5;
  }
  .order-b375-6 {
    order: 6;
  }
  .order-b375-7 {
    order: 7;
  }
  .order-b375-8 {
    order: 8;
  }
  .order-b375-9 {
    order: 9;
  }
  .order-b375-10 {
    order: 10;
  }
  .order-b375-11 {
    order: 11;
  }
  .order-b375-12 {
    order: 12;
  }
  .offset-b375-0 {
    margin-left: 0;
  }
  .offset-b375-1 {
    margin-left: 8.3333333333%;
  }
  .offset-b375-2 {
    margin-left: 16.6666666667%;
  }
  .offset-b375-3 {
    margin-left: 25%;
  }
  .offset-b375-4 {
    margin-left: 33.3333333333%;
  }
  .offset-b375-5 {
    margin-left: 41.6666666667%;
  }
  .offset-b375-6 {
    margin-left: 50%;
  }
  .offset-b375-7 {
    margin-left: 58.3333333333%;
  }
  .offset-b375-8 {
    margin-left: 66.6666666667%;
  }
  .offset-b375-9 {
    margin-left: 75%;
  }
  .offset-b375-10 {
    margin-left: 83.3333333333%;
  }
  .offset-b375-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 480px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 680px) {
  .col-b680 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-b680-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-b680-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-b680-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-b680-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-b680-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-b680-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b680-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-b680-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-b680-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b680-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-b680-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-b680-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-b680-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-b680-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-b680-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-b680-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-b680-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-b680-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-b680-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-b680-first {
    order: -1;
  }
  .order-b680-last {
    order: 13;
  }
  .order-b680-0 {
    order: 0;
  }
  .order-b680-1 {
    order: 1;
  }
  .order-b680-2 {
    order: 2;
  }
  .order-b680-3 {
    order: 3;
  }
  .order-b680-4 {
    order: 4;
  }
  .order-b680-5 {
    order: 5;
  }
  .order-b680-6 {
    order: 6;
  }
  .order-b680-7 {
    order: 7;
  }
  .order-b680-8 {
    order: 8;
  }
  .order-b680-9 {
    order: 9;
  }
  .order-b680-10 {
    order: 10;
  }
  .order-b680-11 {
    order: 11;
  }
  .order-b680-12 {
    order: 12;
  }
  .offset-b680-0 {
    margin-left: 0;
  }
  .offset-b680-1 {
    margin-left: 8.3333333333%;
  }
  .offset-b680-2 {
    margin-left: 16.6666666667%;
  }
  .offset-b680-3 {
    margin-left: 25%;
  }
  .offset-b680-4 {
    margin-left: 33.3333333333%;
  }
  .offset-b680-5 {
    margin-left: 41.6666666667%;
  }
  .offset-b680-6 {
    margin-left: 50%;
  }
  .offset-b680-7 {
    margin-left: 58.3333333333%;
  }
  .offset-b680-8 {
    margin-left: 66.6666666667%;
  }
  .offset-b680-9 {
    margin-left: 75%;
  }
  .offset-b680-10 {
    margin-left: 83.3333333333%;
  }
  .offset-b680-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1366px) {
  .col-b1366 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-b1366-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-b1366-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-b1366-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-b1366-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-b1366-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-b1366-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b1366-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-b1366-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-b1366-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b1366-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-b1366-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-b1366-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-b1366-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-b1366-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-b1366-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-b1366-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-b1366-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-b1366-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-b1366-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-b1366-first {
    order: -1;
  }
  .order-b1366-last {
    order: 13;
  }
  .order-b1366-0 {
    order: 0;
  }
  .order-b1366-1 {
    order: 1;
  }
  .order-b1366-2 {
    order: 2;
  }
  .order-b1366-3 {
    order: 3;
  }
  .order-b1366-4 {
    order: 4;
  }
  .order-b1366-5 {
    order: 5;
  }
  .order-b1366-6 {
    order: 6;
  }
  .order-b1366-7 {
    order: 7;
  }
  .order-b1366-8 {
    order: 8;
  }
  .order-b1366-9 {
    order: 9;
  }
  .order-b1366-10 {
    order: 10;
  }
  .order-b1366-11 {
    order: 11;
  }
  .order-b1366-12 {
    order: 12;
  }
  .offset-b1366-0 {
    margin-left: 0;
  }
  .offset-b1366-1 {
    margin-left: 8.3333333333%;
  }
  .offset-b1366-2 {
    margin-left: 16.6666666667%;
  }
  .offset-b1366-3 {
    margin-left: 25%;
  }
  .offset-b1366-4 {
    margin-left: 33.3333333333%;
  }
  .offset-b1366-5 {
    margin-left: 41.6666666667%;
  }
  .offset-b1366-6 {
    margin-left: 50%;
  }
  .offset-b1366-7 {
    margin-left: 58.3333333333%;
  }
  .offset-b1366-8 {
    margin-left: 66.6666666667%;
  }
  .offset-b1366-9 {
    margin-left: 75%;
  }
  .offset-b1366-10 {
    margin-left: 83.3333333333%;
  }
  .offset-b1366-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1440px) {
  .col-b1400 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-b1400-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-b1400-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-b1400-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-b1400-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-b1400-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-b1400-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b1400-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-b1400-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-b1400-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-b1400-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-b1400-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-b1400-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-b1400-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-b1400-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-b1400-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-b1400-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-b1400-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-b1400-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-b1400-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-b1400-first {
    order: -1;
  }
  .order-b1400-last {
    order: 13;
  }
  .order-b1400-0 {
    order: 0;
  }
  .order-b1400-1 {
    order: 1;
  }
  .order-b1400-2 {
    order: 2;
  }
  .order-b1400-3 {
    order: 3;
  }
  .order-b1400-4 {
    order: 4;
  }
  .order-b1400-5 {
    order: 5;
  }
  .order-b1400-6 {
    order: 6;
  }
  .order-b1400-7 {
    order: 7;
  }
  .order-b1400-8 {
    order: 8;
  }
  .order-b1400-9 {
    order: 9;
  }
  .order-b1400-10 {
    order: 10;
  }
  .order-b1400-11 {
    order: 11;
  }
  .order-b1400-12 {
    order: 12;
  }
  .offset-b1400-0 {
    margin-left: 0;
  }
  .offset-b1400-1 {
    margin-left: 8.3333333333%;
  }
  .offset-b1400-2 {
    margin-left: 16.6666666667%;
  }
  .offset-b1400-3 {
    margin-left: 25%;
  }
  .offset-b1400-4 {
    margin-left: 33.3333333333%;
  }
  .offset-b1400-5 {
    margin-left: 41.6666666667%;
  }
  .offset-b1400-6 {
    margin-left: 50%;
  }
  .offset-b1400-7 {
    margin-left: 58.3333333333%;
  }
  .offset-b1400-8 {
    margin-left: 66.6666666667%;
  }
  .offset-b1400-9 {
    margin-left: 75%;
  }
  .offset-b1400-10 {
    margin-left: 83.3333333333%;
  }
  .offset-b1400-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1920px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

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

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 375px) {
  .d-b375-none {
    display: none !important;
  }
  .d-b375-inline {
    display: inline !important;
  }
  .d-b375-inline-block {
    display: inline-block !important;
  }
  .d-b375-block {
    display: block !important;
  }
  .d-b375-table {
    display: table !important;
  }
  .d-b375-table-row {
    display: table-row !important;
  }
  .d-b375-table-cell {
    display: table-cell !important;
  }
  .d-b375-flex {
    display: flex !important;
  }
  .d-b375-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 480px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 680px) {
  .d-b680-none {
    display: none !important;
  }
  .d-b680-inline {
    display: inline !important;
  }
  .d-b680-inline-block {
    display: inline-block !important;
  }
  .d-b680-block {
    display: block !important;
  }
  .d-b680-table {
    display: table !important;
  }
  .d-b680-table-row {
    display: table-row !important;
  }
  .d-b680-table-cell {
    display: table-cell !important;
  }
  .d-b680-flex {
    display: flex !important;
  }
  .d-b680-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1366px) {
  .d-b1366-none {
    display: none !important;
  }
  .d-b1366-inline {
    display: inline !important;
  }
  .d-b1366-inline-block {
    display: inline-block !important;
  }
  .d-b1366-block {
    display: block !important;
  }
  .d-b1366-table {
    display: table !important;
  }
  .d-b1366-table-row {
    display: table-row !important;
  }
  .d-b1366-table-cell {
    display: table-cell !important;
  }
  .d-b1366-flex {
    display: flex !important;
  }
  .d-b1366-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1440px) {
  .d-b1400-none {
    display: none !important;
  }
  .d-b1400-inline {
    display: inline !important;
  }
  .d-b1400-inline-block {
    display: inline-block !important;
  }
  .d-b1400-block {
    display: block !important;
  }
  .d-b1400-table {
    display: table !important;
  }
  .d-b1400-table-row {
    display: table-row !important;
  }
  .d-b1400-table-cell {
    display: table-cell !important;
  }
  .d-b1400-flex {
    display: flex !important;
  }
  .d-b1400-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1920px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 375px) {
  .flex-b375-row {
    flex-direction: row !important;
  }
  .flex-b375-column {
    flex-direction: column !important;
  }
  .flex-b375-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-b375-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-b375-wrap {
    flex-wrap: wrap !important;
  }
  .flex-b375-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-b375-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-b375-fill {
    flex: 1 1 auto !important;
  }
  .flex-b375-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-b375-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-b375-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-b375-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-b375-start {
    justify-content: flex-start !important;
  }
  .justify-content-b375-end {
    justify-content: flex-end !important;
  }
  .justify-content-b375-center {
    justify-content: center !important;
  }
  .justify-content-b375-between {
    justify-content: space-between !important;
  }
  .justify-content-b375-around {
    justify-content: space-around !important;
  }
  .align-items-b375-start {
    align-items: flex-start !important;
  }
  .align-items-b375-end {
    align-items: flex-end !important;
  }
  .align-items-b375-center {
    align-items: center !important;
  }
  .align-items-b375-baseline {
    align-items: baseline !important;
  }
  .align-items-b375-stretch {
    align-items: stretch !important;
  }
  .align-content-b375-start {
    align-content: flex-start !important;
  }
  .align-content-b375-end {
    align-content: flex-end !important;
  }
  .align-content-b375-center {
    align-content: center !important;
  }
  .align-content-b375-between {
    align-content: space-between !important;
  }
  .align-content-b375-around {
    align-content: space-around !important;
  }
  .align-content-b375-stretch {
    align-content: stretch !important;
  }
  .align-self-b375-auto {
    align-self: auto !important;
  }
  .align-self-b375-start {
    align-self: flex-start !important;
  }
  .align-self-b375-end {
    align-self: flex-end !important;
  }
  .align-self-b375-center {
    align-self: center !important;
  }
  .align-self-b375-baseline {
    align-self: baseline !important;
  }
  .align-self-b375-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 480px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 680px) {
  .flex-b680-row {
    flex-direction: row !important;
  }
  .flex-b680-column {
    flex-direction: column !important;
  }
  .flex-b680-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-b680-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-b680-wrap {
    flex-wrap: wrap !important;
  }
  .flex-b680-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-b680-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-b680-fill {
    flex: 1 1 auto !important;
  }
  .flex-b680-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-b680-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-b680-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-b680-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-b680-start {
    justify-content: flex-start !important;
  }
  .justify-content-b680-end {
    justify-content: flex-end !important;
  }
  .justify-content-b680-center {
    justify-content: center !important;
  }
  .justify-content-b680-between {
    justify-content: space-between !important;
  }
  .justify-content-b680-around {
    justify-content: space-around !important;
  }
  .align-items-b680-start {
    align-items: flex-start !important;
  }
  .align-items-b680-end {
    align-items: flex-end !important;
  }
  .align-items-b680-center {
    align-items: center !important;
  }
  .align-items-b680-baseline {
    align-items: baseline !important;
  }
  .align-items-b680-stretch {
    align-items: stretch !important;
  }
  .align-content-b680-start {
    align-content: flex-start !important;
  }
  .align-content-b680-end {
    align-content: flex-end !important;
  }
  .align-content-b680-center {
    align-content: center !important;
  }
  .align-content-b680-between {
    align-content: space-between !important;
  }
  .align-content-b680-around {
    align-content: space-around !important;
  }
  .align-content-b680-stretch {
    align-content: stretch !important;
  }
  .align-self-b680-auto {
    align-self: auto !important;
  }
  .align-self-b680-start {
    align-self: flex-start !important;
  }
  .align-self-b680-end {
    align-self: flex-end !important;
  }
  .align-self-b680-center {
    align-self: center !important;
  }
  .align-self-b680-baseline {
    align-self: baseline !important;
  }
  .align-self-b680-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1024px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1366px) {
  .flex-b1366-row {
    flex-direction: row !important;
  }
  .flex-b1366-column {
    flex-direction: column !important;
  }
  .flex-b1366-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-b1366-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-b1366-wrap {
    flex-wrap: wrap !important;
  }
  .flex-b1366-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-b1366-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-b1366-fill {
    flex: 1 1 auto !important;
  }
  .flex-b1366-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-b1366-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-b1366-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-b1366-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-b1366-start {
    justify-content: flex-start !important;
  }
  .justify-content-b1366-end {
    justify-content: flex-end !important;
  }
  .justify-content-b1366-center {
    justify-content: center !important;
  }
  .justify-content-b1366-between {
    justify-content: space-between !important;
  }
  .justify-content-b1366-around {
    justify-content: space-around !important;
  }
  .align-items-b1366-start {
    align-items: flex-start !important;
  }
  .align-items-b1366-end {
    align-items: flex-end !important;
  }
  .align-items-b1366-center {
    align-items: center !important;
  }
  .align-items-b1366-baseline {
    align-items: baseline !important;
  }
  .align-items-b1366-stretch {
    align-items: stretch !important;
  }
  .align-content-b1366-start {
    align-content: flex-start !important;
  }
  .align-content-b1366-end {
    align-content: flex-end !important;
  }
  .align-content-b1366-center {
    align-content: center !important;
  }
  .align-content-b1366-between {
    align-content: space-between !important;
  }
  .align-content-b1366-around {
    align-content: space-around !important;
  }
  .align-content-b1366-stretch {
    align-content: stretch !important;
  }
  .align-self-b1366-auto {
    align-self: auto !important;
  }
  .align-self-b1366-start {
    align-self: flex-start !important;
  }
  .align-self-b1366-end {
    align-self: flex-end !important;
  }
  .align-self-b1366-center {
    align-self: center !important;
  }
  .align-self-b1366-baseline {
    align-self: baseline !important;
  }
  .align-self-b1366-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1440px) {
  .flex-b1400-row {
    flex-direction: row !important;
  }
  .flex-b1400-column {
    flex-direction: column !important;
  }
  .flex-b1400-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-b1400-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-b1400-wrap {
    flex-wrap: wrap !important;
  }
  .flex-b1400-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-b1400-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-b1400-fill {
    flex: 1 1 auto !important;
  }
  .flex-b1400-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-b1400-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-b1400-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-b1400-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-b1400-start {
    justify-content: flex-start !important;
  }
  .justify-content-b1400-end {
    justify-content: flex-end !important;
  }
  .justify-content-b1400-center {
    justify-content: center !important;
  }
  .justify-content-b1400-between {
    justify-content: space-between !important;
  }
  .justify-content-b1400-around {
    justify-content: space-around !important;
  }
  .align-items-b1400-start {
    align-items: flex-start !important;
  }
  .align-items-b1400-end {
    align-items: flex-end !important;
  }
  .align-items-b1400-center {
    align-items: center !important;
  }
  .align-items-b1400-baseline {
    align-items: baseline !important;
  }
  .align-items-b1400-stretch {
    align-items: stretch !important;
  }
  .align-content-b1400-start {
    align-content: flex-start !important;
  }
  .align-content-b1400-end {
    align-content: flex-end !important;
  }
  .align-content-b1400-center {
    align-content: center !important;
  }
  .align-content-b1400-between {
    align-content: space-between !important;
  }
  .align-content-b1400-around {
    align-content: space-around !important;
  }
  .align-content-b1400-stretch {
    align-content: stretch !important;
  }
  .align-self-b1400-auto {
    align-self: auto !important;
  }
  .align-self-b1400-start {
    align-self: flex-start !important;
  }
  .align-self-b1400-end {
    align-self: flex-end !important;
  }
  .align-self-b1400-center {
    align-self: center !important;
  }
  .align-self-b1400-baseline {
    align-self: baseline !important;
  }
  .align-self-b1400-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1920px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 375px) {
  .m-b375-0 {
    margin: 0 !important;
  }
  .mt-b375-0,
  .my-b375-0 {
    margin-top: 0 !important;
  }
  .mr-b375-0,
  .mx-b375-0 {
    margin-right: 0 !important;
  }
  .mb-b375-0,
  .my-b375-0 {
    margin-bottom: 0 !important;
  }
  .ml-b375-0,
  .mx-b375-0 {
    margin-left: 0 !important;
  }
  .m-b375-1 {
    margin: 0.25rem !important;
  }
  .mt-b375-1,
  .my-b375-1 {
    margin-top: 0.25rem !important;
  }
  .mr-b375-1,
  .mx-b375-1 {
    margin-right: 0.25rem !important;
  }
  .mb-b375-1,
  .my-b375-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-b375-1,
  .mx-b375-1 {
    margin-left: 0.25rem !important;
  }
  .m-b375-2 {
    margin: 0.5rem !important;
  }
  .mt-b375-2,
  .my-b375-2 {
    margin-top: 0.5rem !important;
  }
  .mr-b375-2,
  .mx-b375-2 {
    margin-right: 0.5rem !important;
  }
  .mb-b375-2,
  .my-b375-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-b375-2,
  .mx-b375-2 {
    margin-left: 0.5rem !important;
  }
  .m-b375-3 {
    margin: 1rem !important;
  }
  .mt-b375-3,
  .my-b375-3 {
    margin-top: 1rem !important;
  }
  .mr-b375-3,
  .mx-b375-3 {
    margin-right: 1rem !important;
  }
  .mb-b375-3,
  .my-b375-3 {
    margin-bottom: 1rem !important;
  }
  .ml-b375-3,
  .mx-b375-3 {
    margin-left: 1rem !important;
  }
  .m-b375-4 {
    margin: 1.5rem !important;
  }
  .mt-b375-4,
  .my-b375-4 {
    margin-top: 1.5rem !important;
  }
  .mr-b375-4,
  .mx-b375-4 {
    margin-right: 1.5rem !important;
  }
  .mb-b375-4,
  .my-b375-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-b375-4,
  .mx-b375-4 {
    margin-left: 1.5rem !important;
  }
  .m-b375-5 {
    margin: 3rem !important;
  }
  .mt-b375-5,
  .my-b375-5 {
    margin-top: 3rem !important;
  }
  .mr-b375-5,
  .mx-b375-5 {
    margin-right: 3rem !important;
  }
  .mb-b375-5,
  .my-b375-5 {
    margin-bottom: 3rem !important;
  }
  .ml-b375-5,
  .mx-b375-5 {
    margin-left: 3rem !important;
  }
  .p-b375-0 {
    padding: 0 !important;
  }
  .pt-b375-0,
  .py-b375-0 {
    padding-top: 0 !important;
  }
  .pr-b375-0,
  .px-b375-0 {
    padding-right: 0 !important;
  }
  .pb-b375-0,
  .py-b375-0 {
    padding-bottom: 0 !important;
  }
  .pl-b375-0,
  .px-b375-0 {
    padding-left: 0 !important;
  }
  .p-b375-1 {
    padding: 0.25rem !important;
  }
  .pt-b375-1,
  .py-b375-1 {
    padding-top: 0.25rem !important;
  }
  .pr-b375-1,
  .px-b375-1 {
    padding-right: 0.25rem !important;
  }
  .pb-b375-1,
  .py-b375-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-b375-1,
  .px-b375-1 {
    padding-left: 0.25rem !important;
  }
  .p-b375-2 {
    padding: 0.5rem !important;
  }
  .pt-b375-2,
  .py-b375-2 {
    padding-top: 0.5rem !important;
  }
  .pr-b375-2,
  .px-b375-2 {
    padding-right: 0.5rem !important;
  }
  .pb-b375-2,
  .py-b375-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-b375-2,
  .px-b375-2 {
    padding-left: 0.5rem !important;
  }
  .p-b375-3 {
    padding: 1rem !important;
  }
  .pt-b375-3,
  .py-b375-3 {
    padding-top: 1rem !important;
  }
  .pr-b375-3,
  .px-b375-3 {
    padding-right: 1rem !important;
  }
  .pb-b375-3,
  .py-b375-3 {
    padding-bottom: 1rem !important;
  }
  .pl-b375-3,
  .px-b375-3 {
    padding-left: 1rem !important;
  }
  .p-b375-4 {
    padding: 1.5rem !important;
  }
  .pt-b375-4,
  .py-b375-4 {
    padding-top: 1.5rem !important;
  }
  .pr-b375-4,
  .px-b375-4 {
    padding-right: 1.5rem !important;
  }
  .pb-b375-4,
  .py-b375-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-b375-4,
  .px-b375-4 {
    padding-left: 1.5rem !important;
  }
  .p-b375-5 {
    padding: 3rem !important;
  }
  .pt-b375-5,
  .py-b375-5 {
    padding-top: 3rem !important;
  }
  .pr-b375-5,
  .px-b375-5 {
    padding-right: 3rem !important;
  }
  .pb-b375-5,
  .py-b375-5 {
    padding-bottom: 3rem !important;
  }
  .pl-b375-5,
  .px-b375-5 {
    padding-left: 3rem !important;
  }
  .m-b375-n1 {
    margin: -0.25rem !important;
  }
  .mt-b375-n1,
  .my-b375-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-b375-n1,
  .mx-b375-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-b375-n1,
  .my-b375-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-b375-n1,
  .mx-b375-n1 {
    margin-left: -0.25rem !important;
  }
  .m-b375-n2 {
    margin: -0.5rem !important;
  }
  .mt-b375-n2,
  .my-b375-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-b375-n2,
  .mx-b375-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-b375-n2,
  .my-b375-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-b375-n2,
  .mx-b375-n2 {
    margin-left: -0.5rem !important;
  }
  .m-b375-n3 {
    margin: -1rem !important;
  }
  .mt-b375-n3,
  .my-b375-n3 {
    margin-top: -1rem !important;
  }
  .mr-b375-n3,
  .mx-b375-n3 {
    margin-right: -1rem !important;
  }
  .mb-b375-n3,
  .my-b375-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-b375-n3,
  .mx-b375-n3 {
    margin-left: -1rem !important;
  }
  .m-b375-n4 {
    margin: -1.5rem !important;
  }
  .mt-b375-n4,
  .my-b375-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-b375-n4,
  .mx-b375-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-b375-n4,
  .my-b375-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-b375-n4,
  .mx-b375-n4 {
    margin-left: -1.5rem !important;
  }
  .m-b375-n5 {
    margin: -3rem !important;
  }
  .mt-b375-n5,
  .my-b375-n5 {
    margin-top: -3rem !important;
  }
  .mr-b375-n5,
  .mx-b375-n5 {
    margin-right: -3rem !important;
  }
  .mb-b375-n5,
  .my-b375-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-b375-n5,
  .mx-b375-n5 {
    margin-left: -3rem !important;
  }
  .m-b375-auto {
    margin: auto !important;
  }
  .mt-b375-auto,
  .my-b375-auto {
    margin-top: auto !important;
  }
  .mr-b375-auto,
  .mx-b375-auto {
    margin-right: auto !important;
  }
  .mb-b375-auto,
  .my-b375-auto {
    margin-bottom: auto !important;
  }
  .ml-b375-auto,
  .mx-b375-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 480px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 680px) {
  .m-b680-0 {
    margin: 0 !important;
  }
  .mt-b680-0,
  .my-b680-0 {
    margin-top: 0 !important;
  }
  .mr-b680-0,
  .mx-b680-0 {
    margin-right: 0 !important;
  }
  .mb-b680-0,
  .my-b680-0 {
    margin-bottom: 0 !important;
  }
  .ml-b680-0,
  .mx-b680-0 {
    margin-left: 0 !important;
  }
  .m-b680-1 {
    margin: 0.25rem !important;
  }
  .mt-b680-1,
  .my-b680-1 {
    margin-top: 0.25rem !important;
  }
  .mr-b680-1,
  .mx-b680-1 {
    margin-right: 0.25rem !important;
  }
  .mb-b680-1,
  .my-b680-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-b680-1,
  .mx-b680-1 {
    margin-left: 0.25rem !important;
  }
  .m-b680-2 {
    margin: 0.5rem !important;
  }
  .mt-b680-2,
  .my-b680-2 {
    margin-top: 0.5rem !important;
  }
  .mr-b680-2,
  .mx-b680-2 {
    margin-right: 0.5rem !important;
  }
  .mb-b680-2,
  .my-b680-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-b680-2,
  .mx-b680-2 {
    margin-left: 0.5rem !important;
  }
  .m-b680-3 {
    margin: 1rem !important;
  }
  .mt-b680-3,
  .my-b680-3 {
    margin-top: 1rem !important;
  }
  .mr-b680-3,
  .mx-b680-3 {
    margin-right: 1rem !important;
  }
  .mb-b680-3,
  .my-b680-3 {
    margin-bottom: 1rem !important;
  }
  .ml-b680-3,
  .mx-b680-3 {
    margin-left: 1rem !important;
  }
  .m-b680-4 {
    margin: 1.5rem !important;
  }
  .mt-b680-4,
  .my-b680-4 {
    margin-top: 1.5rem !important;
  }
  .mr-b680-4,
  .mx-b680-4 {
    margin-right: 1.5rem !important;
  }
  .mb-b680-4,
  .my-b680-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-b680-4,
  .mx-b680-4 {
    margin-left: 1.5rem !important;
  }
  .m-b680-5 {
    margin: 3rem !important;
  }
  .mt-b680-5,
  .my-b680-5 {
    margin-top: 3rem !important;
  }
  .mr-b680-5,
  .mx-b680-5 {
    margin-right: 3rem !important;
  }
  .mb-b680-5,
  .my-b680-5 {
    margin-bottom: 3rem !important;
  }
  .ml-b680-5,
  .mx-b680-5 {
    margin-left: 3rem !important;
  }
  .p-b680-0 {
    padding: 0 !important;
  }
  .pt-b680-0,
  .py-b680-0 {
    padding-top: 0 !important;
  }
  .pr-b680-0,
  .px-b680-0 {
    padding-right: 0 !important;
  }
  .pb-b680-0,
  .py-b680-0 {
    padding-bottom: 0 !important;
  }
  .pl-b680-0,
  .px-b680-0 {
    padding-left: 0 !important;
  }
  .p-b680-1 {
    padding: 0.25rem !important;
  }
  .pt-b680-1,
  .py-b680-1 {
    padding-top: 0.25rem !important;
  }
  .pr-b680-1,
  .px-b680-1 {
    padding-right: 0.25rem !important;
  }
  .pb-b680-1,
  .py-b680-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-b680-1,
  .px-b680-1 {
    padding-left: 0.25rem !important;
  }
  .p-b680-2 {
    padding: 0.5rem !important;
  }
  .pt-b680-2,
  .py-b680-2 {
    padding-top: 0.5rem !important;
  }
  .pr-b680-2,
  .px-b680-2 {
    padding-right: 0.5rem !important;
  }
  .pb-b680-2,
  .py-b680-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-b680-2,
  .px-b680-2 {
    padding-left: 0.5rem !important;
  }
  .p-b680-3 {
    padding: 1rem !important;
  }
  .pt-b680-3,
  .py-b680-3 {
    padding-top: 1rem !important;
  }
  .pr-b680-3,
  .px-b680-3 {
    padding-right: 1rem !important;
  }
  .pb-b680-3,
  .py-b680-3 {
    padding-bottom: 1rem !important;
  }
  .pl-b680-3,
  .px-b680-3 {
    padding-left: 1rem !important;
  }
  .p-b680-4 {
    padding: 1.5rem !important;
  }
  .pt-b680-4,
  .py-b680-4 {
    padding-top: 1.5rem !important;
  }
  .pr-b680-4,
  .px-b680-4 {
    padding-right: 1.5rem !important;
  }
  .pb-b680-4,
  .py-b680-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-b680-4,
  .px-b680-4 {
    padding-left: 1.5rem !important;
  }
  .p-b680-5 {
    padding: 3rem !important;
  }
  .pt-b680-5,
  .py-b680-5 {
    padding-top: 3rem !important;
  }
  .pr-b680-5,
  .px-b680-5 {
    padding-right: 3rem !important;
  }
  .pb-b680-5,
  .py-b680-5 {
    padding-bottom: 3rem !important;
  }
  .pl-b680-5,
  .px-b680-5 {
    padding-left: 3rem !important;
  }
  .m-b680-n1 {
    margin: -0.25rem !important;
  }
  .mt-b680-n1,
  .my-b680-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-b680-n1,
  .mx-b680-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-b680-n1,
  .my-b680-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-b680-n1,
  .mx-b680-n1 {
    margin-left: -0.25rem !important;
  }
  .m-b680-n2 {
    margin: -0.5rem !important;
  }
  .mt-b680-n2,
  .my-b680-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-b680-n2,
  .mx-b680-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-b680-n2,
  .my-b680-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-b680-n2,
  .mx-b680-n2 {
    margin-left: -0.5rem !important;
  }
  .m-b680-n3 {
    margin: -1rem !important;
  }
  .mt-b680-n3,
  .my-b680-n3 {
    margin-top: -1rem !important;
  }
  .mr-b680-n3,
  .mx-b680-n3 {
    margin-right: -1rem !important;
  }
  .mb-b680-n3,
  .my-b680-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-b680-n3,
  .mx-b680-n3 {
    margin-left: -1rem !important;
  }
  .m-b680-n4 {
    margin: -1.5rem !important;
  }
  .mt-b680-n4,
  .my-b680-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-b680-n4,
  .mx-b680-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-b680-n4,
  .my-b680-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-b680-n4,
  .mx-b680-n4 {
    margin-left: -1.5rem !important;
  }
  .m-b680-n5 {
    margin: -3rem !important;
  }
  .mt-b680-n5,
  .my-b680-n5 {
    margin-top: -3rem !important;
  }
  .mr-b680-n5,
  .mx-b680-n5 {
    margin-right: -3rem !important;
  }
  .mb-b680-n5,
  .my-b680-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-b680-n5,
  .mx-b680-n5 {
    margin-left: -3rem !important;
  }
  .m-b680-auto {
    margin: auto !important;
  }
  .mt-b680-auto,
  .my-b680-auto {
    margin-top: auto !important;
  }
  .mr-b680-auto,
  .mx-b680-auto {
    margin-right: auto !important;
  }
  .mb-b680-auto,
  .my-b680-auto {
    margin-bottom: auto !important;
  }
  .ml-b680-auto,
  .mx-b680-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1366px) {
  .m-b1366-0 {
    margin: 0 !important;
  }
  .mt-b1366-0,
  .my-b1366-0 {
    margin-top: 0 !important;
  }
  .mr-b1366-0,
  .mx-b1366-0 {
    margin-right: 0 !important;
  }
  .mb-b1366-0,
  .my-b1366-0 {
    margin-bottom: 0 !important;
  }
  .ml-b1366-0,
  .mx-b1366-0 {
    margin-left: 0 !important;
  }
  .m-b1366-1 {
    margin: 0.25rem !important;
  }
  .mt-b1366-1,
  .my-b1366-1 {
    margin-top: 0.25rem !important;
  }
  .mr-b1366-1,
  .mx-b1366-1 {
    margin-right: 0.25rem !important;
  }
  .mb-b1366-1,
  .my-b1366-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-b1366-1,
  .mx-b1366-1 {
    margin-left: 0.25rem !important;
  }
  .m-b1366-2 {
    margin: 0.5rem !important;
  }
  .mt-b1366-2,
  .my-b1366-2 {
    margin-top: 0.5rem !important;
  }
  .mr-b1366-2,
  .mx-b1366-2 {
    margin-right: 0.5rem !important;
  }
  .mb-b1366-2,
  .my-b1366-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-b1366-2,
  .mx-b1366-2 {
    margin-left: 0.5rem !important;
  }
  .m-b1366-3 {
    margin: 1rem !important;
  }
  .mt-b1366-3,
  .my-b1366-3 {
    margin-top: 1rem !important;
  }
  .mr-b1366-3,
  .mx-b1366-3 {
    margin-right: 1rem !important;
  }
  .mb-b1366-3,
  .my-b1366-3 {
    margin-bottom: 1rem !important;
  }
  .ml-b1366-3,
  .mx-b1366-3 {
    margin-left: 1rem !important;
  }
  .m-b1366-4 {
    margin: 1.5rem !important;
  }
  .mt-b1366-4,
  .my-b1366-4 {
    margin-top: 1.5rem !important;
  }
  .mr-b1366-4,
  .mx-b1366-4 {
    margin-right: 1.5rem !important;
  }
  .mb-b1366-4,
  .my-b1366-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-b1366-4,
  .mx-b1366-4 {
    margin-left: 1.5rem !important;
  }
  .m-b1366-5 {
    margin: 3rem !important;
  }
  .mt-b1366-5,
  .my-b1366-5 {
    margin-top: 3rem !important;
  }
  .mr-b1366-5,
  .mx-b1366-5 {
    margin-right: 3rem !important;
  }
  .mb-b1366-5,
  .my-b1366-5 {
    margin-bottom: 3rem !important;
  }
  .ml-b1366-5,
  .mx-b1366-5 {
    margin-left: 3rem !important;
  }
  .p-b1366-0 {
    padding: 0 !important;
  }
  .pt-b1366-0,
  .py-b1366-0 {
    padding-top: 0 !important;
  }
  .pr-b1366-0,
  .px-b1366-0 {
    padding-right: 0 !important;
  }
  .pb-b1366-0,
  .py-b1366-0 {
    padding-bottom: 0 !important;
  }
  .pl-b1366-0,
  .px-b1366-0 {
    padding-left: 0 !important;
  }
  .p-b1366-1 {
    padding: 0.25rem !important;
  }
  .pt-b1366-1,
  .py-b1366-1 {
    padding-top: 0.25rem !important;
  }
  .pr-b1366-1,
  .px-b1366-1 {
    padding-right: 0.25rem !important;
  }
  .pb-b1366-1,
  .py-b1366-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-b1366-1,
  .px-b1366-1 {
    padding-left: 0.25rem !important;
  }
  .p-b1366-2 {
    padding: 0.5rem !important;
  }
  .pt-b1366-2,
  .py-b1366-2 {
    padding-top: 0.5rem !important;
  }
  .pr-b1366-2,
  .px-b1366-2 {
    padding-right: 0.5rem !important;
  }
  .pb-b1366-2,
  .py-b1366-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-b1366-2,
  .px-b1366-2 {
    padding-left: 0.5rem !important;
  }
  .p-b1366-3 {
    padding: 1rem !important;
  }
  .pt-b1366-3,
  .py-b1366-3 {
    padding-top: 1rem !important;
  }
  .pr-b1366-3,
  .px-b1366-3 {
    padding-right: 1rem !important;
  }
  .pb-b1366-3,
  .py-b1366-3 {
    padding-bottom: 1rem !important;
  }
  .pl-b1366-3,
  .px-b1366-3 {
    padding-left: 1rem !important;
  }
  .p-b1366-4 {
    padding: 1.5rem !important;
  }
  .pt-b1366-4,
  .py-b1366-4 {
    padding-top: 1.5rem !important;
  }
  .pr-b1366-4,
  .px-b1366-4 {
    padding-right: 1.5rem !important;
  }
  .pb-b1366-4,
  .py-b1366-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-b1366-4,
  .px-b1366-4 {
    padding-left: 1.5rem !important;
  }
  .p-b1366-5 {
    padding: 3rem !important;
  }
  .pt-b1366-5,
  .py-b1366-5 {
    padding-top: 3rem !important;
  }
  .pr-b1366-5,
  .px-b1366-5 {
    padding-right: 3rem !important;
  }
  .pb-b1366-5,
  .py-b1366-5 {
    padding-bottom: 3rem !important;
  }
  .pl-b1366-5,
  .px-b1366-5 {
    padding-left: 3rem !important;
  }
  .m-b1366-n1 {
    margin: -0.25rem !important;
  }
  .mt-b1366-n1,
  .my-b1366-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-b1366-n1,
  .mx-b1366-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-b1366-n1,
  .my-b1366-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-b1366-n1,
  .mx-b1366-n1 {
    margin-left: -0.25rem !important;
  }
  .m-b1366-n2 {
    margin: -0.5rem !important;
  }
  .mt-b1366-n2,
  .my-b1366-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-b1366-n2,
  .mx-b1366-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-b1366-n2,
  .my-b1366-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-b1366-n2,
  .mx-b1366-n2 {
    margin-left: -0.5rem !important;
  }
  .m-b1366-n3 {
    margin: -1rem !important;
  }
  .mt-b1366-n3,
  .my-b1366-n3 {
    margin-top: -1rem !important;
  }
  .mr-b1366-n3,
  .mx-b1366-n3 {
    margin-right: -1rem !important;
  }
  .mb-b1366-n3,
  .my-b1366-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-b1366-n3,
  .mx-b1366-n3 {
    margin-left: -1rem !important;
  }
  .m-b1366-n4 {
    margin: -1.5rem !important;
  }
  .mt-b1366-n4,
  .my-b1366-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-b1366-n4,
  .mx-b1366-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-b1366-n4,
  .my-b1366-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-b1366-n4,
  .mx-b1366-n4 {
    margin-left: -1.5rem !important;
  }
  .m-b1366-n5 {
    margin: -3rem !important;
  }
  .mt-b1366-n5,
  .my-b1366-n5 {
    margin-top: -3rem !important;
  }
  .mr-b1366-n5,
  .mx-b1366-n5 {
    margin-right: -3rem !important;
  }
  .mb-b1366-n5,
  .my-b1366-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-b1366-n5,
  .mx-b1366-n5 {
    margin-left: -3rem !important;
  }
  .m-b1366-auto {
    margin: auto !important;
  }
  .mt-b1366-auto,
  .my-b1366-auto {
    margin-top: auto !important;
  }
  .mr-b1366-auto,
  .mx-b1366-auto {
    margin-right: auto !important;
  }
  .mb-b1366-auto,
  .my-b1366-auto {
    margin-bottom: auto !important;
  }
  .ml-b1366-auto,
  .mx-b1366-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1440px) {
  .m-b1400-0 {
    margin: 0 !important;
  }
  .mt-b1400-0,
  .my-b1400-0 {
    margin-top: 0 !important;
  }
  .mr-b1400-0,
  .mx-b1400-0 {
    margin-right: 0 !important;
  }
  .mb-b1400-0,
  .my-b1400-0 {
    margin-bottom: 0 !important;
  }
  .ml-b1400-0,
  .mx-b1400-0 {
    margin-left: 0 !important;
  }
  .m-b1400-1 {
    margin: 0.25rem !important;
  }
  .mt-b1400-1,
  .my-b1400-1 {
    margin-top: 0.25rem !important;
  }
  .mr-b1400-1,
  .mx-b1400-1 {
    margin-right: 0.25rem !important;
  }
  .mb-b1400-1,
  .my-b1400-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-b1400-1,
  .mx-b1400-1 {
    margin-left: 0.25rem !important;
  }
  .m-b1400-2 {
    margin: 0.5rem !important;
  }
  .mt-b1400-2,
  .my-b1400-2 {
    margin-top: 0.5rem !important;
  }
  .mr-b1400-2,
  .mx-b1400-2 {
    margin-right: 0.5rem !important;
  }
  .mb-b1400-2,
  .my-b1400-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-b1400-2,
  .mx-b1400-2 {
    margin-left: 0.5rem !important;
  }
  .m-b1400-3 {
    margin: 1rem !important;
  }
  .mt-b1400-3,
  .my-b1400-3 {
    margin-top: 1rem !important;
  }
  .mr-b1400-3,
  .mx-b1400-3 {
    margin-right: 1rem !important;
  }
  .mb-b1400-3,
  .my-b1400-3 {
    margin-bottom: 1rem !important;
  }
  .ml-b1400-3,
  .mx-b1400-3 {
    margin-left: 1rem !important;
  }
  .m-b1400-4 {
    margin: 1.5rem !important;
  }
  .mt-b1400-4,
  .my-b1400-4 {
    margin-top: 1.5rem !important;
  }
  .mr-b1400-4,
  .mx-b1400-4 {
    margin-right: 1.5rem !important;
  }
  .mb-b1400-4,
  .my-b1400-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-b1400-4,
  .mx-b1400-4 {
    margin-left: 1.5rem !important;
  }
  .m-b1400-5 {
    margin: 3rem !important;
  }
  .mt-b1400-5,
  .my-b1400-5 {
    margin-top: 3rem !important;
  }
  .mr-b1400-5,
  .mx-b1400-5 {
    margin-right: 3rem !important;
  }
  .mb-b1400-5,
  .my-b1400-5 {
    margin-bottom: 3rem !important;
  }
  .ml-b1400-5,
  .mx-b1400-5 {
    margin-left: 3rem !important;
  }
  .p-b1400-0 {
    padding: 0 !important;
  }
  .pt-b1400-0,
  .py-b1400-0 {
    padding-top: 0 !important;
  }
  .pr-b1400-0,
  .px-b1400-0 {
    padding-right: 0 !important;
  }
  .pb-b1400-0,
  .py-b1400-0 {
    padding-bottom: 0 !important;
  }
  .pl-b1400-0,
  .px-b1400-0 {
    padding-left: 0 !important;
  }
  .p-b1400-1 {
    padding: 0.25rem !important;
  }
  .pt-b1400-1,
  .py-b1400-1 {
    padding-top: 0.25rem !important;
  }
  .pr-b1400-1,
  .px-b1400-1 {
    padding-right: 0.25rem !important;
  }
  .pb-b1400-1,
  .py-b1400-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-b1400-1,
  .px-b1400-1 {
    padding-left: 0.25rem !important;
  }
  .p-b1400-2 {
    padding: 0.5rem !important;
  }
  .pt-b1400-2,
  .py-b1400-2 {
    padding-top: 0.5rem !important;
  }
  .pr-b1400-2,
  .px-b1400-2 {
    padding-right: 0.5rem !important;
  }
  .pb-b1400-2,
  .py-b1400-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-b1400-2,
  .px-b1400-2 {
    padding-left: 0.5rem !important;
  }
  .p-b1400-3 {
    padding: 1rem !important;
  }
  .pt-b1400-3,
  .py-b1400-3 {
    padding-top: 1rem !important;
  }
  .pr-b1400-3,
  .px-b1400-3 {
    padding-right: 1rem !important;
  }
  .pb-b1400-3,
  .py-b1400-3 {
    padding-bottom: 1rem !important;
  }
  .pl-b1400-3,
  .px-b1400-3 {
    padding-left: 1rem !important;
  }
  .p-b1400-4 {
    padding: 1.5rem !important;
  }
  .pt-b1400-4,
  .py-b1400-4 {
    padding-top: 1.5rem !important;
  }
  .pr-b1400-4,
  .px-b1400-4 {
    padding-right: 1.5rem !important;
  }
  .pb-b1400-4,
  .py-b1400-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-b1400-4,
  .px-b1400-4 {
    padding-left: 1.5rem !important;
  }
  .p-b1400-5 {
    padding: 3rem !important;
  }
  .pt-b1400-5,
  .py-b1400-5 {
    padding-top: 3rem !important;
  }
  .pr-b1400-5,
  .px-b1400-5 {
    padding-right: 3rem !important;
  }
  .pb-b1400-5,
  .py-b1400-5 {
    padding-bottom: 3rem !important;
  }
  .pl-b1400-5,
  .px-b1400-5 {
    padding-left: 3rem !important;
  }
  .m-b1400-n1 {
    margin: -0.25rem !important;
  }
  .mt-b1400-n1,
  .my-b1400-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-b1400-n1,
  .mx-b1400-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-b1400-n1,
  .my-b1400-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-b1400-n1,
  .mx-b1400-n1 {
    margin-left: -0.25rem !important;
  }
  .m-b1400-n2 {
    margin: -0.5rem !important;
  }
  .mt-b1400-n2,
  .my-b1400-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-b1400-n2,
  .mx-b1400-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-b1400-n2,
  .my-b1400-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-b1400-n2,
  .mx-b1400-n2 {
    margin-left: -0.5rem !important;
  }
  .m-b1400-n3 {
    margin: -1rem !important;
  }
  .mt-b1400-n3,
  .my-b1400-n3 {
    margin-top: -1rem !important;
  }
  .mr-b1400-n3,
  .mx-b1400-n3 {
    margin-right: -1rem !important;
  }
  .mb-b1400-n3,
  .my-b1400-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-b1400-n3,
  .mx-b1400-n3 {
    margin-left: -1rem !important;
  }
  .m-b1400-n4 {
    margin: -1.5rem !important;
  }
  .mt-b1400-n4,
  .my-b1400-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-b1400-n4,
  .mx-b1400-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-b1400-n4,
  .my-b1400-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-b1400-n4,
  .mx-b1400-n4 {
    margin-left: -1.5rem !important;
  }
  .m-b1400-n5 {
    margin: -3rem !important;
  }
  .mt-b1400-n5,
  .my-b1400-n5 {
    margin-top: -3rem !important;
  }
  .mr-b1400-n5,
  .mx-b1400-n5 {
    margin-right: -3rem !important;
  }
  .mb-b1400-n5,
  .my-b1400-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-b1400-n5,
  .mx-b1400-n5 {
    margin-left: -3rem !important;
  }
  .m-b1400-auto {
    margin: auto !important;
  }
  .mt-b1400-auto,
  .my-b1400-auto {
    margin-top: auto !important;
  }
  .mr-b1400-auto,
  .mx-b1400-auto {
    margin-right: auto !important;
  }
  .mb-b1400-auto,
  .my-b1400-auto {
    margin-bottom: auto !important;
  }
  .ml-b1400-auto,
  .mx-b1400-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1920px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 375px) {
  .text-b375-left {
    text-align: left !important;
  }
  .text-b375-right {
    text-align: right !important;
  }
  .text-b375-center {
    text-align: center !important;
  }
}
@media (min-width: 480px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 680px) {
  .text-b680-left {
    text-align: left !important;
  }
  .text-b680-right {
    text-align: right !important;
  }
  .text-b680-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1366px) {
  .text-b1366-left {
    text-align: left !important;
  }
  .text-b1366-right {
    text-align: right !important;
  }
  .text-b1366-center {
    text-align: center !important;
  }
}
@media (min-width: 1440px) {
  .text-b1400-left {
    text-align: left !important;
  }
  .text-b1400-right {
    text-align: right !important;
  }
  .text-b1400-center {
    text-align: center !important;
  }
}
@media (min-width: 1920px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #2C3E49 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(15.2307692308, 21.4615384615, 25.2692307692) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: "e-Ukraine";
  font-weight: 400;
  font-size: 18px;
  color: #1D1D1B;
  line-height: 1;
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "e-Ukraine";
  font-weight: 700;
}

p {
  line-height: 1.35;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #1D1D1B;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #E07A5F;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  padding: 0;
  border: hidden;
}

input[type=search] {
  box-sizing: border-box;
}

.base-wrap {
  overflow-x: clip;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.base-wrap__header {
  flex: 0 0 auto;
}
.base-wrap__content {
  flex: 1 0 auto;
}
.base-wrap__footer {
  flex: 0 0 auto;
}

.row {
  margin-right: -12px;
  margin-left: -12px;
}
@media (min-width: 375px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}

[class*=col-], .col {
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 375px) {
  [class*=col-], .col {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  [class*=col-], .col {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.wrapper {
  padding-right: 16px;
  padding-left: 16px;
  max-width: 1920px;
  padding-right: 20px;
  padding-left: 20px;
}

.video-responsive {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
}

.video-responsive embed,
.video-responsive iframe,
.video-responsive object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.paragraph-line,
.slider-caption {
  font-size: 0.6666666667rem;
  line-height: 0.7777777778rem;
  font-weight: 400;
  margin-top: 0.2222222222rem;
  margin-bottom: 0.2222222222rem;
  padding-bottom: 0.2222222222rem;
  color: #898989;
  border-bottom: 1px dashed #898989;
  font-style: italic;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.main-title {
  color: #1D1D1B;
  font-weight: 700;
  font-size: 1.5555555556rem;
  line-height: 2.2222222222rem;
  margin-bottom: 1.3333333333rem;
}
@media (min-width: 768px) {
  .main-title {
    font-size: 1.7777777778rem;
    line-height: 2.8888888889rem;
  }
}
@media (min-width: 1280px) {
  .main-title {
    margin-bottom: 1.7777777778rem;
    font-size: 2.6666666667rem;
    line-height: 3.7777777778rem;
  }
}

.mainTubs {
  display: flex;
  position: relative;
  margin-bottom: 1.3333333333rem;
  overflow-x: auto;
  min-width: 100%;
  border-bottom: 1px solid #40E0D0;
}
@media (min-width: 1280px) {
  .mainTubs {
    margin-bottom: 1.7777777778rem;
  }
}
.mainTubs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7777777778rem 0.5rem;
  border-bottom: 0px solid #40E0D0;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  font-weight: 400;
  color: #1D1D1B;
  transition: 0.3s linear;
  flex-shrink: 0;
}
@media (min-width: 680px) {
  .mainTubs__tab {
    padding: 0 1.3333333333rem 0.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .mainTubs__tab {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.mainTubs__tab--active {
  font-weight: 700;
  border-bottom: 4px solid #40E0D0;
}
.mainTubs__tab--active:hover {
  color: #1D1D1B;
}

.iti {
  --iti-path-flags-1x: url("../images/client/intl/flags.webp");
  --iti-path-flags-2x: url("../images/client/intl/flags@2x.webp");
  --iti-path-globe-1x: url("../images/client/intl/globe.webp");
  --iti-path-globe-2x: url("../images/client/intl/globe@2x.webp");
  --iti-dropdown-bg: #F4E9DC;
}

.breadcrumbs {
  padding-bottom: 1.3333333333rem;
  padding-top: 0.8888888889rem;
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding-top: 1.3333333333rem;
  }
}
.breadcrumbs__list {
  margin: 0;
  padding: 0;
}
.breadcrumbs__list li {
  font-size: 0.8888888889rem;
  line-height: 1.0555555556rem;
  font-weight: 400;
  flex-shrink: 0;
  color: #68757B;
  display: inline;
  vertical-align: middle;
}
@media (min-width: 1280px) {
  .breadcrumbs__list li {
    font-size: 0.7777777778rem;
    line-height: 1rem;
  }
}
.breadcrumbs__list li a {
  color: #68757B;
}
.breadcrumbs__link {
  transition: all 0.3s;
}
.breadcrumbs__divider {
  margin: 0 0.2222222222rem;
}
.breadcrumbs__item path {
  transition: all 0.3s;
}
.breadcrumbs__item:hover a {
  color: #E07A5F;
}
.breadcrumbs__item:hover path {
  fill: #E07A5F;
  fill-opacity: 1;
}

/*----------------------------------*/
/*----------------------------------*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "e-Ukraine";
  font-size: 1rem;
  line-height: 1.2222222222rem;
  color: #000000;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  background-color: transparent;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.btn--border {
  font-weight: 300;
  color: #2C3E49;
  padding: 0.5555555556rem;
  border-radius: 40px;
  border: 1px solid #40E0D0;
  transition: 0.3s ease;
  position: relative;
  min-height: 2.7777777778rem;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
}
.btn--border::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.6) 0%, rgba(44, 62, 73, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: inherit;
}
.btn--border:hover {
  color: #40E0D0;
}
.btn--border:hover::before {
  opacity: 1;
}
.btn--border:active {
  border: 1px solid #40E0D0;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.6) 0%, rgba(44, 62, 73, 0.6) 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.55) inset;
  transform: scale(0.97);
  color: #40E0D0;
}
.btn--border:active::before {
  opacity: 0 !important;
}
.btn--border > * {
  position: relative;
}
.btn--border-white-text {
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.3) 0%, rgba(44, 62, 73, 0.3) 100%);
}
.btn--white {
  font-weight: 300;
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.1111111111rem;
  padding: 0.5555555556rem;
  border-radius: 40px;
  background: #F4E9DC;
  text-transform: uppercase;
  min-height: 2.7777777778rem;
  transition: 0.3s ease;
  position: relative;
  border: none;
}
.btn--white::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #F4E9DC 0%, #40E0D0 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: inherit;
}
.btn--white:hover::before {
  opacity: 1;
}
.btn--white:active {
  border: 1px solid #40E0D0;
  background: #2C3E49;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  transform: scale(0.97);
  color: #FFFFFF;
}
.btn--white:active::before {
  opacity: 0 !important;
}
.btn--white > * {
  position: relative;
}
.btn--brand {
  font-weight: 500;
  color: #101B2A;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
  padding: 0.5555555556rem;
  border-radius: 40px;
  background: #40E0D0;
  min-height: 2rem;
  position: relative;
  border: hidden;
}
@media (min-width: 1024px) {
  .btn--brand {
    font-size: 0.7777777778rem;
    line-height: 1.0555555556rem;
    min-height: 3.1111111111rem;
  }
}
.btn--brand::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #40E0D0 0%, rgb(25.972972973, 160.027027027, 146.6216216216) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: inherit;
}
.btn--brand:hover::before {
  opacity: 1;
}
.btn--brand:active {
  background: rgb(29.5337837838, 181.9662162162, 166.722972973);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) inset;
  transform: scale(0.97);
}
.btn--brand:active::before {
  opacity: 0 !important;
}
.btn--brand > * {
  position: relative;
  z-index: 1;
}
.btn--dark {
  font-weight: 300;
  color: #F4E9DC;
  padding: 0.5555555556rem;
  border-radius: 40px;
  transition: 0.3s ease;
  position: relative;
  min-height: 2.7777777778rem;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  background: linear-gradient(90deg, #2C3E49 0%, #2C3E49 100%);
}
.btn--dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.8) 0%, rgba(44, 62, 73, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: inherit;
}
.btn--dark:hover {
  color: #40E0D0;
}
.btn--dark:hover::before {
  opacity: 1;
}
.btn--dark:active {
  border: 1px solid #40E0D0;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.6) 0%, rgba(44, 62, 73, 0.6) 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.55) inset;
  transform: scale(0.97);
  color: #40E0D0;
}
.btn--dark:active::before {
  opacity: 0 !important;
}
.btn--dark > * {
  position: relative;
}

.pagination-container {
  margin-top: 2.6666666667rem;
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 -0.3333333333rem;
}
@media (min-width: 768px) {
  .pagination {
    margin: 0 -0.4444444444rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.pagination__item {
  padding: 0 0.3333333333rem;
}
@media (min-width: 768px) {
  .pagination__item {
    padding: 0 0.4444444444rem;
  }
}
.pagination__item:first-child {
  margin-right: auto;
}
.pagination__item:last-child {
  margin-left: auto;
}
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #40E0D0;
  background-color: #FFFFFF;
  padding: 0.2222222222rem;
  font-size: 0.8888888889rem;
  line-height: 0.8888888889rem;
  width: 1.7777777778rem;
  height: 1.7777777778rem;
}
@media (min-width: 768px) {
  .pagination__btn {
    font-size: 1rem;
    line-height: 1.4444444444rem;
    width: 2.6666666667rem;
    height: 2.6666666667rem;
  }
}
.pagination__btn:hover {
  color: #1D1D1B;
  background-color: #40E0D0;
}
.pagination__btn--active {
  background-color: #68757B !important;
  color: #FFFFFF !important;
}

.my-checkbox {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
}
.my-checkbox + label {
  display: inline-flex;
  align-items: flex-start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 1024px) {
  .my-checkbox + label {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.my-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  margin-right: 16px;
  border: 2px solid #1D1D1B;
  flex-shrink: 0;
  margin-top: 3px;
}
.my-checkbox:checked + label::before, .my-checkbox.checked + label::before {
  background-image: url("../images/client/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px;
}

.notification {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  padding-left: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  transform: translateY(100%);
  transition: 0.3s;
  visibility: hidden;
}
.notification.active {
  visibility: visible;
  transform: translateY(0);
}
.notification--error .notification__status-error {
  display: block;
}
.notification--error .notification__wrap {
  background-color: #F0D2D2;
}
.notification--error .notification__icon {
  background: rgba(229, 122, 122, 0.2) url("../images/client/icons/error-ico.svg") no-repeat center;
}
.notification--success .notification__status-success {
  display: block;
}
.notification--success .notification__wrap {
  background-color: #d9ffda;
}
.notification--success .notification__icon {
  background: rgba(122, 229, 126, 0.2) url("../images/client/icons/success-ico.svg") no-repeat center;
}
.notification__wrap {
  max-width: 34.2222222222rem;
  width: 100%;
  border-radius: 4px;
  background-color: #F0D2D2;
  box-shadow: 0px 4px 10px 0px rgba(36, 41, 50, 0.1);
  padding: 0.8888888889rem 1.3333333333rem 0.8888888889rem 0.8888888889rem;
  display: flex;
  align-items: center;
}
.notification__icon {
  display: block;
  width: 3.5555555556rem;
  height: 3.5555555556rem;
  border-radius: 8px;
  background: rgba(229, 122, 122, 0.2) url("../images/client/icons/error-ico.svg") no-repeat center;
  background-size: 40px;
  margin-right: 0.8888888889rem;
}
.notification__status-name {
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  margin-bottom: 0.1111111111rem;
}
@media (min-width: 1024px) {
  .notification__status-name {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.notification__status-name span {
  display: none;
}
.notification__text {
  font-size: 0.8333333333rem;
  line-height: 1.3333333333rem;
  color: #1D1D1B;
  font-weight: 400;
}
.notification__close {
  position: absolute;
  top: 0.4444444444rem;
  right: 0.4444444444rem;
}

.paragraph {
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  margin: 0.4444444444rem 0;
}
@media (min-width: 1024px) {
  .paragraph {
    font-size: 1rem;
    line-height: 1.5555555556rem;
    margin: 1.3333333333rem 0;
  }
}
.paragraph a {
  color: #68757B;
  text-decoration: underline;
}
.paragraph a:hover {
  color: #E07A5F;
}

.head {
  margin-top: 2.6666666667rem;
  margin-bottom: 0.4444444444rem;
}
@media (min-width: 1024px) {
  .head {
    margin-top: 3.5555555556rem;
    margin-bottom: 1.3333333333rem;
  }
}

.title {
  font-weight: 700;
  color: #1D1D1B;
}
.title--h1 {
  font-size: 1.3333333333rem;
  line-height: 1.6666666667rem;
}
@media (min-width: 1280px) {
  .title--h1 {
    font-size: 2rem;
    line-height: 2.4444444444rem;
  }
}
.title--h2 {
  font-size: 1.1111111111rem;
  line-height: 1.5555555556rem;
  padding-left: 0.8888888889rem;
  position: relative;
}
@media (min-width: 1280px) {
  .title--h2 {
    font-size: 1.7777777778rem;
    line-height: 2.4444444444rem;
  }
}
.title--h2:before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 7px;
  background-color: #40E0D0;
  top: 0.2777777778rem;
  left: 0;
}
@media (min-width: 1280px) {
  .title--h2:before {
    top: 0.6111111111rem;
    height: 1.3333333333rem;
  }
}
.title--h3 {
  font-weight: 400;
  font-size: 1.1111111111rem;
  line-height: 1.7777777778rem;
  color: #1D1D1B;
}
@media (min-width: 1280px) {
  .title--h3 {
    font-size: 1.3333333333rem;
    line-height: 1.8888888889rem;
  }
}
.head + .listBlock {
  margin-top: 0.8888888889rem;
}

.listBlock {
  margin: 1.3333333333rem 0;
}
@media (min-width: 1024px) {
  .listBlock {
    margin: 1.7777777778rem 0;
  }
}
.listBlock ul {
  list-style-type: none;
}
.listBlock ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7222222222rem;
  width: 7px;
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 6" width="7" height="6"><rect width="4.41484" height="4.41484" transform="matrix(0.73365 -0.679528 0.73365 0.679528 0 3)" fill="%2368757B"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.listBlock ol {
  list-style-type: decimal;
}
.listBlock li {
  position: relative;
  color: #40E0D0;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  padding-left: 0.8888888889rem;
}
@media (min-width: 1024px) {
  .listBlock li {
    font-size: 1rem;
    line-height: 1.6666666667rem;
  }
}
.listBlock li span {
  color: #000000;
}
.listBlock li a {
  color: #68757B;
  text-decoration: underline;
}
.listBlock li a:hover {
  color: #E07A5F;
}
.listBlock li + li {
  margin-top: 0.8888888889rem;
}
.listBlock [class*=col-] + [class*=col-] ul, .listBlock [class*=col-] + [class*=col-] ol {
  margin-top: 0.8888888889rem;
}
@media (min-width: 768px) {
  .listBlock [class*=col-] + [class*=col-] ul, .listBlock [class*=col-] + [class*=col-] ol {
    margin-top: 0;
  }
}

.image {
  margin: 1.3333333333rem 0;
}
.image__wrapper {
  margin: 0;
}
.image img {
  border-radius: 24px;
  width: 100%;
  height: auto;
}

.galleryBlock {
  margin: 1.3333333333rem 0;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
}
@media (min-width: 680px) {
  .galleryBlock {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .galleryBlock {
    margin: 1.7777777778rem 0;
  }
}
.galleryBlock__wrapper {
  position: relative;
}
.galleryBlock__prev, .galleryBlock__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7777777778rem;
  height: 1.7777777778rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  z-index: 1;
}
@media (min-width: 1280px) {
  .galleryBlock__prev, .galleryBlock__next {
    width: 2.6666666667rem;
    height: 2.6666666667rem;
  }
}
.galleryBlock__prev {
  left: 0.8888888889rem;
}
@media (min-width: 1280px) {
  .galleryBlock__prev {
    left: 1.3333333333rem;
  }
}
.galleryBlock__next {
  right: 0.8888888889rem;
}
@media (min-width: 1280px) {
  .galleryBlock__next {
    right: 1.3333333333rem;
  }
}

.slider-img {
  margin: 0;
  height: 0;
  padding-top: 67%;
  position: relative;
}
.slider-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.slider-pagination {
  position: static;
  left: unset;
  top: unset;
  right: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8888888889rem;
  min-height: 0.6666666667rem;
}
.slider-pagination .swiper-pagination-bullet {
  border: 1px solid #68757B;
  width: 0.4444444444rem;
  height: 0.4444444444rem;
  background-color: #40E0D0;
  opacity: 1;
  transition: 0.3s linear;
}
.slider-pagination .swiper-pagination-bullet-active {
  background-color: #68757B;
  width: 0.6666666667rem;
  height: 0.6666666667rem;
}

.mediaText {
  margin-top: 2.6666666667rem;
  margin-bottom: 2.6666666667rem;
}
@media (min-width: 1024px) {
  .mediaText {
    margin-top: 3.5555555556rem;
    margin-bottom: 3.5555555556rem;
  }
}
@media (min-width: 1024px) {
  .mediaText {
    margin-right: calc(-50% - 8px);
  }
}
@media (min-width: 1280px) {
  .mediaText {
    margin-right: 0;
  }
}
.mediaText__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mediaText__title {
  margin-bottom: 0.8888888889rem;
}
.mediaText__text {
  color: #000000;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 1024px) {
  .mediaText__text {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.mediaText__btn {
  min-width: 13.7777777778rem;
  width: 100%;
  margin-top: 0.8888888889rem;
}
@media (min-width: 680px) {
  .mediaText__btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.mediaText__pic {
  display: block;
  width: 100%;
  margin-top: 0.8888888889rem;
}
@media (min-width: 680px) {
  .mediaText__pic {
    margin-top: 0;
  }
}
.mediaText__pic img {
  width: 100%;
}

.linkTextWrap {
  margin: 0.8888888889rem 0;
}
.linkTextWrap__more svg {
  margin-left: 0.4444444444rem;
}
.linkTextWrap__more span:nth-child(2) {
  display: none;
}
.linkTextWrap.show-all .linkTextWrap__more span:nth-child(1) {
  display: none;
}
.linkTextWrap.show-all .linkTextWrap__more span:nth-child(2) {
  display: block;
}
.linkTextWrap.show-all .linkTextWrap__more svg {
  transform: rotate(180deg);
}

.linkText {
  margin: 0.8888888889rem 0;
}
.linkText__wrapper {
  background-color: #40E0D0;
  padding: 1.1111111111rem 0.8888888889rem;
}
@media (min-width: 1024px) {
  .linkText__wrapper {
    padding: 1.1111111111rem 1.3333333333rem 1.3333333333rem;
  }
}
.linkText__title {
  font-weight: 700;
  color: #1D1D1B;
  font-size: 1rem;
  line-height: 1.3333333333rem;
  margin-bottom: 0.8888888889rem;
  padding-bottom: 0.8888888889rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .linkText__title {
    font-size: 1.1111111111rem;
    line-height: 1.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .linkText__title {
    font-size: 1.3333333333rem;
    line-height: 1.8333333333rem;
  }
}
.linkText__link {
  display: inline-flex;
  align-items: center;
  color: #68757B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .linkText__link {
    font-size: 1rem;
    line-height: 1.3333333333rem;
  }
}
.linkText__link svg {
  margin-left: 0.4444444444rem;
}
.linkText__link svg path {
  transition: 0.3s linear;
}
.linkText__link:hover {
  color: #E07A5F;
}
.linkText__link:hover svg path {
  stroke: #E07A5F;
}

.accordion {
  margin: 0.8888888889rem 0;
}
@media (min-width: 1024px) {
  .accordion {
    margin: 1.3333333333rem 0;
  }
}
.accordion__box {
  border-top: 1px solid #40E0D0;
}
.accordion__box:last-child {
  border-bottom: 1px solid #40E0D0;
}
.accordion__box.hidden .accordion__content {
  height: 0;
}
.accordion__box.hidden .accordion__indicator {
  transform: rotate(0deg);
}
.accordion__label {
  padding: 0.8888888889rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
  border: hidden;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1024px) {
  .accordion__label {
    font-size: 1rem;
    line-height: 1.5555555556rem;
    padding: 1.3333333333rem 0;
  }
}
.accordion__label path {
  transition: 0.3s linear;
}
.accordion__label:hover .accordion__indicator path {
  stroke: #E07A5F;
}
.accordion__indicator {
  display: flex;
  align-items: center;
  transition: 0.2s linear;
  transform: rotate(180deg);
  margin-left: 0.8888888889rem;
}
.accordion__content {
  overflow: hidden;
  transition: 0.2s linear;
}
.accordion__content-wrap {
  margin-bottom: 1.3333333333rem;
}
@media (min-width: 768px) {
  .accordion__content-wrap {
    margin-bottom: 1.7777777778rem;
  }
}
.accordion__text {
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  margin-bottom: 0.8888888889rem;
}
@media (min-width: 768px) {
  .accordion__text {
    margin-bottom: 1.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .accordion__text {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}

.titleTextLink--white .titleTextLink__wrapper,
.brandBg .titleTextLink__wrapper {
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .titleTextLink--white .titleTextLink__link,
  .brandBg .titleTextLink__link {
    margin-top: 1.7777777778rem;
  }
}

.titleTextLink {
  margin: 1.3333333333rem 0;
}
.titleTextLink__wrapper {
  background-color: #40E0D0;
  padding: 0.8888888889rem 0.8888888889rem 1.7777777778rem;
}
@media (min-width: 1024px) {
  .titleTextLink__wrapper {
    padding: 1.3333333333rem 1.3333333333rem 2.2222222222rem;
  }
}
.titleTextLink__time {
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  margin-bottom: 0.8888888889rem;
  display: inline-block;
}
@media (min-width: 1024px) {
  .titleTextLink__time {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.titleTextLink__title {
  font-weight: 700;
  color: #1D1D1B;
  font-size: 1rem;
  line-height: 1.3333333333rem;
  margin-bottom: 1.7777777778rem;
}
@media (min-width: 768px) {
  .titleTextLink__title {
    font-size: 1.1111111111rem;
    line-height: 1.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .titleTextLink__title {
    font-size: 1.3333333333rem;
    line-height: 1.8333333333rem;
  }
}
.titleTextLink__text {
  color: #1D1D1B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 1024px) {
  .titleTextLink__text {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.titleTextLink__link {
  margin-top: 1.7777777778rem;
  display: inline-flex;
  align-items: center;
  color: #68757B;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 1024px) {
  .titleTextLink__link {
    margin-top: 2.6666666667rem;
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}
.titleTextLink__link svg {
  margin-left: 0.4444444444rem;
}
.titleTextLink__link path {
  transition: 0.3s linear;
}
.titleTextLink__link:hover {
  color: #E07A5F;
}
.titleTextLink__link:hover svg path {
  stroke: #E07A5F;
}

.quote {
  margin: 1.3333333333rem 0;
}
@media (min-width: 1024px) {
  .quote {
    margin: 1.7777777778rem 0;
  }
}
.quote__wrap {
  border: 1px solid #40E0D0;
  background-color: #F7F7F7;
  padding: 1.3333333333rem 1.3333333333rem 2.6666666667rem;
  position: relative;
}
.quote__wrap:before {
  position: absolute;
  content: "";
  height: 48px;
  width: 48px;
  background-color: #FFFFFF;
  transform: rotate(45deg);
  top: -24px;
  right: -24px;
  border-bottom: 1px solid #40E0D0;
}
.quote__icon {
  margin-bottom: 0.8888888889rem;
  width: 2.7222222222rem;
  height: 2.7222222222rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #40E0D0;
}
@media (min-width: 1280px) {
  .quote__icon {
    width: 3.5555555556rem;
    height: 3.5555555556rem;
  }
}
.quote__text {
  font-weight: 400;
  font-size: 1.1111111111rem;
  line-height: 1.7777777778rem;
  color: #1D1D1B;
}
@media (min-width: 1280px) {
  .quote__text {
    font-size: 1.3333333333rem;
    line-height: 1.8888888889rem;
  }
}
.quote__name {
  margin-top: 1.3333333333rem;
  font-weight: 400;
  color: #68757B;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 1280px) {
  .quote__name {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}

.filesToDownload {
  margin: 1.3333333333rem 0;
  padding: 0.8888888889rem 0.8888888889rem 1.7777777778rem;
  background-color: #40E0D0;
}
@media (min-width: 1024px) {
  .filesToDownload {
    margin: 1.7777777778rem 0;
    padding: 1.3333333333rem 1.3333333333rem 2.2222222222rem;
  }
}
.filesToDownload__title {
  color: #1D1D1B;
  font-weight: 700;
  padding-bottom: 0.8888888889rem;
  margin-bottom: 0.8888888889rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.8888888889rem;
  line-height: 1.2222222222rem;
}
@media (min-width: 768px) {
  .filesToDownload__title {
    font-size: 1.1111111111rem;
    line-height: 1.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .filesToDownload__title {
    font-size: 1.3333333333rem;
    line-height: 1.8333333333rem;
  }
}
.filesToDownload__item {
  padding-left: 1.7777777778rem;
  position: relative;
}
.filesToDownload__item:before {
  position: absolute;
  content: "";
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  display: block;
  background-image: url("../images/client/icons/file.svg");
  left: 0;
  top: 0.1666666667rem;
  background-position: center;
  background-size: contain;
}
.filesToDownload__item + .filesToDownload__item {
  margin-top: 0.8888888889rem;
}
@media (min-width: 768px) {
  .filesToDownload__item + .filesToDownload__item {
    margin-top: 0.4444444444rem;
  }
}
.filesToDownload__link {
  margin-top: 1.3333333333rem;
  font-weight: 400;
  font-size: 0.8888888889rem;
  line-height: 1.4444444444rem;
  color: #68757B;
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .filesToDownload__link {
    font-size: 1rem;
    line-height: 1.5555555556rem;
  }
}

.divider {
  border-top: 1px solid #000000;
  width: 100%;
  margin: 1.3333333333rem 0;
}
@media (min-width: 1024px) {
  .divider {
    margin: 1.7777777778rem 0;
  }
}

.btnsBlock {
  margin: 0.4444444444rem 0;
}
@media (min-width: 1024px) {
  .btnsBlock {
    margin: 1.3333333333rem 0;
  }
}
.btnsBlock__wrapper {
  margin-top: -0.8888888889rem;
}
.btnsBlock__btn {
  margin-top: 0.8888888889rem;
}
.btnsBlock__btn svg {
  margin-left: 0.2222222222rem;
}

.linkBlock {
  min-width: 13.7777777778rem;
  width: 100%;
  display: block;
}
@media (min-width: 1024px) {
  .linkBlock {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.linkBlockWrap {
  margin: 1.3333333333rem 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.0555555556rem 0;
  z-index: 999;
  opacity: 0;
  transition: 0.4s ease-in;
}
@media (min-width: 1024px) {
  .header {
    padding: 2.2222222222rem 0;
  }
}
.header.showed {
  opacity: 1;
}
.header__logo {
  width: 8.2777777778rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header__logo {
    width: 11.1111111111rem;
  }
}
.header__logo svg:nth-child(1) {
  -o-object-fit: contain;
     object-fit: contain;
  width: 48px;
  margin-right: 0.4444444444rem;
  flex-shrink: 0;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo svg:nth-child(1) {
    width: 62px;
  }
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1280px) {
  .header__nav-list {
    margin: -1.1111111111rem -0.5555555556rem 0;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .header__nav-item {
    padding: 1.1111111111rem 0.5555555556rem 0;
  }
}
.header__nav-link {
  color: #FFFFFF;
  font-weight: 300;
  transition: 0.3s ease-in;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  text-transform: uppercase;
}
@media (min-width: 1920px) {
  .header__nav-link {
    font-size: 0.7777777778rem;
    line-height: 1rem;
  }
}
.header__nav-link:hover {
  color: #40E0D0;
}
.header__burger {
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header__burger span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in;
  will-change: transform;
}
.menu.active {
  visibility: visible;
  opacity: 1;
}
.menu__wrapper {
  height: 100%;
  padding: 8.2222222222rem 1.0555555556rem 1.3333333333rem;
}
@media (min-width: 768px) {
  .menu__wrapper {
    padding: 8.8888888889rem 1.0555555556rem 1.3333333333rem;
  }
}
.menu__content {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}
.menu__nav {
  position: relative;
  z-index: 1;
}
.menu__link {
  color: #F4E9DC;
  font-weight: 300;
  font-size: 1rem;
  line-height: 3rem;
  text-align: right;
  display: block;
}
.menu__bottom {
  margin-top: 3.1111111111rem;
}
.menu__soc-list {
  display: flex;
  align-items: center;
}
.menu__soc-item + .menu__soc-item {
  margin-left: 1.3333333333rem;
}
#nav-icon {
  width: 28px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #40E0D0;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(even) {
  left: 50%;
}

#nav-icon span:nth-child(odd) {
  left: 0;
}

#nav-icon span:nth-child(1),
#nav-icon span:nth-child(2) {
  top: 0px;
}

#nav-icon span:nth-child(3),
#nav-icon span:nth-child(4) {
  top: 8px;
}

#nav-icon span:nth-child(5),
#nav-icon span:nth-child(6) {
  top: 16px;
}

#nav-icon.active span:nth-child(1),
#nav-icon.active span:nth-child(6) {
  transform: rotate(45deg);
}

#nav-icon.active span:nth-child(2),
#nav-icon.active span:nth-child(5) {
  transform: rotate(-45deg);
}

#nav-icon.active span:nth-child(1) {
  left: 2px;
  top: 5px;
}

#nav-icon.active span:nth-child(2) {
  left: calc(50% - 2px);
  top: 5px;
}

#nav-icon.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon.active span:nth-child(5) {
  left: 2px;
  top: 13px;
}

#nav-icon.active span:nth-child(6) {
  left: calc(50% - 2px);
  top: 13px;
}

.footer {
  background-image: linear-gradient(0deg, rgba(44, 62, 73, 0) 78.98%, #2C3E49 97.32%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/client/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover, 100%;
  background-position: top center;
  padding: 0.8333333333rem 0 3rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 0.8333333333rem 0 4.2222222222rem;
  }
}
@media (min-width: 1280px) {
  .footer {
    padding: 0.8333333333rem 0 4.2222222222rem;
  }
}
.footer__top {
  margin-bottom: 6.6666666667rem;
}
@media (min-width: 1024px) {
  .footer__top {
    margin-bottom: 6.1111111111rem;
  }
}
.footer__text {
  color: #F4E9DC;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.6666666667rem;
  line-height: 2rem;
  letter-spacing: 0.0166666667rem;
  max-width: 58.2777777778rem;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .footer__text {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.footer__text span {
  color: #40E0D0;
}
.footer__middle {
  margin-bottom: 6.6666666667rem;
}
@media (min-width: 1024px) {
  .footer__middle {
    margin-bottom: 5.5555555556rem;
  }
}
.footer__contact-list {
  display: flex;
}
.footer__contact-item + .footer__contact-item {
  margin-left: 1.3333333333rem;
}
@media (min-width: 768px) {
  .footer__contact-item + .footer__contact-item {
    margin-left: 2.2222222222rem;
  }
}
.footer__contact-link svg,
.footer__contact-link img {
  height: 1.3333333333rem;
}
@media (min-width: 768px) {
  .footer__contact-link svg,
  .footer__contact-link img {
    height: 1.7777777778rem;
  }
}
.footer__nav-link {
  color: #F4E9DC;
  font-weight: 300;
  font-size: 0.5555555556rem;
  line-height: 1.7777777778rem;
}
@media (min-width: 768px) {
  .footer__nav-link {
    font-size: 0.7777777778rem;
    line-height: 1.0555555556rem;
  }
}
.footer__soc-list {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__soc-list {
    margin-top: 3.1111111111rem;
  }
}
.footer__soc-item, .footer__contact-item {
  min-width: 32px;
}
.footer__soc-item + .footer__soc-item {
  margin-left: 1.3333333333rem;
}
@media (min-width: 768px) {
  .footer__soc-item + .footer__soc-item {
    margin-left: 2.2222222222rem;
  }
}
.footer__soc-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__soc-link svg,
.footer__soc-link img {
  height: 1.3333333333rem;
}
@media (min-width: 768px) {
  .footer__soc-link svg,
  .footer__soc-link img {
    height: 1.7777777778rem;
  }
}
.footer__location-list {
  margin-bottom: 6.6666666667rem;
}
@media (min-width: 768px) {
  .footer__location-list {
    margin-bottom: 0;
  }
}
.footer__location-item {
  position: relative;
  padding-right: 5.5555555556rem;
}
@media (min-width: 768px) {
  .footer__location-item {
    padding-left: 5.5555555556rem;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .footer__location-item {
    padding-left: 6.6666666667rem;
  }
}
.footer__location-item:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 25px;
  background-image: url("../images/client/icons/location.svg");
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .footer__location-item:before {
    left: 0;
    right: unset;
  }
}
.footer__location-item:after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(114, 135, 144, 0.2) 100%);
  top: 0.6944444444rem;
  right: 1.6666666667rem;
}
@media (min-width: 768px) {
  .footer__location-item:after {
    left: 1.6666666667rem;
    right: unset;
  }
}
.footer__location-item + .footer__location-item {
  margin-top: 1.6666666667rem;
}
.footer__location-link, .footer__location-link a {
  display: block;
  max-width: 12.2222222222rem;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
  color: #FFFFFF;
}
.footer__location-link .link-title, .footer__location-link a .link-title {
  text-transform: uppercase;
  color: #40E0D0;
}
.footer__location-link-item + .footer__location-link-item, .footer__location-link-item + .footer__location-link a-item, .footer__location-link a-item + .footer__location-link-item, .footer__location-link a-item + .footer__location-link a-item {
  margin-top: 0.2222222222rem;
}
.footer__location-link a:hover {
  color: #E07A5F;
}
.footer__buttons {
  display: flex;
  margin-top: 2.2222222222rem;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 2.2222222222rem;
}
@media (min-width: 768px) {
  .footer__buttons {
    gap: 3.3333333333rem;
    justify-content: flex-end;
  }
}
.footer__buttons .btn {
  min-width: 12.2222222222rem;
}
.footer__nav {
  margin-top: 6.6666666667rem;
}
@media (min-width: 1024px) {
  .footer__nav {
    margin-top: 5.5555555556rem;
  }
}
.footer__logo {
  width: 8.2777777778rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 11.1111111111rem;
  }
}
.footer__logo svg:nth-child(1) {
  -o-object-fit: contain;
     object-fit: contain;
  width: 48px;
  margin-right: 0.4444444444rem;
  flex-shrink: 0;
  height: auto;
}
@media (min-width: 768px) {
  .footer__logo svg:nth-child(1) {
    width: 62px;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: -1.1111111111rem -0.4444444444rem 0;
}
@media (min-width: 1280px) {
  .footer__nav-list {
    margin: -1.1111111111rem -0.5555555556rem 0;
    width: 100%;
  }
}
.footer__nav-item {
  padding: 1.1111111111rem 0.4444444444rem 0;
  flex: 1 0 50%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__nav-item {
    flex: unset;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .footer__nav-item {
    padding: 1.1111111111rem 0.5555555556rem 0;
  }
}
.footer__nav-item--logo {
  order: -1;
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.6666666667rem;
}
@media (min-width: 1280px) {
  .footer__nav-item--logo {
    margin-bottom: 0;
    order: 0;
    flex: unset;
  }
}
.footer__nav-link {
  color: #FFFFFF;
  font-weight: 300;
  transition: 0.3s ease-in;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  text-transform: uppercase;
}
@media (min-width: 1920px) {
  .footer__nav-link {
    font-size: 0.7777777778rem;
    line-height: 1rem;
  }
}
.footer__nav-link:hover {
  color: #40E0D0;
}

.footerForm__text {
  color: #F4E9DC;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  font-weight: 300;
  margin-bottom: 2.7777777778rem;
}
@media (min-width: 1024px) {
  .footerForm__text {
    letter-spacing: 0.0133333333rem;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .footerForm__text {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}
.footerForm__item + .footerForm__item {
  margin-top: 2.2222222222rem;
}
@media (min-width: 1024px) {
  .footerForm__item + .footerForm__item {
    margin-top: 3.3333333333rem;
  }
}
.footerForm__input-wrap {
  position: relative;
}
.footerForm__input-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(114, 135, 144, 0.2) 100%);
  left: 0;
  bottom: 0;
}
.footerForm__input {
  padding-bottom: 3px;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
  width: 100%;
  background-color: transparent;
  color: #FFFFFF;
  border-radius: 0;
  border: hidden;
  min-height: 0.9444444444rem;
}
.footerForm__input::-moz-placeholder {
  color: #FFFFFF;
}
.footerForm__input::placeholder {
  color: #FFFFFF;
}
.footerForm__input:focus {
  outline: none;
}
.footerForm__btn {
  margin-top: 2.2222222222rem;
  min-width: 12.2222222222rem;
}
@media (min-width: 1024px) {
  .footerForm__btn {
    margin-top: 3.3333333333rem;
  }
}

.admin-menu {
  background-color: #715445;
  padding: 0.2222222222rem 2.6666666667rem;
  z-index: 100;
}
.admin-menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.admin-menu__item:not(:first-child) {
  padding-left: 16px;
  margin-left: 16px;
  position: relative;
}
.admin-menu__item:not(:first-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #FFFFFF;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.admin-menu__link {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.7222222222rem;
  line-height: 1.5555555556rem;
}
.admin-menu__link:hover {
  color: #40E0D0;
}

.plug-wrapper {
  min-width: 100%;
  width: 100%;
  padding: 0 1.2222222222rem 1.2222222222rem;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .plug-wrapper {
    padding: 0 1.6666666667rem;
  }
}

.plug {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: 37.7777777778rem;
}
@media (min-width: 768px) {
  .plug {
    min-height: 28.8888888889rem;
  }
}
.plug__bg-layer1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -o-object-position: 33%;
     object-position: 33%;
}
@media (min-width: 768px) {
  .plug__bg-layer1 {
    -o-object-position: center;
       object-position: center;
  }
}
.plug__bg-icon {
  z-index: -1;
  position: absolute;
  bottom: 48%;
  left: 50%;
  transform: translateX(-50%);
  animation: fade-in 3.02s linear forwards, rotate 9s cubic-bezier(0.5, 0, 0, 1) infinite;
  max-width: 11.1111111111rem;
}
@media (min-width: 768px) {
  .plug__bg-icon {
    max-width: 15.5555555556rem;
    bottom: 53%;
  }
}
@media (min-width: 1024px) {
  .plug__bg-icon {
    max-width: 21.8333333333rem;
  }
}
.plug__main {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plug__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.plug__info-left {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 12.2222222222rem;
  bottom: 0;
}
@media (min-width: 768px) {
  .plug__info-left {
    top: 25.9%;
    bottom: unset;
  }
}
@media (min-width: 1024px) {
  .plug__info-left {
    max-width: 22.5rem;
  }
}
.plug__load {
  width: 100%;
  max-width: 12.2222222222rem;
  margin-top: 1.1111111111rem;
}
@media (min-width: 768px) {
  .plug__load {
    margin-bottom: 1.7777777778rem;
    margin-top: 0;
    max-width: 14.4444444444rem;
  }
}
@media (min-width: 1024px) {
  .plug__load {
    margin-bottom: 2.3333333333rem;
  }
}
.plug__info-text {
  color: #F4E9DC;
  font-weight: 300;
  max-width: 8.8888888889rem;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
}
@media (min-width: 1024px) {
  .plug__info-text {
    font-size: 0.7777777778rem;
    line-height: 1.1111111111rem;
    max-width: 14.1666666667rem;
  }
}
.plug__info-text span {
  font-weight: 500;
}
.plug__soc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .plug__soc-list {
    margin-top: 1.7777777778rem;
  }
}
@media (min-width: 1024px) {
  .plug__soc-list {
    margin-top: 2.3333333333rem;
  }
}
.plug__soc-item {
  position: relative;
  z-index: 99;
}
.plug__soc-item + .plug__soc-item {
  margin-left: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .plug__soc-item + .plug__soc-item {
    margin-left: 2.2222222222rem;
  }
}
.plug__soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .plug__soc-link {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.plug__soc-link path {
  transition: 0.3s;
}
.plug__soc-link:hover path {
  fill: #40E0D0;
}
.plug__soc-link svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.plug__info-right {
  position: absolute;
  right: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 12.2222222222rem;
  bottom: 0;
  z-index: 99;
}
@media (min-width: 768px) {
  .plug__info-right {
    width: 100%;
    top: 25.9%;
    bottom: unset;
    z-index: unset;
    max-width: 14.4444444444rem;
  }
}
.plug__signup-btn {
  width: 100%;
  max-width: 12.2222222222rem;
  margin-top: 2.3888888889rem;
}
@media (min-width: 768px) {
  .plug__signup-btn {
    margin-bottom: 7.7777777778rem;
    margin-top: 0;
    max-width: 14.4444444444rem;
  }
}
@media (min-height: 670px) {
  .plug__signup-btn {
    margin-bottom: 13.1111111111rem;
  }
}
.plug__soc-sec-i + .plug__soc-sec-i {
  margin-top: 1.1111111111rem;
}
@media (min-width: 1024px) {
  .plug__soc-sec-i + .plug__soc-sec-i {
    margin-top: 2.2222222222rem;
  }
}
.plug__soc-sec-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .plug__soc-sec-link {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.plug__soc-sec-link path {
  transition: 0.3s;
}
.plug__soc-sec-link:hover path {
  fill: #40E0D0;
}
.plug__soc-sec-link svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.plug__info-center {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 27.7777777778rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .plug__info-center {
    top: 50%;
  }
}
.plug__info-logo {
  width: 100%;
  height: auto;
  margin-bottom: 1.6111111111rem;
  max-width: 20rem;
}
@media (min-width: 768px) {
  .plug__info-logo {
    max-width: 21.1111111111rem;
  }
}
@media (min-width: 1024px) {
  .plug__info-logo {
    max-width: 23.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .plug__info-logo {
    max-width: 27.4444444444rem;
  }
}
.plug__title {
  color: #F4E9DC;
  font-weight: 300;
  font-size: 1.3333333333rem;
  line-height: 1.4444444444rem;
  letter-spacing: 0.0133333333rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .plug__title {
    font-size: 1.5555555556rem;
    line-height: 1.7777777778rem;
  }
}
@media (min-width: 1024px) {
  .plug__title {
    font-size: 1.8888888889rem;
    line-height: 2.2777777778rem;
    letter-spacing: 0.0188888889rem;
  }
}

.appointmentPopup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  transition: 0.3s ease;
  overflow-y: auto;
  padding: 5rem 1.2222222222rem 1.2222222222rem 1.2222222222rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
@media (min-width: 1024px) {
  .appointmentPopup {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}
.appointmentPopup.active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .appointmentPopup--w-620 .appointmentPopup__content {
    width: 34.4444444444rem;
  }
}
.appointmentPopup__close {
  position: absolute;
  top: 2.1111111111rem;
  right: 1.8333333333rem;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .appointmentPopup__close {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.appointmentPopup__close svg {
  width: 100%;
  height: 100%;
}
.appointmentPopup__content {
  margin: auto;
  padding: 3.7222222222rem 3.6111111111rem 4.2777777778rem;
  border-radius: 20px;
  border: 0.5px solid #40E0D0;
  background-color: #F4E9DC;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 22.8888888889rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .appointmentPopup__content {
    width: 24.7777777778rem;
    border: hidden;
  }
}
@media (min-width: 1024px) {
  .appointmentPopup__content {
    background-color: transparent;
    padding: 0;
  }
}
.appointmentPopup__title {
  font-weight: 300;
  letter-spacing: 0.0133333333rem;
  text-transform: uppercase;
  margin-bottom: 2.7777777778rem;
  text-align: center;
  font-size: 1.3333333333rem;
  line-height: 1.4444444444rem;
  color: #000000;
}
@media (min-width: 1024px) {
  .appointmentPopup__title {
    color: #F4E9DC;
  }
}
.appointmentPopup__item {
  width: 100%;
}
.appointmentPopup__item + .appointmentPopup__item {
  margin-top: 2.7777777778rem;
}
.appointmentPopup__input {
  width: 100%;
  background-color: transparent;
  border: hidden;
  border-bottom: 0.5px solid #40E0D0;
  font-weight: 300;
  color: #000000;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
}
@media (min-width: 1024px) {
  .appointmentPopup__input {
    letter-spacing: 0.0133333333rem;
    color: #F4E9DC;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
  }
}
.appointmentPopup__input::-moz-placeholder {
  color: #000000;
}
.appointmentPopup__input::placeholder {
  color: #000000;
}
@media (min-width: 1024px) {
  .appointmentPopup__input::-moz-placeholder {
    color: #F4E9DC;
  }
  .appointmentPopup__input::placeholder {
    color: #F4E9DC;
  }
}
.appointmentPopup__input:focus {
  outline: none;
}
.appointmentPopup__input-phone {
  padding-left: 110px;
}
.appointmentPopup__text {
  font-weight: 300;
  color: #000000;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .appointmentPopup__text {
    letter-spacing: 0.0133333333rem;
    color: #F4E9DC;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
  }
}
.appointmentPopup__btn {
  width: 12.2222222222rem;
  margin: 2.7777777778rem auto 0;
}
@media (min-width: 1024px) {
  .appointmentPopup__btn {
    width: calc(100% - 1.1111111111rem);
  }
}
.appointmentPopup__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.appointmentPopup__soc-list {
  position: absolute;
  top: 100%;
  display: flex;
  justify-content: center;
  padding: 1.7777777778rem 0 1.3333333333rem;
  z-index: 1;
  width: 100%;
}
.appointmentPopup__soc-item + .appointmentPopup__soc-item {
  margin-left: 2.2222222222rem;
}
.appointmentPopup__soc-link {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appointmentPopup__soc-link:hover path {
  fill: #40E0D0;
}

.myTell .iti {
  width: 100%;
  display: flex;
}
.myTell .iti__selected-dial-code {
  font-weight: 300;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
  color: #000000;
}
@media (min-width: 1024px) {
  .myTell .iti__selected-dial-code {
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
    letter-spacing: 0.0133333333rem;
    color: #F4E9DC;
  }
}
.myTell .iti__flag {
  border-radius: 4px;
}
.myTell .iti__search-input {
  background-color: transparent;
  padding: 0.1666666667rem 0.6666666667rem;
}
.myTell .iti__search-input:focus {
  outline: none;
}
.myTell .iti__selected-country-primary {
  padding-left: 0;
}
.myTell .iti__tel-inpu {
  padding-left: 6rem;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes mask-center-in {
  0% {
    clip-path: inset(50% 0 50% 0);
    transform: scale(1.3);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}
.plug__title {
  animation: mask-center-in 1s cubic-bezier(0.5, 0, 0, 1) forwards;
  transform-origin: center;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  min-height: 28.8888888889rem;
}
.hero.showed .hero__bg-layer1 img {
  transform: scale(1);
}
.hero.showed .hero__info-left, .hero.showed .hero__info-right {
  opacity: 1;
}
.hero__bg-layer1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero__bg-layer1 img, .hero__bg-layer1 video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .hero__bg-layer1 img, .hero__bg-layer1 video {
    -o-object-position: center center;
       object-position: center center;
  }
}
.hero__bg-layer1:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.hero__bg-icon {
  z-index: 1;
  position: absolute;
  bottom: 64%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 11.1111111111rem;
  animation: fade-in 3.02s linear forwards, rotate 9s cubic-bezier(0.5, 0, 0, 1) infinite;
}
@media (min-width: 1024px) {
  .hero__bg-icon {
    max-width: 15.2777777778rem;
    bottom: 58%;
  }
}
.hero__main {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero__info-left {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 12.2222222222rem;
  bottom: 1.7777777778rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: 0.4s ease-in;
}
@media (max-width: 1279.98px) and (max-height: 700px) {
  .hero__info-left {
    bottom: 1.4444444444rem;
  }
}
@media (min-width: 1024px) {
  .hero__info-left {
    left: 0.5555555556rem;
    bottom: 3.0555555556rem;
    display: block;
    max-width: 22.5rem;
  }
}
.hero__soc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.hero__soc-item {
  position: relative;
  z-index: 99;
}
.hero__soc-item + .hero__soc-item {
  margin-left: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .hero__soc-item + .hero__soc-item {
    margin-left: 2.2222222222rem;
  }
}
.hero__soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .hero__soc-link {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.hero__soc-link path {
  transition: 0.3s;
}
.hero__soc-link:hover path {
  fill: #40E0D0;
}
.hero__soc-link svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.hero__info-right {
  position: absolute;
  right: 0.2777777778rem;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 12.2222222222rem;
  z-index: 99;
  bottom: 1.7777777778rem;
  opacity: 0;
  transition: 0.4s ease-in;
}
@media (max-width: 1279.98px) and (max-height: 700px) {
  .hero__info-right {
    bottom: 1.4444444444rem;
  }
}
@media (min-width: 1024px) {
  .hero__info-right {
    bottom: 3.0555555556rem;
    z-index: unset;
    max-width: 14.4444444444rem;
  }
}
.hero__soc-sec-l {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero__soc-sec-l {
    flex-direction: row;
  }
}
.hero__soc-sec-i + .hero__soc-sec-i {
  margin-top: 1.1111111111rem;
}
@media (min-width: 768px) {
  .hero__soc-sec-i + .hero__soc-sec-i {
    margin-left: 2.2222222222rem;
    margin-top: 0;
  }
}
.hero__soc-sec-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .hero__soc-sec-link {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.hero__soc-sec-link path {
  transition: 0.3s;
}
.hero__soc-sec-link:hover path {
  fill: #40E0D0;
}
.hero__soc-sec-link svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.hero__title {
  color: #F4E9DC;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2222222222rem;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  text-align: center;
  transform-origin: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    letter-spacing: 0.0111111111rem;
  }
}
.hero__title span {
  color: #F4E9DC;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 2.4444444444rem;
  line-height: 2.8888888889rem;
  letter-spacing: 0.0244444444rem;
  display: block;
}
@media (max-width: 365px) {
  .hero__title span {
    font-size: 2.1111111111rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .hero__title span {
    font-size: 3rem;
    line-height: 3.5555555556rem;
    letter-spacing: 0.03rem;
  }
}
.hero__text {
  font-size: 0.7777777778rem;
  line-height: 1.1111111111rem;
  font-weight: 300;
  color: #F4E9DC;
  max-width: 12.4444444444rem;
  margin: 0.8333333333rem auto 0;
}
@media (min-width: 768px) {
  .hero__text {
    max-width: 18.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 0.7777777778rem;
    line-height: 1.6111111111rem;
    margin: 1.6111111111rem 0 0 auto;
  }
}
.hero__logo {
  display: block;
  max-width: 4.1666666667rem;
  margin-left: 3.8888888889rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .hero__logo {
    margin-left: 0;
    margin-top: 4.1666666667rem;
    max-width: 7.1111111111rem;
  }
}
@media (min-width: 1024px) and (min-height: 720px) {
  .hero__logo {
    margin-top: 4.1666666667rem;
  }
}
.hero__logo img {
  width: 100%;
  height: auto;
}

.ourProject {
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  padding: 50dvh 0 0;
}
.ourProject__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0 0.8888888889rem;
}
.ourProject__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  margin-bottom: 1.6111111111rem;
  font-size: 7vw;
}
@media (min-width: 768px) {
  .ourProject__title {
    font-size: 3.2222222222rem;
    line-height: 3.8888888889rem;
  }
}
@media (min-width: 1024px) {
  .ourProject__title {
    font-size: 4vw;
    line-height: normal;
  }
}
.ourProject__text {
  color: #2C3E49;
  font-weight: 300;
  line-height: normal;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (min-width: 768px) {
  .ourProject__text {
    font-size: 0.7777777778rem;
    line-height: 1.0555555556rem;
  }
}
@media (min-width: 1024px) {
  .ourProject__text {
    font-size: 1vw;
    line-height: normal;
  }
}

.videoProject {
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(#2C3E49, #2C3E49) padding-box, linear-gradient(to right, rgba(64, 224, 208, 0.2), #40E0D0) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0.8888888889rem 0.5555555556rem 0.5555555556rem;
  margin-left: -0.5555555556rem;
  margin-right: -0.5555555556rem;
}
@media (min-width: 768px) {
  .videoProject {
    padding: 2.7777777778rem 0.5555555556rem 0.5555555556rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.videoProject__title {
  color: #F4E9DC;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.0133333333rem;
  font-size: 1.3333333333rem;
  line-height: 1.4444444444rem;
  margin-bottom: 1.1111111111rem;
}
@media (min-width: 1280px) {
  .videoProject__title {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
    margin-bottom: 2.2222222222rem;
  }
}
.videoProject__bottom {
  display: flex;
  align-items: flex-end;
}
.videoProject__video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.videoProject__video-wrap {
  flex: 1;
}
.videoProject__play {
  height: 2.7777777778rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  margin-right: -0.5555555556rem;
  background-image: url("../images/client/icons/ico-play.svg");
  background-size: 1.3333333333rem;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .videoProject__play {
    background-size: 2.2222222222rem;
    width: 5rem;
  }
}
.videoProject__play.is-playing {
  background-image: url("../images/client/icons/ico-pause.svg");
}

.ourProjectPerson {
  display: flex;
  flex-direction: column;
  margin-top: 3.1111111111rem;
}
@media (min-width: 768px) {
  .ourProjectPerson {
    margin-top: 1.8888888889rem;
    flex-direction: row;
  }
}
.ourProjectPerson__left {
  flex: 1;
}
.ourProjectPerson__quote {
  text-transform: uppercase;
  font-weight: 300;
  color: #40E0D0;
  letter-spacing: 0.0133333333rem;
  font-size: 1.6666666667rem;
  line-height: 2rem;
  margin-bottom: 3.1111111111rem;
}
@media (min-width: 768px) {
  .ourProjectPerson__quote {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .ourProjectPerson__quote {
    letter-spacing: 0.0133333333rem;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
  }
}
@media (min-width: 1280px) {
  .ourProjectPerson__quote {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}
.ourProjectPerson__right {
  display: flex;
  margin-left: 0.4444444444rem;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .ourProjectPerson__right {
    flex: 0 0 21.1111111111rem;
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .ourProjectPerson__right {
    flex: 0 0 15.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .ourProjectPerson__right {
    flex: 0 0 18.3333333333rem;
  }
}
.ourProjectPerson__picture {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  margin-bottom: 0.6666666667rem;
  padding-bottom: 0.6666666667rem;
  position: relative;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .ourProjectPerson__picture {
    margin-bottom: 0;
    margin-right: 1.1111111111rem;
    width: 5.3333333333rem;
    height: 5.3333333333rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .ourProjectPerson__picture {
    width: 4.2222222222rem;
    height: 4.2222222222rem;
  }
}
@media (min-width: 1280px) {
  .ourProjectPerson__picture {
    width: 5.3333333333rem;
    height: 5.3333333333rem;
  }
}
.ourProjectPerson__picture:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(35, 122, 113, 0.1) 100%);
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .ourProjectPerson__picture:before {
    display: none;
  }
}
.ourProjectPerson__picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ourProjectPerson__name {
  font-size: 1rem;
  line-height: 1.4444444444rem;
  font-weight: 200;
  text-transform: uppercase;
  color: #F4E9DC;
  margin-bottom: 0.8888888889rem;
  text-align: center;
}
@media (min-width: 768px) {
  .ourProjectPerson__name {
    text-align: left;
  }
}
.ourProjectPerson__description {
  font-size: 0.7777777778rem;
  line-height: 1.1111111111rem;
  font-weight: 300;
  color: #F4E9DC;
  text-align: center;
}
@media (min-width: 768px) {
  .ourProjectPerson__description {
    text-align: left;
  }
}

.projectSlides {
  position: relative;
  height: 100dvh;
  width: 100vw;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .projectSlides {
    padding: 6.6666666667rem 0 0;
  }
}
@media (min-width: 1280px) {
  .projectSlides {
    padding: 9.4444444444rem 0 0;
  }
}
.projectSlides__picture, .projectSlides__content, .projectSlides__first {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.projectSlides__picture {
  height: 100dvh;
  width: 100%;
  display: block;
}
.projectSlides__picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectSlides__content {
  background-color: #40E0D0;
  height: 100dvh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3333333333rem;
}
.projectSlides__text {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.3888888889rem;
  line-height: 1.8888888889rem;
  letter-spacing: 0.0166666667rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .projectSlides__text {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .projectSlides__text {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.projectSlides__first {
  background-color: #40E0D0;
}

@media (min-width: 801px) {
  ._mobile-only {
    display: none !important;
  }
}
@media (max-width: 800px) {
  ._project-slides:has(._mobile-only) .projectSlides__picture:not(._mobile-only) {
    display: none !important;
  }
}
.aboutOnoky {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .aboutOnoky {
    height: 100dvh;
    width: 100vw;
  }
}
.aboutOnoky__wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 7.7777777778rem;
  height: 100%;
}
@media (min-width: 768px) {
  .aboutOnoky__wrapper {
    padding: 0;
    flex-direction: row;
  }
}
.aboutOnoky__picture-wrap {
  margin-bottom: 1.3333333333rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .aboutOnoky__picture-wrap {
    height: 100%;
    width: 50vw;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.aboutOnoky__picture {
  height: 100%;
  display: block;
}
.aboutOnoky__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutOnoky__content {
  padding: 0 1.1111111111rem;
}
@media (min-width: 768px) {
  .aboutOnoky__content {
    width: 50vw;
    flex-shrink: 0;
    padding-right: 1.6111111111rem;
    padding-left: 1.6111111111rem;
  }
}
.aboutOnoky__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5555555556rem;
  line-height: 1.8888888889rem;
  letter-spacing: 0.0166666667rem;
  margin-bottom: 0.8888888889rem;
}
@media (min-width: 768px) {
  .aboutOnoky__title {
    margin-bottom: 5rem;
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
    width: 26.6666666667rem;
  }
}
@media (min-width: 1280px) {
  .aboutOnoky__title {
    width: 37.7777777778rem;
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.aboutOnoky__text {
  color: #2C3E49;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
  max-width: 16.5rem;
}
.aboutOnoky__btn {
  min-width: 12.2222222222rem;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.5) 0%, rgba(44, 62, 73, 0.5) 100%);
}
.aboutOnoky__btn-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.3333333333rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .aboutOnoky__btn-wrap {
    bottom: 4.4444444444rem;
  }
}

.locationSec__wrapper {
  margin-right: calc((100vw - 100%) / -2);
  display: flex;
}
@media (min-width: 1024px) {
  .locationSec__wrapper {
    flex-direction: row;
  }
}
.locationSec__left {
  flex: 1 0 27.2222222222rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 2.2222222222rem 0 1.5555555556rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .locationSec__left {
    padding: 2.2222222222rem 0;
  }
}
.locationSec__right {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.locationSec__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5555555556rem;
  line-height: 1.8888888889rem;
  letter-spacing: 0.0166666667rem;
  margin-bottom: auto;
  width: 18.3333333333rem;
}
@media (min-width: 768px) {
  .locationSec__title {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .locationSec__title {
    margin-bottom: 10.5555555556rem;
    margin-top: auto;
  }
}
@media (min-width: 1280px) {
  .locationSec__title {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
    width: 32.2222222222rem;
  }
}
.locationSec__list {
  display: flex;
  gap: 1.7777777778rem;
}
@media (min-width: 768px) {
  .locationSec__list {
    gap: 5.2777777778rem;
  }
}
.locationSec__item-value {
  font-weight: 300;
  color: #2C3E49;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2222222222rem;
  letter-spacing: 0.01rem;
}
@media (min-width: 1024px) {
  .locationSec__item-value {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    letter-spacing: 0.0111111111rem;
  }
}
.locationSec__item-value span {
  font-size: 1.5555555556rem;
  line-height: 1.6666666667rem;
  letter-spacing: 0.0166666667rem;
}
@media (min-width: 768px) {
  .locationSec__item-value span {
    font-size: 2.6666666667rem;
    line-height: 2.6666666667rem;
  }
}
@media (min-width: 1280px) {
  .locationSec__item-value span {
    font-size: 3.3333333333rem;
    line-height: 3.3333333333rem;
    letter-spacing: 0.0333333333rem;
  }
}
.locationSec__item-text {
  color: #2C3E49;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
}
.locationSec__map svg {
  height: 38.8888888889rem;
  margin-left: -72%;
}
@media (min-width: 480px) {
  .locationSec__map svg {
    margin-left: -62%;
  }
}
@media (min-width: 768px) {
  .locationSec__map svg {
    margin-left: -38%;
  }
}
@media (min-width: 1024px) {
  .locationSec__map svg {
    height: 49.6666666667rem;
    margin-left: -5.5555555556rem;
  }
}

.genPlan {
  position: relative;
}
.genPlan__pic-wrap {
  width: 100%;
  position: relative;
}
.genPlan__picture {
  width: 100%;
  position: relative;
  display: block;
  padding-top: 174%;
}
@media (min-width: 1024px) {
  .genPlan__picture {
    padding-top: 55.6%;
    max-height: 100dvh;
  }
}
.genPlan__picture:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(175deg, rgba(44, 62, 73, 0) 74.75%, rgba(44, 62, 73, 0.2) 93.01%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  height: calc(100% + 2px);
  top: -1px;
  bottom: unset;
}
.genPlan__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.genPlan__point {
  display: flex;
  position: absolute;
  z-index: 2;
}
.genPlan__point-line {
  height: 12.5rem;
  width: 1.2px;
  background: linear-gradient(180deg, var(--Color-5, #40E0D0) 0%, rgba(35, 122, 113, 0.1) 100%);
  position: relative;
  z-index: 1;
}
.genPlan__point-line--small {
  height: 5.4444444444rem;
}
.genPlan__point-line--middle {
  height: 7.8333333333rem;
}
.genPlan__point-line:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 45px;
  width: 15px;
  background-image: url("../images/client/icons/ico-onoky.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 200%;
}
@media (min-width: 480px) {
  .genPlan__point-line:before {
    width: 19px;
  }
}
.genPlan__point-content {
  margin-left: 1.3333333333rem;
  display: flex;
  flex-direction: column;
  margin-top: -0.2222222222rem;
}
@media (min-width: 1024px) {
  .genPlan__point-content {
    margin-top: -0.4444444444rem;
    margin-left: 1.7777777778rem;
  }
}
.genPlan__point-value {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.1666666667rem;
}
@media (min-width: 1024px) {
  .genPlan__point-value {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
  }
}
@media (min-width: 1440px) {
  .genPlan__point-value {
    font-size: 2.5rem;
    line-height: 2.8888888889rem;
  }
}
@media (min-width: 1440px) {
  .genPlan__point-value span {
    font-size: 2rem;
    line-height: 2.7777777778rem;
  }
}
.genPlan__point-description {
  font-weight: 200;
  max-width: 12.2222222222rem;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .genPlan__point-description {
    font-size: 1.1111111111rem;
    line-height: 1.5555555556rem;
  }
}
.genPlan__point-1 {
  top: 19%;
  left: 6%;
}
@media (min-width: 1024px) {
  .genPlan__point-1 {
    top: 24%;
    left: 12%;
  }
}
.genPlan__point-1 .genPlan__point-line {
  height: 16.3888888889rem;
}
.genPlan__point-2 {
  top: 8%;
  left: 39%;
}
@media (min-width: 1024px) {
  .genPlan__point-2 {
    top: 3%;
    left: 8%;
  }
}
.genPlan__point-2 .genPlan__point-line {
  height: 23.7222222222rem;
}
.genPlan__point-3 {
  top: 34%;
  left: 14%;
}
@media (min-width: 1024px) {
  .genPlan__point-3 {
    top: 25%;
    left: 46%;
  }
}
.genPlan__point-3 .genPlan__point-line {
  height: 4.8333333333rem;
}
.genPlan__point-4 {
  top: 41%;
  left: 47%;
}
@media (min-width: 1024px) {
  .genPlan__point-4 {
    top: 10%;
    left: 36%;
  }
}
.genPlan__point-4 .genPlan__point-line {
  height: 13.7777777778rem;
}
.genPlan__point-5 {
  top: 16%;
  left: 73%;
}
@media (min-width: 1024px) {
  .genPlan__point-5 {
    top: 10%;
    left: 68%;
  }
}
.genPlan__point-5 .genPlan__point-line {
  height: 8.8888888889rem;
}
.genPlan__point-6 {
  top: 55%;
  left: 58%;
}
@media (min-width: 1024px) {
  .genPlan__point-6 {
    top: 32%;
    left: 79%;
  }
}
.genPlan__point-6 .genPlan__point-line {
  height: 8rem;
}
.genPlan__point-7 {
  top: 33%;
  left: 72%;
}
@media (min-width: 1024px) {
  .genPlan__point-7 {
    top: 10%;
    left: 81%;
  }
}
.genPlan__point-7 .genPlan__point-line {
  height: 8.8888888889rem;
}
.genPlan__point-8 {
  top: 59%;
  left: 13%;
}
@media (min-width: 1024px) {
  .genPlan__point-8 {
    top: 64%;
    left: 32%;
  }
}
.genPlan__point-8 .genPlan__point-line {
  height: 4.8333333333rem;
}
.genPlan__point-9 {
  top: 47%;
  left: 19%;
}
@media (min-width: 1024px) {
  .genPlan__point-9 {
    top: 36%;
    left: 57%;
  }
}
.genPlan__point-9 .genPlan__point-line {
  height: 4.8333333333rem;
}
.genPlan__point-10 {
  top: 25%;
  left: 48%;
}
@media (min-width: 1024px) {
  .genPlan__point-10 {
    top: 46%;
    left: 40%;
  }
}
.genPlan__point-10 .genPlan__point-line {
  height: 6.6666666667rem;
}

.projectGallery {
  padding: 4.4444444444rem 0 0;
  position: relative;
}
@media (min-width: 1024px) {
  .projectGallery {
    padding: 6.6666666667rem 0 0;
  }
}
@media (min-width: 1280px) {
  .projectGallery {
    padding: 9.4444444444rem 0 0;
  }
}
.projectGallery--interiors {
  padding-top: 2.2222222222rem;
}
@media (min-width: 768px) {
  .projectGallery--interiors {
    padding-top: 3.3333333333rem;
  }
}
.projectGallery--interiors .projectGallery__title {
  margin-right: 1.1111111111rem;
}
.projectGallery--interiors .projectGallery__item {
  color: #2C3E49;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .projectGallery--interiors .projectGallery__item {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    font-weight: 300;
  }
}
.projectGallery__wrapper {
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
}
@media (min-width: 680px) {
  .projectGallery__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.projectGallery__wrapper .swiper {
  overflow: visible;
}
.projectGallery__wrapper .swiper-wrapper {
  overflow: visible;
}
.projectGallery__wrapper .swiper-slide {
  width: auto;
  height: auto;
}
.projectGallery__top {
  margin-bottom: 1.3333333333rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .projectGallery__top {
    flex-direction: row;
    align-items: flex-end;
  }
}
.projectGallery__top .projectGallery__title {
  margin-bottom: 0;
}
.projectGallery__title {
  margin-bottom: 1.4444444444rem;
  font-weight: 200;
  text-transform: uppercase;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .projectGallery__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
    margin-right: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .projectGallery__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    margin-right: 2.6666666667rem;
    letter-spacing: 0.0666666667rem;
  }
}
.projectGallery__list {
  display: flex;
  -moz-column-gap: 1.7777777778rem;
       column-gap: 1.7777777778rem;
  row-gap: 1.3333333333rem;
  flex-wrap: wrap;
  flex: 1;
  margin-top: 0.4444444444rem;
}
@media (min-width: 768px) {
  .projectGallery__list {
    gap: 0.8888888889rem;
  }
}
@media (min-width: 1024px) {
  .projectGallery__list {
    margin-top: 0;
    padding-bottom: 1.1111111111rem;
    flex-wrap: nowrap;
  }
}
.projectGallery__item {
  font-weight: 300;
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  text-transform: uppercase;
  text-align: left;
}
@media (min-width: 768px) {
  .projectGallery__item {
    font-size: 1rem;
    line-height: 1.2222222222rem;
    max-width: 12.2222222222rem;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .projectGallery__item {
    max-width: 12.2222222222rem;
  }
}
@media (min-width: 1280px) {
  .projectGallery__item {
    padding: 0 0.5555555556rem;
  }
}
.projectGallery__picture {
  display: block;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: 27.3333333333rem;
}
@media (min-width: 768px) {
  .projectGallery__picture {
    height: 24.8888888889rem;
  }
}
@media (min-width: 1024px) {
  .projectGallery__picture {
    height: 36.9444444444rem;
  }
}
.projectGallery__picture:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.projectGallery__picture img {
  height: 100%;
}
.projectGallery__nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.1111111111rem;
}
.projectGallery__nav-btn.swiper-button-disabled path {
  opacity: 0;
}
.projectGallery__nav-btn + .projectGallery__nav-btn {
  margin-left: 1.2222222222rem;
}
@media (min-width: 768px) {
  .projectGallery__nav-btn + .projectGallery__nav-btn {
    margin-left: 2.2222222222rem;
  }
}

.infrastructure {
  position: relative;
  padding-top: 1.9444444444rem;
}
.infrastructure:before {
  position: absolute;
  content: "";
  background-image: url("../images/client/logo-dec.svg");
  background-position: center;
  background-size: contain;
  width: 13.7777777778rem;
  height: 13.7777777778rem;
  top: 2%;
  left: 0;
  transform: translateX(-55%);
  display: block;
}
@media (min-width: 768px) {
  .infrastructure:before {
    display: none;
  }
}
.infrastructure__title {
  margin-bottom: 0.3888888889rem;
  font-weight: 300;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F4E9DC 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .infrastructure__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .infrastructure__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.infrastructure__text {
  font-weight: 300;
  color: #2C3E49;
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  line-height: 1.2222222222rem;
  margin-bottom: 1.7777777778rem;
}
@media (min-width: 768px) {
  .infrastructure__text {
    font-size: 1.1111111111rem;
    line-height: 1.4444444444rem;
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .infrastructure__text {
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .infrastructure__text {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
    letter-spacing: 0.0166666667rem;
  }
}
@media (min-width: 1280px) {
  .infrastructure__text {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.infrastructure__text span,
.infrastructure__text b {
  font-weight: 300;
  margin-left: 7.3%;
}
.infrastructure__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.7777777778rem -1.3333333333rem 0;
}
@media (min-width: 1024px) {
  .infrastructure__list {
    margin: -4.4444444444rem -0.6666666667rem 0;
  }
}
.infrastructure__item {
  padding: 2.7777777778rem 1.3333333333rem 0;
  flex: 0 0 50%;
}
@media (min-width: 768px) {
  .infrastructure__item {
    flex: 0 0 33.333%;
  }
}
@media (min-width: 1024px) {
  .infrastructure__item {
    padding: 4.4444444444rem 0.6666666667rem 0;
    flex: 0 0 25%;
  }
}
@media (min-width: 1280px) {
  .infrastructure__item {
    flex: 0 0 20%;
  }
}
@media (min-width: 1440px) {
  .infrastructure__item {
    flex: 0 0 16.6667%;
  }
}
.infrastructure__wrapper {
  position: relative;
  transform: translate3d(0, 0, 0);
}
.infrastructure__wrapper .row {
  row-gap: 24px;
}
.infrastructure__line {
  position: absolute;
}
.infrastructure__line1 {
  height: 1px;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
  left: -1.1111111111rem;
  top: 278px;
  width: 90%;
}
@media (min-width: 768px) {
  .infrastructure__line1 {
    top: 177px;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .infrastructure__line1 {
    top: 198px;
    width: 59%;
    left: 0;
  }
}
@media (min-width: 1280px) {
  .infrastructure__line1 {
    top: 170px;
  }
}
.infrastructure__line2 {
  height: 1px;
  background: linear-gradient(270deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
  top: 555px;
  width: 90%;
  right: -1.1111111111rem;
}
@media (min-width: 768px) {
  .infrastructure__line2 {
    top: 462px;
    width: 70%;
    background: linear-gradient(90deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
    left: 34%;
    right: unset;
  }
}
@media (min-width: 1024px) {
  .infrastructure__line2 {
    top: 405px;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .infrastructure__line2 {
    top: 402px;
  }
}
@media (min-width: 1440px) {
  .infrastructure__line2 {
    top: 366px;
  }
}
.infrastructure__line3 {
  width: 1px;
  height: 73%;
  background: linear-gradient(180deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
  top: 70px;
  left: 45%;
}
@media (min-width: 768px) {
  .infrastructure__line3 {
    top: 72px;
    left: 25%;
  }
}
@media (min-width: 1024px) {
  .infrastructure__line3 {
    top: 90px;
    left: 46%;
  }
}
@media (min-width: 1280px) {
  .infrastructure__line3 {
    top: 73px;
    left: 38%;
  }
}
@media (min-width: 1440px) {
  .infrastructure__line3 {
    left: 48%;
    top: 79px;
  }
}
.infrastructure__line4 {
  background: linear-gradient(270deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
  width: 90%;
  height: 1px;
  top: 90%;
  right: -1.1111111111rem;
}
@media (min-width: 768px) {
  .infrastructure__line4 {
    background: linear-gradient(0deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
    width: 1px;
    left: 62%;
    height: 90%;
    bottom: -2%;
    right: unset;
    transform: translateY(-100%);
  }
}
@media (min-width: 1024px) {
  .infrastructure__line4 {
    left: 70%;
    height: 90%;
  }
}
@media (min-width: 1280px) {
  .infrastructure__line4 {
    left: 77%;
    height: 100%;
  }
}
@media (min-width: 1440px) {
  .infrastructure__line4 {
    left: 82%;
  }
}
.infrastructure__line5 {
  height: 1px;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
  left: -1.1111111111rem;
  top: 68%;
  width: 80%;
}

.infrastructureCard {
  max-width: 23.3333333333rem;
}
@media (min-width: 1024px) {
  .infrastructureCard {
    max-width: 17.0555555556rem;
  }
}
.infrastructureCard__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5555555556rem;
  min-height: 5.5555555556rem;
}
@media (min-width: 1280px) {
  .infrastructureCard__top {
    min-height: 7.2222222222rem;
  }
}
.infrastructureCard__title {
  font-weight: 200;
  font-size: 1.5555555556rem;
  line-height: 1.7777777778rem;
  margin-bottom: 0.5555555556rem;
  color: #40E0D0;
}
@media (min-width: 1024px) {
  .infrastructureCard__title {
    font-size: 1.8888888889rem;
    line-height: 2.2777777778rem;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  .infrastructureCard__title {
    font-size: 2.2222222222rem;
    line-height: 3.1111111111rem;
  }
}
.infrastructureCard__title span {
  display: block;
  font-weight: 700;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
  color: #2C3E49;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .infrastructureCard__title span {
    font-size: 1.1111111111rem;
    line-height: 1.5555555556rem;
  }
}
.infrastructureCard__line {
  width: 24px;
  height: 100%;
  background-image: url("../images/client/icons/ico-onoky.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: bottom center;
  display: block;
  flex: 1;
  position: relative;
}
.infrastructureCard__line:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #40E0D0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.infrastructureCard__text {
  color: #2C3E49;
  font-weight: 200;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
}

.infrastructureItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 5.5555555556rem;
}
@media (min-width: 1024px) {
  .infrastructureItem {
    min-height: 6.6666666667rem;
  }
}
.infrastructureItem__icon {
  margin-bottom: 0.3333333333rem;
  width: auto;
  height: 1.3333333333rem;
}
@media (min-width: 768px) {
  .infrastructureItem__icon {
    height: 2.2222222222rem;
  }
}
.infrastructureItem__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  max-width: 12.2222222222rem;
}

.places-wrap {
  padding: 6.6666666667rem 0;
  position: relative;
}
@media (min-width: 1280px) {
  .places-wrap {
    padding: 8.8888888889rem 0;
  }
}

.welnessSpa__wrapper {
  position: relative;
}
.welnessSpa__head {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .welnessSpa__head {
    margin-top: 8.8888888889rem;
  }
}
.welnessSpa__title {
  font-weight: 200;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #40E0D0;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .welnessSpa__title {
    letter-spacing: 0.0333333333rem;
    font-size: 4.4444444444rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .welnessSpa__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1440px) {
  .welnessSpa__title {
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.welnessSpa__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: remfs(55);
  padding-top: 2.2222222222rem;
  margin-left: -1.1111111111rem;
}
@media (min-width: 768px) {
  .welnessSpa__top {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .welnessSpa__top {
    align-items: flex-end;
    margin-bottom: 16%;
  }
}
@media (min-width: 1280px) {
  .welnessSpa__top {
    margin-bottom: 1.3333333333rem;
  }
}
.welnessSpa__top .welnessSpa__text {
  padding-bottom: 21%;
}
@media (min-width: 1024px) {
  .welnessSpa__top .welnessSpa__text {
    padding-bottom: 0;
  }
}
.welnessSpa__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
  max-width: 12.2222222222rem;
}
@media (min-width: 768px) {
  .welnessSpa__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .welnessSpa__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.welnessSpa__picture {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.welnessSpa__picture img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.welnessSpa__picture1 {
  aspect-ratio: 14/19;
}
@media (min-width: 768px) {
  .welnessSpa__picture1 {
    aspect-ratio: 19/14;
  }
}
.welnessSpa__picture2 {
  aspect-ratio: 1.35/1;
}
.welnessSpa__picture3 {
  aspect-ratio: 0.9/1;
}
@media (min-width: 768px) {
  .welnessSpa__picture3 {
    aspect-ratio: 0.9/1;
  }
}
.welnessSpa__picture4 {
  aspect-ratio: 1/1.4;
}
@media (min-width: 768px) {
  .welnessSpa__picture4 {
    aspect-ratio: 1.63/1;
  }
}
.welnessSpa__picture + .welnessSpa__text, .welnessSpa__text + .welnessSpa__picture {
  margin-top: 1.1111111111rem;
}
@media (min-width: 1024px) {
  .welnessSpa__picture + .welnessSpa__text, .welnessSpa__text + .welnessSpa__picture {
    margin-top: 0;
    margin-left: 1.3888888889rem;
  }
}
.welnessSpa__bottom {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: 1.1111111111rem;
}
@media (min-width: 1024px) {
  .welnessSpa__bottom {
    flex-direction: row;
    margin-right: 0;
    margin-top: 0;
  }
}
.welnessSpa__mob-center {
  display: flex;
  align-items: flex-end;
  margin-left: calc((100% - 100vw) / 2);
}
@media (min-width: 480px) {
  .welnessSpa__mob-center {
    margin-right: 0;
  }
}
.welnessSpa__right-top {
  position: relative;
  display: flex;
  flex-direction: column;
}
.welnessSpa__right-top .welnessSpa__text {
  margin-left: auto;
}
@media (min-width: 1024px) {
  .welnessSpa__right-top .welnessSpa__text {
    position: absolute;
    margin: 0;
    color: #FFFFFF;
    top: 1.1111111111rem;
    right: 1.1111111111rem;
    max-width: 7.7777777778rem;
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  .welnessSpa__right-top .welnessSpa__text {
    max-width: 9.5555555556rem;
    top: 2.2222222222rem;
    right: 2.1111111111rem;
  }
}
.welnessSpa__right-bottom {
  display: flex;
  margin-top: 1.1111111111rem;
}

.mediskinClinic {
  padding-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .mediskinClinic {
    padding-top: 8.8888888889rem;
  }
}
.mediskinClinic__left {
  margin-left: -1.1111111111rem;
}
@media (min-width: 768px) {
  .mediskinClinic__left {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .mediskinClinic__left {
    padding-right: 0.4444444444rem;
  }
}
.mediskinClinic__picture {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.mediskinClinic__picture img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.mediskinClinic__picture--1 {
  aspect-ratio: 1/1.7;
  margin-bottom: 1.1111111111rem;
}
@media (min-width: 768px) {
  .mediskinClinic__picture--1 {
    margin-bottom: 1.7777777778rem;
    aspect-ratio: 1.76/1;
  }
}
.mediskinClinic__picture--2 {
  aspect-ratio: 1/1.4;
}
@media (min-width: 768px) {
  .mediskinClinic__picture--2 {
    aspect-ratio: 1.28/1;
  }
}
.mediskinClinic__picture--3 {
  aspect-ratio: 1/1.6;
}
@media (min-width: 768px) {
  .mediskinClinic__picture--3 {
    aspect-ratio: 0.96/1;
  }
}
@media (min-width: 768px) {
  .mediskinClinic__bottom {
    padding-left: 17%;
  }
}
.mediskinClinic__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
  max-width: 27.5rem;
  margin-top: 1.1111111111rem;
}
@media (min-width: 768px) {
  .mediskinClinic__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .mediskinClinic__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}

.restaurant {
  padding-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .restaurant {
    padding-top: 8.8888888889rem;
  }
}
.restaurant__head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: 50vh;
}
.restaurant__title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #F4E9DC;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .restaurant__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
  }
}
@media (min-width: 1440px) {
  .restaurant__title {
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.restaurant__left {
  display: flex;
  position: relative;
}
@media (min-width: 1024px) {
  .restaurant__left {
    align-items: flex-end;
  }
}
.restaurant__left .restaurant__text {
  margin-bottom: 40%;
}
@media (min-width: 1024px) {
  .restaurant__left .restaurant__text {
    margin: 0 !important;
    position: absolute;
    top: 1.3333333333rem;
    left: 1.5rem;
    color: #F4E9DC;
  }
}
.restaurant__right {
  display: flex;
  flex-direction: row-reverse;
}
@media (min-width: 1024px) {
  .restaurant__right {
    flex-direction: column;
  }
}
.restaurant__picture {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.restaurant__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.restaurant__picture--1 {
  aspect-ratio: 0.85/1;
  flex: 0 0 51.5%;
}
@media (min-width: 1024px) {
  .restaurant__picture--1 {
    flex: 1;
  }
}
.restaurant__picture--2 {
  margin-top: -79%;
  aspect-ratio: 1/1.3;
}
@media (min-width: 1024px) {
  .restaurant__picture--2 {
    aspect-ratio: 1.55/1;
    margin-top: 0;
  }
}
.restaurant__picture--3 {
  aspect-ratio: 1.35/1;
}
.restaurant__picture + .restaurant__text {
  margin-left: 1.1111111111rem;
}
.restaurant__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
  max-width: 12.2222222222rem;
}
@media (min-width: 768px) {
  .restaurant__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .restaurant__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.restaurant__top {
  display: flex;
  flex-direction: column;
  flex: 0 0 48.3%;
  margin-right: calc((100% - 100vw) / 2);
}
@media (min-width: 1024px) {
  .restaurant__top {
    align-items: flex-end;
    margin-right: 0;
    flex: none;
    flex-direction: row;
  }
}
.restaurant__top .restaurant__text {
  margin-top: 1.5555555556rem;
  margin-left: 0;
  padding-right: 1.1111111111rem;
}
@media (min-width: 1024px) {
  .restaurant__top .restaurant__text {
    padding-right: 0;
    margin-top: 0;
    margin-left: 1.1111111111rem;
  }
}
.restaurant__bottom {
  margin-top: 0.8888888889rem;
  flex: 1;
  margin-right: 1.1111111111rem;
}
@media (min-width: 1024px) {
  .restaurant__bottom {
    margin-right: 0;
    align-items: flex-end;
  }
}

.kidsClub {
  padding-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .kidsClub {
    padding-top: 8.8888888889rem;
  }
}
.kidsClub__wrapper {
  position: relative;
}
.kidsClub__head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: 50vh;
}
.kidsClub__title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #40E0D0;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .kidsClub__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
  }
}
@media (min-width: 1440px) {
  .kidsClub__title {
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.kidsClub__left {
  margin-left: -0.5555555556rem;
}
@media (min-width: 768px) {
  .kidsClub__left {
    margin-left: 0;
  }
}
.kidsClub__picture {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.kidsClub__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kidsClub__picture--1 {
  aspect-ratio: 1.42/1;
}
@media (min-width: 768px) {
  .kidsClub__picture--1 {
    aspect-ratio: 1.88/1;
  }
}
.kidsClub__picture--2 {
  aspect-ratio: 0.67/1;
}
@media (min-width: 768px) {
  .kidsClub__picture--2 {
    aspect-ratio: 0.925/1;
  }
}
.kidsClub__picture--3 {
  aspect-ratio: 1.58/1;
}
@media (min-width: 768px) {
  .kidsClub__picture--3 {
    aspect-ratio: 1.52/1;
  }
}
.kidsClub__picture--4 {
  margin-bottom: 1.2222222222rem;
  aspect-ratio: 1.2/1;
}
@media (min-width: 768px) {
  .kidsClub__picture--4 {
    aspect-ratio: 1.59/1;
  }
}
@media (min-width: 1024px) {
  .kidsClub__picture--4 {
    margin-top: 1.2222222222rem;
    margin-bottom: 0;
  }
}
.kidsClub__bottom {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .kidsClub__bottom {
    margin-top: 1.2222222222rem;
    flex-direction: row;
  }
}
.kidsClub__bottom .kidsClub__text {
  margin-bottom: 1.1666666667rem;
}
@media (min-width: 1024px) {
  .kidsClub__bottom .kidsClub__text {
    margin-right: 1.1111111111rem;
    margin-bottom: 0;
  }
}
.kidsClub__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
  max-width: 12.7777777778rem;
}
@media (min-width: 768px) {
  .kidsClub__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .kidsClub__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.kidsClub__right {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  margin-right: -0.5555555556rem;
  height: 100%;
}
@media (min-width: 768px) {
  .kidsClub__right {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .kidsClub__right {
    flex-direction: column;
  }
}
.kidsClub__right .kidsClub__text {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .kidsClub__right .kidsClub__text {
    margin-bottom: 0;
    margin-top: auto;
    padding-top: 2.7777777778rem;
  }
}

.conference {
  padding-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .conference {
    padding-top: 8.8888888889rem;
  }
}
.conference__wrapper {
  position: relative;
}
.conference__main-content {
  display: flex;
}
.conference__head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: 50vh;
}
.conference__title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #F4E9DC;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .conference__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
  }
}
@media (min-width: 1440px) {
  .conference__title {
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.conference__left {
  flex: 0 0 46%;
}
@media (min-width: 768px) {
  .conference__left {
    flex: 0 0 56.5%;
  }
}
.conference__left .conference__text {
  margin-top: 1.1111111111rem;
}
@media (min-width: 768px) {
  .conference__left .conference__text {
    margin-top: 2.8888888889rem;
  }
}
.conference__picture {
  display: block;
  position: relative;
  overflow: hidden;
}
.conference__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.conference__picture--1 {
  padding-top: 174%;
}
@media (min-width: 768px) {
  .conference__picture--1 {
    aspect-ratio: 1.57/1;
    padding-top: 0;
    margin-left: 0;
  }
}
.conference__picture--2 {
  aspect-ratio: 0.87/1;
}
.conference__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
  max-width: 13.3333333333rem;
}
@media (min-width: 768px) {
  .conference__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .conference__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.conference__right {
  flex: 0 0 54%;
  padding-left: 1.1111111111rem;
}
@media (min-width: 768px) {
  .conference__right {
    flex: 0 0 43.5%;
  }
}
.conference__right .conference__text {
  margin-bottom: 2.0555555556rem;
}
@media (min-width: 768px) {
  .conference__right .conference__text {
    margin-bottom: 1.3333333333rem;
    margin-left: 56%;
  }
}

.sportArea {
  padding-top: 6.6666666667rem;
}
@media (min-width: 1280px) {
  .sportArea {
    padding-top: 8.8888888889rem;
  }
}
.sportArea__wrapper {
  position: relative;
}
.sportArea__head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: 50vh;
}
.sportArea__title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #40E0D0;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .sportArea__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
  }
}
@media (min-width: 1440px) {
  .sportArea__title {
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.sportArea__left .sportArea__text {
  margin-top: 1.1111111111rem;
}
@media (min-width: 768px) {
  .sportArea__left .sportArea__text {
    margin-top: 1.8888888889rem;
    margin-left: 1.8333333333rem;
    max-width: 17.5rem;
  }
}
.sportArea__picture {
  display: block;
  position: relative;
  overflow: hidden;
}
.sportArea__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sportArea__picture--1 {
  padding-top: 135%;
  margin-left: -1.1111111111rem;
}
@media (min-width: 768px) {
  .sportArea__picture--1 {
    padding-top: 59.4%;
    margin-left: 0;
  }
}
.sportArea__picture--2 {
  padding-top: 173%;
}
@media (min-width: 768px) {
  .sportArea__picture--2 {
    padding-top: 87%;
  }
}
.sportArea__text {
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .sportArea__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .sportArea__text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.sportArea__right {
  margin-left: -0.2777777778rem;
}
.sportArea__right .sportArea__text {
  margin-bottom: 1.3333333333rem;
  margin-right: -1.1111111111rem;
  width: 100%;
  max-width: 13.3333333333rem;
}
@media (min-width: 768px) {
  .sportArea__right .sportArea__text {
    margin-right: 0;
    margin-bottom: 1.3333333333rem;
    margin-left: auto;
    padding-right: 0.8888888889rem;
  }
}

.formats {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.formats__title {
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  color: #40E0D0;
  font-weight: 200;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .formats__title {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .formats__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1440px) {
  .formats__title {
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
  }
}
.formats__title div {
  display: flex !important;
  justify-content: flex-end;
  text-align: center;
}
@media (min-width: 768px) {
  .formats__title div {
    width: 50%;
  }
}
.formats__title div:nth-child(1) {
  padding-right: 0.5555555556rem;
}
@media (min-width: 768px) {
  .formats__title div:nth-child(1) {
    text-align: right;
  }
}
.formats__title div:nth-child(2) {
  display: flex !important;
  justify-content: flex-start;
  padding-left: 0.5555555556rem;
}
@media (min-width: 768px) {
  .formats__title div:nth-child(2) {
    text-align: left;
    background: linear-gradient(90deg, rgba(64, 224, 208, 0.8) 0%, rgba(64, 224, 208, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.formats__list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.formats__item {
  font-weight: 700;
  color: #2C3E49;
  text-transform: uppercase;
  font-size: 1.6666666667rem;
  line-height: 2rem;
}
@media (min-width: 1024px) {
  .formats__item {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
    letter-spacing: 0.0166666667rem;
  }
}
@media (min-width: 1280px) {
  .formats__item {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.formats__btn--1 {
  min-width: 8.8888888889rem;
}
@media (min-width: 1024px) {
  .formats__btn--1 {
    min-width: 15.2777777778rem;
  }
}
.formats__btn--2 {
  min-width: 10rem;
}
@media (min-width: 1024px) {
  .formats__btn--2 {
    min-width: 11.3888888889rem;
  }
}
.formats__btn--3 {
  min-width: 14.4444444444rem;
}
@media (min-width: 768px) {
  .formats__btn--3 {
    min-width: 10rem;
  }
}
@media (min-width: 1024px) {
  .formats__btn--3 {
    min-width: 11rem;
  }
}
.formats__btn--4 {
  min-width: 8.8888888889rem;
}
@media (min-width: 1024px) {
  .formats__btn--4 {
    min-width: 9.6666666667rem;
  }
}

.realEstate {
  padding-top: 2.2222222222rem;
}
@media (min-width: 768px) {
  .realEstate {
    padding-top: 3.3333333333rem;
  }
}
.realEstate__title {
  font-weight: 200;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2C3E49 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  padding-right: 1.1111111111rem;
  margin-right: -1.1111111111rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.4444444444rem;
}
@media (min-width: 1024px) {
  .realEstate__title {
    margin-bottom: 1.1111111111rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .realEstate__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.realEstate__title--brand {
  background: linear-gradient(90deg, #40E0D0 0%, #2C3E49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.realEstate__top {
  margin-bottom: 2.2222222222rem;
}
.realEstate__picture {
  display: block;
  overflow: hidden;
  position: relative;
  padding-top: 114%;
}
@media (min-width: 680px) {
  .realEstate__picture {
    padding-top: 57%;
  }
}
@media (min-width: 1280px) {
  .realEstate__picture {
    padding-top: 48%;
  }
}
.realEstate__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.realEstate__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  margin-bottom: 1.2222222222rem;
  max-width: 35.5555555556rem;
}
@media (min-width: 1024px) {
  .realEstate__text {
    margin-bottom: 0;
    max-width: none;
  }
}
.realEstateCards--soon .realEstateCards__head {
  justify-content: center;
}
.realEstateCards--soon .realEstateCards__title {
  text-align: center;
  max-width: unset;
}
.realEstateCards__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.1111111111rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .realEstateCards__head {
    align-items: flex-end;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .realEstateCards__head {
    margin-bottom: 1.3333333333rem;
  }
}
.realEstateCards__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.6666666667rem;
  line-height: 2rem;
  letter-spacing: 0.0166666667rem;
  max-width: 21.1111111111rem;
}
@media (min-width: 768px) {
  .realEstateCards__title {
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
    max-width: 30rem;
  }
}
@media (min-width: 1280px) {
  .realEstateCards__title {
    max-width: 45.6666666667rem;
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.realEstateCards__head-text {
  color: #40E0D0;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  text-align: right;
  position: relative;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (min-width: 768px) {
  .realEstateCards__head-text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
    font-weight: 200;
  }
}
@media (min-width: 1280px) {
  .realEstateCards__head-text {
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.realEstateCards__head-text:before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 1px;
  right: 100%;
  top: 0.2777777778rem;
  background: linear-gradient(270deg, #40E0D0 0%, rgba(64, 224, 208, 0.1) 100%);
}
@media (min-width: 768px) {
  .realEstateCards__head-text:before {
    width: 13.3333333333rem;
    top: 0.6666666667rem;
  }
}
.realEstateCards__picture {
  display: block;
  border-radius: 10px;
  background-color: #F4E9DC;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.realEstateCards__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.realEstateCards__cards {
  margin-top: -1.3333333333rem;
}
@media (min-width: 1024px) {
  .realEstateCards__cards {
    margin-top: -2.2222222222rem;
  }
}

.realEstateCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.3333333333rem;
}
@media (min-width: 1024px) {
  .realEstateCard {
    margin-top: 2.2222222222rem;
  }
}
.realEstateCard__text {
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  position: relative;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 768px) {
  .realEstateCard__text {
    font-size: 0.8888888889rem;
    line-height: 1.3333333333rem;
    font-weight: 200;
    margin-bottom: 0.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .realEstateCard__text {
    font-size: 1rem;
    line-height: 1.4444444444rem;
  }
}
.realEstateCard__picture {
  display: block;
  aspect-ratio: 1;
  width: 100%;
}
.realEstateCard__picture img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.realEstateCard__btn {
  width: 100%;
  max-width: 12.2222222222rem;
  margin-top: 1.1111111111rem;
}

.youGet {
  padding-top: 2.2222222222rem;
}
.youGet__wrapper {
  display: flex;
  margin: 0 -6px;
}
@media (min-width: 680px) {
  .youGet__wrapper {
    margin: 0 -20px;
  }
}
@media (min-width: 1024px) {
  .youGet__wrapper {
    margin: 0 -30px;
  }
}
@media (min-width: 1280px) {
  .youGet__wrapper {
    margin: 0 -65px;
  }
}
.youGet__item {
  padding: 0 6px;
  flex: 0 0 75%;
}
@media (min-width: 680px) {
  .youGet__item {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .youGet__item {
    padding: 0 30px;
    flex: 0 0 33.333%;
  }
}
@media (min-width: 1280px) {
  .youGet__item {
    padding: 0 65px;
  }
}
.youGet__head {
  margin-bottom: 1.6666666667rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1280px) {
  .youGet__head {
    margin-bottom: 2.2222222222rem;
  }
}
.youGet__text {
  color: #2C3E49;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .youGet__text {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    font-weight: 300;
  }
}
.youGet__title {
  font-weight: 300;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2C3E49 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .youGet__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .youGet__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.youGet__scrollbar {
  margin-top: 1.3888888889rem;
  height: 1px;
  background: linear-gradient(90deg, #C2E7F6 0%, #728790 100%);
  display: flex;
  align-items: center;
}
.youGet__scrollbar-drag {
  height: 28px;
  background-image: url("../images/client/icons/ico-onoky-rotated.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  width: 28px;
}

.swiper-scrollbar-horizontal {
  height: 1px;
  margin-top: 2.2222222222rem;
  background: linear-gradient(90deg, #C2E7F6 0%, #728790 100%);
  display: flex;
  align-items: center;
}
.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  height: 28px;
  background-image: url("../images/client/icons/ico-onoky-rotated.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

.youGetCard {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.youGetCard__number {
  font-weight: 200;
  text-transform: uppercase;
  background: #40E0D0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2222222222rem;
  line-height: 2.6666666667rem;
  letter-spacing: 0.0222222222rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5555555556rem;
}
@media (min-width: 768px) {
  .youGetCard__number {
    font-size: 3.3333333333rem;
    line-height: 4rem;
  }
}
@media (min-width: 1024px) {
  .youGetCard__number {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .youGetCard__number {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.youGetCard__title {
  color: #2C3E49;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.4444444444rem;
}
@media (min-width: 768px) {
  .youGetCard__title {
    margin-bottom: auto;
  }
}
@media (min-width: 1024px) {
  .youGetCard__title {
    letter-spacing: 0.0133333333rem;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  .youGetCard__title {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}
.youGetCard__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  margin-top: 1.6666666667rem;
  max-width: 18.6111111111rem;
}

.youEarn {
  padding-top: 4.4444444444rem;
  position: relative;
}
@media (min-width: 768px) {
  .youEarn {
    padding-top: 5.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .youEarn {
    padding-top: 6.7777777778rem;
  }
}
.youEarn:before {
  position: absolute;
  content: "";
  background-image: url("../images/client/logo-dec.svg");
  background-position: center;
  background-size: contain;
  width: 13.7777777778rem;
  height: 13.7777777778rem;
  top: -5%;
  left: 0;
  transform: translateX(-55%);
  display: block;
}
@media (min-width: 768px) {
  .youEarn:before {
    display: none;
  }
}
.youEarn__head {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.3888888889rem;
}
@media (min-width: 768px) {
  .youEarn__head {
    margin-bottom: 2.2222222222rem;
  }
}
@media (min-width: 1280px) {
  .youEarn__head {
    margin-bottom: 3.8888888889rem;
  }
}
.youEarn__text {
  color: #2C3E49;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .youEarn__text {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    font-weight: 300;
  }
}
.youEarn__title {
  font-weight: 300;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--Color-5, #2C3E49) 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .youEarn__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .youEarn__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.youEarn__wrapper {
  display: flex;
  margin: -6px;
}
@media (min-width: 680px) {
  .youEarn__wrapper {
    margin: -10px;
  }
}
@media (min-width: 1024px) {
  .youEarn__wrapper {
    margin: -20px;
  }
}
@media (min-width: 1280px) {
  .youEarn__wrapper {
    margin: -34.5px;
  }
}
.youEarn__item {
  padding: 6px;
  flex: 0 0 70%;
}
@media (min-width: 680px) {
  .youEarn__item {
    padding: 10px;
    flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .youEarn__item {
    padding: 20px;
    flex: 0 0 33.333%;
  }
}
@media (min-width: 1280px) {
  .youEarn__item {
    padding: 34.5px;
  }
}
.youEarn__scrollbar {
  margin-top: 1.3888888889rem;
  height: 1px;
  background: linear-gradient(90deg, #C2E7F6 0%, #728790 100%);
  display: flex;
  align-items: center;
}
.youEarn__scrollbar-drag {
  height: 28px;
  background-image: url("../images/client/icons/ico-onoky-rotated.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  width: 28px;
}

.youEarnCard {
  height: 100%;
  overflow: hidden;
}
.youEarnCard__title {
  color: #2C3E49;
  font-weight: 200;
  font-size: 1.5555555556rem;
  line-height: 1.7777777778rem;
  margin-bottom: 2.2222222222rem;
}
@media (min-width: 1024px) {
  .youEarnCard__title {
    letter-spacing: 0.0133333333rem;
    font-size: 1.8888888889rem;
    line-height: 2.2777777778rem;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  .youEarnCard__title {
    letter-spacing: 0.0166666667rem;
    font-size: 2.2222222222rem;
    line-height: 3.1111111111rem;
  }
}
.youEarnCard__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  max-width: 17.7777777778rem;
}
@media (min-width: 768px) {
  .youEarnCard__text {
    margin-top: auto;
  }
}

.indicators {
  padding-top: 4.4444444444rem;
}
@media (min-width: 768px) {
  .indicators {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 1280px) {
  .indicators {
    padding-top: 7.7777777778rem;
  }
}
.indicators__head {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3.3333333333rem;
}
@media (min-width: 1280px) {
  .indicators__head {
    margin-bottom: 2.7777777778rem;
  }
}
.indicators__text {
  color: #2C3E49;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .indicators__text {
    font-size: 1.6666666667rem;
    line-height: 2rem;
    font-weight: 300;
  }
}
.indicators__title {
  font-weight: 300;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2C3E49 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .indicators__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .indicators__title {
    font-size: 6.6666666667rem;
    line-height: 8rem;
    letter-spacing: 0.0666666667rem;
  }
}
.indicators__btn {
  margin-top: 2.1111111111rem;
  min-width: 12.2222222222rem;
}
@media (min-width: 768px) {
  .indicators__btn {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .indicators__btn {
    margin-top: 6.4444444444rem;
  }
}
.indicators__wrapper {
  margin-top: -2.8888888889rem;
}
@media (min-width: 1280px) {
  .indicators__wrapper {
    margin-top: -3.3333333333rem;
  }
}

.indicatorCard {
  margin-top: 2.8888888889rem;
}
@media (min-width: 1280px) {
  .indicatorCard {
    margin-top: 3.3333333333rem;
  }
}
.indicatorCard__title {
  font-weight: 200;
  text-transform: uppercase;
  background: #2C3E49;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.3333333333rem;
  line-height: 4rem;
}
@media (min-width: 1024px) {
  .indicatorCard__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    margin-bottom: 1.2222222222rem;
  }
}
@media (min-width: 1280px) {
  .indicatorCard__title {
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
  }
}
.indicatorCard__title sup {
  position: static;
  vertical-align: text-top;
  line-height: inherit;
}
.indicatorCard__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
}

.aboutPartners {
  padding: 0 0 5.8888888889rem;
  position: relative;
  background-color: #000000;
  margin-top: 4.4444444444rem;
}
@media (min-width: 768px) {
  .aboutPartners {
    padding: 0 0 6.6666666667rem;
  }
}
@media (min-width: 1280px) {
  .aboutPartners {
    margin-top: 6.1666666667rem;
    padding: 0 0 8rem;
  }
}
.aboutPartners__logo {
  display: block;
  max-width: 10.4444444444rem;
}
@media (min-width: 480px) {
  .aboutPartners__logo {
    max-width: 15.5555555556rem;
  }
}
@media (min-width: 768px) {
  .aboutPartners__logo {
    max-width: 21.5rem;
  }
}
.aboutPartners__logo img {
  width: 100%;
  height: auto;
}
.aboutPartners__title {
  font-weight: 200;
  text-transform: uppercase;
  background: linear-gradient(90deg, #40E0D0 0%, rgba(35, 122, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.0333333333rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.3333333333rem;
  line-height: 4rem;
  margin-bottom: 3.3333333333rem;
  margin-top: -0.7777777778rem;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 1024px) {
  .aboutPartners__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
    margin-top: -1.7777777778rem;
    margin-bottom: 4.4444444444rem;
  }
}
@media (min-width: 1280px) {
  .aboutPartners__title {
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    margin-top: -1.0555555556rem;
    letter-spacing: 0.0666666667rem;
  }
}
.aboutPartners__text {
  color: #F4E9DC;
  font-weight: 300;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
}
.partners {
  max-width: 80rem;
  margin: 0 auto;
}
.partners__wrapper {
  justify-content: center;
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.7777777778rem;
       column-gap: 1.7777777778rem;
  row-gap: 2.6666666667rem;
}
@media (min-width: 768px) {
  .partners__wrapper {
    row-gap: 3.3333333333rem;
  }
}
@media (min-width: 1024px) {
  .partners__wrapper {
    -moz-column-gap: 3.5555555556rem;
         column-gap: 3.5555555556rem;
  }
}
@media (min-width: 1280px) {
  .partners__wrapper {
    -moz-column-gap: 4.4444444444rem;
         column-gap: 4.4444444444rem;
    row-gap: 4.4444444444rem;
  }
}
.partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .partners__item:nth-child(-n+2) {
    flex: 0 0 calc(50% - 0.8888888889rem);
  }
}
@media (min-width: 1024px) {
  .partners__item:nth-child(-n+2) {
    flex: 0 0 calc(50% - 1.7777777778rem);
  }
}
@media (min-width: 1280px) {
  .partners__item:nth-child(-n+2) {
    flex: 0 0 calc(50% - 3.8888888889rem);
  }
}
.partners__item .partners__logo {
  max-width: 100%;
}
.partners__logo {
  display: block;
  max-height: 4.4444444444rem;
  max-width: 17.7777777778rem;
}
@media (min-width: 768px) {
  .partners__logo {
    max-height: 5.5555555556rem;
    max-width: 20rem;
  }
}
@media (min-width: 1280px) {
  .partners__logo {
    max-height: 6.8888888889rem;
    max-width: 21.5rem;
  }
}
.partners__logo img {
  max-height: inherit;
  max-width: inherit;
}
.partners__text {
  margin-top: auto;
  color: #F4E9DC;
  font-weight: 300;
  font-size: 0.5555555556rem;
  line-height: 0.7777777778rem;
}
@media (min-width: 1024px) {
  .partners__text {
    font-size: 0.7777777778rem;
    line-height: 1.1111111111rem;
  }
}

.draw-map {
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.anim-scale-on-scroll {
  transform-origin: left bottom;
}

.anim-letter-highlight div {
  width: -moz-fit-content;
  width: fit-content;
}
.anim-letter-highlight .word {
  white-space: nowrap;
}

.places-head {
  position: sticky;
  top: 0;
  z-index: 2;
}
.places-head__title-wrap {
  position: relative;
}
.places-head__title {
  top: 0;
  left: 0;
  position: relative;
  height: 3.1111111111rem;
  color: #FCECDF;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 2.2222222222rem;
  line-height: 3.1111111111rem;
  text-align: center;
  margin-top: -1.5555555556rem;
}
@media (min-width: 1024px) {
  .places-head__title {
    letter-spacing: 0.0333333333rem;
    font-size: 4.4444444444rem;
    line-height: 7.1111111111rem;
    font-weight: 300;
    margin-top: -3.5555555556rem;
    height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .places-head__title {
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1440px) {
  .places-head__title {
    height: 6.6666666667rem;
    padding-left: 1.6666666667rem;
    font-size: 6.6666666667rem;
    line-height: 6.6666666667rem;
    letter-spacing: 0.0666666667rem;
    margin-top: -3.3333333333rem;
  }
}
.places-head__title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
}

.mask {
  width: 100%;
  height: 115%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
  background-color: #FFFFFF;
}

.invest {
  padding-top: 2.2222222222rem;
  position: relative;
}
.invest__head {
  margin-bottom: 2.6666666667rem;
}
@media (min-width: 1024px) {
  .invest__head {
    margin-bottom: 1.3333333333rem;
  }
}
.invest__title {
  font-weight: 200;
  text-transform: uppercase;
  background: linear-gradient(90deg, #40E0D0 0%, #2C3E49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6666666667rem;
  line-height: 2.3333333333rem;
  letter-spacing: 0.0222222222rem;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media (min-width: 768px) {
  .invest__title {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    display: block;
  }
}
@media (min-width: 1024px) {
  .invest__title {
    letter-spacing: 0.0333333333rem;
    font-size: 5rem;
    line-height: 7.1111111111rem;
  }
}
@media (min-width: 1280px) {
  .invest__title {
    font-size: 6.6666666667rem;
    line-height: 7.6666666667rem;
    letter-spacing: 0.0666666667rem;
  }
}
.invest__head-text {
  color: #2C3E49;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.6666666667rem;
  line-height: 2.3333333333rem;
  letter-spacing: 0.0222222222rem;
  display: inline;
}
@media (min-width: 768px) {
  .invest__head-text {
    font-size: 1rem;
    line-height: 1.4444444444rem;
    letter-spacing: 0;
    display: block;
  }
}
@media (min-width: 1280px) {
  .invest__head-text {
    font-size: 1.3333333333rem;
    line-height: 1.5555555556rem;
    font-weight: 300;
  }
}
@media (min-width: 768px) {
  .invest__head-text b, .invest__head-text span {
    display: none;
  }
}
.invest__big-text {
  font-weight: 300;
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  margin-bottom: 1.3333333333rem;
}
@media (min-width: 768px) {
  .invest__big-text {
    font-size: 1rem;
    line-height: 1.2222222222rem;
    text-transform: uppercase;
    margin-bottom: 1.7777777778rem;
  }
}
@media (min-width: 1024px) {
  .invest__big-text {
    letter-spacing: 0.0133333333rem;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
    margin-bottom: 2.6666666667rem;
  }
}
@media (min-width: 1280px) {
  .invest__big-text {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}
.invest__text {
  color: #2C3E49;
  font-weight: 300;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
}
.invest__brand-text {
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.4444444444rem;
  color: #2C3E49;
  margin-top: 1.7777777778rem;
}
@media (min-width: 768px) {
  .invest__brand-text {
    color: #2C3E49;
    font-size: 1.3333333333rem;
    line-height: 1.8888888889rem;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  .invest__brand-text {
    font-size: 1.6666666667rem;
    line-height: 2.3333333333rem;
    margin-top: 5.5555555556rem;
  }
}

.imageBtn {
  background-color: #FFFFFF;
  margin-top: 4.6666666667rem;
  overflow: hidden;
}
.imageBtn__wrapper {
  position: relative;
}
.imageBtn__picture {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 480px;
}
@media (min-width: 768px) {
  .imageBtn__picture {
    padding-top: 56%;
  }
}
@media (min-width: 1024px) {
  .imageBtn__picture {
    padding-top: 48.5%;
  }
}
.imageBtn__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.imageBtn__btn {
  min-width: 12.2222222222rem;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.5) 0%, rgba(44, 62, 73, 0.5) 100%);
}
.imageBtn__btn-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.3333333333rem;
}
@media (min-width: 768px) {
  .imageBtn__btn-wrap {
    bottom: 4.4444444444rem;
  }
}

.video {
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 5px;
}
.video__wrapper {
  position: relative;
}
.video__picture {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
.video__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.video__btn {
  min-width: 12.2222222222rem;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(16, 27, 42, 0.5) 0%, rgba(44, 62, 73, 0.5) 100%);
}
.video__btn-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.3333333333rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .video__btn-wrap {
    bottom: 4.4444444444rem;
  }
}

.safeInvestment {
  padding: 4.4444444444rem 0 5.5555555556rem;
}
@media (min-width: 768px) {
  .safeInvestment {
    padding: 5.5555555556rem 0 7.2222222222rem;
  }
}
@media (min-width: 768px) {
  .safeInvestment__wrapper {
    padding: 0 0.4444444444rem;
  }
}
.safeInvestment__left {
  padding-bottom: 2.2222222222rem;
}
@media (min-width: 768px) {
  .safeInvestment__left {
    padding-bottom: 1.3333333333rem;
  }
}
.safeInvestment__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5555555556rem;
  line-height: 1.8888888889rem;
  letter-spacing: 0.0166666667rem;
  width: 100%;
  margin-bottom: 2.2222222222rem;
}
@media (min-width: 768px) {
  .safeInvestment__title {
    margin-bottom: 3.3333333333rem;
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .safeInvestment__title {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.safeInvestment__text {
  color: #2C3E49;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
  max-width: 11.8333333333rem;
}
.safeInvestment__big-text {
  font-weight: 300;
  color: #2C3E49;
  font-size: 0.7777777778rem;
  line-height: 1.0555555556rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .safeInvestment__big-text {
    font-size: 1rem;
    line-height: 1.2222222222rem;
  }
}
@media (min-width: 1024px) {
  .safeInvestment__big-text {
    letter-spacing: 0.0133333333rem;
    font-size: 1.3333333333rem;
    line-height: 1.4444444444rem;
  }
}
@media (min-width: 1280px) {
  .safeInvestment__big-text {
    letter-spacing: 0.0166666667rem;
    font-size: 1.6666666667rem;
    line-height: 2rem;
  }
}

.clubHouse {
  margin-top: 6.3333333333rem;
  position: relative;
}
.clubHouse__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12.5vw;
  line-height: 8.3vw;
  font-weight: 200;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
}
.clubHouse__picture {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 21.1111111111rem;
}
@media (min-width: 768px) {
  .clubHouse__picture {
    padding-top: 38.8888888889rem;
  }
}
@media (min-width: 1024px) {
  .clubHouse__picture {
    padding-top: 66.6%;
  }
}
.clubHouse__picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.titleText {
  padding: 4.4444444444rem 0 0;
}
@media (min-width: 1024px) {
  .titleText {
    padding: 5.5555555556rem 0 0;
  }
}
.titleText__title {
  color: #2C3E49;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5555555556rem;
  line-height: 1.8888888889rem;
  letter-spacing: 0.0166666667rem;
  width: 100%;
  margin-bottom: 2.2222222222rem;
}
@media (min-width: 768px) {
  .titleText__title {
    margin-bottom: 3.3333333333rem;
    font-size: 2.6666666667rem;
    line-height: 3.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .titleText__title {
    font-size: 3.3333333333rem;
    line-height: 4rem;
    letter-spacing: 0.0333333333rem;
  }
}
.titleText__text {
  color: #2C3E49;
  font-size: 0.6666666667rem;
  line-height: 0.8888888889rem;
  font-weight: 300;
  max-width: 20rem;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  transition: 0.3s ease;
  overflow-y: auto;
  padding: 5rem 1.2222222222rem 1.2222222222rem 1.2222222222rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
@media (min-width: 1024px) {
  .popup {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}
.popup.active {
  visibility: visible;
  opacity: 1;
}
.popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.popup__close {
  position: absolute;
  top: 2.1111111111rem;
  right: 1.8333333333rem;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 1024px) {
  .popup__close {
    width: 1.7777777778rem;
    height: 1.7777777778rem;
  }
}
.popup__close svg {
  width: 100%;
  height: 100%;
}
.popup__content {
  margin: auto;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.popup__image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.popup__image img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.errors {
  min-height: 100vh;
  display: flex;
  padding: 7.4444444444rem 0;
}
.errors__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.errors__content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.errors__title {
  margin-bottom: 5.2222222222rem;
}
.errors__title svg {
  width: 15.2222222222rem;
  height: auto;
}
@media (min-width: 768px) {
  .errors__title svg {
    width: 26.6666666667rem;
  }
}
.errors__btn {
  min-width: 14.4444444444rem;
}
