:root {
  --main-bg:              #FAFAFA;
  --main-color:           #000000;
  --accent-color:         #037322;
  --accent-hover-color:   #01982c;
  --secondary-color:      #878787;
  --line-color:           #bebebe;
  --border-color:         #f2f2f2;
  --error-color:          #ff0000;
  --corner-radius:        15px;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
  url('../fonts/Inter-Regular.woff') format('woff');
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
  url('../fonts/Inter-Medium.woff') format('woff');
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
  url('../fonts/Inter-SemiBold.woff') format('woff');
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
  url('../fonts/Inter-Bold.woff') format('woff');
  font-display: swap;
  font-weight: 700;
}

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

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

html,
body {
  display: flex;
  flex-direction: column;
}

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

html.behavior-auto {
  scroll-behavior: auto;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  background: var(--main-bg);
  color: var(--main-color);
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

html.is-noscroll body {
  position: fixed !important;
  left: 0;
  right: 0;
  margin-right: var(--scrollbarWidth);
}

html.is-loading:before,
html.is-loading:after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
}

html.is-loading:before {
  background: rgba(255, 255, 255, .9);
}

html.is-loading:after {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid #000;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  z-index: 99999999;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:active,
:focus:not(:focus-visible) {
  outline: none;
}

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

b,
strong {
  font-weight: bold;
}

hr {
  height: auto;
  border: 1px solid var(--border-color);
  border-width: 1px 0 0;
  margin: 50px 0;
  clear: both;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
}

th {
  text-align: inherit;
  font-weight: bold;
}

a,
button {
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, opacity, box-shadow;
}

a {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-position: from-font;
}

a:hover {
  color: var(--accent-hover-color);
}

a[href^="tel:"],
a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a {
  color: inherit;
  text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a:hover {
  color: var(--accent-color);
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  color: inherit;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 32px 0;
}

h1,
.h1 {
  font-size: 47px;
  line-height: 1.3;
}

h2,
.h2 {
  font-size: 42px;
  line-height: 1.07;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

h4,
.h4 {
  font-size: 23px;
  margin-bottom: 16px;
}

.clear {
  display: table;
  width: 0;
  clear: both;
}

.text {
  font-size: 18px;
}

.text h1 {
  font-size: 36px;
  line-height: 1.2;
}

.text h2 {
  font-size: 33px;
  line-height: 1.2;
  font-weight: bold;
}

.text h3 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 32px;
}

.text h4 {
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.text :not(:is(h1, h2, h3, h4, h5, h6, .clear, br)) + :is(h1, h2, h3, h4, h5, h6, img, figure, .text-section-1, .text-section-2) {
  margin-top: 50px;
}

.text img,
.text figure,
.text-section-1,
.text-section-2 {
  margin-bottom: 50px;
}

.text-section-1:last-child,
.text-section-2:last-child {
  margin-bottom: 0;
}

.text img {
  vertical-align: top;
  border-radius: 25px;
}

@media (min-width: 768px) {
  .text .left-image {
    float: left;
    max-width: 50%;
    margin-top: 0;
    margin-right: 50px;
  }

  .text figure.left-image {
    width: 50%;
  }

  .text .right-image {
    float: right;
    max-width: 50%;
    margin-top: 0;
    margin-left: 50px;
  }

  .text figure.right-image {
    width: 50%;
    text-align: right;
  }
}

.text figure img {
  margin: 0 !important;
}

.text figure.left-image img,
.text figure.right-image img {
  float: none;
  max-width: 100%;
}

.text-section-1,
.text-section-2 {
  padding: 40px;
  box-shadow: 0 16px 44px -12px rgba(48, 47, 47, 0.1);
  background: #fbfbfb;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-weight: 500;
}

.text-section-2 {
  box-shadow: none;
  background: #f0f2f0;
  border-color: #f0f2f0;
}

.text-section-1 :is(h2, h3, h4),
.text-section-2 :is(h2, h3, h4) {
  margin-bottom: 24px;
}

.text-section-1 > :last-child,
.text-section-2 > :last-child {
  margin-bottom: 0;
}

.text ul,
.text ol {
  font-weight: 500;
  list-style: none;
  padding: 0;
}

.text li {
  overflow: hidden;
  position: relative;
}

.text ul > li {
  padding-left: 20px;
  margin-bottom: 24px;
}

.text li > ul,
.text li > ol {
  margin-top: 24px;
  margin-bottom: 0;
}

.text ul > li:before {
  content: "\2022";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.text ol {
  counter-reset: li;
}

.text ol > li {
  counter-increment: li;
  padding-left: 30px;
  margin-bottom: 32px;
}

.text ol > li:before {
  content: counter(li)'.';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.table,
.text table {
  font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 2px 0 rgba(110, 106, 106, .1);
  border-radius: 8px;
  margin-bottom: 46px;
}

.table th,
.table td,
.text th,
.text td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.table th:first-child,
.table td:first-child,
.text th:first-child,
.text td:first-child {
  padding-left: 16px;
}

.table th:last-child,
.table td:last-child,
.text th:last-child,
.text td:last-child {
  padding-right: 16px;
}

.table th,
.text th {
  background-color: var(--accent-color);
  color: #fff;
}

.table td,
.text td {
  background-color: var(--main-bg);
}

.table tr:nth-child(odd) td,
.text tr:nth-child(odd) td {
  background-color: #EEEEEE;
}

.table tr:first-child th:first-child,
.text tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

.table tr:first-child th:last-child,
.text tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

.table tr:last-child td:first-child,
.text tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.table tr:last-child td:last-child,
.text tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

@media (max-width: 767.98px) {
  .table,
  .text table  {
    display: block;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-check {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 16px;
  user-select: none;
}

.form-check a {
  text-decoration: none;
}

.form-check label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.form-check input {
  opacity: 0;
}

.form-check input ~ span {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
}

.form-check input,
.form-check input ~ span:before,
.form-check input ~ span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  transition: 0.15s ease-in-out;
}

.form-check input,
.form-check input ~ span:before {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
}

.form-check input[type=radio] ~ span:before {
  border-radius: 50%;
}

.form-check input[type=radio] ~ span:after {
  width: 16px;
  height: 16px;
  transform: translate(4px, 4px);
  background: var(--accent-color);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
}

.form-check input[type=checkbox] ~ span:after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7 10.5 4.682 4.5L18.5 7' stroke='%23fff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
}

.form-check input:checked ~ span {
  font-weight: bold;
}

.form-check input:checked ~ span:before {
  background-color: var(--accent-color);
}

.form-check input:checked ~ span:after {
  opacity: 1;
}

.form-check input.error ~ span:before {
  border-color: var(--error-color);
}

.form-check input:disabled ~ span {
  opacity: 0.5;
  cursor: default;
  cursor: not-allowed;
}

.form-check-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 34px;
}

.form-check-list > * {
  margin: 0 0 8px;
}

.aggreement-check {
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 16px;
}

.aggreement-check input,
.aggreement-check input ~ span:before,
.aggreement-check input ~ span:after {
  top: min(50%, 16px);
}

.aggreement-check input:checked ~ span {
  font-weight: unset;
}

.form-group {
  margin-bottom: 16px;
}

.form-btn-group {
  text-align: center;
  margin-top: 30px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
}

.form-control,
.form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  transition: 0.15s ease-in-out;
  width: 100%;
  height: 53px;
  font-size: 18px;
  line-height: 25px;
  padding: 13px 14px;
  border: 1px solid var(--line-color);
  border-radius: 7px;
  background-color: #fff;
  color: var(--main-color);
  box-shadow: 0 0 0 3px #fff, 0 4px 4px 3px rgba(159, 159, 159, .1);
}

.form-control::placeholder {
  color: var(--secondary-color);
  opacity: 1;
}

.form-control:not([readonly]):focus::placeholder {
  color: transparent;
}

.form-select {
  max-width: 100%; 
  margin: 0;
  padding-right: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px 8px;
}

.form-select::-ms-expand {
  display: none;
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: auto;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
}

.form-control.error,
.form-select.error {
  border-color: var(--error-color);
}

.file-control {
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

.file-control label {
  display: block;
  position: relative;
}

.file-control input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-control__field {
  height: 53px;
  font-size: 18px;
  line-height: 25px;
  padding: 13px 14px;
  border: 1px dashed var(--line-color);
  border-radius: 7px;
  background-color: var(--border-color);
  color: var(--main-color);
  box-shadow: 0 0 0 3px #fff, 0 4px 4px 3px rgba(159, 159, 159, .1);
  display: flex;
  position: relative;
  cursor: pointer;
}

.file-control input.error ~ .file-control__field {
  border-color: #ff0000;
}

.file-control__area {
  flex-grow: 1;
  min-width: 1px;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

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

.file-control__text.is-placeholder {
  color: var(--secondary-color);
}

.file-control__remove {
  width: 18px;
  height: 18px;
  border: none;
  padding: 0;
  background-color: transparent;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1.21286L10.7871 0L6 4.78714L1.21286 0L0 1.21286L4.78714 6L0 10.7871L1.21286 12L6 7.21286L10.7871 12L12 10.7871L7.21286 6L12 1.21286Z' fill='black'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
}

.file-control__text.is-placeholder ~ .file-control__remove {
  display: none;
}

.file-control__btn {
  border: none;
  background: none;
  padding: 0;
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='51' height='51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m18.558 27.877 7.243-7.243a2.833 2.833 0 1 1 4.007 4.006L18.712 35.736a4.577 4.577 0 1 1-6.473-6.472l14.794-14.795a6.32 6.32 0 0 1 8.939 8.938L25.03 34.35' stroke='%23037322' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  margin: -13px -14px;
  margin-right: 7px;
}

label.error {
  display: block;
  color: var(--error-color);
  font-size: 12px;
  line-height: 18px;
  margin-bottom: -18px;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .03em;
  font-size: 16px;
  line-height: 17px;
  padding: 16px 56px;
  border-radius: 100px;
  background-color: #068a2e;
  background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
  box-shadow: 0 0 0 3px #fff, 0 4px 4px 3px rgba(159, 159, 159, .1);
}

.btn_sm {
  font-size: 12px;
  line-height: 16px;
  padding: 12px 39px;
}

.btn:hover {
  background-color: #005d16;
  background: linear-gradient(90deg, #005d16 0%, #068a2e 100%);
  color: #fff;
}

.btn_outline {
  font-weight: 600;
  text-transform: none;
  background-color: transparent;
  background: linear-gradient(90deg, transparent 0%, transparent 100%);
  color: var(--accent-color);
}

.btn_outline:not(:hover) {
  box-shadow: 0 0 0 1px inset var(--accent-color);
}

.btn_outline:hover {
  background-color: #068a2e;
  background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
  color: #fff;
}

.btn_block {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.btn[disabled],
.btn.is-disabled {
  opacity: .55;
  cursor: default;
  cursor: not-allowed;
}

.accordion {
  margin-right: 30px;
  margin-bottom: 47px;
}

.accordion__item {
  margin-bottom: 10px;
}

.accordion__item-header {
  position: relative;
  cursor: pointer;
  line-height: 1.2;
  font-weight: bold;
  padding: 15px 26px;
  padding-right: 35px;
  background: #F3F3F3;
  user-select: none;
}

.accordion__item-header:hover {
  background: #EEEEEE;
}

.accordion__item.is-open .accordion__item-header {
  background-color: var(--accent-color);
  color: #fff;
}

.accordion__item-title {

}

.accordion__item-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  right: -25px;
  border-radius: 50%;
  border: 1px solid #CACACA;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  box-shadow: 0 0 0 4px #fff, 0 4px 4px 4px rgba(159, 159, 159, .1);
}

.accordion__item.is-open .accordion__item-arrow {
  background-color: var(--accent-color);
  background: linear-gradient(180deg, #005d16 0%, #068a2e 100%);
  color: #fff;
  border: none;
}

.accordion__item.is-open .accordion__item-arrow .icon {
  transform: rotate(180deg);
}

.accordion__item-content {
  background: #fff;
  border: 1px solid #EEEEEE;
  border-top: none;
  padding: 32px;
}

.accordion__item:not(.is-open) .accordion__item-content {
  display: none;
}

.accordion__item-content > :last-child {
  margin-bottom: 0;
}

.close-btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #BDBDBD;
}

.close-btn:hover {
  color: var(--accent-color);
}

.close-btn:before,
.close-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  border-bottom: 2px solid;
  margin: -1px 0 0 -16px;
  transform: rotate(45deg);
}

.close-btn:after {
  transform: rotate(-45deg);  
}

.fancybox__container {
  --fancybox-bg: rgba(255, 255, 255, 0.9);
}

.fancybox__container .fancybox__content.popup-window>.f-button.is-close-btn {
  --f-button-border-radius: 0;
  --f-button-color: #BDBDBD;
  --f-button-hover-color: var(--accent-color);
  --f-button-bg: #fff;
  --f-button-active-bg: #fff;
  --f-button-hover-bg: #fff;
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  opacity: 1;
  top: 0;
  right: 0;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 4px;
}

.popup-window {
  background: #fff;
  padding: 42px 46px;
  width: 464px;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  box-shadow: 0 4px 41px -10px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.popup-window:not(.fancybox__content) {
  display: none;
}

body:not(.compensate-for-scrollbar) .compensate-for-scrollbar {
  margin-right: 0 !important;
}

.popup-window .close-btn {
  position: absolute;
  right: 17px;
  top: 17px;
}

.popup-window__title {
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}

.popup-window__title > span {
  display: inline-block;
}

.popup-window__title > span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 54px;
  width: 68px;
  border-bottom: 2px solid var(--accent-color);
}

.swiper.row {
  display: block;
  margin: 0 auto;
}

.swiper.row > * {
  padding: 0;
  margin: 0;
}

.swiper.row .swiper-slide {
  height: auto;
}

.swiper-button-prev:not([aria-controls]),
.swiper-button-next:not([aria-controls]) {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #CACACA;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  box-shadow: 0 0 0 4px #fff, 0 4px 4px 4px rgba(159, 159, 159, .1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
  background-color: #068a2e;
  border-color: transparent;
  color: #fff;
}

.swiper-button-prev .icon {
  transform: rotate(90deg);
}

.swiper-button-next .icon {
  transform: rotate(-90deg);
}

.swiper-arrows {
  display: flex;
  column-gap: 12px;
}

.swiper-arrows .swiper-button-prev,
.swiper-arrows .swiper-button-next {
  position: static;
  margin: 0;
}

.swiper-arrows .swiper-button-prev.swiper-button-lock,
.swiper-arrows .swiper-button-next.swiper-button-lock {
  opacity: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1272px;
  }
}

.container {
  --bs-gutter-x: 32px;
}

.row {
  --bs-gutter-x: 32px;
}

@media (min-width: 768px) {
  .container_wide {
    max-width: 1652px;
  }
}

.container_full {
  max-width: none;
}

.target {
  scroll-margin-top: 104px;
}

.header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}

.header__inner {

}

.header__main {
  position: relative;
  background: #fff;
  z-index: 1;
  pointer-events: auto;
}

.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.header__logo {
  min-width: 356px;
}

.logo {
  font-size: 10px;
  display: flex;
  align-items: center;
  column-gap: 2.2em;
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.logo__img {

}

.logo__img img {
  width: 13.5em;
  height: 8.2em;
  max-width: none;
}

.logo__text {
  font-size: 1.1em;
  line-height: 1.18;
  width: min-content;
}

.header__phone {
  display: flex;
  column-gap: 32px;
}

.header__phone-item {

}

.header__phone-number {
  font-weight: 600;
  text-decoration: none;
}

.header__phone-btn {
  font-size: 16px;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px dashed;
  color: var(--accent-color);
}

.header__phone-btn:hover {
  color: var(--accent-hover-color);
}

.header__buttons {
  min-width: 373px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__social {

}

.social-icons {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.social-icons__item {

}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(159, 159, 159, 0.1);
  color: var(--accent-color);
  position: relative;
  transition: none;
}

.social-icon:hover {
  color: #fff;
  background-color: #068a2e;
  background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
  box-shadow: 0 0 0 3px #fff, 0 4px 4px 3px rgba(159, 159, 159, .1);
}

.social-icon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../images/social-circle.svg') center center no-repeat;
  background-size: 100% 100%;
}

.social-icon_phone:before {
  background-image: url('../images/social-circle-arrow.svg');
}

.social-icon .icon {
  width: 17px;
  height: 17px;
}

.header__calculation {

}

.header__calculation .btn {
  padding-left: 24px;
  padding-right: 24px;
}

.header__bottom {
  position: relative;
  background: #fff;
  pointer-events: auto;
  transition: 0.25s ease-in-out;
}

@media (min-width: 1200px) {
  html.scroll-down .header__bottom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
}

.header__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

.header__search {
  order: 1;
  width: 370px;
}

.search {

}

.search__form {
  position: relative;
}

.search__input {
  border-color: var(--accent-color);
  border-radius: 100px;
  height: 48px;
  padding: 10px 27px;
  padding-right: 50px;
  line-height: 26px;
  font-size: 16px;
  box-shadow: none;
}

.search__form:hover .search__input {
  border-color: var(--accent-hover-color);
}

.search__btn {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  padding: 0;
  background: none;
  width: 52px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.search__form:hover .search__btn {
  color: var(--accent-hover-color);
}

.header__nav {
  align-self: flex-end;
  box-shadow: 0 1px 0 var(--border-color);
}

body.home-page .header__nav {
  box-shadow: none;
}

@media (min-width: 1200px) {
  .nav {
    font-weight: 600;
  }

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

  .nav > ul {
    display: flex;
    column-gap: 40px;
  }

  .nav > ul > li {
    position: relative;
  }

  .nav > ul > li > a {
    color: inherit;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 11px 0;
  }

  .nav > ul > li > a.is-active,
  .nav > ul > li:hover > a {
    color: var(--accent-color);
  }

  .nav > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
  }

  .nav > ul > li > a.is-active:after,
  .nav > ul > li:hover > a:after {
    opacity: 1;
    visibility: visible;
  }

  .nav__arrow {
    display: none;
  }

  .nav__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 8px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
  }

  html:not(.scroll-down) .nav > ul > li:hover > .nav__dropdown {
    opacity: 1;
    visibility: visible;
  }

  .nav__dropdown > ul {
    padding: 32px;
    padding-top: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
    box-shadow: 0 4px 13px 0 rgba(154, 154, 154, 0.1);
  }

  .nav__dropdown > ul:before,
  .nav__dropdown > ul:after {
    content: '';
    position: absolute;
    left: 24px;
    top: -8px;
    border-style: solid;
    border-width: 0 8px 8px;
  }

  .nav__dropdown > ul:before {
    border-color: #eaeaea transparent;
  }

  .nav__dropdown > ul:after {
    margin-top: 1px;
    border-color: #ffffff transparent;
  }

  .nav__dropdown > ul > li:not(:last-child) {
    margin-bottom: 11px;
  }

  .nav__dropdown > ul > li > a {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: inherit;
    text-decoration: none;
  }

  .nav__dropdown > ul > li > a:hover,
  .nav__dropdown > ul > li > a.is-active {
    color: var(--accent-color);
  }

  .nav__dropdown > ul > li > a:hover:before,
  .nav__dropdown > ul > li > a.is-active:before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    margin-top: -1px;
    width: 16px;
    height: 3px;
    background-color: var(--accent-color);
  }
}

.mobile-header {
  display: none;
}

.mobile-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header__logo {

}

.mobile-header__burger {

}

.menu-btn {

}

.breadcrumbs {
  background: #fff;
  color: var(--accent-color);
  font-size: 13px;
  z-index: 1;
}

.breadcrumbs ul {
  margin: 0;
  padding: 20px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 1px 0 var(--border-color);
}

.breadcrumbs li:not(:last-child):after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 1px;
  background: #01611D;
  margin: 0 15px;
}

.breadcrumbs a {
  color: var(--main-color);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.footer {
  background: #282B2F;
  color: #fff;
  position: relative;
  padding-top: 19px;
  padding-bottom: 32px;
  margin-top: 100px;
}

.footer__row {
  display: flex;
  align-items: flex-start;
  column-gap: 84px;
}

.footer__aside-col {
  flex: 0 0 auto;
  width: 318px;
  order: -1;
}

.footer__content-col {
  flex-grow: 1;
  min-width: 1px;
}

.footer__main {

}

.footer__aside {
  border: 6px solid #fff;
  border-radius: 27px;
  text-align: center;
  padding: 42px 42px 32px;
}

.footer__logo {
  display: block;
  color: #D1D1D1;
  text-decoration: none;
  font-size: 11px;
  line-height: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 44px;
}

.footer__logo-img {

}

.footer__logo-img img {
  width: 140px;
  height: auto;
  max-width: none;
}

.footer__logo-text {
  margin-top: 16px;
}

.footer__contacts {
  text-align: left;
  margin-bottom: 39px;
}

.footer__contacts-item {
  margin-bottom: 20px;
}

.footer__contacts-item a {
  display: flex;
  align-items: center;
  column-gap: 11px;
}

.footer__contacts-item a._phone {
  font-size: 19px;
  font-weight: 600;
}

.footer__contacts-item a._email {
  font-size: 16px;
  color: #00B437;
}

.footer__contacts-item a .icon {
  color: #00B437;
}

.footer__contacts-item a:hover > span {
  text-decoration: underline;
}

.footer__callback {
  margin-bottom: 50px;
}

.footer__callback .btn {

}

.footer__social {

}

.footer__social .social-icons {
  justify-content: space-between;
}

.footer__social .social-icon:not(:hover) {
  background: none;
  box-shadow: none;
  color: #fff;
}

.footer__nav {
  display: flex;
  margin-top: 72px;
}

.footer__nav-item {
  flex-basis: 0;
  flex-grow: 1;
}

.footer__nav-item-title {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 23px;
  font-size: 16px;
  font-weight: 600;
}

.footer__nav-item-title a {
  color: inherit;
  text-decoration: none;
}

.footer__nav-arrow {
  display: none;
}

.footer__nav-item-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: var(--accent-color);
}

.footer__nav-item-content {

}

.footer__nav-item-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 18px;
}

