@charset "UTF-8";
/* ================================================================================================================ */
/* СТИЛИ ОБНУЛЕНИЯ ================================================================================================ */
/* ================================================================================================================ */
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /*    overflow: auto;*/
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
/* ================================================================================================================ */
/* ПОДКЛЮЧЕНИЕ ШРИФТОВ ============================================================================================ */
/* ================================================================================================================ */
@font-face {
  font-family: "MazzardM";
  src: url("../fonts/MazzardM-Regular.woff2") format("woff2"), url("../fonts/MazzardM-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MazzardM";
  src: url("../fonts/MazzardM-Medium.woff2") format("woff2"), url("../fonts/MazzardM-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MazzardM";
  src: url("../fonts/MazzardM-SemiBold.woff2") format("woff2"), url("../fonts/MazzardM-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MazzardM";
  src: url("../fonts/MazzardM-Bold.woff2") format("woff2"), url("../fonts/MazzardM-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ================================================================================================================ */
/* СТИЛИ UI ======================================================================================================= */
/* ================================================================================================================ */
/* Общие стили и классы*/
.container {
  max-width: 1484px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

body {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  line-height: normal;
  background: #f6f6f6;
}
body.dark {
  background: #1a1a1a;
  color: #fff;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}

.img-100 {
  width: 100%;
  max-width: 100%;
}

.bg-second {
  background: #ffffff;
}
.dark .bg-second {
  background: #242424;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.wrapper .main {
  flex: 1 1 auto;
}

/* Отступи */
.header-margin {
  margin-top: 118px;
}

.header-padding {
  padding-top: 118px;
}

.margin-block {
  margin: 80px 0;
}

.padding-block {
  padding: 60px 0;
}

/* Кнопки/Ссылки */
.btn {
  margin: 24px 0;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  box-shadow: none;
  box-sizing: none;
  display: block;
  transition: 0.3s;
}
.btn_start_big {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px 35px;
  background: #0078e5;
  border-radius: 5px;
  text-align: center;
}
@media (hover: hover) {
  .btn_start_big:hover {
    background: #003a6f;
  }
}
.btn_start {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px 35px;
  background: #0078e5;
  border-radius: 5px;
  text-align: center;
}
@media (hover: hover) {
  .btn_start:hover {
    background: #003a6f;
  }
}
.btn_transparent {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-align: center;
}
@media (hover: hover) {
  .btn_transparent:hover {
    background: rgb(255, 255, 255);
    color: #000;
  }
}
.btn_more {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #9b9b9b;
  line-height: normal;
  padding: 20px 35px;
  background: #dddddd;
  border-radius: 5px;
  text-align: center;
}
@media (hover: hover) {
  .btn_more:hover {
    color: #fff;
    background: #9b9b9b;
  }
}
.btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: grey;
}
.btn:active {
  opacity: 0.8;
}
.btn_280 {
  min-width: 280px;
}
.dark .btn_more {
  color: #6e6e6e;
  background: #303030;
}
.dark .btn_more:hover {
  color: #fff;
  background: #9b9b9b;
}

/* Загрузка */
.sending-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.7);
}
.sending-main img {
  width: 300px;
}
.sending-main.active {
  opacity: 1;
  visibility: visible;
}

/* Елементы формы */
/* -input */
.input-custom {
  margin: 8px 0;
}
.input-custom label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 7px 0;
}
.input-custom input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 18px 18px;
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #969696;
  border-radius: 5px;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  line-height: 140%;
}
.input-custom input:focus {
  border: 1px solid #000;
}
.input-custom input.error {
  border: 1px solid #e52d2e !important;
}
.dark .input-custom input {
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #393939;
}
.dark .input-custom input:focus {
  border: 1px solid #fff;
}
.input-custom__error {
  display: none;
  margin: 5px 0 0 0;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #e52d2e;
  line-height: 140%;
}
.input-custom.error input {
  border: 1px solid #e52d2e !important;
}
.input-custom.error textarea {
  border: 1px solid #e52d2e !important;
}
.input-custom.error .input-custom__error {
  display: block;
}
.input-custom textarea {
  padding: 18px 18px;
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #969696;
  border-radius: 5px;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  line-height: 140%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  height: 100px;
}
.input-custom textarea:focus {
  border: 1px solid #cfcfcf;
}
.input-custom textarea.error {
  border: 1px solid #e52d2e !important;
}
.dark .input-custom textarea {
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #393939;
}
.dark .input-custom textarea:focus {
  border: 1px solid #fff;
}

/* -select */
.select-custom {
  margin: 20px 0;
}
.select-custom label {
  display: block;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 140%;
  margin: 0 0 7px 0;
}
.select-custom__box {
  position: relative;
}
.select-custom__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.select-custom__arrow:before {
  font-size: 10px;
  color: #0078e5;
}
.select-custom select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 48px 12px 20px;
  width: 100%;
  display: block;
  background: #fff;
  border: none;
  border-radius: 8px;
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: normal;
}

.dark .select-custom label {
  color: #fff;
}
.dark .select-custom select {
  background: #242424;
  color: #fff;
}

.select-theme .select-custom {
  margin: 16px 0;
}

/* -checkbox */
.input-checkbox {
  margin: 16px 0;
}
.input-checkbox input {
  display: none;
}
.input-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
}
.input-checkbox label:before {
  content: "";
  display: block;
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin: 0 12px 0 0;
}
.input-checkbox input:checked + label:before {
  border-color: #0078e5;
  background: #0078e5 url("../icon/check.svg") no-repeat center;
}
.input-checkbox input.error + label:before {
  border: 1px solid red;
}

