@charset "UTF-8";
/*---------------Скидання стилів----------------*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
a,
button {
  /* Відключаємо контур */
  outline: none;
  /* Відключаємо стандартний фоновий колір при активності на мобільних пристроях */
  -webkit-tap-highlight-color: transparent;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input {
  background: transparent;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
.c-green a:hover,
a.c-green:hover {
  color: var(--c-primary);
}
.c-primary a:hover,
a.c-primary:hover {
  color: var(--c-green);
}
input[type='submit'] {
  cursor: pointer;
}
ol li,
ul li {
  list-style: none;
}
img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-contain img {
  object-fit: contain;
}
.img-cover img {
  object-fit: cover;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
::placeholder {
  opacity: 1;
  font-style: normal;
  font-weight: 400;
  color: inherit;
}
/* ------------Скролбар------------ */
::-webkit-scrollbar {
  scrollbar-width: thin;
  width: 0px;
  background-color: transparent;
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--с-green);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--с-green);
}
::-webkit-scrollbar-track {
  background: transparent;
}
*/
/*Стрілки */
::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}
::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}
/* ---------------checkbox----------------- */
[type='checkbox']:checked,
[type='checkbox']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.wpcf7-acceptance label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: flex;
}
[type='checkbox']:checked + .wpcf7-list-item-label:before,
[type='checkbox']:not(:checked) + .wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: transparent;
}

[type='checkbox']:checked + .wpcf7-list-item-label:after,
[type='checkbox']:not(:checked) + .wpcf7-list-item-label:after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--c-green);
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type='checkbox']:not(:checked) + .wpcf7-list-item-label:after {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
}