.footer__nav-item-content li {
  margin-bottom: 7px;
}

.footer__nav-item-content a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
  text-decoration: none;
  padding: 9px 21px;
  margin-left: -21px;
  border-radius: 100px;
}

.footer__nav-item-content a:hover {
  background-color: #005d16;
  background: linear-gradient(90deg, #005d16 0%, #068a2e 100%);
}

.footer__bottom {

}

.footer__bottom-nav,
.footer__copyright {
  color: #A3A3A3;
  font-size: 13px;
  line-height: 15px;
  border-top: 1px solid #5B5B5B;
  padding-top: 33px;
}

.footer__copyright {
  border-top-color: transparent;
  text-align: center;
}

.footer__bottom-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 110px;
}

.footer__bottom-nav li {

}

.footer__bottom-nav a {
  color: inherit;
  text-decoration: none;
}

.footer__bottom-nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.dev {
  --circle: #D9D9D9;
  text-decoration: none !important;
}

.dev:hover {
  --circle: var(--accent-color);
}

.dev__icon {
  display: inline-block;
  position: relative;
}

.dev__icon .icon {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 1px;
}

.dec {
  background: currentColor;
  position: absolute;
  border-radius: var(--corner-radius);
  z-index: 1;
}

.dec_top,
.dec_bottom {
  height: calc(2 * var(--corner-radius));
  width: 276px;
  margin-left: -138px;
  left: 50%;
}

