/* FONTS */
@font-face {
  font-family: "ITC Avant Garde Std";
  src: url("../fonts/ITCAvantGardeStd-Bk.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Std";
  src: url("../fonts/ITCAvantGardeStd-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Std";
  src: url("../fonts/ITCAvantGardeStd-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Std";
  src: url("../fonts/ITCAvantGardeStd-Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-brand: #004a50;
  --color-second: #c8ff00;
  --color-txt: #00bfbd;
  --color-dark: #000;
  --color-light: #fff;
  --color-body: #020202;
  --bg: #f1f1f1;
  --font-main: "ITC Avant Garde Std", sans-serif;
}

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

html, body {
  height: 100%;
}

html {
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-light);
  font: 400 1rem/1.75 var(--font-main);
  color: var(--color-body);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
}

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

a {
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 28px;
}
p:last-child {
  margin-bottom: 0;
}

b, strong {
  color: var(--color-dark);
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  box-sizing: border-box;
  outline: none;
  font-size: 1rem;
}

textarea {
  display: block;
  resize: vertical;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: var(--color-placeholder);
}

::-moz-placeholder {
  color: var(--color-placeholder);
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-sm {
  color: var(--color-brand);
  line-height: 1.17;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1, .heading-1 {
  font-size: clamp(2.375rem, 6vw, 4.5rem);
  line-height: 1.15;
}

h2, .heading-2 {
  font-size: clamp(2rem, 4.5vw, 2.875rem);
}

.caption {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-txt);
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: clip;
  flex-grow: 1;
  min-height: 100%;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* SECTION */
.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .section {
    padding: 128px 0;
  }
}
.section-sm {
  padding: 50px 0;
}
.section-bg {
  background-color: var(--bg);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .section-header {
    align-items: flex-end;
    flex-direction: row;
  }
  .section-header_centered {
    align-items: center;
  }
  .section-header__item {
    width: calc(50% - 12px);
  }
  .section-header__end {
    display: table;
    margin-left: auto;
  }
  .section-header__max {
    max-width: 30.625rem;
  }
}

.section-info {
  display: flex;
  flex-direction: column;
  row-gap: 27px;
}
.section-info__subtitle {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: -16px;
}
.section-info__content {
  margin-top: -5px;
  font-size: 1.125rem;
  line-height: 1.67;
}
.section-info__content p:not(:last-child) {
  margin-bottom: 15px;
}
.section-info__footer {
  margin-top: 12px;
}

/* BUTTON */
.button {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0 0 0 10px;
  padding: 0.83em 1.4em;
  background-color: var(--color-second);
  border: 1px solid #ceeb55;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  gap: 0.5em;
  position: relative;
  z-index: 0;
  transition: color 0.25s;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.button, .button:after {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button:hover {
  color: var(--color-second);
}
.button:hover:after {
  width: 215%;
}
.button:after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 0;
  top: 100%;
  width: 0;
  height: auto;
  background-color: var(--color-brand);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
.button_v1 {
  background-color: var(--color-light);
}
.button_v1:hover {
  color: var(--color-dark);
}
.button_v1:after {
  background-color: var(--color-second);
}
.button_v2 {
  border-color: currentColor;
  color: var(--color-dark);
}
.button_fluid {
  width: 100%;
}
.button-centered {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .button-centered {
    margin-top: 50px;
  }
}
.button-start {
  text-align: left;
}

/* HEADER */
.header {
  position: relative;
  z-index: 999;
  --headerHeight: 80px;
}
@media (min-width: 992px) {
  .header {
    --headerHeight: 100px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: var(--headerHeight);
}
.header__logo {
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .header__block {
    margin-left: auto;
  }
  .header__block-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 5px;
  }
  .header__block-item:not(:first-child) {
    padding-left: 40px;
    border-left: 2px solid var(--color-txt);
    margin-left: 35px;
  }
}
@media (max-width: 991px) {
  .header__block {
    position: fixed;
    top: var(--headerHeight);
    right: 0;
    height: calc(100vh - var(--headerHeight));
    height: calc(100dvh - var(--headerHeight));
    width: 100%;
    max-width: 400px;
    background-color: var(--color-brand);
    font-size: 1.125rem;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
  .header__block-group {
    padding: 10px 30px 30px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .header__block-footer {
    margin-top: auto;
    padding-top: 40px;
  }
}

.logo {
  max-width: 220px;
  display: inline-block;
  vertical-align: middle;
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.3;
}
.nav a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
}
.nav a:hover {
  color: var(--color-second);
}
@media (min-width: 992px) {
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 21px;
  }
  .nav a {
    padding: 5px;
    font-weight: 400;
  }
  .nav a:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
  }
  .nav a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    transition: -webkit-transform 0.1s;
    transition: transform 0.1s;
    transition: transform 0.1s, -webkit-transform 0.1s;
  }
}

.lang-list {
  display: flex;
  align-items: center;
  gap: 0 10px;
  list-style: none;
  padding: 0;
  margin: 0 -5px;
}
.lang-list__link {
  display: block;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}
.lang-list__link:hover {
  color: var(--color-second);
}
.lang-list .is-current {
  pointer-events: none;
}
.lang-list .is-current .lang-list__link {
  font-weight: 400;
}

.burger {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  transition: all 0.4s;
  display: block;
  flex-shrink: 0;
  color: currentColor;
  margin-left: auto;
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}
.burger span {
  top: 11px;
  left: 5px;
  right: 5px;
  transition: background-color 0s linear 0.13s;
  display: block;
}
.burger span, .burger span:before, .burger span:after {
  position: absolute;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: currentColor;
  border-radius: 2px;
}
.burger span:before, .burger span:after {
  display: block;
  content: "";
  width: 100%;
}
.burger span:before {
  top: 8px;
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.burger span:after {
  left: 0;
  top: 16px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.burger.is-active span {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.burger.is-active span:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.burger.is-active span:after {
  top: 0;
  width: 100%;
  left: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 7px, 0) rotate(-45deg);
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

@media (max-width: 991px) {
  .box-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
  }
}

@media (max-width: 991px) {
  .menu-show {
    overflow: hidden;
  }
  .menu-show .header__block {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-show .box-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* MARQUEE */
.marquee {
  padding: 10px 0;
  overflow: hidden;
  background-color: var(--bg);
}
.marquee__row {
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  will-change: transform;
  -webkit-animation: scrollX 35s linear infinite;
  animation: scrollX 35s linear infinite;
}
.marquee__block {
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
.marquee__block img {
  max-height: 100%;
}
@media (min-width: 768px) {
  .marquee__block {
    width: 213px;
    height: 100px;
    padding: 20px;
  }
}

@-webkit-keyframes scrollX {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scrollX {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* COLUMN */
.column_max {
  width: 100%;
  max-width: 62.25rem;
  margin-left: auto;
  margin-right: auto;
}
.column__item:not(:last-child) {
  margin-bottom: 50px;
}
.column__figure {
  margin-left: auto;
  margin-right: auto;
}
.column__right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
  }
  .column_reverse {
    flex-direction: row-reverse;
  }
  .column_stretch {
    align-items: stretch;
  }
  .column__item {
    width: calc(50% - 13px);
  }
  .column__item:not(:last-child) {
    margin-bottom: 0;
  }
  .column__right {
    margin-right: 0;
  }
  .column__figure {
    margin-left: 0;
    margin-right: 0;
  }
}

.figure {
  aspect-ratio: 1;
  width: 100%;
  max-width: 530px;
  height: auto;
  -webkit-filter: drop-shadow(12px 12px 20px rgba(0, 0, 0, 0.1)) drop-shadow(-10px -10px 20px #fff);
  filter: drop-shadow(12px 12px 20px rgba(0, 0, 0, 0.1)) drop-shadow(-10px -10px 20px #fff);
}
.figure__mask {
  -webkit-mask-image: url("../img/mask.webp");
  mask-image: url("../img/mask.webp");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.figure_sm {
  max-width: 385px;
}
.figure_xs {
  max-width: 253px;
}
.figure_no-shadow {
  -webkit-filter: none;
  filter: none;
}

.icon-decor {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 54px;
  height: 54px;
}
.icon-decor img, .icon-decor svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* animations */
.animate-wind {
  -webkit-animation: wind-blow 3s ease-in infinite;
  animation: wind-blow 3s ease-in infinite;
}

@-webkit-keyframes wind-blow {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
  50% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(4deg);
    transform: skewX(4deg);
  }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
}
@keyframes wind-blow {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
  50% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(4deg);
    transform: skewX(4deg);
  }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
}
.animate-float {
  -webkit-animation: float 6s linear infinite;
  animation: float 6s linear infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.animate-rounded {
  -webkit-animation: rounded 6s linear infinite;
  animation: rounded 6s linear infinite;
}

@-webkit-keyframes rounded {
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
}
@keyframes rounded {
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
}
/* ACCORDION */
.accordion {
  background-color: var(--color-light);
}
.accordion:not(:last-child) {
  margin-bottom: 16px;
}
.accordion.is-open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion.is-open .accordion__content {
  padding-bottom: 21px;
}
.accordion.is-open .accordion__btn svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.accordion__header {
  display: flex;
  align-items: center;
  padding: 16px 20px 16px 30px;
  gap: 20px;
  color: #050c29;
  cursor: pointer;
}
.accordion__header:hover .accordion__title {
  color: var(--color-brand);
}
.accordion__header:hover .accordion__btn {
  background-color: var(--color-brand);
  color: var(--color-light);
}
.accordion__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
}
.accordion__btn {
  width: 54px;
  height: 48px;
  background-color: var(--color-second);
  border-radius: 10px 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.3s;
  flex-shrink: 0;
}
.accordion__btn svg {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.accordion__content {
  font-size: 0.875rem;
  line-height: 1.71;
  color: #4c5a67;
  padding-right: 75px;
  padding-left: 30px;
  min-height: 0;
  transition: 0.3s ease-in-out;
}

/* LISTS */
.list-info {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.67;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.list-info li {
  padding-left: 26px;
  background: url("../img/icons/angles-right.svg") no-repeat 0 50%/16px 16px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.list-check li {
  position: relative;
  padding-left: 34px;
  background: url("../img/icons/check.svg") no-repeat 0 50%/24px 24px;
}
.list-check b, .list-check strong {
  font-weight: 600;
  color: var(--color-txt);
}

/* AWARDS */
.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.awards_end {
  justify-content: end;
}
.awards__item {
  max-width: 80px;
}
@media (min-width: 992px) {
  .awards__item {
    max-width: 104px;
  }
}

/* SPLIDE */
.splide__arrows--style {
  display: flex;
  gap: 8px;
}
.splide__arrows--style .splide__arrow {
  position: static;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.splide__arrows--position {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .splide__arrows--position {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 70px;
  }
}
.splide__arrow {
  width: 54px;
  height: 47px;
  display: grid;
  place-content: center;
  border: 1px solid currentColor;
  color: #b4b7bf;
  padding: 0;
  background-color: var(--color-light);
  opacity: 1;
  transition: all 0.2s;
}
.splide__arrow:hover {
  border-color: var(--color-second);
  color: var(--color-dark);
}
.splide__arrow--next {
  border-radius: 0 10px 10px 10px;
}
.splide__arrow--next svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.splide__arrow--prev {
  border-radius: 10px 0 10px 10px;
}
.splide__arrow--prev svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.splide__arrow[disabled] {
  pointer-events: none;
}

/* SOCIAL-LIST */
.social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
}
.social-list__item {
  max-width: 30px;
  text-decoration: none;
}
.social-list__item svg, .social-list__item img {
  display: block;
}
.social-list__item:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
  background-color: var(--color-brand);
  color: var(--color-light);
  padding: 70px 0;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    text-align: left;
    padding: 98px 0;
  }
}
.footer a {
  color: var(--color-txt);
  text-decoration: none;
}
.footer a:hover {
  color: var(--color-second);
}
.footer__item {
  padding-bottom: 42px;
}
.footer__grid {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer__grid {
    flex-direction: row;
  }
  .footer__grid-aside {
    width: 30%;
    flex-shrink: 0;
  }
  .footer__grid-main {
    flex-grow: 1;
  }
}
@media (min-width: 1101px) {
  .footer__grid-aside {
    width: 39.167%;
  }
}
.footer__end {
  margin-top: auto;
}
@media (min-width: 768px) {
  .footer__end {
    width: 100%;
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .footer__block {
    align-items: start;
  }
}
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  row-gap: 20px;
  margin-bottom: 20px;
}
.footer__nav li:first-child a {
  padding-left: 0;
  border-left: none;
}
.footer__nav li:last-child a {
  padding-right: 0;
  border-right: none;
}
.footer__nav a {
  display: block;
  color: var(--color-light);
  padding: 2px 20px;
  border-left: 1px solid var(--color-txt);
  border-right: 1px solid var(--color-txt);
}
@media (min-width: 992px) {
  .footer__nav {
    justify-content: end;
    margin-bottom: 0;
  }
}
.footer__group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__group {
    flex-direction: row;
  }
}
.footer__caption {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-txt);
  margin-bottom: 8px;
}
.footer__bottom {
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links li:not(:last-child) {
  margin-right: 10px;
}
.footer__links a {
  display: block;
  padding: 5px;
}
@media (min-width: 768px) {
  .footer__links {
    justify-content: start;
  }
}
.footer__info {
  font-size: 0.75rem;
  line-height: 2;
}
@media (min-width: 992px) {
  .footer__min-height {
    min-height: 13.125rem;
  }
}

a.footer__contact {
  color: var(--color-light);
}

/* HELPERS */
.bordered {
  border-radius: 0 0 0 20px;
}
.bordered-sm {
  border-radius: 0 0 0 10px;
}

.pos-relative {
  position: relative;
}

.ov-hidden {
  overflow: hidden;
}

.color-brand {
  color: var(--color-brand);
}

.color-txt {
  color: var(--color-txt);
}

.color-light {
  color: var(--color-light);
}

.color-inherit {
  color: inherit;
}

.bg-brand {
  color: var(--color-light);
  background-color: var(--color-brand);
}

.f-500 {
  font-weight: 500;
}

.f-size-md {
  font-size: 1.125rem;
  line-height: 1.67;
}

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

.img-fluid {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pt-100 {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.pb-0 {
  padding-bottom: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 40px;
}
.mb-60:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.mb-80:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .mb-80:not(:last-child) {
    margin-bottom: 80px;
  }
}

.mb-100:not(:last-child) {
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .mb-100:not(:last-child) {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}
/* ODOMETER */
.odometer, .odometer-inside {
  display: flex;
  align-items: center;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.odometer-formatting-mark {
  display: none;
}

.odometer-digit-inner {
  text-align: center !important;
}

.odometer-value {
  width: 100%;
}