@font-face {
  font-family: Michroma;
  font-display: swap;
  src: url("../fonts/Michroma-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, input, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  text-decoration: none;
}

html {
  height: 100%;
}

body {
  font-family: "OpenSans";
  color: #3A3C3F;
  background: #FFFFFE;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 479.98px) {
  .container {
    max-width: 400px;
  }
}
@media screen and (min-width: 575.98px) {
  .container {
    max-width: 480px;
  }
}
@media screen and (min-width: 767.98px) {
  .container {
    max-width: 710px;
  }
}
@media screen and (min-width: 991.98px) {
  .container {
    max-width: 990px;
  }
}
@media screen and (min-width: 1199.98px) {
  .container {
    max-width: 1440px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1639.98px) {
  .container {
    max-width: 1840px;
    padding: 0 80px;
  }
}

html {
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

/*body:has(.header.fixed) {*/
/*  padding-top: calc(var(--hgt-header));*/
/*}*/
body.b--open {
  overflow: hidden;
}

@keyframes showBlockLtoR {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes showBlockRtoL {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeOutNew {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slit-out-vertical {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes growFromTop {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes growFromCenter {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes zooming {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(100px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
@keyframes reasonCardEnter {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95) rotateZ(-5deg);
    box-shadow: none;
  }
  60% {
    transform: translateY(-5px) scale(1.01) rotateZ(0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateZ(0deg);
  }
}
@keyframes actionItemEnter {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.95) rotateZ(-2deg);
    box-shadow: none;
  }
  50% {
    transform: translateX(10px) scale(1.02) rotateZ(1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateZ(0deg);
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

strong,
b {
  font-weight: 700;
}

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

h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  text-transform: uppercase;
}
@media screen and (min-width: 991.98px) {
  h2 {
    font-size: 40px;
  }
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (min-width: 1639.98px) {
   p {
    font-size: 18px;
  }
}

a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (min-width: 1639.98px) {
  a {
    font-size: 20px;
  }
}

ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (min-width: 1639.98px) {
  ul li {
    font-size: 20px;
  }
}

ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (min-width: 1639.98px) {
  ol li {
    font-size: 20px;
  }
}

.form input, .form textarea {
  width: 100%;
  padding: 12px 24px;
  outline: none;
  border-radius: 5px;
  background: #FFF;
  border: 1px solid rgba(141, 143, 146, 0.5);
  transition: 0.1s ease;
  resize: none;
  font-family: "OpenSans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #3A3C3F;
  scrollbar-width: none;
}
@media screen and (min-width: 1639.98px) {
  .form input, .form textarea {
    font-size: 20px;
  }
}
.form input:hover, .form textarea:hover {
  border-color: #41454A;
}
.form input::placeholder, .form textarea::placeholder {
  font-family: "OpenSans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #3A3C3F;
}
@media screen and (min-width: 1639.98px) {
  .form input::placeholder, .form textarea::placeholder {
    font-size: 20px;
  }
}
.form textarea {
  height: 180px;
}
.form .button--primary {
  color: #FFF;
  background: #41454A;
  border-radius: 0;
}
.form .form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 991.98px) {
  .form .form-fields {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.form .form-fields > * {
  flex: 1 1 calc((100% - 20px) / 3);
  min-width: 220px;
}
@media screen and (min-width: 991.98px) {
  .form .form-fields > * {
    flex: 1 1 calc((100% - 40px) / 3);
  }
}
.form .form-field--action .button--primary {
  margin: 20px auto 0;
}
.wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: none !important;
}
.wpcf7-spinner {
  display: none !important;
}
header {
  z-index: 9;
  flex: 0 0 auto;
}
/*header.fixed .main-header {*/
/*  position: fixed;*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  background: #FFF;*/
/*  box-shadow: rgba(0, 0, 0, 0.2) 0 4px 8px;*/
/*  animation: slit-out-vertical 0.5s ease-out forwards;*/
/*}*/

.header--pages {
  border-bottom: 1px solid rgba(141, 143, 146, 0.5);
}

.main-header {
  padding: 10px 0;
}
@media screen and (min-width: 991.98px) {
  .main-header {
    padding: 20px 0;
  }
}
.main-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .main-header__wrapper {
    gap: 40px;
  }
}
.main-header__logo {
  display: inline-flex;
}
.main-header__logo a {
  font-family: "Michroma";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: #3A3C3F;
  text-shadow: 2px 2px 0 rgba(58, 60, 63, 0.3019607843);
}

.main-header .menu-btn {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 991.98px) {
  .main-header .menu-btn {
    display: none;
  }
}
.main-header .menu-btn__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.main-header .menu-btn__btn .icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.1s ease;
  cursor: pointer;
  min-width: 40px;
  width: 40px;
  height: 40px;
}
.main-header .menu-btn__btn .icon i {
  width: 40px;
  height: 4px;
  background: #D9D9D9;
  transition-property: margin, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0s;
  transform: rotate(0);
}
.main-header .menu-btn__btn.is--active .icon i {
  margin: -8px -2px -4px -2px;
}
.main-header .menu-btn__btn.is--active .icon i:nth-of-type(1) {
  transform: rotate(45deg);
}
.main-header .menu-btn__btn.is--active .icon i:nth-of-type(2) {
  transform: rotate(-45deg);
}
.main-header .menu-btn__btn.is--active .icon i:nth-of-type(3) {
  display: none;
}
.main-header__menu {
  display: none;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu {
    display: block;
    flex: 1;
  }
}
.main-header__menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.main-header__menu-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 60px;
  }
}
@media screen and (min-width: 1639.98px) {
  .main-header__menu-nav ul {
    gap: 10px 80px;
  }
}
.main-header__menu-nav ul li a {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #41454A;
  transition: 0.2s ease;
}
.main-header__menu-nav ul li.is-active a {
  color: #CCB98F;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li a {
    font-size: 18px;
  }
}
.main-header__menu-nav ul li a:hover {
  color: #CCB98F;
}
.main-header__menu-nav ul li.--has-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child {
    position: relative;
  }
}
.main-header__menu-nav ul li.--has-child:hover .nav-secondary, .main-header__menu-nav ul li.--has-child:focus .nav-secondary {
  display: block;
  animation: slit-in-vertical 0.5s ease;
}
.main-header__menu-nav ul li.--has-child .nav-primary {
  position: relative;
  max-width: fit-content;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-primary {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.main-header__menu-nav ul li.--has-child .nav-primary a {
  pointer-events: none;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-primary a {
    pointer-events: initial;
  }
}
.main-header__menu-nav ul li.--has-child .nav-primary .icon {
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: absolute;
  right: -30px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  transition: 0.1s ease;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-primary .icon {
    position: static;
    transform: initial;
  }
}
.main-header__menu-nav ul li.--has-child .nav-secondary {
  display: none;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-secondary {
    position: absolute;
    top: 20px;
    left: 0;
    padding-top: 20px;
    min-width: 300px;
  }
}
.main-header__menu-nav ul li.--has-child .nav-secondary ul {
  gap: 10px;
  padding-top: 20px;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-secondary ul {
    flex-direction: column;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    border: 1px solid #41454A;
  }
}
.main-header__menu-nav ul li.--has-child .nav-secondary ul li {
  text-align: center;
}
.main-header__menu-nav ul li.--has-child .nav-secondary ul li a {
  font-size: 20px;
  font-weight: 400;
  text-transform: initial;
}
.main-header__menu-nav ul li.--has-child .nav-secondary ul li.is-active a {
  color: #CCB98F;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu-nav ul li.--has-child .nav-secondary ul li a {
    font-size: 18px;
    color: #FFF;
  }
  .main-header__menu-nav ul li.--has-child .nav-secondary ul li a:hover {
    color: #CCB98F;
  }
}
.main-header__menu .lang {
  padding-top: 40px;
  border-top: 1px solid #000;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu .lang {
    padding: 0;
    border: none;
  }
}
.main-header__menu .lang__options {
  display: flex;
  align-items: center;
}
.main-header__menu .lang__option {
  display: inline-flex;
  align-items: center;
}
.main-header__menu .lang__option:not(:last-child):after {
  content: "|";
  color: #41454A;
  padding: 0 10px;
}
.main-header__menu .lang__option a {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #41454A;
  transition: 0.2s ease;
}
.main-header__menu .lang__option.is-active a {
  color: #CCB98F;
}
.main-header__menu .lang__option a:hover {
  color: #CCB98F;
}
@media screen and (min-width: 991.98px) {
  .main-header__menu .container {
    display: contents;
  }
}
@media screen and (max-width: 991.98px) {
  .main-header__menu.is--active {
    display: block;
    animation: slit-in-vertical 0.5s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    height: calc(100vh - 68px);
    z-index: 1;
    overflow-y: auto;
    background: #FFF;
    padding: 40px 0;
  }
}

main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
  padding: 40px 0;
  background: #3A3C3F;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-footer {
  display: none;
}
@media screen and (min-width: 991.98px) {
  .top-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 1199.98px) {
  .top-footer {
    gap: 60px;
  }
}
.top-footer__logo a {
  white-space: nowrap;
  font-family: "Michroma";
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  text-transform: uppercase;
  color: #CCB98F;
}
@media screen and (min-width: 1639.98px) {
  .top-footer__logo a {
    font-size: 40px;
  }
}
.top-footer__navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (min-width: 991.98px) {
  .top-footer__navigation ul {
    gap: 10px 40px;
  }
}
@media screen and (min-width: 1199.98px) {
  .top-footer__navigation ul {
    gap: 10px 60px;
  }
}
.top-footer__navigation ul li a {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #F5F5F5;
  display: inline-block;
  transition: 0.2s ease;
}
.top-footer__navigation ul li a:hover {
  transform: translateX(5px);
  color: #CCB98F;
}
@media screen and (min-width: 1639.98px) {
  .top-footer__navigation ul li a {
    font-size: 24px;
  }
}

.bottom-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .bottom-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1199.98px) {
  .bottom-footer {
    gap: 60px;
  }
}
.bottom-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.bottom-footer__socials a {
  color: #F5F5F5;
  position: relative;
  transition: 0.2s ease;
}
.bottom-footer__socials a:hover {
  color: #CCB98F;
}
.bottom-footer__socials a:hover:after {
  color: #F5F5F5;
}
@media screen and (min-width: 575.98px) {
  .bottom-footer__socials a {
    font-size: 20px;
  }
}
@media screen and (min-width: 991.98px) {
  .bottom-footer__socials a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1639.98px) {
  .bottom-footer__socials a {
    font-size: 20px;
  }
}
.bottom-footer__socials a:first-child:after {
  content: "|";
  padding: 0 5px;
}
.bottom-footer__logo {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 991.98px) {
  .bottom-footer__logo {
    display: none;
  }
}
.bottom-footer__logo a {
  font-family: "Michroma";
  font-weight: 400;
  font-size: 30px;
  line-height: 140%;
  text-transform: uppercase;
  color: #CCB98F;
}
@media screen and (min-width: 575.98px) {
  .bottom-footer__logo a {
    font-size: 32px;
  }
}
.bottom-footer__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 991.98px) {
  .bottom-footer__action {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1199.98px) {
  .bottom-footer__action {
    flex: 1;
    max-width: 820px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1639.98px) {
  .bottom-footer__action {
    max-width: 1020px;
  }
}
.bottom-footer__action-copyright, .bottom-footer__action-develop {
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #F5F5F5;
}
.bottom-footer__action-copyright a, .bottom-footer__action-develop a {
  font-size: 16px;
  color: #F5F5F5;
  display: inline-block;
  transition: 0.2s ease;
}
.bottom-footer__action-copyright a:hover, .bottom-footer__action-develop a:hover {
  transform: translateX(5px);
  color: #CCB98F;
}

.button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 12px 24px;
  width: 100%;
  max-width: fit-content;
  border: none;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}
@media screen and (min-width: 991.98px) {
  .button {
    font-size: 20px;
    padding: 16px 32px;
    min-width: 180px;
  }
}

.button--primary {
  color: #FFF;
  background: #41454A;
}
.button--primary::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 55%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}
.button--primary:hover::before {
  animation: shineEffect 1s ease forwards;
}
.button--primary:hover {
  box-shadow: 0 0 10px rgba(65, 69, 74, 0.2), 0 0 20px rgba(65, 69, 74, 0.4);
  transform: translateY(-5px);
}

.banner {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  max-height: 540px;
}
.banner__slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: none;
}
@media screen and (min-width: 767.98px) {
  .banner__slider-controls {
    display: block;
    margin-top: -24px;
  }
}
.banner__slider-arrow {
  background: rgba(255, 255, 254, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  min-width: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
}
.banner__slider-arrow:hover {
  background: rgba(255, 255, 254, 0.4);
}
.banner__slider-arrow--prev {
  left: 0;
}
.banner__slider-arrow--prev:hover .icon {
  transform: translateX(-5px);
}
.banner__slider-arrow--next {
  right: 0;
}
.banner__slider-arrow--next:hover .icon {
  transform: translateX(5px);
}
.banner__slider-arrow .icon {
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.banner-slide__img picture img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  max-height: 540px;
  filter: brightness(0.6);
  transition: transform 5s ease;
}
.splide__slide.is-active .banner-slide__img picture img {
  transform: scale(1.1);
}
.banner-slide__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid #8D8F92;
  border-bottom: 1px solid #8D8F92;
  box-shadow: 1px 1px 30px 20px rgba(0, 0, 0, 0.5019607843);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 767.98px) {
  .banner-slide__content {
    left: 50%;
    right: initial;
    transform: translate(-50%, -50%);
    padding: 40px;
    border: 1px solid #8D8F92;
  }
}
@media screen and (min-width: 767.98px) {
  .banner-slide__content {
    min-width: 680px;
    min-height: 220px;
  }
}
@media screen and (min-width: 991.98px) {
  .banner-slide__content {
    min-width: 980px;
    min-height: 220px;
  }
}
@media screen and (min-width: 1639.98px) {
  .banner-slide__content {
    min-width: 1200px;
    min-height: 220px;
  }
}
@media screen and (min-width: 767.98px) {
  .banner-slide__content .container {
    display: contents;
  }
}
.banner-slide__content-title {
  text-align: center;
  line-height: 140%;
  color: #CCB98F;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.banner-slide__content-title span {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width: 767.98px) {
  .banner-slide__content-title span {
    font-size: 32px;
  }
}
@media screen and (min-width: 1639.98px) {
  .banner-slide__content-title span {
    font-size: 40px;
  }
}
.banner-slide__content-title h2 {
  /*font-family: "Michroma";*/
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}
@media screen and (min-width: 439.98px) {
  .banner-slide__content-title h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 767.98px) {
  .banner-slide__content-title h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 991.98px) {
  .banner-slide__content-title h2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1639.98px) {
  .banner-slide__content-title h2 {
    font-size: 64px;
  }
}

.banner--pages .banner-slide__img picture img {
  filter: initial;
}
@media screen and (min-width: 1639.98px) {
  .banner--pages .banner-slide__content-title h2 {
    font-size: 60px;
  }
}

.about {
  padding: 40px 0;
}
@media screen and (min-width: 991.98px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1199.98px) {
  .about__wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
.about__content-info .js-collapse-content {
  display: none;
}
@media screen and (min-width: 1199.98px) {
  .about__content-info .js-collapse-content {
    display: block;
  }
}
.about__content-info .js-collapse-content.is--open {
  display: block;
  animation: slit-in-vertical 0.5s ease-out forwards;
}
.about__content-info h2 {
  margin-bottom: 40px;
}
.about__content-info p {
  text-align: justify;
}
.about__content-info p:not(:last-child) {
  margin-bottom: 20px;
}
/*@media screen and (min-width: 1199.98px) {*/
/*  .about__content-info p:not(:last-child) {*/
/*    margin-bottom: 40px;*/
/*  }*/
/*}*/
.about__content-info ul li {
  text-align: justify;
  list-style-type: disc;
  margin-left: 20px;
}
.about__content-info ul li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 1199.98px) {
  .about__content-action {
    display: none;
  }
}
.about__content-action .button--primary {
  margin-top: 20px;
}
.about__cards {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 399.98px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 767.98px) {
  .about__cards {
    gap: 40px;
  }
}

.about-card {
  background: rgba(209, 216, 217, 0.5882352941);
  border: 1px solid #C5C5C5;
  box-shadow: 2px 2px 12px 6px rgba(0, 0, 0, 0.1019607843);
  transition: 0.2s ease;
  min-height: 120px;
  padding: 20px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about-card:hover {
  background: #CCB98F;
}
.about-card:hover .about-card__title {
  color: #FFF;
  transform: translateY(-5px);
}
.about-card:hover .icon {
  transform: translateX(5px);
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 767.98px) {
  .about-card {
    padding: 20px;
  }
}
@media screen and (min-width: 1199.98px) {
  .about-card {
    box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.1019607843);
    min-width: 240px;
  }
}
.about-card__title {
  text-transform: uppercase;
  line-height: 140%;
  color: #3A3C3F;
  transition: 0.2s ease;
}
.about-card .icon {
  display: block;
  min-width: 16px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s ease;
  margin-bottom: 4px;
}
@media screen and (min-width: 1199.98px) {
  .about-card .icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 991.98px) {
  .about__content p {
    font-size: 16px;
  }
  .about__content ul li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1639.98px) {
  .about__content p {
    font-size: 18px;
  }
  .about__content ul li {
    font-size: 18px;
  }
}

.partners {
  background: #000;
  padding: 40px 0;
}
@media screen and (min-width: 991.98px) {
  .partners {
    padding: 80px 0;
  }
}
.partners h2 {
  text-align: center;
  color: #CCB98F;
  margin-bottom: 40px;
}
.partners__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .partners__cards {
    gap: 40px;
  }
}
@media screen and (min-width: 1199.98px) {
  .partners__cards {
    gap: 60px;
  }
}