.dec_left,
.dec_right {
  width: calc(2 * var(--corner-radius));
  height: 276px;
  margin-top: -138px;
  top: 50%;
}

.dec_top {
  bottom: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.dec_bottom {
  top: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dec_left {
  right: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dec_right {
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dec > span {
  position: absolute;
  width: var(--corner-radius);
  height: var(--corner-radius);
  overflow: hidden;
}

.dec_top > span:first-child,
.dec_bottom > span:first-child {
  right: 100%;
}

.dec_top > span:last-child,
.dec_bottom > span:last-child {
  left: 100%;
}

.dec_left > span:first-child,
.dec_right > span:first-child {
  bottom: 100%;
}

.dec_left > span:last-child,
.dec_right > span:last-child {
  top: 100%;
}

.dec_top > span {
  bottom: 0;
}

.dec_bottom > span {
  top: 0;
}

.dec_left > span {
  right: 0;
}

.dec_right > span {
  left: 0;
}

.dec > span:before {
  content: '';
  position: absolute;
  box-sizing: content-box;
  width: 200%;
  height: 200%;
  border: var(--corner-radius) solid currentColor;
  border-radius: 50%;
}

.dec_top > span:first-child:before,
.dec_bottom > span:first-child:before {
  left: 0;
}

.dec_top > span:last-child:before,
.dec_bottom > span:last-child:before {
  right: 0;
}

.dec_top > span:before {
  top: 0;
}

.dec_bottom > span:before {
  bottom: 0;
}

.dec_top > span:first-child:before {
  transform: translate(-50%, -50%);
}

.dec_top > span:last-child:before {
  transform: translate(50%, -50%);
}

.dec_bottom > span:first-child:before {
  transform: translate(-50%, 50%);
}

.dec_bottom > span:last-child:before {
  transform: translate(50%, 50%);
}

.dec_left > span:first-child:before,
.dec_right > span:first-child:before {
  top: 0;
}

.dec_left > span:last-child:before,
.dec_right > span:last-child:before {
  bottom: 0;
}

.dec_left > span:before {
  left: 0;
}

.dec_right > span:before {
  right: 0;
}

.dec_left > span:first-child:before {
  transform: translate(-50%, -50%);
}

.dec_left > span:last-child:before {
  transform: translate(-50%, 50%);
}

.dec_right > span:first-child:before {
  transform: translate(50%, -50%);
}

.dec_right > span:last-child:before {
  transform: translate(50%, 50%);
}

.footer .dec {
  color: #282B2F;
}

.footer__dec-1 {
  left: 0;
  width: auto;
  margin-left: 0;
  right: 50%;
  margin-right: 600px;
  border-top-left-radius: 0;
}

.footer__dec-1 > span:first-child {
  display: none;
}

.footer__dec-2 {
  left: 50%;
  width: auto;
  right: 0;
  margin-left: 543px;
  border-top-right-radius: 0;
}

.footer__dec-2 > span:last-child {
  display: none;
}

.footer__dec-3 {
  width: 528px;
  margin-left: -324px;
}

.content {
  flex-grow: 1;
  min-height: 1px;
}

.title {
  font-size: 47px;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 32px;
  position: relative;
  padding-bottom: 27px;
}

.title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 6px;
  background: #01611D;
}

.title small {
  display: block;
  font-size: .64em;
  font-weight: normal;
  margin-top: .43em;
}

.title_inline {
  padding-bottom: 0;
}

.title_inline:after {
  display: none;
}

.title_inline strong {
  display: inline-block;
  vertical-align: top;
  padding-right: 3.9em;
  position: relative;
}

.title_inline strong:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0.4em;
  width: 2.55em;
  margin-bottom: -3px;
  height: 6px;
  background: #01611D;
}

.title-sm {
  position: relative;
  padding-top: 12px;
}

.title-sm:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: 2px;
  background: #01611D;
}

.section {
  --padding: 100px;
  position: relative;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.section_sm-padding {
  --padding: 70px;
}

.section_xs-padding {
  --padding: 50px;
}

.content > .section:last-child {
  padding-bottom: calc(var(--padding) + 2 * var(--corner-radius));
}

.content > .section:first-child {
  padding-top: 0;
}

.breadcrumbs ~ .content > .section:first-child {
  padding-top: 35px;
}

.block {
  margin-bottom: 70px;
}

.section > .block:last-child,
.section > .container > .block:last-child {
  margin-bottom: 0;
}

.bg-white {
  background: #fff;
}

.bg-grey {
  background: #F4F4F4;
}

.consultation-section {

}

.consultation {
  position: relative;
  background: #fff;
  border-radius: 8px;
  border-bottom: 6px solid #8B8B80;
  box-shadow: 0 2px 0 0 rgba(110, 106, 106, .1);
  padding: 54px 80px 29px 55px;
  display: flex;
}

.consultation .dec {
  color: #fff;
  margin: 0;
  left: 42px;
}

.consultation__header {
  margin-top: 14px;
  flex: 0 0 auto;
  width: 35.5%;
  padding-right: 40px;
}

.consultation__title {
  font-size: 37px;
  line-height: .85;
  padding-bottom: 35px;
  margin-bottom: 0;
}

.consultation__image {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.consultation__image img {
  width: 520px;
  height: auto;
  max-width: none;
  display: block;
}

.consultation__content {
  flex-grow: 1;
  min-width: 1px;
  position: relative;
}

.consultation .form-group {
  margin-bottom: 25px;
}

.consultation .file-control {
  margin-top: 43px;
}

.consultation textarea {
  resize: none;
  height: 112px;
}

.consultation .form-check {
  margin-bottom: 22px;
}

.consultation .btn {
  width: 100%;
}

.calculation-section {

}

@media (min-width: 1200px) {
  .calculation-section + .section_sm-padding {
    padding-top: 120px;
  }
}

.calculation-section__dec-1 {
  bottom: auto;
  top: 0;
  color: var(--main-bg);
}

.bg-white + .calculation-section .calculation-section__dec-1 {
  color: #fff;
}

.calculation-section__dec-2 {
  color: #F4F4F4;
  margin-left: -620px;
}

.calculation-section:last-child .calculation-section__dec-2 {
  display: none;
}

.calculation {

}

.calculation-section .calculation {
  margin-bottom: calc(-2* var(--corner-radius));
}

.calculation__header {

}

.calculation__title {

}

.calculation__content {

}

.calculation__row {
  display: flex;
  margin-left: -7px;
  margin-right: -7px;
}

.calculation__col {
  flex: 0 0 auto;
  width: 50%;
  padding-left: 7px;
  padding-right: 7px;
}

.calculation__section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 0 #DBDBDB;
  margin-bottom: 12px;
  padding: 30px 32px;
}

.calculation__section_list {

}

.calculation__section-title {
  color: #004914;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.calculation__section_fuel {

}

.calculation__fuel {
  display: flex;
}

.calculation__fuel-header {
  flex: 0 0 auto;
  padding-right: 27px;
}

.calculation__fuel-content {
  flex-grow: 1;
  min-width: 1px;
}

.calculation__fuel-row {
  display: flex;
  column-gap: 70px;
}

.calculation__fuel-col {

}

.calculation__fuel .form-check {
  margin-bottom: 32px;
}

.calculation__section_sm {
  padding: 10px 32px 10px 20px;
  margin-bottom: 8px;
}

.calculation__switch {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.calculation__switch-title {
  flex-grow: 1;
  min-width: 1px;
  line-height: 1.22;
}

.calculation__switch-content {
  display: flex;
}

.calculation__switch-content > * {
  margin: 0;
}

.calculation__switch .form-check input ~ span {
  border-style: solid;
  border-width: 7px 16px;
  border-radius: 7px;
  border-color: transparent;
}

.calculation__switch .form-check input:checked ~ span {
  background: #F7F7F7;
  border-color: #F7F7F7;
}

.calculation__switch .form-check input:not(:checked),
.calculation__switch .form-check input:not(:checked) ~ span:before {
  border-color: #A0A0A0;
}

.calculation__section_form {

}

.calculation__section_form .col-auto:nth-child(1) {
  width: 30%;
}

.calculation__section_form .col-auto:nth-child(2) {
  width: 43%;
}

.calculation__section_form .col-auto:nth-child(3) {
  width: 27%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 33px;
}

.calculation__section_form  .btn {
  width: 100%;
}

.projects-section {

}

.projects-section__dec-1 {
  bottom: auto;
  top: 0;
  color: var(--main-bg);
  margin-left: -620px;
}

.bg-white + .projects-section .projects-section__dec-1 {
  color: #fff;
}

.projects-section__dec-2 {
  color: #F4F4F4;
  margin-left: 210px;
}

.projects-section:last-child .projects-section__dec-2 {
  display: none;
}

.projects {

}

.projects-section .projects {
  margin-bottom: calc(-2* var(--corner-radius));
}

.projects__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;  
  column-gap: 20px;
}

.projects__title {
  padding-bottom: 27px;
  margin-bottom: 0;  
}

.projects__arrows {
  position: relative;
  top: 3px;
}

.projects__content {
  overflow: hidden;
  padding: 25px 0 60px;
  margin: -25px 0 -120px;
}

.projects__content .swiper {
  overflow: visible;
}

.projects__list {
  margin-left: -16px;
  margin-right: -16px;
}

.projects__list .swiper-pagination {
  display: none;
}

.projects__list-item {

}

.project-item {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 44px 15px 23px;
  position: relative;
  max-width: 424px;
}

.project-item:hover {
  border-color: #fff;
  box-shadow: 0 16px 44px -12px rgba(48, 47, 47, .1);
}

.project-item__caption {
  position: absolute;
  right: 96px;
  top: 24px;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
}

.project-item__caption a {
  color: inherit;
  text-decoration: none;
}

.project-item__caption a:hover {
  color: var(--accent-color);
}

.project-item__image {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  border-radius: 8px;
}

.project-item__image .dec {
  --corner-radius: 7px;
  bottom: auto;
  top: 0;
  left: auto;
  margin: 0;
  right: 43px;
  width: 213px;
  color: var(--main-bg);
}

.bg-grey .project-item__image .dec {
  color: #F4F4F4;
}

.bg-white .project-item__image .dec {
  color: #fff;
}

.project-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  backface-visibility: hidden;
  transform: scale(1.0);
  will-change: transform;
  transition: 0.35s ease-in-out;
}

.project-item__image img:hover {
  transform: scale(1.1);
}

.project-item__title {
  font-size: 19px;
  line-height: 1.27;
  font-weight: 600;
  margin-bottom: 28px;
}

.project-item__title a {
  color: inherit;
  text-decoration: none;
}

.project-item__title a:hover {
  color: var(--accent-color);
}

.project-item__text {
  font-size: 15px;
  margin-bottom: 30px;
}

.project-item__footer {

}

.project-item__btn {
  padding-left: 32px;
  padding-right: 32px;
  letter-spacing: 0;
}

.partners-section {

}

.partners {

}

.partners__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 73px;
}