[type='checkbox']:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}
.wpcf7-list-item {
	display: inline-block;
	margin: 0;
}
.border-red {
  border-color: red !important;
}
.wpcf7 form .wpcf7-response-output {
	display: none !important;
}
/*--------змінні------------*/
* {
  --c-white: #fff;
  --c-black: #000000;
  --c-green: #385542;
  --c-primary: #c6af8e;
  --c-gray: #eaeaea;
  --lineal-gradient: linear-gradient(180deg, #38554200, #385542);
  --container: 1170px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-green) transparent;
}
/*--------кольори та фони------------*/
a.c-white,
.c-white {
  color: var(--c-white);
}
.bg-white {
  background: var(--c-white);
}
a.c-black,
.c-black {
  color: var(--c-black);
}
.bg-black {
  background: var(--c-black);
}
a.c-green,
.c-green {
  color: var(--c-green);
}
.bg-green {
  background: var(--c-green);
}
a.c-primary,
.c-primary {
  color: var(--c-primary);
}
.bg-primary {
  background: var(--c-primary);
}
a.c-gray,
.c-gray {
  color: var(--c-gray);
}
.bg-gray {
  background: var(--c-gray);
}
/*--------текстові------------*/
.text-up {
  text-transform: uppercase;
}
.text-underline {
  text-decoration: underline;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.f-light {
  font-weight: 300;
}
.f-regular {
  font-weight: 400;
}
.f-medium {
  font-weight: 500;
}
.f-semibold {
  font-weight: 600;
}
.f-bold {
  font-weight: 700;
}
.f-extrabold {
  font-weight: 800;
}
/*--------flex------------*/
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.fd-column {
  flex-direction: column;
}
.w-100 {
  width: 100% !important;
}
/*--------основні------------*/
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--c-black);
  background: var(--c-white);
  max-width: 100vw;
  overflow: hidden;
  overflow-y: visible;
}
body.overflow {
  height: 100vh;
  overflow: hidden;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
/* --------------------------------wrapper------------------------------------ */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow: hidden;
}
/* -------------btn-------------- */
.btn {
  width: max-content;
  min-width: 270px;
  height: 65px;
  line-height: 20px;
  border-radius: 50px;
  padding: 0 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.btn.bg-green:hover {
  background: var(--c-primary);
}
.btn.bg-primary:hover {
  background: var(--c-green);
}
.btn.bg-white.c-primary {
  border: 1px solid var(--c-primary);
}
.btn.bg-white:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.two-btns .btn {
  width: calc((100% - 30px) / 2);
  min-width: none;
}
/* ----------play-btn---------- */
.play-btn {
  width: 50px;
  height: 50px;
  background: url(../img/play.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
  border-radius: 50%;
}
/* --------------------scroll-top__btn------------------ */
.scroll-top__btn {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  right: 16px;
  bottom: -100px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px rgba(77, 80, 97, 0.2);
  transform: rotate(-90deg);
}
.scroll-top__btn.up {
  bottom: 16px;
}
/* ---------------title-subtitle-------------- */
.title {
  font-size: 48px;
  line-height: normal;
}
.subtitle {
  margin-top: 18px;
}
/* --------------------------------header---------------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  background: transparent;
  transition: all 0.3s ease-in-out;
  padding: 40px 0;
  z-index: 10;
}
.header.fixed {
  background: var(--c-white);
  padding: 15px 0;
  border-bottom: 1px solid var(--c-gray);
}
.header__logo {
  height: 48px;
  min-width: 170px;
}
.header.fixed .header__logo img {
  display: none;
}
.header.fixed .header__logo {
  background: url(../img/logo_green.svg) no-repeat center;
  background-size: contain;
}
.header__languages a,
.header__languages span {
  margin-left: 21px;
}
.header.fixed .header__languages a {
  color: var(--c-green);
}
.header__menu-box {
  position: fixed;
  left: 0;
  top: -100vh;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  overflow-y: visible;
  z-index: 101;
  padding-left: 227px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.header__menu-box.open {
  top: 0;
  opacity: 1;
}
.header__menu-box:before {
  content: '';
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(56, 85, 66, 0.8) 0%, rgba(56, 85, 66, 0.8) 100%);
  filter: blur(2px);
}
.header-menu__close-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 2;
  left: 98px;
  top: 48px;
}
.header-menu__close-btn span {
  color: var(--c-white);
}
.header-menu__close-btn:hover span {
  color: var(--c-primary);
}
.header__menu {
  position: relative;
  z-index: 2;
}
.header__menu li a {
  display: flex;
  align-items: center;
}
.header__menu-li-number {
  font-size: 16px;
  line-height: 30px;
  margin-right: 46px;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  justify-content: flex-end;
}
.header__menu li:not(:last-child) {
  margin-bottom: 20px;
}
.header__menu li a {
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 72px;
  width: max-content;
  max-width: 100%;
}
.header-menu__close-btn span {
  width: 40px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--c-white);
}
.header-menu__close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-menu__close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-menu__close-btn span:nth-child(1) {
  height: 3px;
}
.header-menu__close-btn:hover span {
  background: var(--c-primary);
}
.header__menu li a:hover {
  color: var(--c-primary);
}
.header__container {
  position: relative;
}
.header__languages {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ------------menu-burger------------- */
.menu-burger {
  width: 45px;
  height: 29px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-burger span {
  transition: all 0.2s ease-in-out;
}
.menu-burger span:nth-child(1) {
  width: calc(100% - 5px);
  height: 3px;
}
.menu-burger span:nth-child(2) {
  width: calc(100% - 5px);
  margin-left: auto;
  height: 2px;
}
.menu-burger span:nth-child(3) {
  width: calc(100% - 5px);
  height: 3px;
}
.menu-burger:hover span {
  width: 100%;
}
.header.fixed .menu-burger span {
  background: var(--c-green);
}
.header__menu-burger:hover span {
  background: var(--c-primary);
}
/* ---------------col------------------ */
.two_col {
  margin: 0 -15px;
}
.three_col {
  margin: 0 -15px;
}
.four_col {
  margin: 0 -15px;
}
.five_col {
  margin: 0 -15px;
}
.two_col .col {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
}
.three_col .col {
  width: calc((100% - 3 * 30px) / 3);
  margin: 0 15px;
}
.four_col .col {
  width: calc((100% - 4 * 30px) / 4);
  margin: 0 15px;
}
.five_col .col {
  width: calc((100% - 5 * 30px) / 5);
  margin: 0 15px;
}
/* -----------socials------------ */
.socials-li {
  margin: 0 8px;
}
.socials-a {
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 36px;
}
.socials-a:hover {
  color: var(--c-green);
}
/* ---------------animation-pulse--------------- */
.oreol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--c-white);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    /* Розмір ореолу при розширенні. Змініть 1.5 на інше значення, щоб збільшити/зменшити ефект */
    opacity: 0;
  }
}
/* ---------------------first-screen---------------------- */
.first-screen {
  /* padding: 270px 0 44px; */
  /* background: url(../img/index/banner.jpg) no-repeat center;
  background-size: cover; */
  background-attachment: fixed !important;
  position: relative;
  min-height: 100vh;
}
.first-screen:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-size: 100% 100%;
  z-index: 0;
}
.first-screen::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/fs-before.webp) no-repeat bottom;
  background-size: 100% 100%;
  z-index: 1;
}
.first-screen__container {
  position: relative;
  z-index: 2;
  padding-top: 15vh;
}
.fs__title {
  font-size: 48px;
  line-height: 58px;
}
.fs__title span {
  font-size: 40px;
}
.fs-btn {
  margin: 15vh 0 30px;
}
.fs__socials {
  position: absolute;
  right: calc((100vw - var(--container)) / 2);
  bottom: 44px;
  z-index: 3;
}
.fs__scroll-btn {
  width: 28px;
  height: 85px;
  background: url(../img/icons/main/scroll.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 3;
}
@keyframes scrollBtnPulse {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 5px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.fs__scroll-btn {
  /* Додайте тут будь-які базові стилі для вашої кнопки, якщо потрібно. */
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: scrollBtnPulse 1.5s infinite;
}
/* ---------------------tabs-------------------- */
.tabs {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin-top: 61px;
}
.tab {
  cursor: pointer;
  padding: 8px 30px;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
  border-radius: 10px;
}
.tab.active {
  background-color: var(--c-primary);
  color: var(--c-white);
}
.tabs-content .tab-content {
  display: none;
}
.tabs-content .tab-content.active {
  display: block;
}
.tab-content__left {
  padding-right: 100px;
}
.tab-content-img {
  border-radius: 20px;
  overflow: hidden;
}
.tab-content-img:nth-child(1) {
  width: 100%;
  height: 270px;
  margin-bottom: 20px;
}
.tab-content-img:nth-child(2) {
  width: calc((100% - 20px) / 2);
  height: 135px;
  margin-right: 20px;
}
.tab-content-img:nth-child(3) {
  width: calc((100% - 20px) / 2);
  height: 135px;
}
.tab-content__text {
  margin-top: 48px;
}
.products {
  padding: 122px 0 16px;
}
.view__service-btn {
  margin-top: 30px;
}
/* ----------------------what-------------------- */
.what {
  padding: 293px 0 186px;
  position: relative;
  background-attachment: fixed !important;
  min-height: 100vh;
}
.what::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 43.44%,
    rgba(0, 0, 0, 0) 87.71%
  );
  backdrop-filter: blur(2px);
  background-size: 100% 100%;
  z-index: 0;
}
.white-top-after:after {
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/white-top-after.webp) no-repeat top;
  background-size: 100% 100%;
  z-index: 1;
}
.what__container {
  position: relative;
  z-index: 2;
}
.what__title {
  margin-bottom: 50px;
}
.what__text {
  max-width: 762px;
  margin-bottom: 30px;
}
.what__text p:not(:last-child) {
  margin-bottom: 10px;
}
.what__more-title {
  font-size: 24px;
  margin-bottom: 45px;
}
/* ------------------sustainability----------------------- */
.sustainability {
  padding: 190px 0;
}
.sustainability__left {
  padding-right: 100px;
}
.sustainability__text {
  margin-top: 38px;
}
.sustainability__text p:not(:last-child) {
  margin-bottom: 20px;
}
.sustainability__right {
  padding-top: 45px;
  position: relative;
  border-radius: 20px;
}
.block-video__img {
  height: 327px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.block-video__img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.sustainability__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video__info-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 20px;
  box-shadow: 0px 40px 30px -30px rgba(77, 80, 97, 0.2);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.video__info-box li {
  padding-top: 6px;
  padding-bottom: 2px;
}
.video__info-box li:nth-child(1) {
  padding-right: 31px;
  border-right: 1px solid var(--c-white);
}
.video__info-box li:nth-child(2) {
  padding-left: 31px;
}
.video__info-box-number {
  font-size: 24px;
  margin-right: 15px;
}
.video__info-box-text {
  font-size: 16px;
  line-height: 162.5%;
}
/* --------------------depend--------------------- */
.depend {
  padding: 234px 0 332px;
  position: relative;
  background-attachment: fixed !important;
  min-height: 100vh;
}
.depend::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background-size: 100% 100%;
  z-index: 0;
}
.white-bottom-after::after {
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/other.webp) no-repeat bottom;
  background-size: 100% 100%;
  z-index: 1;
}
.depend__container {
  position: relative;
  z-index: 2;
}
.depend__title {
  margin-bottom: 30px;
}
.depend__subtitle {
  font-size: 24px;
}
.depend-btn {
  margin-top: 49px;
}
/* ------------------production------------------ */
.production {
  padding: 70px 0 173px;
}
.production__left {
  padding-right: 140px;
}
.production-img {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  position: relative;
}
.production-img img {
  position: absolute;
  width: 533px;
  height: 409px;
  right: -140px;
  bottom: 11px;
}
.production__title {
  margin-bottom: 48px;
}
.production-btn {
  margin-top: 50px;
}
/* --------------------------------------- */
.news {
  padding: 67px 0 94px;
}
.news__subtitle {
  margin-bottom: 30px;
}
.three_col .news__card {
  margin-top: 30px;
  margin-bottom: 30px;
}
.news__card-img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.news__card-title {
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news__card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news__card-more-btn {
  margin-top: 25px;
}
.news__card-more-btn i {
  font-size: 12px;
  margin-left: 10px;
}
.news__card-more-btn {
  width: max-content;
  margin-left: auto;
}
.news__more-btn.btn {
  margin: 30px auto 0;
}
/* ----------------------------------- */
.form {
  padding: 122px 0 126px;
  position: relative;
  background-attachment: fixed !important;
}
.form::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(56, 85, 66, 0) -34.7%, rgba(56, 85, 66, 0.95) 71.66%);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.form__container {
  padding: 0 149px;
  position: relative;
  z-index: 2;
}
.form__subtitle {
  margin-top: 30px;
  margin-bottom: 35px;
  max-width: 847px;
}
.form__box {
  margin: 0 -15px;
}
.form-input {
  width: calc((100% - 3 * 30px) / 3);
  margin: 15px;
  height: 50px;
}
.form-textarea {
  width: 100%;
  height: 120px;
  margin: 15px 15px 20px;
}
.form-input input,
.form-textarea textarea {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 25px;
  font-size: 16px;
}
.form-checkbox {
  width: 100%;
  margin: 0 15px;
}
.form-checkbox label {
  font-size: 14px;
}
.form-button {
  margin: 30px auto 0;
}
.form-button input {
  font-size: 16px;
}
/* -------------form-checkbox---------------- */