.partners-card picture img {
  max-width: 100px;
}
@media screen and (min-width: 479.98px) {
  .partners-card picture img {
    max-width: 120px;
  }
}
@media screen and (min-width: 991.98px) {
  .partners-card picture img {
    max-width: 220px;
  }
}

.contacts {
  padding: 40px 0;
  background: #F5F5F5;
}
@media screen and (min-width: 991.98px) {
  .contacts {
    padding: 100px 0;
  }
}
.contacts h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1199.98px) {
  .contacts form {
    max-width: 1240px;
    margin: auto;
  }
}

.services {
  padding: 0 0 40px 0;
}
@media screen and (min-width: 991.98px) {
  .services {
    padding: 0 0 80px 0;
  }
}
.services h2 {
  font-weight: 600;
  margin-bottom: 40px;
}
.services__cards {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 767.98px) {
  .services__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 991.98px) {
  .services__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1639.98px) {
  .services__cards {
    gap: 80px;
  }
}
@media screen and (min-width: 991.98px) {
  .services__cards .about-card {
    min-height: 220px;
  }
}
@media screen and (min-width: 1199.98px) {
  .services__cards .about-card {
    padding: 40px;
    min-height: 280px;
  }
}
@media screen and (min-width: 1639.98px) {
  .services__cards .about-card {
    min-height: 320px;
  }
}
@media screen and (min-width: 1199.98px) {
  .services__cards .about-card .about-card__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1639.98px) {
  .services__cards .about-card .about-card__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1199.98px) {
  .services__cards .about-card .icon {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1639.98px) {
  .services__cards .about-card .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}

.product {
  padding: 0 0 40px 0;
}
@media screen and (min-width: 991.98px) {
  .product {
    padding: 0 0 80px 0;
  }
}
.product h2 {
  margin-bottom: 40px;
}
.product__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__items:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 991.98px) {
  .product__items {
    flex-direction: row;
    gap: 40px;
  }
  .product__items:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 991.98px) {
  .product__item {
    flex: 1;
  }
}
.product__item h3, .product__item h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #3A3C3F;
  margin-bottom: 10px;
}
@media screen and (min-width: 991.98px) {
  .product__item h3, .product__item h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .product__item h3, .product__item h4 {
    font-size: 24px;
  }
}
.product__item h3 {
  margin-bottom: 20px;
}
.product__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #3A3C3F;
}
@media screen and (min-width: 1639.98px) {
  .product__item p {
    font-size: 18px;
  }
}
.product__item ul:not(:last-child) {
  margin-bottom: 20px;
}
.product__item ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 16px;
}
.product__item ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (min-width: 1639.98px) {
  .product__item ul li {
    font-size: 18px;
  }
}
.product__slider {
  margin-top: 40px;
}
@media screen and (min-width: 991.98px) {
  .product__slider {
    margin-top: 80px;
  }
}
.product__slider .partners-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery {
  padding: 0 0 40px 0;
}
@media screen and (min-width: 991.98px) {
  .gallery {
    padding: 0 0 80px 0;
  }
}
.gallery h2 {
  margin-bottom: 40px;
}
.gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery__wrapper:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 991.98px) {
  .gallery__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .gallery__wrapper:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery__wrapper {
    gap: 80px;
  }
  .gallery__wrapper:not(:last-child) {
    margin-bottom: 80px;
  }
}
.gallery__content {
  position: relative;
  padding-top: 20px;
}
.gallery__content:before {
  content: "";
  min-width: 120px;
  width: 120px;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 991.98px) {
  .gallery__content {
    flex: 1;
    max-width: 600px;
  }
}
.gallery__content-name {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (min-width: 991.98px) {
  .gallery__content-name {
    font-size: 24px;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery__content-name {
    font-size: 36px;
  }
}
.gallery__content-info h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (min-width: 991.98px) {
  .gallery__content-info h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery__content-info h3 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery__content-info h3 {
    font-size: 48px;
  }
}
.gallery__content-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
}
@media screen and (min-width: 991.98px) {
  .gallery__content-info p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery__content-info p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery__content-info p {
    font-size: 24px;
  }
}
.gallery__content-info ul:not(:last-child) {
  margin-bottom: 20px;
}
.gallery__content-info ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #000;
}
.gallery__content-info ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (min-width: 991.98px) {
  .gallery__content-info ul li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery__content-info ul li {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery__content-info ul li {
    font-size: 24px;
  }
}
.gallery__slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
@media screen and (min-width: 991.98px) {
  .gallery__slider {
    flex: 1;
    max-width: 520px;
    max-height: 410px;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery__slider {
    max-width: 680px;
    max-height: 490px;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery__slider {
    max-width: 880px;
    max-height: 680px;
  }
}
.gallery__slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.gallery__slider-arrow {
  background: rgba(255, 255, 254, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  min-width: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
}
.gallery__slider-arrow:hover {
  background: rgba(255, 255, 254, 0.4);
}
.gallery__slider-arrow--prev {
  left: 0;
}
.gallery__slider-arrow--prev:hover .icon {
  transform: translateX(-5px);
}
.gallery__slider-arrow--next {
  right: 0;
}
.gallery__slider-arrow--next:hover .icon {
  transform: translateX(5px);
}
.gallery__slider-arrow .icon {
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.gallery__slider .splide__slide img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 991.98px) and (min-width: 991.98px) {
  .gallery [data-slider=gallery-main] .splide__track {
    height: 100% !important;
  }
}
@media screen and (min-width: 991.98px) {
  .gallery [data-slider=gallery-main] img {
    height: 100%;
  }
}
.gallery [data-slider=gallery-thumb] {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 991.98px) {
  .gallery [data-slider=gallery-thumb] .splide__track {
    height: 100% !important;
  }
}
.gallery [data-slider=gallery-thumb] .splide__slide {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery [data-slider=gallery-thumb] .splide__slide:hover {
  opacity: 1;
}
@media screen and (min-width: 991.98px) {
  .gallery [data-slider=gallery-thumb] .splide__slide {
    min-width: 100px !important;
    width: 100px !important;
    height: 100px !important;
  }
}
@media screen and (min-width: 1199.98px) {
  .gallery [data-slider=gallery-thumb] .splide__slide {
    min-width: 140px !important;
    width: 140px !important;
    height: 140px !important;
  }
}
@media screen and (min-width: 1639.98px) {
  .gallery [data-slider=gallery-thumb] .splide__slide {
    min-width: 200px !important;
    width: 200px !important;
    height: 200px !important;
  }
}
.gallery [data-slider=gallery-thumb] .splide__slide.is-active {
  opacity: 1;
  border: none;
}
.contacts-single {
  padding: 0 0 40px 0;
}
@media screen and (min-width: 991.98px) {
  .contacts-single {
    padding: 0 0 80px 0;
  }
}
.contacts-single h2 {
  margin-bottom: 40px;
}
.contacts-single__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__wrapper {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1199.98px) {
  .contacts-single__wrapper {
    gap: 80px;
  }
}
.contacts-single__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__content {
    flex: 1;
  }
}
.contacts-single__content-item h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  margin-bottom: 5px;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__content-item h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1199.98px) {
  .contacts-single__content-item h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .contacts-single__content-item h4 {
    font-size: 24px;
  }
}
.contacts-single__content-item p, .contacts-single__content-item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__content-item p, .contacts-single__content-item a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1199.98px) {
  .contacts-single__content-item p, .contacts-single__content-item a {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .contacts-single__content-item p, .contacts-single__content-item a {
    font-size: 24px;
  }
}
.contacts-single__content-item a {
  transition: 0.2s ease;
}
.contacts-single__content-item a:hover {
  color: #CCB98F;
}
.contacts-single__content-item ul:not(:last-child) {
  margin-bottom: 20px;
}
.contacts-single__content-item ul li {
  font-size: 16px;
  color: #000;
}
.contacts-single__content-item ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__content-item ul li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1199.98px) {
  .contacts-single__content-item ul li {
    font-size: 20px;
  }
}
@media screen and (min-width: 1639.98px) {
  .contacts-single__content-item ul li {
    font-size: 24px;
  }
}
@media screen and (min-width: 991.98px) {
  .contacts-single__form {
    flex: 1;
    max-width: 640px;
  }
}
.contacts-single__form h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #3A3C3F;
  margin-bottom: 20px;
}
@media screen and (min-width: 1199.98px) {
  .contacts-single__form h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1639.98px) {
  .contacts-single__form h3 {
    font-size: 32px;
  }
}
.contacts-single__form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 991.98px) {
  .contacts-single__form form .button--primary {
    margin: 0 !important;
  }
}