.partners__title {
  margin: 0;  
}

.partners__title strong {
  padding-right: 3.25em;
}

.partners__arrows {
  position: relative;
  top: 3px;
}

.partners__content {
  overflow: hidden;
}

.partners__content .swiper {
  overflow: visible;
}

.partners__list {

}

.partners__list .swiper-pagination {
  display: none;
}

.partners__list .swiper-wrapper {
  display: flex;
  align-items: center;
}

.partners__list-item {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
}


.partner-logo {
  display: inline-block;
  vertical-align: middle;
}

.partner-logo img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 100px;
}

.gallery-section {

}

.gallery-section__header {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 17px;
}

.gallery-section__title {
  margin: 0;
}

.gallery-section__subtitle {
  font-size: 21px;
  width: 21.8em;
}

.gallery {
  position: relative;
}

.gallery__main {

}

.gallery__main .swiper-slide {
  position: relative;
}

.gallery__main .swiper-slide:before {
  content: '';
  display: block;
  padding-top: calc(697 * 100% / 1240);
}

.gallery__main img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.gallery__thumbs {
  max-width: 1019px;
  padding-bottom: 20px;
  margin: -6% auto -20px;
  text-align: center;
}

.gallery__thumbs .swiper-wrapper {
  display: inline-flex;
  vertical-align: top;
  width: auto;
  max-width: 100%;
}