.input-radio {
  margin: 20px 0;
}
.input-radio input {
  display: none;
}
.input-radio label {
  cursor: pointer;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
  position: relative;
  padding: 3px 0 0 30px;
}
.input-radio label:before {
  content: "";
  display: block;
  background: #f6f6f6;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  width: 24px;
  height: 24px;
  flex: 0 0 20px;
  margin: 0 12px 0 0;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.input-radio label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
  transition: 0.3s;
  transform: scale(0);
}
.input-radio input:checked + label:after {
  transform: scale(1);
}

/* -input-photos */
.input-photos__title {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 130%;
  margin: 0 0 10px 0;
}
.input-photos__body {
  display: flex;
  align-items: center;
}
.input-photos__input {
  position: relative;
}
.input-photos__input input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}
.input-photos__btn {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #777;
  background: url("../icon/img.svg") center/80% auto no-repeat;
}
.input-photos__info {
  margin-left: 24px;
}
.input-photos__text {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 130%;
}
.input-photos__format {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #999;
  line-height: 130%;
}

.input-img {
  position: relative;
}
.input-img input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
  z-index: 3;
}
.input-img__btn {
  position: relative;
  padding: 18px 18px;
  width: 100%;
  background: #fff;
  border: 1px solid #969696;
  border-radius: 5px;
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #757575;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.input-img__btn:before {
  order: 2;
  font-size: 20px;
  color: #757575;
}
.input-img.error .input-img__btn {
  border-color: red !important;
}
.input-img__del {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 14px;
  transform: translate(0%, -50%) scale(0);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.input-img__del:before {
  font-size: 10px;
  color: #fff;
}
.input-img.active .input-img__del {
  transform: translate(0%, -50%) scale(1);
}
.dark .input-img__btn {
  background: #1a1a1a;
  border: 1px solid #393939;
}

/* ЕЛЕМЕНТЫ СЛАЙДЕРОВ */
.slider-slider {
  overflow: hidden;
}
/* - Пагинации */
.pagination-custom {
  margin: 0 30px;
}
.pagination-custom .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  opacity: 1;
  border: 1px solid #000;
  background: none;
}
.pagination-custom .swiper-pagination-bullet-active {
  background: #000;
}