.form-checkbox input[type='checkbox'] {
  display: none; /* Приховуємо стандартний чекбокс */
}
.form-checkbox label {
  position: relative;
  padding-left: 34px; /* Даємо додатковий відступ зліва, щоб місце для кастомного чекбокса не залежало від тексту */
  cursor: pointer;
}
.form-checkbox label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Центруємо по вертикалі */
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--c-white);
  margin-right: 15px; /* Не обов'язково, так як в нас absolute positioning */
}
/* Стилізація при виборі чекбокса */
.form-checkbox input[type='checkbox']:checked + label::before {
  background: var(--c-white) url('../img/checkmark.svg') center center no-repeat;
  background-size: contain; /* Розмір іконки - залежно від ваших потреб */
}
/* ------------------contacts------------------- */
.contacts__left {
  width: 500px;
  padding: 212px 130px 179px 0;
}
.contacts__title {
  margin-bottom: 50px;
}
.contacts__box .contacts-list:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--c-primary);
}
.contacts-list {
  width: 100%;
}
.contacts-list__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.contacts-list-li:not(:last-child) {
  margin-bottom: 15px;
}
.contacts-list-a:hover {
  color: var(--c-green);
}
.contacts-list-a i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  margin-right: 13px;
}
.contacts__right {
  width: calc((100% - 500px));
  position: relative;
}
.contacts__map {
  width: calc(100vw - (100vw - var(--container)) / 2 - 500px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
/* ----------------------------------- */
.footer {
  background: #2a352e;
}
.footer__top {
  padding: 50px 0;
}
.footer__logo {
  width: 170px;
  height: 48px;
  margin-right: 130px;
}
.footer__menu {
  margin-right: 80px;
  line-height: 137.5%;
}
.footer__menu li:not(:last-child) {
  margin-bottom: 10px;
}
.footer__menu a:hover {
  color: var(--c-primary);
}
.footer__socials {
  margin-left: auto;
}
.footer__bottom {
  padding: 34px 0;
}
.footer__socials a:hover {
  color: var(--c-white);
}
.design-link:hover {
  color: var(--c-primary);
}
/* --------------------------------- */
.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs li:not(:last-child) {
  margin-right: 5px;
  position: relative;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
}
.breadcrumbs a {
  margin-right: 5px;
}
.pc-none {
  display: none;
}
/* ---------------slick-dots---------------- */
.slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
}
.slick-dots li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  margin: 0 7.5px;
  background: var(--c-primary);
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: var(--c-green);
}
