/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* -------- END -------- */

/*========== fonts | colors | typography ==========*/

:root {
  --body-font: 'Raleway', sans-serif;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
/* -------- END -------- */

/* BASE */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lock,
body.lock,
.locker {
  overflow: hidden;
}

body {
  color: #000;
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

li {
  list-style: none;
}

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

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

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay.active {
  display: block;
}

.subtitle {
  font-size: 32px;
  font-weight: 600;
}

/* -------- END -------- */

/* WRAPPER */

.container {
  max-width: 940px;
  margin: 0 auto;
}

.container-xl {
  max-width: 1920px;
  margin: 0 auto;
}

@media (max-width: 998px) {
  .container {
    max-width: 100%;
  }
}

/* -------- END -------- */

/* SLIDER */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.slider__btn-prev-1 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-white-down.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-prev-1:hover {
  background: url('../images/icons/icon-arrow-slide-red-down.svg');
}

.slider__btn-next-1 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-white-up.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-next-1:hover {
  transform: rotate(-180deg);
  background: url('../images/icons/icon-arrow-slide-red-down.svg');
}

.slider__btn-prev-2 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-black-down.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-prev-2:hover {
  background: url('../images/icons/icon-arrow-slide-red2-down.svg');
}

.slider__btn-next-2 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-black-up.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-next-2:hover {
  transform: rotate(-180deg);
  background: url('../images/icons/icon-arrow-slide-red2-down.svg');
}

.slider__btn-prev-3 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-white-down.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-prev-3:hover {
  background: url('../images/icons/icon-arrow-slide-red-down.svg');
}

.slider__btn-next-3 {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/icons/icon-arrow-slide-white-up.svg');
  border: none;
  cursor: pointer;
  z-index: 3;
}
.slider__btn-next-3:hover {
  transform: rotate(-180deg);
  background: url('../images/icons/icon-arrow-slide-red-down.svg');
}

.swiper-pagination {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 24px;
}

.partners-slider__pagination {
  position: initial !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.trust-slider__pagination {
  position: initial !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.sert-slider__pagination {
  position: initial !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partners-slider__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: transparent !important;
  height: 8px !important;
  width: 8px !important;
  border: 1px solid #fff !important;
}

.partners-slider__pagination .swiper-pagination-bullet-active {
  background: #fff !important;
}

.trust-slider__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: transparent !important;
  height: 8px !important;
  width: 8px !important;
  border: 1px solid rgba(8, 8, 8, 0.9) !important;
}

.trust-slider__pagination .swiper-pagination-bullet-active {
  background: #c10723 !important;
  border: 1px solid #c10723 !important;
}

.sert-slider__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: transparent !important;
  height: 8px !important;
  width: 8px !important;
  border: 1px solid #fff !important;
}

.sert-slider__pagination .swiper-pagination-bullet-active {
  background: #fff !important;
}

/* slider content styles */

.partners__slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 104px;
  background: #ffffff;
  border: 1px solid rgba(8, 8, 8, 0.05);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.custom__slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.custom__slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 998px) {
  .custom__slider-nav {
    top: auto;
    bottom: 0;
    width: 100%;
    justify-content: space-between;
  }
  .swiper-pagination {
    padding: 16px 0px;
  }
}

/* -------- END -------- */

/* POPUP */

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 41, 41, 0.6);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  z-index: 999;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1024px;
  padding: 30px;
  margin: 0px 20px;
  text-align: center;
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
  border-radius: 9px;
  background-color: #fff;
  transition: all 0.8s ease 0s;
  opacity: 0;
  transform: translate(0px, -100%);
}

.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url('../images/icons/close-1.svg') center/32px no-repeat;
  transition: all 0.3s ease-in-out;
}

.popup__close:hover {
  background: url('../images/icons/close-2.svg') center/32px no-repeat;
}

/* -------- END -------- */

/* HEADER */

.header {
  position: relative;
  width: 100%;
  z-index: 100;
}

.header__nav {
  display: flex;
  justify-content: center;
  gap: 115px;
}

.header__nav-mob {
  display: none;
}

.header__info {
  background-color: rgba(193, 7, 35, 1);
}

.header__info .container {
  display: flex;
  justify-content: space-between;
  padding: 16px 0px;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__contacts {
  display: flex;
  gap: 60px;
}

.header__contacts-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #fff;
}

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

.header__logo {
  display: flex;
}

.header__logo span {
  color: #fff;
  font-size: 30px;
}

.header__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}

.menu__burger {
  display: none;
}

.menu__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu__link,
.catalog-menu__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.sub-menu__list {
  width: max-content;
  display: none;
  position: absolute;
  left: 0;
  top: 20px;
  padding-top: 20px;
}