.gallery__thumbs .swiper-slide {
  padding: 0 9px;
}

.gallery__thumb {
  position: relative;
  border: 3px solid transparent;
  border-radius: 11px;
  cursor: pointer;
}

.gallery__thumb:before {
  content: '';
  display: block;
  padding-top: calc(142 * 100% / 179);
}

.gallery__thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery__thumbs .swiper-slide.swiper-slide-thumb-active .gallery__thumb {
  border-color: var(--accent-color);
  box-shadow: 0 7px 12px rgba(0, 0, 0, .25);
}

.gallery__main .swiper-button-prev,
.gallery__main .swiper-button-next {
  width: 49px;
  height: 140px;
  margin-top: -70px;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--main-color);
  background-position: 0 0;  
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gallery__main .swiper-button-prev:hover,
.gallery__main .swiper-button-next:hover {
  color: #fff;
}

.gallery__main .swiper-button-prev {
  left: 0;
  padding-right: 5px;
  background-image: url('../images/gal-prev.svg');
}

.gallery__main .swiper-button-next {
  right: 0;
  padding-left: 5px;
  background-image: url('../images/gal-next.svg');
}

.gallery__main .swiper-button-prev:before,
.gallery__main .swiper-button-next:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -33px;
  background: #fff;
  z-index: -1;
  width: 44px;
  height: 66px;
  border-radius: 8px;
}