/* - блок управления слайдера */
.swiper-control {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.swiper-control .swiper-pagination {
  position: static;
  margin: 0;
  width: auto;
}

/* -кнопки слайдера */
.button-prev,
.button-next {
  cursor: pointer;
  background: #0078e5;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-prev:before,
.button-next:before {
  font-size: 13px;
  color: #fff;
}
.button-prev:hover,
.button-next:hover {
  transform: scale(1.1);
}
.button-prev.swiper-button-disabled,
.button-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button-prev.swiper-button-lock,
.button-next.swiper-button-lock {
  display: none;
}

/* end--------------------*/
/* Общие стили для блока .more */
.more__link {
  font-weight: 700;
  margin: 0 8px;
  cursor: pointer;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo img {
  width: 100%;
  max-width: 60px;
}
.dark .logo__dark {
  display: none;
}
.light .logo__light {
  display: none;
}
.logo__name {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

/* Оценка */
.grade {
  display: flex;
  flex-direction: column;
}
.grade__title {
  font-size: 20px;
  margin: 0 0 12px 0;
}
.grade__list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.grade__item input {
  display: none;
}
.grade__item label {
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.grade__item label:before {
  font-size: 36px;
  color: #d9d9d9;
}
.grade__item.active label:before {
  font-size: 36px;
  color: #0078e5;
}
.grade__error {
  font-size: 16px;
  color: #e52d2e !important;
  display: none;
}
.grade.error .grade__error {
  display: block;
}

@media screen and (min-width: 992px) {
  .after-992 {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .before-992 {
    display: none;
  }
  /* Отступи */
  .header-margin {
    margin-top: 118px;
  }
  .header-padding {
    padding-top: 118px;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 0 20px;
  }
  /* Логотип */
  .logo {
    gap: 16px;
  }
  .logo img {
    max-width: 30px;
  }
  .logo__name {
    font-size: 24px;
  }
  /* Отступи */
  .header-margin {
    margin-top: 80px;
  }
  .header-padding {
    padding-top: 80px;
  }
  .margin-block {
    margin: 30px 0;
  }
  .padding-block {
    padding: 30px 0;
  }
  /* Кнопки/Ссылки */
  .btn {
    margin: 12px 0;
  }
  .btn_start {
    font-size: 10px;
    padding: 10px 16px;
    border-radius: 2px;
  }
  .btn_transparent {
    font-size: 10px;
    padding: 10px 16px;
    border-radius: 2px;
  }
  .btn_280 {
    min-width: 120px;
  }
  .btn_more {
    font-size: 18px;
    padding: 15px;
    border-radius: 6px;
  }
  .input-custom {
    margin: 8px 0;
  }
  .input-custom input {
    padding: 16px;
    font-size: 16px;
  }
  .input-custom textarea {
    padding: 16px 16px;
    font-size: 16px;
  }
  /* -checkbox */
  .input-checkbox {
    margin: 16px 0;
  }
  .input-checkbox input {
    display: none;
  }
  .input-checkbox label {
    font-size: 16px;
  }
  .input-img__btn {
    padding: 16px;
    font-size: 16px;
    gap: 16px;
  }
  .input-img__btn:before {
    font-size: 16px;
  }
}
/* ================================================================================================================ */
/* СТИЛИ ПОПАП ОКОН =============================================================================================== */
/* ================================================================================================================ */
.popup-link {
  cursor: pointer;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.5);
  max-height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  z-index: -5;
}
.popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 40;
}
.popup__wraper {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 30px 15px;
  max-width: 920px;
}
.popup__body {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transform: scale(0);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
.dark .popup__body {
  background: #1a1a1a;
}
.popup.active .popup__body {
  transform: scale(1);
}
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
.popup__close:before {
  font-size: 15px;
  color: #757575;
}

.order {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.order__head {
  max-width: 470px;
}
.order__head p {
  color: #757575;
  font-size: 20px;
  margin: 0;
}
.order__item_row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.order__title {
  margin: 0 0 10px 0;
}
.order__coll {
  width: 100%;
}
.order__subtitle {
  margin: 0 0 10px 0;
}
.order__info {
  font-size: 16px;
  color: #0078e5 !important;
}
.order .btn {
  width: 100%;
  margin: 0;
}

.ok {
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 470px;
  margin: 0 auto;
}
.ok:before {
  font-size: 96px;
  color: green;
  margin-bottom: 20px;
}
.ok__title {
  text-align: center;
  font-size: 36px;
  margin: 0 20px 0 0;
}
.ok__subtitle {
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .order {
    gap: 20px;
  }
  .order__head p {
    font-size: 16px;
  }
  .order__item_row {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .popup__body {
    padding: 30px 16px;
  }
}
/* ================================================================================================================ */
/* СТИЛИ ТЕКСТОВОЙ СТРАНИЦЫ  ====================================================================================== */
/* ================================================================================================================ */
/* Основные заголовки и текста */
.title-block {
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.title-block:before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: #0078e5;
  border-radius: 10px;
}

.title-block-center {
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.title-block-center:before, .title-block-center:after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: #0078e5;
  border-radius: 10px;
}

.ul-new li:not(:last-child) {
  margin-bottom: 24px;
}
.ul-new li:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 3px;
  background: #0078e5;
  margin-bottom: 6px;
  margin-right: 3px;
}

h1 {
  font-family: "MazzardM", sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #000;
  line-height: normal;
  margin: 30px 0;
}
.dark h1 {
  color: #fff;
}

h2 {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #000;
  line-height: normal;
  margin: 24px 0;
}
.dark h2 {
  color: #fff;
}

h3 {
  font-family: "MazzardM", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #000;
  line-height: normal;
  margin: 20px 0;
}
.dark h3 {
  color: #fff;
}

h4 {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  line-height: normal;
  margin: 18px 0;
}
.dark h4 {
  color: #fff;
}

h5 {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: normal;
  margin: 16px 0;
}
.dark h5 {
  color: #fff;
}

h6 {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: normal;
  margin: 16px 0;
}
.dark h6 {
  color: #fff;
}

p {
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  line-height: normal;
  margin: 16px 0;
}
.dark p {
  color: #fff;
}

.text-custom p:first-child,
.text-custom h1:first-child,
.text-custom h2:first-child,
.text-custom h3:first-child,
.text-custom h4:first-child,
.text-custom h5:first-child,
.text-custom h6:first-child,
.text-custom img:first-child {
  margin-top: 0;
}
.text-custom p:last-child,
.text-custom h1:last-child,
.text-custom h2:last-child,
.text-custom h3:last-child,
.text-custom h4:last-child,
.text-custom h5:last-child,
.text-custom h6:last-child,
.text-custom img:last-child {
  margin-bottom: 0;
}
.text-custom > img {
  max-width: 100%;
  margin: 16px 0;
}
.text-custom p em,
.text-custom p i {
  font-style: italic;
}
.text-custom p strong,
.text-custom p b {
  font-weight: 500;
  color: #000;
}
.text-custom p a {
  color: #0078e5;
  text-decoration: underline;
}
.text-custom ul {
  margin: 20px 0;
  padding: 0 0 0 30px;
}
.text-custom ul li {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  line-height: normal;
  padding: 0 0 0 20px;
  position: relative;
  display: flex;
}
.text-custom ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 0;
  top: 8px;
}
.text-custom ol {
  margin: 20px 0;
  padding: 0 0 0 40px;
}
.text-custom ol li {
  font-family: "MazzardM", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  line-height: normal;
}
.text-custom ol li::marker {
  font-weight: 700;
  color: #000;
}
.text-custom blockquote {
  padding: 24px 16px;
  margin: 16px 0;
  background: #e3e3e3;
  color: #000;
}
@media screen and (max-width: 576px) {
  .text-custom ul {
    margin: 16px 0;
    padding: 0 0 0 8px;
  }
  .text-custom ul li {
    font-size: 14px;
    padding: 0 0 0 16px;
  }
  .text-custom ul li:before {
    top: 7px;
  }
  .text-custom ol {
    margin: 16px 0;
    padding: 0 0 0 20px;
  }
  .text-custom ol li {
    font-size: 14px;
  }
  .text-custom ol li::marker {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .title-block {
    margin: 0 0 16px 0;
  }
  .title-block:before {
    width: 30px;
    height: 3px;
  }
  .title-block-center {
    margin: 0 0 16px 0;
  }
  .title-block-center:before, .title-block-center:after {
    width: 30px;
    height: 3px;
  }
  .ul-new li {
    text-align: justify;
  }
  .ul-new li:not(:last-child) {
    margin-bottom: 16px;
  }
  .ul-new li:before {
    width: 18px;
    height: 2px;
    margin-bottom: 3px;
  }
  h1 {
    margin: 24px 0;
    font-size: 24px;
  }
  h2 {
    margin: 20px 0;
    font-size: 20px;
  }
  h3 {
    margin: 18px 0;
    font-size: 18px;
  }
  h4 {
    margin: 16px 0;
    font-size: 16px;
  }
  h5 {
    margin: 14px 0;
    font-size: 14px;
  }
  h6 {
    margin: 12px 0;
    font-size: 14px;
  }
  p {
    margin: 12px 0;
    font-size: 16px;
  }
}
/* ================================================================================================================ */
/* СТИЛИ ОБЩИХ БЛОКОВ  ============================================================================================ */
/* ================================================================================================================ */
/* Стили для header */
.header {
  padding: 20px 0;
  background: #f6f6f6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  transition: 0.3s;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: #f6f6f6;
}
.dark .header:before {
  background: #1a1a1a;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navigation,
.header .select-theme,
.header .burger,
.header .logo {
  position: relative;
  z-index: 10;
}

.burger-body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.burger {
  position: relative;
  height: 18px;
  width: 22px;
}
.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  transition: 0.5s;
}
.burger span:nth-child(1) {
  transform: translate(-50%, -50%);
  top: 0%;
  left: 50%;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) scale(1);
}
.burger span:nth-child(3) {
  bottom: 0;
  transform: translate(-50%, 0%);
  left: 50%;
}
.burger.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
.burger.active span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) scale(0);
}
.burger.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  bottom: auto;
}
.dark .burger span {
  background: #fff;
}

/* ------- адаптация ------- */
@media screen and (min-width: 992px) {
  .navigation ul {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .burger-body {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    padding: 150px 24px 24px 24px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #f6f6f6;
    min-height: 100%;
    max-height: 100%;
    overflow: auto;
    z-index: 5;
    transform: translate(0%, -100%);
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .dark .burger-body {
    background: #1a1a1a;
  }
  .burger-body.active {
    transform: translate(0%, 0);
    opacity: 1;
  }
  .burger-body .select-theme {
    width: 100%;
  }
  .burger-body .select-theme .select-custom {
    margin: 16px 0;
  }
  .burger-body .select-theme .select-custom select {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .burger-body {
    width: 100%;
    min-width: none;
    padding: 124px 16px 24px 16px;
  }
}
/* ------- end ------- */
/* Стили для Главное меню */
.navigation {
  flex: 1 1 auto;
  margin-right: 24px;
}
.navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.navigation > ul > li {
  display: block;
  position: relative;
}
.navigation > ul > li > a, .navigation > ul > li > span {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "MazzardM", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: normal;
  transition: 0.3s;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
}
.navigation > ul > li > a:before, .navigation > ul > li > span:before {
  color: #0078e5;
  font-size: 18px;
  margin-right: 8px;
}
.navigation > ul > li > a:hover, .navigation > ul > li > span:hover {
  transform: scale(1.05);
}
.dark .navigation > ul > li > a, .dark .navigation > ul > li > span {
  color: #fff;
  background: #242424;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    min-width: 120px;
    padding: 12px;
    font-size: 16px;
  }
  .navigation > ul > li > a:before, .navigation > ul > li > span:before {
    font-size: 12px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 992px) {
  .navigation {
    flex: 0 0 auto;
    margin: 0;
    width: 100%;
  }
  .navigation > ul {
    flex-direction: column;
    width: 100%;
  }
  .navigation > ul > li {
    width: 100%;
  }
}
/* Стили для .main-screen */
.main-screen {
  position: relative;
}
.main-screen__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-screen__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, #000 30%, rgba(0, 0, 0, 0.3) 100%);
}
.main-screen__body {
  padding: 120px 0 100px 0;
}

.ofer {
  max-width: 780px;
}
.ofer__title {
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}
.ofer__text {
  margin: 0;
  color: #fff;
}
.ofer__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.ofer__btns .btn {
  margin: 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .main-screen__body {
    padding: 30px 0 30px 0;
  }
  .ofer__btns {
    gap: 7px;
    margin-top: 10px;
  }
}
/* ------- end ------- */
/* Стили для .text-img-block { */
.text-img-block__body {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}
.text-img-block__text {
  flex: 1 1 auto;
  text-align: justify;
}
.text-img-block__images {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-img-block__img {
  border-radius: 10px;
  overflow: hidden;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .text-img-block__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .upfolding-text__body {
    max-height: 160px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
  }
  .upfolding-text__body:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #f6f6f6 100%);
    transition: 0.3s;
  }
  .upfolding-text__body.active:before {
    opacity: 0;
  }
  .dark .upfolding-text__body:before {
    background: linear-gradient(transparent 0%, #1a1a1a 100%);
  }
  .upfolding-text__btn {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: #0078e5;
    gap: 10px;
  }
  .upfolding-text__btn:before {
    color: #0078e5;
    font-size: 8px;
    order: 2;
  }
  .upfolding-text__btn .active-visible {
    display: none;
  }
  .upfolding-text__btn.active .active-hide {
    display: none;
  }
  .upfolding-text__btn.active .active-visible {
    display: block;
  }
}
/* ------- end ------- */
/* Стили для .faq */
.faq__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  box-shadow: 0 18px 73px 0 rgba(0, 0, 0, 0.1);
  padding: 0 30px;
  border-radius: 20px;
  background: #ffffff;
}
.faq-item__btn {
  padding: 26px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item__btn:before {
  color: #0078e5;
  order: 2;
  font-size: 12px;
  transition: 0.3s;
}
.faq-item__btn.active:before {
  transform: rotate(180deg);
}
.faq-item__body {
  transition: 0.3s;
  overflow: hidden;
  max-height: 0px;
}
.faq-item__content {
  padding: 0 0 26px 0px;
}
.faq-item__content p {
  margin: 0;
  color: #757575;
}
.faq-item__content p:not(:last-child) {
  margin-bottom: 12px;
}
.dark .faq-item__btn {
  color: #fff;
}
.dark .faq-item {
  background: #242424;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .faq__body {
    gap: 10px;
  }
  .faq-item {
    padding: 0 15px;
    border-radius: 10px;
  }
  .faq-item__btn {
    font-size: 16px;
    padding: 15px 0px;
    gap: 15px;
  }
  .faq-item__btn:before {
    font-size: 8px;
  }
  .faq-item__content {
    padding: 0 0 15px 0px;
  }
  .faq-item__content p:not(:last-child) {
    margin-bottom: 8px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.portfolio-home__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.portfolio-home__item {
  flex: 1 1 auto;
  padding-bottom: 40%;
  position: relative;
}
.portfolio-home__item_40 {
  flex: 0 0 40%;
}
.portfolio-home__item_100 {
  flex: 0 0 100%;
  padding-bottom: 25%;
}
.portfolio-home__item .portfolio-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolio-item {
  width: 100%;
  display: flex;
  gap: 10px;
}
.portfolio-item_vertical {
  flex-direction: column;
}
.portfolio-item_static .portfolio-item__img img {
  position: static;
}
.portfolio-item__img {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}
.portfolio-item__img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.portfolio-item__head {
  position: absolute;
  font-family: "MazzardM", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  line-height: normal;
  top: 30px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
  margin: 0;
}

.portfolio__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .portfolio-home__grid {
    flex-direction: column;
    gap: 10px;
  }
  .portfolio-home__item {
    width: 100%;
    padding-bottom: 60%;
  }
  .portfolio-home__item_40 {
    padding-bottom: 25%;
  }
  .portfolio-home__item_60 {
    padding-bottom: 60%;
  }
  .portfolio-home__item_100 {
    padding-bottom: 25%;
  }
  .portfolio-item {
    gap: 4px;
  }
  .portfolio-item_vertical {
    flex-direction: row;
  }
  .portfolio-item__head {
    font-size: 24px;
    top: 12px;
    left: 12px;
  }
}
/* ------- end ------- */
/* Стили для footer */
.footer {
  padding: 45px 0;
  background: #e6e6e6;
}
.dark .footer {
  background: #242424;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.footer__left .logo {
  margin-bottom: 30px;
}
.list-info p {
  margin: 10px 0;
  font-size: 18px;
}
.list-info a {
  color: #000;
}
.dark .list-info a {
  color: #fff;
}

.menu-start ul li:not(:last-child) {
  margin-bottom: 16px;
}
.menu-start ul li a {
  display: block;
  text-align: right;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.menu-start ul li a:hover {
  color: #0078e5;
}

.dark .menu-start ul li a {
  color: #fff;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .footer {
    padding: 30px 0;
  }
  .footer__left .logo {
    margin-bottom: 16px;
  }
  .list-info p {
    margin: 6px 0;
    font-size: 14px;
  }
  .menu-start ul li a {
    font-size: 14px;
  }
}
/* ------- end ------- */
/* Стили для footer */
.portfolio-new__video {
  margin: 0 auto 48px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.portfolio-new__video .portfolio-video {
  flex: 0 0 calc(50% - 10px);
}
.portfolio-new__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.portfolio-new__item {
  flex: 0 0 calc(50% - 10px);
}
.portfolio-video {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.portfolio-video__item {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 80%;
}
.portfolio-video__item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio-main__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-main__before, .portfolio-main__after {
  text-transform: uppercase;
  font-size: 20px;
}

.slider-change {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}
.slider-change img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-change__before {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 2;
  width: 50%;
  height: 100%;
}
.slider-change__handle {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  width: 3px;
  height: 100%;
  background-color: #fff;
}
.slider-change__handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 100%;
  transform: translate(-50%, -50%);
}
.slider-change__left, .slider-change__right {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0%, -50%);
}
.slider-change__left:before, .slider-change__right:before {
  font-size: 18px;
  color: #0078e5;
}
.slider-change__left {
  left: 50%;
  border-radius: 0 50px 50px 0;
}
.slider-change__right {
  right: 50%;
  border-radius: 50px 0 0 50px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 768px) {
  .portfolio-new__video {
    margin: 0 auto 32px auto;
  }
  .portfolio-new__video .portfolio-video {
    flex: 0 0 100%;
  }
  .portfolio-new__item {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 576px) {
  .portfolio-video {
    gap: 6px;
  }
  .portfolio-main__before, .portfolio-main__after {
    font-size: 16px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.feedback-form {
  padding: 32px;
  background: #fff;
  border-radius: 10px;
}
.dark .feedback-form {
  background: #242424;
}
.feedback-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.feedback-form .input-custom {
  margin: 16px 0;
  width: 100%;
}
.feedback-form__btn {
  margin: 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 768px) {
  .feedback-form__row {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .feedback-form__row .input-custom {
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .feedback-form {
    margin-left: -16px;
    margin-right: -16px;
    padding: 20px;
  }
  .feedback-form__btn {
    width: 100%;
  }
}
/* ------- end ------- */
/* Стили для feedback-list */
.feedback-list__body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feedback-list__body .feedback-item {
  flex: 0 0 calc(50% - 12px);
}

.feedback-item {
  padding: 25px;
  border-radius: 10px;
  background: #fff;
}
.dark .feedback-item {
  background: #242424;
}
.feedback-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}
.feedback-item__name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feedback-item__name:before {
  font-size: 26px;
  color: #0078e5;
}
.feedback-item__body p {
  font-size: 20px;
}
.feedback-item__price {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feedback-item__price span {
  color: #0078e5;
}
.feedback-item__photos {
  display: flex;
  gap: 22px;
}
.feedback-item__photo {
  width: 100%;
}
.feedback-item__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 6px;
}
.feedback-item__img {
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  border-radius: 10px;
  overflow: hidden;
}
.feedback-item__date {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #757575;
  gap: 10px;
}
.feedback-item__date:before {
  font-size: 20px;
}

.rating__item:before {
  color: #d9d9d9;
  font-size: 26px;
}
.rating__item.active:before {
  color: #0078e5;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .feedback-list__body .feedback-item {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 576px) {
  .feedback-item {
    padding: 20px;
  }
  .feedback-item__name:before {
    font-size: 18px;
  }
  .feedback-item__body p {
    font-size: 16px;
  }
  .feedback-item__price {
    font-size: 16px;
  }
  .feedback-item__photos {
    gap: 12px;
  }
  .feedback-item__subtitle {
    font-size: 14px;
  }
  .feedback-item__date {
    margin: 16px 0 0 0;
    font-size: 16px;
    gap: 6px;
  }
  .feedback-item__date:before {
    font-size: 18px;
  }
  .rating__item:before {
    font-size: 18px;
  }
  .feedback-list__body {
    gap: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* ================================================================================================================ */
/* ГЛАВНАЯ СТРАНИЦА =============================================================================================== */
/* ================================================================================================================ */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */