:root {
  --container-width: 1200px;
  --container-gap: 20px;
  --row-cols: 12;
  --row-gap-x: 20px;
  --row-gap-y: 20px;
  --body-ff: "Montserrat", Arial, Helvetica, sans-serif;
  --body-fz: 18px;
  --body-lh: 1.5;
  --body-fc: var(--black);
  --body-bg: var(--white);
  --h-ff: var(--body-ff);
  --h-fw: 700;
  --h-lh: 1.3;
  --h-mb: 0 0 25px 0;
  --h1-fz: 36px;
  --h2-fz: 32px;
  --h3-fz: 28px;
  --h4-fz: 26px;
  --h5-fz: 24px;
  --h6-fz: 22px;
  --p-mb: 0 0 25px 0;
  --sec-p: 140px;
  --sec-h-mb: 70px;
  --sec-h-t-mb: 15px;
  --sec-h-s: 117px;
  --sec-h-s-sub: 43px;
  --sec-d-s: 22px;
  --white: #ffffff;
  --gray: #f5f7fa;
  --gray-black: #636363;
  --black: #333333;
  --orange: #ff6633;
  --orange-light: #fe8b65;
  --orange-black: #e25c2f;
}

@media screen and (max-width: 1200px) {
  :root {
    --container-width: 960px;
    --sec-h-mb: 50px;
    --sec-h-s: 94px;
    --sec-h-s-sub: 32px;
    --sec-d-s: 20px;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --container-width: 720px;
    --sec-p: 100px;
    --sec-h-s: 69px;
    --sec-d-s: 18px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-width: 540px;
    --sec-p: 45px;
    --sec-h-mb: 30px;
    --sec-h-s: 51px;
    --sec-h-s-sub: 22px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --container-width: 100%;
    --sec-d-s: 16px;
  }
}
.container {
  max-width: var(--container-width);
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--row-gap-x) * -0.5);
  margin-left: calc(var(--row-gap-x) * -0.5);
  margin-top: calc(var(--row-gap-y) * -1);
}
.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--row-gap-x) * 0.5);
  padding-left: calc(var(--row-gap-x) * 0.5);
  margin-top: var(--row-gap-y);
  box-sizing: border-box;
  flex-grow: 1;
}
.row.bg-med {
  --row-gap-y: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
.fw-100 {
  font-weight: 100 !important;
}

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

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

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

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

.fw-900 {
  font-weight: 900 !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.color-gray-black {
  color: var(--gray-black) !important;
}

.bg-gray-black {
  background-color: var(--gray-black) !important;
}

.color-orange {
  color: var(--orange) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.color-orange-light {
  color: var(--orange-light) !important;
}

.bg-orange-light {
  background-color: var(--orange-light) !important;
}

.color-orange-black {
  color: var(--orange-black) !important;
}

.bg-orange-black {
  background-color: var(--orange-black) !important;
}

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

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

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

.d-flex {
  display: flex !important;
}
.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 991px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
}
.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-100 {
  height: 100% !important;
}
.h-100-vh {
  height: 100vh !important;
}
.h-100-svh {
  height: 100svh !important;
}
.h-100-lvh {
  height: 100lvh !important;
}
.h-100-dvh {
  height: 100dvh !important;
}

.mh-100 {
  max-height: 100% !important;
}
.mh-100-vh {
  max-height: 100vh !important;
}
.mh-100-svh {
  max-height: 100svh !important;
}
.mh-100-lvh {
  max-height: 100lvh !important;
}
.mh-100-dvh {
  max-height: 100dvh !important;
}

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

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

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

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

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

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

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  font-weight: 300;
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
}

* {
  outline-offset: 3px;
  outline-color: var(--black);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}
p:last-child {
  margin: 0;
}
p a {
  font-weight: 700;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 25px;
  background-color: var(--black);
  color: var(--white);
  transition: opacity ease-in-out 0.2s;
}
.button:hover {
  opacity: 0.8;
}

.input-group {
  margin-bottom: 30px;
}
.input-label {
  display: block;
  margin-bottom: 5px;
}
.input-control {
  max-width: 100%;
  width: 100%;
  min-height: 45px;
  padding: 0 25px;
  box-sizing: border-box;
}
.input-control::-webkit-input-placeholder {
  color: red;
}
.input-control:-moz-placeholder {
  color: red;
}
.input-control::-moz-placeholder {
  color: red;
}
.input-control:-ms-input-placeholder {
  color: red;
}
.input-checkbox, .input-radio {
  display: block;
  margin: 0;
  position: relative;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span {
  display: block;
  position: relative;
  padding-left: 30px;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 1px;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.input-checkbox input[type=checkbox]:checked + span:before {
  background-color: var(--s-black);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:before {
  border: 1px solid var(--s-black);
}
.input-checkbox span:after {
  left: 6px;
  top: 11px;
  background-color: var(--s-white);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  transform: rotate(45deg);
  opacity: 0;
}
.input-radio input[type=radio]:checked + span:before {
  background-color: var(--s-black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}
.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='11'%20viewBox='0%200%2019%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9.5%209.5L18%201'%20stroke='black'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  overflow: hidden;
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
  font-weight: 900;
  line-height: 1;
  font-size: var(--sec-h-s);
}
@media (max-width: 576px) {
  .section-title {
    word-break: break-word;
  }
}
.section-title:last-child {
  margin: 0;
}
.section-title-sub {
  font-size: var(--sec-h-s-sub);
  line-height: 1.1;
}
.section-desc {
  font-size: var(--sec-d-s);
  font-weight: 300;
}
.section-desc a {
  font-weight: bold;
}

.modal {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  padding: var(--container-gap);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-inner {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  margin: 0 auto;
}
.modal-content {
  background-color: var(--white);
  padding: 35px;
  box-sizing: border-box;
  position: relative;
  pointer-events: initial;
}
.modal-close {
  cursor: pointer;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gray);
  z-index: 2;
}
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--black);
  opacity: 0.5 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.swiper-control {
  color: var(--white);
  font-family: inherit;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  background-color: var(--black);
  z-index: 2;
  width: 40px;
  height: 40px;
  transition: opacity ease-in-out 0.2s;
  --control-gap: -65px;
}
.swiper-control:hover {
  opacity: 0.5;
}
.swiper-control.prev {
  left: var(--control-gap);
}
.swiper-control.next {
  right: var(--control-gap);
}
.swiper-control.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 15px 0;
  box-sizing: border-box;
}
.header-logo {
  text-decoration: none;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 900;
}
.header-logo span {
  color: var(--black) !important;
}
@media (max-width: 576px) {
  .header-logo {
    font-size: 25px;
  }
}

.hero {
  min-height: calc(100dvh - 61px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  box-sizing: border-box;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
}
.hero-logo {
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-logo {
    margin-bottom: 20px;
  }
}
.hero-logo-atf {
  font-size: 175px;
  line-height: 1;
  font-weight: 900;
  display: block;
}
@media (max-width: 768px) {
  .hero-logo-atf {
    font-size: 116px;
  }
}
.hero-logo-info {
  font-size: 95px;
  line-height: 0.6;
  position: relative;
  left: -10px;
}
@media (max-width: 768px) {
  .hero-logo-info {
    font-size: 62px;
    line-height: 0.8;
    left: 0;
  }
}
.hero p {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero p {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.hero p:last-child {
  margin-bottom: 0;
}
.hero p b {
  font-size: 35.5px;
}
@media (max-width: 768px) {
  .hero p b {
    font-size: 23px;
  }
}
.hero p b.large {
  font-size: 48px;
}
@media (max-width: 768px) {
  .hero p b.large {
    font-size: 31px;
  }
}

.garant .section-header {
  margin-bottom: calc(var(--sec-h-mb) / 2);
}

.advantages-box-title {
  margin-bottom: 20px;
}
.advantages-box p:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (min-width: 576px) {
  .faq-row {
    --row-gap-x: 40px;
    --row-gap-y: 40px;
  }
}
.faq-item-question {
  margin-bottom: 10px;
  transition: filter ease-in-out 0.2s;
}
.faq-item:hover .faq-item-question {
  filter: brightness(2);
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 45px;
}
@media (max-width: 991px) {
  .partners-container {
    gap: 12px 30px;
  }
}
.partners-inner {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray);
  width: calc((100% - 90px) / 3);
}
@media (max-width: 991px) {
  .partners-inner {
    width: calc((100% - 60px) / 2);
  }
}
@media (max-width: 576px) {
  .partners-inner {
    width: 100%;
  }
}
.partners-inner-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  border: none;
}
.partners-inner-trigger:hover .partners-inner-expand {
  background-color: var(--orange);
}
.partners-inner-trigger.active .partners-inner-expand {
  transform: rotate(45deg);
}
.partners-inner-title {
  flex: 1;
  color: var(--orange);
  margin: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
}
.partners-inner-expand {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.partners-inner-content {
  display: none;
}

.partner-card {
  padding-top: 10px;
}
.partner-card:not(:last-child) {
  margin-bottom: 20px;
}
.partner-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.partner-card-text {
  margin-bottom: 10px;
}
.partner-card a {
  text-decoration: none;
  color: var(--orange);
  font-weight: 400;
}
.partner-card a:hover {
  text-decoration: underline;
}

.map-default {
  min-height: 550px;
}

.single {
  padding: 30px 0;
}
.single-title {
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs li:not(:last-child) {
  margin-right: 15px;
}
.breadcrumbs li:not(:first-child) {
  padding-left: 15px;
}
.breadcrumbs li:not(:first-child):before {
  content: "|";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.breadcrumbs li a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.breadcrumbs li a:hover {
  color: var(--orange);
}

.warranty {
  padding: 50px 0;
}
.warranty h2,
.warranty h3,
.warranty h4,
.warranty h5,
.warranty h6 {
  margin-bottom: 15px;
  line-height: 1.1;
}
@media screen and (min-width: 1200px) {
  .warranty h2 {
    font-size: 48px;
  }
  .warranty h3 {
    font-size: 43px;
  }
  .warranty h4 {
    font-size: 28px;
  }
}

.scroll-top {
  position: fixed;
  box-shadow: 0px 1px 4px rgba(255, 255, 255, 0.95);
  width: 45px;
  height: 45px;
  border: none;
  cursor: pointer;
  right: 30px;
  bottom: 20px;
  z-index: 99;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: bottom ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
.scroll-top.active {
  bottom: 30px;
  opacity: 1;
  pointer-events: all;
}

.footer {
  padding: 20px 0;
  box-sizing: border-box;
}
.footer-inner {
  gap: 5px;
  font-weight: 500;
}
.footer-inner a {
  word-break: break-all;
  color: var(--white);
  text-decoration: none;
}
.footer-inner a:hover {
  text-decoration: underline;
}

.header-phone{
  font-weight: 600;
  text-decoration: none;
}

@media screen and (max-width: 576px) {
  .header-logo{
    font-size: 22px;
  }
  .header-phone{
    font-size: 16px;
  }
  .hero-logo-atf{
    font-size: 92px;
  }
}