.gallery__main .swiper-button-prev:before {
  left: 0;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.gallery__main .swiper-button-next:before {
  right: 0;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.gallery__main .swiper-button-prev:hover:before,
.gallery__main .swiper-button-next:hover:before {
  background: linear-gradient(90deg, #068a2e 0%, #005d16 100%);
  background-color: #068a2e;
}

.main-slider-section {

}

.main-slider-wrapper {
  position: relative;
  z-index: 1;
}

.main-slider-wrapper .dec {
  color: #fff;
  z-index: 100;
}

.main-slider-dec-1 {
  --corner-radius: 13px;
  bottom: auto;
  top: 0;
  margin-left: 235px;
  width: 410px;
}

.main-slider-dec-2 {
  top: auto;
  bottom: 0;
  margin-left: -620px;
}

.main-slider-dec-3 {
  top: auto;
  bottom: 0;
  margin-left: 344px;
}

.main-slider {

}

.main-slider__item {
  height: 632px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
}

.main-slider__item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-slider__item-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.main-slider__item-bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}


.main-slider__item-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-slider__item-content .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-slider__logo {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  column-gap: .59em;
  margin-bottom: .76em;
  font: inherit;
}

.main-slider__logo > strong {
  font-weight: bold;
  font-size: 4.76em;
  line-height: 1;
}

.main-slider__logo > span {
  width: min-content;
}

.main-slider .swiper-button-prev,
.main-slider .swiper-button-next {
  width: 87px;
  height: 123px;
  border-radius: 17px;
  box-shadow: none;
  border: none;
  background: rgba(217, 217, 217, .14);
  top: auto;
  margin: 0;
  left: auto;
  bottom: 47px;
  right: 20px;
  color: #B4B4B4;
}

.main-slider .swiper-button-prev:hover,
.main-slider .swiper-button-next:hover {
  background: rgba(0, 0, 0, .52);
  color: #fff;
}

.main-slider .swiper-button-prev {
  margin-right: 98px;
}

.main-slider .swiper-button-next {

}

.main-slider .swiper-button-prev .icon,
.main-slider .swiper-button-next .icon {
  transform: none;
}

.swiper-pagination {
  position: static;
  margin-top: 32px;
}

.swiper-pagination-lock {
  display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  transform: none;
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  opacity: 1;
  position: relative;
}

.swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 4px;
  border-radius: 50%;
  background: var(--accent-color);
}

.main-slider .swiper-pagination {
  position: absolute;
  left: auto;
  width: auto;
  bottom: 0;
  top: 0;
  right: 33px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-slider .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  background: none;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
  margin: 7px !important;
  position: relative;
}

.main-slider .swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 6px;
  border-radius: 50%;
  background: #fff;
}

.production-desc {
  margin-bottom: 70px;
}

.production-desc__nav {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #E0E0E0;
  border-width: 1px 0;
  padding: 19px 0;
  margin-bottom: 72px;
}

.production-desc__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.production-desc__nav li {

}

.production-desc__nav a {
  display: block;
  padding: 6px 16px;
  color: inherit;
  text-decoration: none;
}

.production-desc__nav a:hover {
  color: var(--accent-color);
}

.production-desc__content {

}

.production-desc__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -16px;
  margin-bottom: 52px;
}

.production-desc__item:nth-child(odd) {
  flex-direction: row-reverse;
}

.production-desc__item-image-col {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 16px;
  align-self: flex-start;
}

.production-desc__item-content-col {
  flex: 0 0 auto;
  width: 50%;
  max-width: 584px;
  padding: 0 16px;
}

.production-desc__item-image {
  --corner-radius: 12px;
  position: relative;
}

.production-desc__item-image .dec {
  color: var(--main-bg);
}

.production-desc__item-image .dec_top {
  top: auto;
  bottom: 0;
}

.production-desc__item-image .dec_bottom {
  bottom: auto;
  top: 0;
}

.production-desc__item-image .dec_left {
  left: auto;
  right: 0;
}

.production-desc__item-image .dec_right {
  right: auto;
  left: 0;
}

.production-desc__item-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.production-desc__item-title {
  margin-bottom: 38px;
  padding-bottom: 24px;
}

.production-desc__item-title a {
  color: inherit;
  text-decoration: none;
}

.production-desc__item-title a:hover {
  color: var(--accent-color);
}

.production-desc__item-text {
  font-family: 'Open Sans', 'Inter', Arial, sans-serif;
  letter-spacing: .02em;
}

.about-section {

}

.about-main-section {
  position: relative;
}

.about-main-section > .dec {
  color: #fff;
}

.about-main-section > .dec_top {
  top: auto;
  bottom: 0;
  margin-left: -620px;
}

.about-main-section > .dec_bottom {
  bottom: auto;
  top: 0;
  margin-left: 344px;
}

.about {
  display: flex;
  margin: 0 -16px;
  margin-top: 100px;
}

.about__image-col {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 16px;
}

.about__image {
  max-width: 711px;
  position: relative;
}

.about__image-main {
  position: relative;
}

.about__image-main .dec {
  color: var(--main-bg);
}

