@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(0, 0, 0);
  -webkit-text-size-adjust: 100%;
  background: #fff;
  overflow-y: scroll !important;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1238px;
  padding: 0 24px;
  margin: 0 auto;
}
section {
  padding: 50px 0;
}

.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 20px;
  cursor: pointer;
  z-index: 111;
}
.burger.open:before {
  background: var(--c-main);
  transform: rotate(-45deg);
  top: 10px;
  height: 4px;
}
.burger.open:after {
  background: var(--c-main);
  top: 10px;
  transform: rotate(45deg);
  height: 4px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 40px;
  height: 4px;
  background: var(--c-main);
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 9px;
  width: 40px;
  height: 4px;
  background: var(--c-main);
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 9px;
  width: 40px;
  height: 4px;
  background: var(--c-main);
}
@media (max-width: 767px) {
  .burger {
    display: block;
  }
}

.header {
  position: relative;
  background: var(--c-bg-accent);
  z-index: 99;
}
.header__contacts {
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
}
@media (max-width: 992px) {
  .header__contacts {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .header__contacts {
    display: none;
  }
}
@media (max-width: 992px) {
  .header__contacts strong {
    display: block;
  }
}
.header__contacts .icon {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .header__contacts .icon {
    margin-right: 5px;
  }
}
.header__contacts .icon svg {
  display: block;
}
.header__address {
  display: flex;
  align-items: center;
}
.header__phone {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.header__phone .icon {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .header__phone .icon {
    margin-right: 5px;
  }
}
.header__phone .icon svg {
  display: block;
}
.header__phone a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  transition: 0.5s;
}
@media (max-width: 1180px) {
  .header__phone a {
    font-size: 16px;
  }
}
.header__phone a:hover {
  color: var(--c-main);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .header-content {
      padding: 11px 0;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo__brand {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-main);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo__tagline {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  line-height: 14px;
}

.btn {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  height: 60px;
  color: #fff;
  background: var(--c-main);
  padding: 0 30px;
  transition: 0.5s;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  background: #000;
  color: #fff;
}
.btn--sm {
  height: 50px;
}
.btn--border-dark {
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  background: transparent;
}
.btn--border-dark:hover {
  background: #000;
  color: #fff;
}
.btn--border-white {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.btn--border-white:hover {
  background: var(--c-main);
  border-color: var(--c-main);
  color: #fff;
}
.btn--border {
  border: 1px solid var(--c-main);
  color: var(--c-main);
  background: transparent;
}
.btn--border:hover {
  background: var(--c-main);
  color: #fff;
}
.btn--fixed {
  display: flex;
  width: 290px;
}
.btn--fuild {
  display: flex;
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header-nav {
    transition: 0.5s;
    transform: translateX(300px);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 4px 4px 0px rgba(30, 30, 30, 0.05);
    background: var(--c-bg-accent);
    padding: 30px 40px;
    width: 280px;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .header-nav .btn {
    width: 100%;
  }
}
.header-nav.open {
  transform: translateX(0px);
}

.main-menu ul {
  display: flex;
}
@media (max-width: 767px) {
  .main-menu ul {
    flex-direction: column;
  }
}
.main-menu ul li {
  margin-right: 50px;
  position: relative;
}
@media (max-width: 992px) {
  .main-menu ul li {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .main-menu ul li {
    margin-right: 0;
    margin-bottom: 17px;
  }
}
.main-menu ul li:hover ul {
  opacity: 1;
  overflow: visible;
  /* max-height: 300px; */
  max-height: fit-content;
  transform: translateY(0);
}
.main-menu ul li ul {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: var(--c-bg-accent);
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px 20px;
}
@media (min-width: 768px) {
  .main-menu ul li ul {
    overflow: hidden;
    opacity: 0;
    max-height: 1px;
    transition: 0.5s;
    box-shadow: 0px 4px 4px 0px rgba(30, 30, 30, 0.05);
    transform: translateY(-10px);
  }
}
@media (max-width: 767px) {
  .main-menu ul li ul {
    position: relative;
    padding: 12px 0 0 20px;
  }
}
.main-menu ul li ul li {
  margin-right: 0;
  margin-bottom: 10px;
}
.main-menu ul li ul li:last-child {
  margin-bottom: 0;
}
.main-menu ul li a {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
  display: inline-flex;
  align-items: center;
}
.main-menu ul li a .icon {
  margin-left: 10px;
}
.main-menu ul li a .icon img {
  display: block;
}
.main-menu ul li a:hover {
  border-color: var(--c-main);
  color: var(--c-main);
}

.mobile-show {
  display: none !important;
}
@media (max-width: 992px) {
  .mobile-show {
    display: inline-flex !important;
  }
}

@media (max-width: 992px) {
  .mobile-hide {
    display: none !important;
  }
}

.main-slider {
  background: linear-gradient(180deg, var(--c-gradient-top), var(--c-gradient-btm) 100%);
}
.main-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px !important;
  background: #fff !important;
  transition: 0.5s;
  border-radius: 50%;
  opacity: 1;
}
.main-slider .swiper-pagination-bullets {
  bottom: 40px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .main-slider .swiper-pagination-bullets {
    bottom: 30px;
  }
}
.main-slider .swiper-pagination-bullet-active {
  background: var(--c-main) !important;
}
.slide-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .slide-content {
    flex-direction: column;
    padding: 80px 0 110px 0;
  }
}
.slide-content__info {
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
  max-width: 520px;
}
@media (max-width: 767px) {
  .slide-content__info {
    height: auto;
    width: 100%;
  }
}
.slide-content__info p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .slide-content__info p {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .slide-content__btn {
    display: none;
  }
}
.slide-content__btn-mobile {
  display: none;
}
@media (max-width: 767px) {
  .slide-content__btn-mobile {
    display: flex;
    justify-content: center;
  }
}
.slide-content__image {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .slide-content__image {
    width: 100%;
    max-height: 500px;
    height: auto;
  }
}
.slide-content__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h1, .h1 {
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  h1, .h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

h2, .h2 {
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  text-align: left;
  margin-bottom: 40px;
}
h2.white, .h2.white {
  color: #fff;
}
@media (max-width: 992px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

h3, .h3 {
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  text-align: left;
  margin-bottom: 40px;
}
h3.white, .h3.white {
  color: #fff;
}
@media (max-width: 992px) {
  h3, .h3 {
    font-size: 24px;
  }
}

.stage-slider {
  position: relative;
}
.stage-slider__content {
  margin-top: -80px;
}
@media (max-width: 9927px) {
  .stage-slider__content {
    margin-top: -70px;
  }
}
.stage-slider .swiper {
  overflow: visible;
  padding-top: 80px;
}
.stage-slider .swiper-wrapper {
  overflow: visible;
}
.stage-slider .swiper-slide {
  width: 290px;
  height: auto;
}

.stage-item {
  border-radius: 2px;
  padding: 20px;
  background: var(--c-bg-accent);
  width: 100%;
  height: 100%;
}
.stage-item__date {
  display: block;
  margin-bottom: 40px;
  color: var(--c-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}
.stage-item__title {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  margin-bottom: 10px;
}
.stage-item p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  max-height: 95px;
  letter-spacing: 0%;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.nav-swiper {
  width: 70px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 15px;
}

.nav-swiper .swiper-button-next,
.nav-swiper .swiper-button-prev {
  position: relative;
  width: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-swiper svg {
  width: 20px;
  height: 40px;
  transition: 0.5s;
}

.nav-swiper .swiper-button-prev svg {
  transform: rotate(180deg);
}

/* отключаем стандартные стрелки Swiper */
.nav-swiper .swiper-button-next:before,
.nav-swiper .swiper-button-next:after,
.nav-swiper .swiper-button-prev:before,
.nav-swiper .swiper-button-prev:after {
  display: none;
}

.modal {
  width: 100%;
  max-width: 420px;
  border-radius: 2px;
  box-shadow: 0px 6px 30px 0px rgba(39, 35, 67, 0.08);
  background: rgb(255, 255, 255);
  padding: 60px 30px;
}
.modal p {
  font-size: 16px;
  color: rgb(30, 30, 30);
  text-align: center;
}
.modal .fancybox-close-small {
  width: 30px;
  height: 30px;
  background: url(../images/modal-close.svg) 50% 50% no-repeat;
  right: 20px;
  top: 20px;
}

.hidden {
  display: none;
}

.modal__title {
  color: rgb(0, 0, 0);
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 30px;
}

.checkbox {
  display: block;
  margin-bottom: 10px;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox input:checked + label:before {
  background: rgb(176, 176, 176);
  border-color: rgb(176, 176, 176);
}
.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 1px;
  width: 14px;
  height: 14px;
  background: url(../images/check.svg) 50% 50% no-repeat;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: rgb(176, 176, 176);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0%;
  text-align: left;
}
.checkbox label a {
  color: rgb(176, 176, 176);
  text-decoration: underline;
}
.checkbox label a:hover {
  text-decoration: none;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 2px solid rgb(225, 227, 229);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -3px;
}

.checkbox {
  margin-bottom: 20px;
}
.checkbox label:before {
  border-radius: 4px;
}

.form-group {
  margin-bottom: 10px;
  width: 100%;
}
.form-group input {
  font-family: "Inter";
  border: 0;
  border-bottom: 1px solid #000;
  color: rgb(30, 30, 30);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  text-align: left;
  padding: 10px 0;
  background: transparent;
  width: 100%;
}
.form-group input::-moz-placeholder {
  color: rgb(176, 176, 176);
}
.form-group input::placeholder {
  color: rgb(176, 176, 176);
}
.form-group textarea {
  height: 100px;
  border: 1px solid var(--c-main);
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  padding: 15px 20px;
  background: transparent;
  width: 100%;
  min-height: 100px;
  resize: vertical;
}
.form-group textarea::-moz-placeholder {
  color: var(--c-main);
}
.form-group textarea::placeholder {
  color: var(--c-main);
}

.footer {
  background: rgb(30, 30, 30);
  padding: 50px 0 20px 0;
}
.footer__phone {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer__phone {
    margin-bottom: 10px;
  }
}
.footer__phone .icon {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .footer__phone .icon {
    margin-right: 5px;
  }
}
.footer__phone .icon svg {
  display: block;
}
.footer__phone a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .footer__phone a {
    font-size: 18px;
  }
}
.footer__phone a:hover {
  color: rgb(0, 113, 227);
}
.footer__address {
  display: flex;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
@media (max-width: 992px) {
  .footer__address {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 414px) {
  .footer__address {
    font-size: 14px;
  }
}
.footer__address a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  border-bottom: 1px solid #fff;
  margin-top: 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer__address a {
    font-size: 16px;
    line-height: 19px;
    margin-top: 0;
  }
}
@media (max-width: 414px) {
  .footer__address a {
    font-size: 14px;
  }
}
.footer__address a:hover {
  border-color: transparent;
}
.footer__address strong {
  display: block;
}
.footer__address .icon {
  margin-right: 15px;
}
@media (max-width: 992px) {
  .footer__address .icon {
    margin-right: 5px;
  }
}
.footer__address .icon svg {
  display: block;
}
@media (max-width: 767px) {
  .footer__address-content {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: space-between;
  }
}
.footer__address-content span {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .footer__address-content span {
    margin-bottom: 0;
  }
}
.footer__info {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .footer__info {
    font-size: 14px;
  }
}
.footer__title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 16px;
    line-height: 19px;
  }
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li:last-child {
  margin-bottom: 0;
}
.footer ul li a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
  .footer ul li a {
    font-size: 14px;
    line-height: 17px;
  }
}
.footer ul li a:hover {
  border-color: rgb(0, 113, 227);
  color: rgb(0, 113, 227);
}
@media (max-width: 767px) {
  .footer__contacts {
    width: 100%;
    padding-top: 20px;
  }
}
@media (max-width: 992px) {
  .footer__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer-content {
    flex-wrap: wrap;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 40px;
}

.footer-logo__brand {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-main);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-logo__tagline {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #606060;
}

/* мобилка */
@media (max-width: 767px) {
  .footer-logo { margin-bottom: 20px; }
  .footer-logo__brand { font-size: 26px; }
  .footer-logo__tagline { font-size: 13px; line-height: 13px; }
}

.copy {
  display: block;
  padding-top: 50px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 767px) {
  .copy {
    font-size: 12px;
    line-height: 15px;
  }
}

.application-section {
  background: linear-gradient(180deg, var(--c-gradient-top), var(--c-gradient-btm) 100%);
}

.application {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .application {
    flex-direction: column;
  }
}
.application__content {
  width: calc(55% - 22px);
}
@media (max-width: 767px) {
  .application__content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.application__content p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.application__form {
  padding: 30px 40px;
  width: calc(45% - 22px);
  background: rgb(255, 255, 255);
}
@media (max-width: 992px) {
  .application__form {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .application__form {
    width: 100%;
  }
}
.application__form-title {
  display: block;
  color: var(--c-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}

.benefits {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1180px) {
  .benefits {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .benefits {
    flex-direction: column;
  }
}

.benefits-item {
  width: 340px;
}
@media (max-width: 1180px) {
  .benefits-item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 767px) {
  .benefits-item {
    width: 100%;
    margin-bottom: 50px;
  }
  .benefits-item:last-child {
    margin-bottom: 0;
  }
}
.benefits-item .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.benefits-item .icon svg {
  display: block;
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefits-item__title {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.benefits-item p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 767px) {
  .benefits-item p {
    max-width: 340px;
    margin: 0 auto;
  }
}

.catalog-section {
  padding-bottom: 40px;
}

.catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.catalog--margin {
  margin-bottom: 50px;
}

.product-item {
  width: calc(25% - 7.5px);
  margin-bottom: 10px;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
  padding: 30px 20px;
  background: var(--c-bg-accent);
  transition: 0.5s;
}
@media (max-width: 992px) {
  .product-item {
    width: calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .product-item {
    padding: 10px 20px;
    height: 185px;
  }
}
.product-item:hover {
  background: var(--c-hover);
}
.product-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  height: 200px;
}
@media (max-width: 767px) {
  .product-item__image {
    max-width: 135px;
    height: 135px;
  }
}
.product-item__image img {
  display: block;
  /* width: 100%; */
  /* height: 100%; */
  width: auto;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item__question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
}
@media (max-width: 767px) {
  .product-item__question {
    height: 135px;
  }
}
.product-item__question svg {
  width:110px;
  height:110px;
  display: block;
}
@media (max-width: 767px) {
  .product-item__question svg {
    width: 90px;
    height: 90px;
  }
}
.product-item__title {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 767px) {
  .product-item__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }
}

.reviews {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-item {
  width: calc(33.3333333333% - 7px);
  padding: 40px 30px;
  border-radius: 2px;
  background: var(--c-bg-accent);
}
@media (max-width: 992px) {
  .review-item {
    padding: 40px 20px;
    width: 100%;
    margin-bottom: 10px;
  }
  .review-item:last-child {
    margin-bottom: 0;
  }
}
.review-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.review-item__name {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0%;
}
.review-item__date {
  color: var(--c-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
}
.review-item p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}

.btn-center {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.why {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.why-item {
  display: flex;
  align-items: center;
  width: calc(50% - 20px);
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .why-item {
    width: 100%;
    align-items: flex-start;
  }
}
.why-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}
.why-item p span {
  color: var(--c-main);
}
.why-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  margin-right: 20px;
  width: 80px;
  height: 80px;
  background: var(--c-bg-accent);
  border-radius: 2px;
}

.professional {
  display: flex;
  background: rgb(30, 30, 30);
}
@media (max-width: 767px) {
  .professional {
    flex-direction: column;
  }
}
.professional__image {
  width: 48%;
}
@media (max-width: 767px) {
  .professional__image {
    width: 100%;
    order: 2;
  }
}
.professional__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.professional__content {
  padding: 50px 50px 50px 110px;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1180px) {
  .professional__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .professional__content {
    width: 100%;
    order: -2;
    padding: 50px 24px;
  }
}
.professional__content h2, .professional__content .h2 {
  max-width: 70%;
}
@media (max-width: 1380px) {
  .professional__content h2, .professional__content .h2 {
    max-width: 100%;
  }
}
.professional__content p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
  max-width: 70%;
}
@media (max-width: 1380px) {
  .professional__content p {
    max-width: 100%;
  }
}
.professional__content p:last-child {
  margin-bottom: 0;
}

.garant {
  display: flex;
  background: rgb(30, 30, 30);
}
@media (max-width: 767px) {
  .garant {
    flex-direction: column;
  }
}
.garant__image {
  position: relative;
  width: 48%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
}
.garant__image:before {
  content: "";
  width: 80%;
  height: 300px;
  background: linear-gradient(180deg, rgba(213, 235, 247, 0.5), rgba(236, 240, 246, 0) 100%); /* опасити 05 */
  position: absolute;
  bottom: 0;
  left: 10%;
}
@media (max-width: 767px) {
  .garant__image:before {
    width: calc(100% - 48px);
    left: 24px;
  }
}
@media (max-width: 767px) {
  .garant__image {
    width: 100%;
    order: 2;
  }
}
.garant__image img {
  z-index: 1;
  display: block;
  max-width: 90%;
}
.garant__content {
  padding: 50px 50px 50px 110px;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1180px) {
  .garant__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .garant__content {
    width: 100%;
    order: -2;
    padding: 50px 24px;
  }
}
.garant__content h2, .garant__content .h2 {
  max-width: 70%;
}
@media (max-width: 1380px) {
  .garant__content h2, .garant__content .h2 {
    max-width: 100%;
  }
}
.garant__content p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
  max-width: 70%;
}
@media (max-width: 1380px) {
  .garant__content p {
    max-width: 100%;
  }
}
.garant__content p:last-child {
  margin-bottom: 0;
}

.frequent-breakdowns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.breakage-item {
  width: calc(25% - 7.5px);
  margin-bottom: 10px;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
  padding: 30px 20px;
  background: var(--c-bg-accent);
  transition: 0.5s;
}
@media (max-width: 992px) {
  .breakage-item {
    width: calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .breakage-item {
    padding: 10px 10px 15px 10px;
    height: 185px;
  }
}
.breakage-item:hover {
  background: var(--c-hover);
}
.breakage-item .icon {
  display: block;
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .breakage-item .icon {
    margin-bottom: 5px;
  }
}
.breakage-item .icon img {
  display: block;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .breakage-item .icon img {
    width: 60px;
    height: 60px;
  }
}
.breakage-item p {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .breakage-item p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.breakage-item__link {
  display: block;
}
.breakage-item__link a {
  color: var(--c-main);
  white-space: nowrap;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration-line: underline;
}
@media (max-width: 767px) {
  .breakage-item__link a {
    font-size: 18px;
  }
}
.breakage-item__link a:hover {
  text-decoration: none;
}

.about-inner-block {
  position: relative;
  background: linear-gradient(180deg, var(--c-gradient-top), var(--c-gradient-btm) 100%);
}

.about-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-inner {
    flex-direction: column;
  }
}
.about-inner__content {
  width: calc(50% - 15px);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-inner__content {
    width: 100%;
    padding: 80px 0 60px 0;
  }
}
.about-inner__content p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .about-inner__content p {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .about-inner__btn {
    display: flex;
    justify-content: center;
  }
}
.about-inner__image {
  width: calc(50% - 15px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .about-inner__image {
    width: calc(100% + 48px);
    position: relative;
    margin: 0 -24px;
  }
}
.about-inner__image:before {
  content: "";
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(180deg, rgba(212, 234, 247, 0.5), rgba(236, 240, 246, 0.5) 100%); /* опасити 05 */
  position: absolute;
  top: 0;
  left: 0;
}
.about-inner__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspects-section {
  background: rgb(30, 30, 30);
}

.aspects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.aspect-item {
  width: calc(50% - 5px);
  margin-bottom: 20px;
  border: 1px solid var(--c-bg-accent);
  border-radius: 2px;
  padding: 20px;
  background: rgb(40, 40, 40);
  display: flex;
}
@media (max-width: 767px) {
  .aspect-item {
    flex-direction: column;
    width: 100%;
  }
}
.aspect-item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .aspect-item:nth-last-child(-n+2) {
    margin-bottom: 20px;
  }
}
.aspect-item .icon {
  display: block;
  width: 40px;
  margin-right: 40px;
  min-width: 40px;
}
@media (max-width: 767px) {
  .aspect-item .icon {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .aspect-item .icon img {
    display: block;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.aspect-item__content {
  width: 100%;
}
.aspect-item__title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.aspect-item p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}

.sales-section {
  background: rgb(30, 30, 30);
}

.sales {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sales {
    flex-direction: column;
  }
}
.sales__left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sales__left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sales__left .btn {
    display: none;
  }
}
.sales__content {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .sales__content {
    width: 100%;
  }
}
.sales .btn-center {
  padding-top: 0;
  display: none;
}
@media (max-width: 767px) {
  .sales .btn-center {
    display: flex;
  }
}

.sale-item {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sale-item {
    margin-bottom: 30px;
  }
}
.sale-item--last {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sale-item--last {
    margin-bottom: 30px;
  }
}
.sale-item__title {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 30px;
}
.sale-item__title:before {
  content: "";
  width: 190px;
  height: 2px;
  background: var(--c-main);
  position: absolute;
  bottom: -10px;
  left: 0;
}
.sale-item p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}

.delivery-section {
  background: rgb(30, 30, 30);
}

.delivery {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .delivery {
    flex-direction: column;
  }
}
.delivery .btn-center {
  padding-top: 0;
  display: none;
}
@media (max-width: 767px) {
  .delivery .btn-center {
    display: flex;
    padding-top: 50px;
  }
}
.delivery__left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .delivery__left {
    margin-bottom: 40px;
  }
}
.delivery__left p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 767px) {
  .delivery__left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .delivery__left .btn {
    display: none;
  }
}
.delivery__content {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .delivery__content {
    width: 100%;
  }
}

.delivery-item {
  margin-bottom: 10px;
  width: calc(50% - 5px);
  box-sizing: border-box;
  border: 1px solid var(--c-bg-accent);
  border-radius: 2px;
  padding: 20px;
  background: rgb(40, 40, 40);
}
.delivery-item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media (max-width: 566px) {
  .delivery-item:nth-last-child(-n+2) {
    margin-bottom: 10px;
  }
}
@media (max-width: 566px) {
  .delivery-item {
    width: 100%;
  }
}
.delivery-item--last {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .delivery-item--last {
    margin-bottom: 30px;
  }
}
.delivery-item__date {
  display: block;
  color: var(--c-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
.delivery-item p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}

.contacts {
  background: linear-gradient(180deg, var(--c-gradient-top), var(--c-gradient-btm) 100%);
  padding: 120px 0 50px 0;
}
@media (max-width: 992px) {
  .contacts {
    padding: 80px 0 60px 0;
  }
}
.contacts__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .contact-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.contact-item__title {
  display: block;
  color: var(--c-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.contact-item__content {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 1180px) {
  .contact-item__content {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .contact-item__content {
    font-size: 18px;
    width: 100%;
    margin-bottom: 30px;
  }
  .contact-item__content:last-child {
    margin-bottom: 0;
  }
}
.contact-item__content a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .contact-item__content a {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .contact-item__content a {
    font-size: 20px;
  }
}

.politics-head {
  background: linear-gradient(180deg, var(--c-gradient-top), var(--c-gradient-btm) 100%);
  padding: 120px 0 60px 0;
}
@media (max-width: 767px) {
  .politics-head {
    padding: 80px 0 50px 0;
  }
}

.politics-content__block {
  margin-bottom: 40px;
}
.politics-content__block:last-child {
  margin-bottom: 0;
}
.politics-content__block p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
input.error { background: rgba(255, 0, 0, 0.2); animation:shake .25s 2; }
@keyframes shake {
    0%,100% { transform:translateX(0) }
    25% { transform:translateX(-6px) }
    75% { transform:translateX(6px) }
}
        
/*# sourceMappingURL=styles.css.map */