.sub-menu__list > li {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-menu__link {
  display: flex;
  padding: 15px 20px;
  line-height: 21px;
}

.catalog__link {
  position: relative;
}

.catalog__link > .menu__link,
.catalog-menu__link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.catalog__link:hover .sub-menu__list {
  display: flex;
  flex-direction: column;
}

.catalog__icon::after {
  content: '';
  display: block;
  height: 11px;
  width: 11px;
  background-image: url('../images/icons/icon-arrow-min-black.svg');
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
}

.catalog__link:hover > .menu__link {
  color: #c10723;
}

.catalog__link:hover .catalog__icon::after {
  background-image: url('../images/icons/icon-arrow-min-red.svg');
  background-repeat: no-repeat;
}

.catalog-menu__link.active {
  color: #c10723;
}

.catalog__icon::after.active {
  background-image: url('../images/icons/icon-arrow-min-red.svg');
  background-repeat: no-repeat;
}

@media (max-width: 998px) {
  .header__nav-mob {
    display: initial;
  }

  .header__info {
    display: none;
  }

  .header__container {
    margin: 0px 40px;
  }

  .header__nav {
    display: none;
  }

  .logo-mob {
    margin: 0px 40px;
    border-bottom: 1px solid rgba(8, 8, 8, 0.1);
  }

  .menu__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }

  .menu__burger:before {
    content: '';
    background-color: #c10723;
    position: absolute;
    width: 24px;
    height: 2px;
    right: 0;
    transition: all 0.3s ease-out;
  }

  .menu__burger:before {
    top: 0;
  }

  .menu__burger:after {
    content: '';
    background-color: #c10723;
    position: absolute;
    width: 24px;
    height: 2px;
    right: 0;
    transition: all 0.3s ease-out;
  }

  .menu__burger:after {
    bottom: 0;
  }

  .menu__burger span {
    background-color: #c10723;
    position: absolute;
    width: 24px;
    height: 2px;
    top: 9px;
    right: 0;
    transition: all 0.3s ease-out;
  }

  .menu__burger.active span {
    transform: scale(0);
  }

  .menu__burger.active:before {
    width: 100%;
    transform: rotate(45deg);
    top: 9px;
  }

  .menu__burger.active:after {
    width: 100%;
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .menu__burger.active > span {
    background-color: #fff;
  }

  .header__nav-mob.active {
    transform: translateX(0);
  }

  .header__nav-mob {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    max-height: 522px;
    transform: translateX(110%);
    transition: transform 0.5s;
    overflow: auto;
    z-index: 2;
    background: #fff;
  }

  .header__wrapper-mob {
    display: flex;
    padding: 40px;
    gap: 82px;
  }

  .header__col-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
  }

  .header__col-mob {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .header__col-mob:nth-child(1) {
    max-width: 395px;
  }

  .header__menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 24px;
    align-items: flex-start;
  }

  .header__contacts-mob {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .header__contacts-text-mob {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #000;
  }

  .header__socials-mob {
    display: flex;
    gap: 28px;
  }

  .sub-menu__list-mob {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: scale(0);
    position: absolute;
  }

  .sub-menu__list-mob.active {
    transform: scale(1);
    position: initial;
  }

  .sub-menu__link {
    padding: 0;
  }

  .catalog__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu__item {
    flex: 1 1 43%;
    gap: 24px;
  }
  .menu-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 698px) {
  .header__wrapper-mob {
    flex-direction: column;
    gap: 40px;
  }
  .header__col-mob {
    gap: 24px;
  }
  .menu-col {
    gap: 16px;
  }
  .header__contacts-mob {
    gap: 16px;
  }
  .header__col-title {
    font-size: 20px;
    line-height: 30px;
  }
}
/* -------- END -------- */

/* PREVIEW */

.preview {
  background-color: #c10723;
  background-image: url('../images/header-bg.png');
  background-position: top;
}

.preview__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 51px 0px 48px 0px;
}

.preview__wrapper-catalog {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 0px 40px 0px;
}

.preview__catalog .container {
  padding-bottom: 100px;
}

.preview__title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.preview__wrapper-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.preview__text {
  max-width: 521px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}

.preview__link {
  display: flex;
  align-items: center;
  gap: 11px;
}

.preview__link:hover {
  opacity: 0.7;
}

.preview__link-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.02px;
  color: #fff;
}

.preview__img {
  display: flex;
}

.preview__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 20px;
}

.preview__card {
  position: relative;
}

.preview__card-img {
  display: flex;
}

.preview__card-text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
}