.bg-white .about__image-main .dec {
  color: #fff;
}

.about__image-main .dec_top {
  top: auto;
  bottom: 0;
}

.about__image-main .dec_bottom {
  bottom: auto;
  top: 0;
}

.about__image-main .dec_left {
  left: auto;
  right: 0;
}

.about__image-main .dec_right {
  right: auto;
  left: 0;
}

.about__image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.about__content-col {
  flex: 0 0 auto;
  width: 50%;
  max-width: 604px;
  padding: 0 16px;
}

.about__title {
  padding-bottom: 37px;
  position: relative;
}

.about__title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 77px;
  height: 6px;
  background: #01611D;
}

.about__footer {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 20px;
  justify-content: space-between;
  margin-top: 31px;
}

.about__footer .btn {
  padding-left: 32px;
  padding-right: 32px;
}

.production-catalog {
  padding-top: 46px;
}

.production-catalog__text {
  max-width: 920px;
  margin-bottom: 70px;
}

.production-catalog__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px 10px;
}

.production-catalog__list-item {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 16px;
  margin-bottom: 32px;
}

.production-item {
  display: block;
  position: relative;
  z-index: 1;
}

.production-item__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(1px 1px 0px #EEEEEE) drop-shadow(-1px -1px 0px #EEEEEE);
}

.production-item:hover .production-item__bg {
  filter: drop-shadow(0 16px 44px rgba(48,47,47,.1)) drop-shadow(1px 1px 0px #EEEEEE) drop-shadow(-1px -1px 0px #EEEEEE);
}

.production-item__bg:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  clip-path: url(#card);
  transform: rotateX(180deg);
  background: #fff;
}

.production-item__image {

}

.production-item__image a {
  display: block;
}

.production-item__image img {
  border-radius: 8px 8px 0 0;
}

.production-item__content {
  display: flex;
  align-items: baseline;
  padding: 17px 25px 18px;
  justify-content: space-between;
}

.production-item__title {
  font-size: 24px;
  font-weight: 500;
}

.production-item__title a {
  color: inherit;
  text-decoration: none;
}

.production-item__title a:hover {
  color: var(--accent-color);
}

.production-item__calc-btn {
  padding: 0;
  background: none;
  border: none;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px dashed;
  color: var(--accent-color);
}

.production-item__calc-btn:hover {
  color: var(--accent-hover-color);
}

.production-item__footer {
  text-align: center;
  padding: 0 0 12px 98px;
}

.production-item__btn {
  padding: 11px 0;
  font-size: 12px;
  text-transform: uppercase;
  width: 129px;
}

.first-section {
  padding-top: 35px;
}

.page-title {
  margin-bottom: 35px;
}

.page-title strong {
  display: inline-block;
  vertical-align: top;
  padding-right: 3.35em;
  position: relative;
}

.page-title strong:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0.55em;
  width: 2.55em;
  margin-bottom: -3px;
  height: 6px;
  background: #01611D;
}

.production-main-section {
  padding-bottom: 0 !important;
}

.production-image {
  max-width: 1816px;
  margin: 0 auto 40px;
}

.production-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.production-main {

}

.production-main__header {
  max-width: 920px;
}

.production-main__header h2 {
  font-weight: normal;
  font-size: 30px;
  line-height: 1.37;
  margin: 0;
}

.production-main__content {
  max-width: 920px;
  margin: 88px 0 43px;
}

.production-main:not(.is-open) .production-main__content {
  display: none;
}

.production-main__footer {
  text-align: right;
  margin-top: 15px;
}

.production-main__btn-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 30px;
}

.production-main__btn-wrapper .dec {
  --corner-radius: 12px;
  color: #fff;
  width: 100%;
  left: 0;
  margin: 0;
}

.production-main__btn {
  border: none;
  padding: 0;
  background: none;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  column-gap: 13px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.production-main.is-open .production-main__btn .icon {
  transform: rotate(180deg);
}

.benefits {
  display: flex;
}

.benefits__header {
  flex: 0 0 auto;
  width: 36.9%;
  padding-right: 32px;
}

.benefits__title {
  padding-bottom: 27px;
  margin: 0;
}

.benefits__content {
  flex-grow: 1;
  min-width: 1px;
  margin-top: -8px;
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -16px;
}

.benefits__list-item {
  flex: 0 0 auto;
  width: 33.33%;
  max-width: 246px;
  padding: 0 16px;
}

.benefit-item {
  font-size: 16px;
}

.benefit-item__icon {
  margin-bottom: 26px;
}

.benefit-item__icon img {
  display: block;
}

.benefit-item__content {
  padding-top: 29px;
  position: relative;
}

.benefit-item__content:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: 2px;
  background: var(--accent-color);
}

.benefit-item__title {

}

.products {

}

.products__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 20px;
}

.products__title {

}

.products__arrows {
  position: relative;
  top: 3px;
}

.products__list {
  padding-bottom: 44px;
  padding-top: 10px;
  margin: -10px -16px -44px;
}

.products__list .swiper-pagination {
  display: none;
}

.products__list-item {
  padding: 0 16px;
  height: auto;
  display: flex;
}

.product-item {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 #dbdbdb;
  width: 100%;
  max-width: 286px;
}

.product-item:hover {
  box-shadow: 0 16px 44px -12px rgba(48, 47, 47, 0.1);
}

.product-item__image {

}

.product-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}

.product-item__content {
  flex-grow: 1;
  min-height: 1px;
  display: flex;
  flex-direction: column;
  padding: 26px 32px 32px;
}

.product-item__title {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 18px;
}

.product-item__title a {
  color: inherit;
  text-decoration: none;
}

.product-item__title a:hover {
  color: var(--accent-color);
}

.product-item__footer {
  text-align: center;
  margin-top: auto;
}

.product-item__btn {
  padding: 11px 25px;
  font-size: 12px;
  text-transform: uppercase;
}

.services {

}

.services__header {

}

.services__title {

}

.services__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  row-gap: 32px;
}

.services__list-item {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 16px;
}

.service-item {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 #dbdbdb;
  color: inherit;
  text-decoration: none;
  position: relative;
  height: 162px;
  display: flex;
  align-items: center;
  padding: 0 30px 0 146px;
  overflow: hidden;
  transition: 0.15s ease-in-out;
}

.service-item:hover {
  color: #fff;
  box-shadow: 0 0 0 4px #fff, 0 4px 4px 4px rgba(159, 159, 159, .1);
}

.service-item__bg {
  position: absolute;
  left: -60px;
  top: -60px;
  width: 173px;
  height: 173px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff, 0 4px 4px 4px rgba(159, 159, 159, .1);
  transition: 0.15s ease-in-out;
}

.service-item:hover .service-item__bg {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.service-item__icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 15px;
}

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

.service-item__title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  width: min-content;
}

.form-block {
  position: relative;
  background: #fff;
  border-radius: 8px;
  border-bottom: 6px solid #8B8B80;
  box-shadow: 0 2px 0 0 rgba(110, 106, 106, .1);
  padding: 44px 76px 64px 76px;
}

.form-block .dec {
  color: #fff;
  margin: 0;
  left: 42px;
}