.map__body {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
@media screen and (min-width: 767.98px) {
  .map__body {
    padding-bottom: 22.25%;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner .banner-slide__content-title span,
.banner .banner-slide__content-title h2 {
  opacity: 0;
  animation-fill-mode: forwards;
}
.banner.is-animated .banner-slide__content-title span {
  animation: slit-in-vertical 0.4s ease-out 0s forwards;
}
.banner.is-animated .banner-slide__content-title h2 {
  animation: slit-in-vertical 0.4s ease-out 0.4s forwards;
}

/*.about .about__content,*/
/*.about .about-card {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.about.is-animated .about__content {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.about.is-animated .about-card {*/
/*  animation: slit-out-vertical 1s ease-out 1s forwards;*/
/*  animation-delay: calc(var(--animation-order) * 0.2s + 0.5s);*/
/*}*/

/*.partners h2,*/
/*.partners .partners__cards {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.partners.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.partners.is-animated .partners__cards {*/
/*  animation: slit-in-vertical 1s ease-out 1s forwards;*/
/*}*/

/*.contacts h2,*/
/*.contacts form {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.contacts.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.contacts.is-animated form {*/
/*  animation: slit-in-vertical 1s ease-out 1s forwards;*/
/*}*/

/*.services h2,*/
/*.services .about-card {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.services.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.services.is-animated .about-card {*/
/*  animation: slit-out-vertical 1s ease-out 1s forwards;*/
/*  animation-delay: calc(var(--animation-order) * 0.2s + 0.5s);*/
/*}*/

/*.breadcrumbs ul {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.breadcrumbs.is-animated ul {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/

/*.product h2,*/
/*.product .product__items {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.product.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.product.is-animated .product__items {*/
/*  animation: slit-in-vertical 1s ease-out 1s forwards;*/
/*}*/

/*.gallery h2 {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.gallery.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/

/*.gallery__wrapper {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.gallery__wrapper.is-animated {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/

/*.contacts-single h2,*/
/*.contacts-single .contacts-single__wrapper {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.contacts-single.is-animated h2 {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/
/*.contacts-single.is-animated .contacts-single__wrapper {*/
/*  animation: slit-in-vertical 1s ease-out 1s forwards;*/
/*}*/

/*.map .map__body {*/
/*  opacity: 0;*/
/*  animation-fill-mode: forwards;*/
/*}*/
/*.map.is-animated .map__body {*/
/*  animation: slit-in-vertical 1s ease-out 0.5s forwards;*/
/*}*/

.breadcrumbs {
  margin: 40px 0 20px;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.breadcrumbs ul li:not(:last-child):after {
  content: "/";
  display: block;
  color: #3A3C3F;
  transition: 0.1s ease;
  margin: 0 5px;
}
.breadcrumbs ul li:not(:last-child) a {
  color: #3A3C3F;
}
.breadcrumbs ul li:last-child a {
  pointer-events: none;
}
.breadcrumbs ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #3A3C3F;
  position: relative;
}
.breadcrumbs ul li a:hover {
  opacity: 0.7;
}
.breadcrumbs ul li span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #3A3C3F;
}
.not-found {
  padding: 40px 0;
}
.not-found .not-found__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not-found h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  text-align: center;
  color: #3A3C3F;
}
.not-found p {
  text-align: center;
  margin: 20px 0 40px;
}
@media screen and (min-width: 991.98px) {
  .not-found {
    padding: 100px 0;
  }
  .not-found h1 {
    font-size: 64px;
  }
}
.single {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 40px;
}
@media screen and (min-width: 991.98px) {
  .single {
    padding: 0 0 80px;
  }
}
.single__bg {
  position: relative;
  width: 100%;
}
.single__bg picture,
.single__bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(.8);
}
.single__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #FFF;
  pointer-events: none;
  z-index: 2;
}





/*# sourceMappingURL=main.min.css.map */