@media (max-width: 998px) {
  .preview__wrapper {
    padding: 60px 40px;
    gap: 24px;
  }

  .preview__wrapper-catalog {
    padding: 60px 40px 40px 40px;
    gap: 24px;
  }

  .preview__cards {
    padding: 0px 40px;
  }

  .preview__card-text {
    font-size: 16px;
    line-height: 24px;
  }

  .preview__title {
    max-width: 645px;
  }

  .preview__wrapper-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

@media (max-width: 698px) {
  .preview__wrapper {
    padding: 60px 32px 60px 40px;
    gap: 20px;
  }

  .preview__title {
    font-size: 24px;
    line-height: 36px;
  }

  .preview__wrapper-catalog {
    gap: 20px;
  }

  .preview__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* END */

/* ADVANTAGES */

.advantages {
  padding: 69px 0px 60px 0px;
}

.container-red {
  padding: 60px 0px;
  background-color: #c10723;
  background-image: url('../images/header-bg.png');
  background-position: top;
}

.container-white {
  background-color: #fff;
  background-image: none;
}

.header-white {
  background-color: #fff;
}

.header__container-borders {
  border-top: 1px solid rgba(8, 8, 8, 0.1);
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

.text-black {
  color: #000;
}

.advantages__list {
  display: flex;
  gap: 20px;
}

.advantages__list-item {
  width: 220px;
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 16px 1px 16px 14px;
  background: #ffffff;
  border: 1px solid rgba(8, 8, 8, 0.05);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.advantages__item-icon {
  width: 34px;
  height: 30px;
}

.advantages__item-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
}

.br-table {
  display: none;
}

@media (max-width: 998px) {
  .advantages {
    padding: 60px 40px 100px 40px;
  }

  .container-red {
    padding: 60px 40px;
  }

  .advantages__list {
    display: grid;
    grid-template-columns: min-content min-content;
    justify-content: center;
  }

  .advantages__list-item {
    width: 322px;
    height: 142px;
    padding: 24px;
    gap: 16px;
  }

  .advantages__item-text {
    font-size: 16px;
    line-height: 24px;
  }

  .br-table {
    display: block;
  }
}

@media (max-width: 698px) {
  .advantages {
    padding: 40px 40px 100px 40px;
  }

  .container-red {
    padding: 60px 40px;
  }

  .advantages__list {
    grid-template-columns: 1fr;
  }

  .advantages__list-item {
    max-width: 100%;
    width: 100%;
  }
}

/* END */

/* PARTNERS */

.partners {
  padding: 60px 0px 61px 0px;
  background-color: #c10723;
  background-image: url('../images/header-bg.png');
  background-position: center;
}

.partners .subtitle {
  color: #fff;
}

.partners .container {
  position: relative;
}

.partners__row {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 40px;
}

@media (max-width: 998px) {
  .partners {
    padding: 60px 40px;
  }

  .subtitle {
    font-size: 24px;
    line-height: 36px;
  }

  .partners__row {
    height: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 698px) {
  .partners__slider-item {
    max-width: 100%;
    width: 100%;
    height: 115px;
  }
}

/* END */

/* DESCRIPTION */

.description {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 100px;
}

.description__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.description__img {
  display: flex;
  background-color: #d9d9d9;
  width: 100%;
  height: 476px;
}

.description__wrapper-text {
  display: flex;
  gap: 20px;
}

.description__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 998px) {
  .description__title {
    padding: 0px 40px;
  }

  .description__img {
    height: 388px;
  }

  .description__wrapper-text {
    flex-direction: column;
    padding: 0px 40px;
  }
}

@media (max-width: 698px) {
  .description {
    gap: 24px;
  }

  .description__title {
    font-size: 24px;
    line-height: 36px;
  }

  .description__wrapper-text {
    gap: 16px;
  }

  .description__text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* END */

/* TRUST */

.trust {
  padding: 100px 0px;
}

.trust .container {
  position: relative;
}

.trust__row {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 40px;
}

@media (max-width: 998px) {
  .trust {
    padding: 100px 40px;
  }
}

@media (max-width: 698px) {
  .trust__row {
    height: auto;
    margin-bottom: 24px;
  }
}

/* END */

/* SERT */

.sert {
  padding: 60px 0px 62px 0px;
  background-color: #c10723;
  background-image: url('../images/header-bg.png');
}

.sert .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.sert .subtitle {
  color: #fff;
}

.sert__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sert__card {
  max-width: 301px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sert__card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sert__card:hover .zoom {
  transform: scale(0);
}

.sert__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
}

.zoom {
  position: absolute;
  width: 85px;
  height: 85px;
  background-image: url('../images/icons/icon-zoom.svg');
  transform: scale(1);
  transition: all 0.3s ease-in;
}

@media (max-width: 998px) {
  .sert {
    padding: 60px 40px;
  }

  .sert__cards {
    gap: 18px;
  }

  .sert__card {
    gap: 16px;
  }

  .sert__text {
    font-size: 10px;
    line-height: 16px;
  }
}

@media (max-width: 698px) {
  .sert .container {
    gap: 24px;
  }

  .sert__text {
    font-size: 14px;
    line-height: 21px;
  }
}
/* END */

/* INPUTS */

.input__phone {
  width: 320px;
  height: 29px;
  display: flex;
  padding: 0px 0px 8px 0px;
  align-items: center;
  border: none;
  border-bottom: 1px solid rgba(65, 65, 65, 0.1);
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #2a2a2a;
  opacity: 0.8;
  background: #fff url('../images/icons/icon_arrow-gray.svg') no-repeat 16px
    center;
  background-position: right;
  background-origin: content-box;
  cursor: pointer;
}

.input__phone::placeholder {
  color: #2a2a2a;
  opacity: 0.2;
}

.input__popup:focus {
  outline: none;
}

.input__phone:focus {
  outline: none;
  background: #fff url('../images/icons/icon_arrow-black.svg') no-repeat 16px
    center;
  background-position: right;
  background-origin: content-box;
}

/* -------- END -------- */

/* BUTTONS */

.popup__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: #c10723;
  border: none;
  border-radius: 3px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.popup__button:hover {
  background-color: rgba(193, 7, 35, 0.6);
}

/* END */

/* FEEDBACK FORM */

.feedback__form {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feedback__form-text {
  font-size: 32px;
  font-weight: 600;
}

.feedback__form-inner {
  display: flex;
  flex-direction: column;
}

.feedback__inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback__container-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0px 28px 0px;
}

.feedback__container-checkbox span {
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
  opacity: 0.3;
}

@media (max-width: 998px) {
  .feedback__form {
    max-width: 100%;
  }

  .input__phone {
    width: 100%;
  }

  .feedback__container-checkbox {
    align-items: center;
    margin: 22px 0px 30px 0px;
  }

  @media (max-width: 698px) {
    .feedback__form {
      gap: 24px;
    }

    .feedback__inputs {
      gap: 20px;
    }

    .feedback__container-checkbox {
      align-items: flex-start;
      margin: 20px 0px 24px 0px;
    }

    .feedback__container-checkbox input {
      margin-top: 2px;
    }
  }
}
/* END */

/* QUESTIONS */

.questions {
  padding: 100px 0px;
}

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

.contacts {
  max-width: 425px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 35px;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contacts__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.contacts__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.contacts__mails {
  display: flex;
  flex-direction: column;
}

.contacts__mail {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.contacts__address {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.contacts__socials {
  display: flex;
  gap: 20px;
}

.contacts__social {
  width: 24px;
  height: 24px;
}

@media (max-width: 998px) {
  .questions {
    padding: 100px 40px;
  }

  .questions__wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .contacts {
    max-width: 527px;
    column-gap: 129px;
  }
}

@media (max-width: 698px) {
  .feedback__form-text {
    font-size: 24px;
    line-height: 36px;
  }

  .questions__wrapper {
    gap: 40px;
  }

  .contacts {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .contacts__item {
    max-width: 213px;
  }
}
/* -------- END -------- */

/* FOOTER */

.footer__top .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
}

.footer__logo {
  width: 103px;
  height: 70px;
}

.footer__nav {
  display: grid;
  grid-template-columns: min-content min-content max-content;
  column-gap: 90px;
  row-gap: 24px;
}

.footer__nav-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer__bottom {
  padding: 12px 0px;
  background-color: #c10723;
}

.footer__bottom .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 110px;
}

.footer__copy {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}

.footer__policy {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  text-decoration: underline;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__author {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}

.footer__author-icon {
  width: 28px;
  height: 27px;
}

@media (max-width: 998px) {
  .footer__top .container {
    max-width: 100%;
    width: auto;
    margin: 0px 40px;
  }

  .footer__nav {
    grid-template-columns: max-content max-content;
    column-gap: 79px;
  }

  .footer__nav-item:nth-child(1) {
    order: 1;
  }

  .footer__nav-item:nth-child(2) {
    order: 2;
  }

  .footer__nav-item:nth-child(3) {
    order: 5;
  }

  .footer__nav-item:nth-child(4) {
    order: 3;
  }

  .footer__nav-item:nth-child(5) {
    order: 4;
  }
  .footer__bottom {
    padding: 9px 0px;
  }

  .footer__bottom .container {
    max-width: 100%;
    width: auto;
    margin: 0px 40px;
  }

  .footer__bottom-left {
    gap: 37px;
  }
}

@media (max-width: 698px) {
  .footer__top .container {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0px 24px 0px;
  }

  .footer__nav {
    grid-template-columns: min-content min-content;
    column-gap: 21px;
    justify-content: space-between;
  }

  .footer__top-left {
    display: flex;
    justify-content: center;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom {
    padding: 24px 0px;
  }

  .footer__bottom-left {
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom-right {
    justify-content: center;
  }

  .footer__logo,
  .footer__logo img {
    width: 110px;
    height: 75px;
  }
}
/* -------- END -------- */