.form-block__title {
  font-size: 37px;
  margin-bottom: 25px;
}

.form-block .form-group {
  margin-bottom: 24px;
}

.form-block__col-1 {
  width: 44%;
}

.form-block__col-2 {
  width: 56%;
}

.form-block__footer {
  --bs-gutter-x: 8px;
  align-items: center;
}

.form-block__footer .aggreement-check {
  margin: 0;
}

.map {
  height: 566px;
}

ymaps[class$='copyrights-pane'] {
  display: none !important;
}

.map-section {
  padding: 0 !important;
}

.map-section .title {

}

.map-section__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
  margin-bottom: 32px;
}

.map-section__contacts-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 60px;
  row-gap: 16px;
  font-size: 19px;
  font-weight: 500;
}

.map-section__contacts-item {

}

.map-section__contacts-item a {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: inherit;
  text-decoration: none;
  letter-spacing: .02em;
}

.map-section__contacts-item a:hover {
  color: var(--accent-color);
}

.map-section__contacts-item a .icon {
  color: var(--accent-color);
}

.map-section__contacts-social {

}

.map-section .social-icons {
  column-gap: 24px;
}

.map-section .social-icon {
  width: 57px;
  height: 57px;
}

.map-section .social-icon .icon {
  width: 20px;
  height: 20px;
}

.product-main {
  display: flex;
  margin: 0 -16px;
}

.product-main__gallery {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 16px;
}

.product-gallery {

}

.product-gallery__main {
  position: relative;
}

.product-gallery__zoom {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  pointer-events: none;
}

.product-gallery__main-item {
  position: relative;
}

.product-gallery__main-item:before {
  content: '';
  display: block;
  padding-top: calc(692 * 100% / 604);
}

.product-gallery__main-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 25px;
}

.product-gallery__thumbs {
  margin-top: 30px;
  padding: 0 50px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.product-gallery__thumbs .swiper {
  margin-bottom: -20px;
  padding-bottom: 20px;
}

.product-gallery__thumbs-item {
  padding: 0 3px;
}

.product-gallery__thumb {
  position: relative;
  border: 3px solid transparent;
  border-radius: 11px;
  cursor: pointer;
}

.product-gallery__thumb:before {
  content: '';
  display: block;
  padding-top: calc(104 * 100% / 155);
}

.product-gallery__thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-gallery__thumbs .swiper-slide.swiper-slide-thumb-active .product-gallery__thumb {
  border-color: var(--accent-color);
  box-shadow: 0 7px 12px rgba(0, 0, 0, .25);
}

.product-gallery__thumbs .swiper-button-prev,
.product-gallery__thumbs .swiper-button-next {
  width: 36px;
  height: calc(100% - 6px);
  border-radius: 8px;
  box-shadow: none;
  border: none;
  background: rgba(217, 217, 217, .14);
  margin: 0;
  top: 3px;
  color: #828282;
}

.product-gallery__thumbs .swiper-button-prev:hover,
.product-gallery__thumbs .swiper-button-next:hover {
  background: rgba(0, 0, 0, .52);
  color: #fff;
}

.product-gallery__thumbs .swiper-button-prev {
  left: 0;
}

.product-gallery__thumbs .swiper-button-next {
  right: 0;
}

.product-gallery__thumbs .swiper-button-prev .icon,
.product-gallery__thumbs .swiper-button-next .icon {
  transform: none;
  width: 16px;
  height: 28px;
}

.product-main__content {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 16px;
  padding-left: 47px;
}

.product-specifications {
  margin-bottom: 34px;
}

.product-specifications__content {
  background: #fff;
  border-radius: 8px;
  padding-bottom: 24px;
}

.specifications-table {
  font-size: 15px;
  line-height: 1.3;
  border-radius: 8px;
  margin: 0;
}

.specifications-table th,
.specifications-table td {
  padding: 9px 8px;
  text-align: left;
  vertical-align: middle;
}

.specifications-table th:first-child,
.specifications-table td:first-child {
  padding-left: 16px;
}

.specifications-table th:last-child,
.specifications-table td:last-child {
  padding-right: 16px;
}

.specifications-table th {
  font-weight: bold;
  font-size: 17px;
  background-color: #F3F3F3;
}

.specifications-table td {
  background-color: #fff;
}

.specifications-table td:first-child {
  font-weight: 500;
}

.specifications-table tr:nth-child(even) td {
  background-color: #F3F3F3;
}

.specifications-table tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

.specifications-table tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

.product-specifications:not(.is-open) .specifications-table tr._additional {
  display: none;
}

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

.product-specifications__more-btn-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 30px;
}

.product-specifications__more-btn-wrapper .dec {
  --corner-radius: 18px;
  color: #fff;
  width: 100%;
  left: 0;
  margin: 0;
  top: 0;
}

.product-specifications__more-btn {
  border: none;
  padding: 0;
  background: none;
  color: inherit;
  display: flex;
  align-items: center;
  column-gap: 13px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.product-specifications__more-btn:hover {
  color: var(--accent-color);
}

.product-specifications.is-open .product-specifications__more-btn .icon {
  transform: rotate(180deg);
}

.product-btn-row {
  text-align: center;
}

.product-btn {

}

.tabs {

}

.tabs__nav {
  background: var(--main-bg);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.tabs__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.tabs__nav li {

}

.tabs__nav a {
  display: block;
  padding: 14px 38px 0;
  border-radius: 25px 25px 0 0;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.tabs__nav a.is-active {
  background: #fff;
  color: var(--accent-color);
}

.tabs__nav a.is-active:before,
.tabs__nav a.is-active:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 25px;
  height: 25px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.tabs__nav a.is-active:before {
  right: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 25c13.807 0 25-11.193 25-25v25H0Z'/%3E%3C/svg%3E");
}

.tabs__nav a.is-active:after {
  left: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v25h25C11.193 25 0 13.807 0 0Z'/%3E%3C/svg%3E");
}

.tabs__nav a > span {
  display: block;
  border-bottom: 6px solid transparent;
  padding-bottom: 2px;
}

.tabs__nav a.is-active > span {
  border-bottom-color: var(--accent-color);
}

.tabs__content {

}

.tabs__item {
  padding: 40px 0;
}

.tabs__item:not(.is-active) {
  display: none;
}

.product-description {
  margin-bottom: 20px;
}

.files-section {
  margin-bottom: 20px;
}

.files-section h3 {
  font-weight: normal;
  margin-bottom: 20px;
}

.files-list {
  column-count: 2;
  column-gap: 32px;
}

.files-list__item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  padding-bottom: 16px;
}

.file-item {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px 24px;
}

.file-item:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.file-item__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}

.file-item__subtitle {
  text-transform: uppercase;
  color: #828282;
  margin-bottom: 10px;
}

.file-item__title {

}

.file-item__footer {
  display: flex;
  align-items: center;
  column-gap: 18px;
}

.file-item__type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 30px;
  border-radius: 8px;
  background: #333333;
  color: #fff;
}

.file-item:hover .file-item__type {
  background-color: var(--accent-color);
}

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

.file-item__size {
  white-space: nowrap;
}

.production-image video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

