﻿/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/mcyr.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/mcyr.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/mlat.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/mlat.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  font-size: 18px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

a {
  font-size: inherit;
}

.container {
  position: relative;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
}
@media (max-width: 1300px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1220px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

* {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4em;
  font-size: inherit;
}
@media (max-width: 1300px) {
  * {
    line-height: 1.35em;
  }
}

.container p, .container ul, .container ol {
  font-size: 18px;
}
.container p + p, .container p + ul, .container p + ol, .container ul + p, .container ul + ul, .container ul + ol, .container ol + p, .container ol + ul, .container ol + ol {
  margin-top: 16px;
}
main ul {
  padding-left: 24px;
}
main .rich a {
  text-decoration: none;
  font-weight: bold;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
main .rich a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
main .rich a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}

.text-center {
  text-align: center;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner:before {
  content: " ";
  box-sizing: border-box;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #000;
  animation: spinner 0.6s linear infinite;
}

.spinner-xl:before {
  width: 100px;
  height: 100px;
}

.spinner-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 1000;
}
.modal__close {
  pointer-events: none;
  position: absolute;
  width: 30px;
  right: 5px;
  top: -55px;
  z-index: -1;
}
.modal__close svg {
  fill: white;
}
.modal__backdrop {
  transition: background-color ease-in-out 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__container {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: opacity ease-in-out 0.3s, transform ease-in-out 0.3s;
  background-color: white;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 0 50px 7px rgba(35, 61, 78, 0.1);
  min-width: 250px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__hidden .modal__backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.modal__hidden .modal__container {
  opacity: 0;
  transform: translateY(-100px);
}
.action-form {
  z-index: 2;
  width: 100%;
}
.action-form__wrapper {
  max-width: 730px;
}
.action-form__wrapper h1 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 50px;
}
.action-form__wrapper a {
  color: #F4F2F0;
  text-decoration: underline;
  font-weight: bold;
}
.action-form__wrapper p {
  margin-bottom: 36px;
  font-size: 24px;
  font-style: normal;
}
@media (max-width: 1300px) {
  .action-form__wrapper {
    max-width: initial;
    width: 100%;
  }
  .action-form__wrapper h1 {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 32px;
  }
  .action-form__wrapper p {
    margin-bottom: 36px;
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .action-form__wrapper {
    transform: translateY(35px);
  }
}

.header-activities {
  background: rgba(227, 225, 223, 0.4);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-weight: 700;
}
.header-activities .icon {
  width: 36px;
  height: 36px;
}
@media (min-width: 1301px) {
  .header-activities__wrapper {
    min-height: 78px;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-activities__wrapper ul {
    columns: 2;
    column-gap: 40px;
    list-style-position: inside;
  }
}
.header-activities__phones-block {
  display: flex;
  align-items: center;
  flex: 3;
}
.header-activities__phones-block a {
  color: #F4F2F0;
  text-decoration: none;
}
.header-activities__phones-list li {
  list-style: none;
}
.header-activities__phones-list li:not(:last-child) {
  margin-bottom: 2px;
}
@media (max-width: 1300px) {
  .header-activities__phones-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.header-activities__phone-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2px;
}
.header-activities__time-block {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-size: 18px;
}
.header-activities__time-icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.header-activities__social-block {
  flex: 0.5;
  display: flex;
  justify-content: flex-end;
}
.header-activities__social-block a {
  color: #F4F2F0;
  display: flex;
}
.header-activities__social-block a:not(:last-child) {
  margin-right: 16px;
}
@media (max-width: 1300px) {
  .header-activities {
    padding-left: 16px;
    padding-right: 16px;
    z-index: 5;
    position: fixed;
    top: 50px;
    bottom: initial;
    height: 50px;
    backdrop-filter: none;
    background-color: rgba(35, 61, 78, 0.7);
  }
  .header-activities__social-block a {
    color: #233D4E;
  }
  .header-activities__mobile {
    height: 100%;
    justify-content: space-between;
  }
  .header-activities__menu, .header-activities__button-messengers, .header-activities__button-phones, .header-activities__button-close-all {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-activities__menu-close, .header-activities__button-close-all {
    display: none;
  }
  .header-activities button {
    background: none;
    outline: none;
    border: none;
    touch-action: manipulation;
  }
  .header-activities__buttons {
    height: 100%;
    display: flex;
  }
}
@media (max-width: 360px) {
  .header-activities {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.header {
  z-index: 8;
  height: 100vh;
  max-height: 500px;
  min-height: 500px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-color: #233D4E;
  color: #F4F2F0;
  position: relative;
  display: flex;
  align-items: center;
}
.header:before {
  background: #233D4E;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
}
@media (max-width: 1300px) {
  .header {
    align-items: flex-end;
    padding-bottom: 80px;
    height: calc(100vh - 80px);
    background-attachment: initial;
  }
}

.header-nav {
  z-index: 10;
  font-size: 17px;
  height: 70px;
  background: rgba(35, 61, 78, 0.95);
  backdrop-filter: blur(3px);
  color: #F4F2F0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 80px;
}
.header-nav__inner-menu {
  z-index: 4;
  display: none;
  position: absolute;
  flex-direction: column;
  top: 100%;
  left: 0;
  padding: 6px 0;
  border-radius: 0 0 6px 6px;
  background: rgba(35, 61, 78, 0.95);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.header-nav__inner-menu li {
  width: 100%;
  list-style: none;
  position: relative;
}
.header-nav__inner-menu li:after {
  position: absolute;
  content: " ";
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  transition: opacity ease-out 0.15s;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.header-nav__inner-menu li a {
  position: relative;
  display: block;
  padding: 6px 12px;
  z-index: 2;
  text-decoration: none;
  color: #F4F2F0;
  white-space: nowrap;
}
.header-nav__inner-menu li:hover:after {
  opacity: 1;
}
.header-nav__menu {
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header-nav__menu > li {
  position: relative;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.header-nav__menu > li:after {
  z-index: 0;
  position: absolute;
  content: " ";
  top: 0;
  transition: opacity ease-out 0.15s;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0;
}
.header-nav__menu > li > a {
  height: 100%;
  padding: 0 17px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-decoration: none;
  color: #F4F2F0;
  white-space: nowrap;
}
.header-nav__menu > li > a svg {
  z-index: 2;
  margin-left: 4px;
  margin-top: 2px;
}
.header-nav__menu > li:hover > .header-nav__inner-menu {
  display: flex;
}
.header-nav__menu > li:hover:after {
  opacity: 1;
}
.header-nav__logo {
  display: flex;
  height: 100%;
}
.header-nav__logo a {
  display: flex;
  height: 100%;
}
.header-nav__selectors {
  margin-left: 5px;
  display: flex;
}
.header-nav__lang-selector {
  display: flex;
  align-items: center;
  margin-right: 14px;
}
.header-nav__lang-selector a {
  font-weight: bold;
  text-decoration: none;
  color: #F4F2F0;
}
.header-nav__lang-selector a:hover {
  text-decoration: underline;
}
.header-nav__lang-separator {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #F4F2F0;
  border-radius: 50px;
  margin-left: 4px;
  margin-right: 4px;
}
.header-nav__city-selector {
  display: flex;
  flex-direction: column;
}
.header-nav__city-selector-link {
  align-self: flex-end;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.6;
  border-bottom: 1px dashed #F4F2F0;
  color: #F4F2F0;
}
.header-nav__city-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-nav__city-name span {
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .header-nav {
    padding: 0 16px;
    backdrop-filter: none;
    height: 50px;
  }
  .header-nav__menu {
    left: 0;
    right: 0;
    bottom: 0;
    top: 100px;
    overflow: auto;
    position: fixed;
    background: #233D4E;
    z-index: 5;
    display: none;
    flex-direction: column;
    padding-top: 36px;
    align-items: center;
    padding-bottom: 136px;
  }
  .header-nav__menu > li {
    margin: 0;
    padding: 0;
    width: 270px;
    flex-wrap: wrap;
  }
  .header-nav__menu > li > a {
    justify-content: space-between;
    height: initial;
    font-size: 24px;
    padding: 12px 0;
    flex: 1;
    touch-action: manipulation;
  }
  .header-nav__menu > li > a svg {
    height: initial;
  }
  .header-nav__menu > li:hover > .header-nav__inner-menu {
    display: none;
  }
  .header-nav__menu > li:hover:after {
    opacity: 0;
  }
  .header-nav__menu .header-nav__item-opened svg {
    transform: rotateZ(180deg);
  }
  .header-nav__menu .header-nav__item-opened .header-nav__inner-menu {
    display: initial !important;
  }
  .header-nav__inner-menu {
    top: initial;
    left: initial;
    box-shadow: none;
    border: none;
    border-radius: 0;
    position: relative;
    width: 100%;
    margin-left: 30px;
    padding: 11px 0 0;
  }
  .header-nav__inner-menu a {
    font-size: 17px;
    white-space: initial !important;
    padding: 10px 5px !important;
  }
  .header-nav__inner-menu li {
    list-style: initial;
  }
  .header-nav__inner-menu li:after {
    display: none;
  }
  .header-nav__logo {
    z-index: 10;
  }
  .header-nav__logo svg {
    width: 90px;
  }
  .header-nav__lang-selector span, .header-nav__lang-selector a {
    font-size: 18px;
  }
  .header-nav__city-selector span {
    font-size: 15px;
  }
  .header-nav__city-selector svg {
    width: 14px;
  }
  .mobile-phones-opened .header-nav, .mobile-phones-opened .header-activities, .mobile-menu-opened .header-nav, .mobile-menu-opened .header-activities, .mobile-messengers-opened .header-nav, .mobile-messengers-opened .header-activities {
    background-color: #233D4E;
  }
  .mobile-menu-opened {
    overflow: hidden;
  }
  .mobile-menu-opened .header-activities {
    border-bottom: 1px solid rgb(27.1017699115, 47.2345132743, 60.3982300885);
  }
  .mobile-menu-opened .header-activities .header-activities__buttons {
    display: none;
  }
  .mobile-menu-opened .header-activities .header-activities__menu-open {
    display: none;
  }
  .mobile-menu-opened .header-activities .header-activities__menu-close {
    display: initial;
  }
  .mobile-menu-opened .header-nav__menu {
    display: flex;
  }
  .mobile-messengers-opened .header-activities__menu-open, .mobile-messengers-opened .header-activities__button-messengers, .mobile-messengers-opened .header-activities__button-phones, .mobile-phones-opened .header-activities__menu-open, .mobile-phones-opened .header-activities__button-messengers, .mobile-phones-opened .header-activities__button-phones {
    display: none;
  }
  .mobile-messengers-opened .header-activities__button-close-all, .mobile-phones-opened .header-activities__button-close-all {
    display: flex;
  }
  .mobile-messengers-opened .header-activities__social-block {
    display: flex;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    justify-content: center;
    background: #F4F2F0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #233D4E;
    justify-content: space-evenly;
  }
  .mobile-phones-opened .header-activities__phones-block {
    display: flex;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    justify-content: center;
    background: #F4F2F0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #233D4E;
  }
  .mobile-phones-opened .header-activities__phones-block a {
    line-height: 25px;
    color: #233D4E;
  }
}
/* ORDER-BUTTON */
.order-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 40px;
  font-size: 24px;
  font-weight: 700;
  background: #fd6726;
  color: #F4F2F0;
  border-radius: 5px;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}
@media (max-width: 1300px) {
  .order-button {
    width: 100%;
  }
}
.order-button:hover {
  background: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.order-button:active {
  background: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}

.advantages-list {
  padding-left: 0;
  display: flex;
  justify-content: space-between;
}
.advantages-list-item {
  max-width: 335px;
  list-style: none;
}
.advantages-list-item-icon {
  width: 100px;
  height: 100px;
  background: #fd6726;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
}
.advantages-list-item-head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #233D4E;
}
.advantages-list-item-notes {
  font-size: 18px;
}
@media (max-width: 1300px) {
  .advantages-list-item-head {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .advantages-list-item-notes {
    font-size: 18px;
  }
}
@media (max-width: 1220px) {
  .advantages-list {
    flex-direction: column;
  }
  .advantages-list-item {
    max-width: initial;
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
  }
  .advantages-list-item-icon {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    place-self: center;
    align-self: center;
  }
  .advantages-list-item-icon svg {
    width: 40px;
    height: 40px;
  }
}

.header-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header-block__title {
  color: #233D4E;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
.header-block__description {
  color: #233D4E;
  margin-top: 24px;
  font-size: 24px;
  text-align: center;
}
.header-block__description p {
  font-size: 1em;
}
@media (min-width: 1301px) {
  .header-block__title {
    max-width: 964px;
  }
  .header-block__description {
    max-width: 1000px;
  }
}
.header-block__left .header-block__title, .header-block__left .header-block__description {
  text-align: left;
}
.header-block a {
  text-decoration: none;
  font-weight: bold;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
.header-block a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.header-block a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
.header-block_small .header-block__title {
  font-size: 32px;
}
.header-block_small .header-block__description {
  font-size: 18px;
}
.header-block_inverse .header-block__title {
  color: #F4F2F0;
}
.header-block_inverse .header-block__description {
  color: #F4F2F0;
}
.header-block_inverse a {
  color: #fd6726;
}
@media (max-width: 1300px) {
  .header-block__title {
    font-size: 40px;
  }
  .header-block__description {
    font-size: 22.4px;
  }
  .header-block__left .header-block__title, .header-block__left .header-block__description {
    text-align: center;
  }
}
@media (max-width: 1220px) {
  .header-block__title {
    font-size: 32px;
  }
  .header-block__description {
    font-size: 20px;
  }
}

.price-list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #233D4E;
}
.price-list__item, .price-list__value {
  font-weight: bold;
  font-size: 18px;
}
.price-list li {
  list-style: none;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.price-list li:not(:first-child) {
  margin-top: 30px;
}
.price-list li:after {
  content: " ";
  position: absolute;
  background-color: #EEEEEE;
  bottom: -15px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.price-list li a {
  text-decoration: underline;
  color: #233D4E;
  font-weight: bold;
}
@media (max-width: 992px) {
  .price-list__item, .price-list__value {
    font-weight: bold;
    font-size: 14.4px;
  }
  .price-list__value {
    text-align: right;
  }
  .price-list li:not(:first-child) {
    margin-top: 20px;
  }
  .price-list li:after {
    bottom: -10px;
  }
}

.price-table, table {
  color: #233D4E;
  width: 100%;
  border-collapse: collapse;
}
.price-table a, table a {
  text-decoration: underline;
  color: #233D4E;
  font-weight: bold;
}
.price-table th, .price-table td, table th, table td {
  font-size: 18px;
}
.price-table th strong, .price-table td strong, table th strong, table td strong {
  font-size: 18px;
}
@media (max-width: 1220px) {
  .price-table th, .price-table td, table th, table td {
    font-size: 18px;
  }
}
.price-table thead tr, table thead tr {
  background-color: rgba(35, 61, 78, 0.95);
  color: #F4F2F0;
}
.price-table thead th, table thead th {
  padding: 5px;
}
.price-table thead th:first-child, table thead th:first-child {
  border-top-left-radius: 15px;
}
.price-table thead th:last-child, table thead th:last-child {
  border-top-right-radius: 15px;
}
.price-table tbody th, table tbody th {
  text-align: left;
}
.price-table tbody td, .price-table tbody th, table tbody td, table tbody th {
  padding: 13px;
}
.price-table tbody tr:nth-child(odd), table tbody tr:nth-child(odd) {
  background-color: rgba(35, 61, 78, 0.07);
}
.price-table tbody tr:last-child td:first-child, .price-table tbody tr:last-child th:first-child, table tbody tr:last-child td:first-child, table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 15px;
}
.price-table tbody tr:last-child td:last-child, table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}
@media (max-width: 800px) {
  .price-table, table {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
  }
  .price-table thead, .price-table tbody, table thead, table tbody {
    display: flex;
    flex-direction: column;
  }
  .price-table tr, .price-table td, .price-table th, table tr, table td, table th {
    display: block;
    padding: 5px !important;
  }
  .price-table tbody tr, .price-table tbody td, .price-table tbody th, table tbody tr, table tbody td, table tbody th {
    text-align: left !important;
  }
}

.image-cover {
  width: 100%;
  object-fit: cover;
}

.items-list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
}
@media (max-width: 360px) {
  .items-list {
    margin-left: 0;
  }
}
.items-list.granit-list img {
  width: 100%;
  object-fit: cover;
}
.items-list.granit-list li:before {
  content: none !important;
}
.items-list li {
  list-style: none;
  position: relative;
  margin-left: 16px;
  margin-bottom: 16px;
  flex: 1 1 calc(20% - 16px);
  max-width: calc(20% - 16px);
}
@media (max-width: 1300px) {
  .items-list li {
    flex: 1 1 calc(25% - 16px);
    max-width: calc(25% - 16px);
  }
}
@media (max-width: 1220px) {
  .items-list li {
    flex: 1 1 calc(33.3333333333% - 16px);
    max-width: calc(33.3333333333% - 16px);
  }
}
@media (max-width: 800px) {
  .items-list li {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (max-width: 590px) {
  .items-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .items-list li {
    margin-left: 0;
  }
}
.items-list li:before {
  content: " ";
  position: absolute;
  background-color: #fd6726;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
}
.items-list li a {
  height: 100%;
  outline: none;
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 16px;
  background-color: #F4F2F0;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 0 5px 5px 0;
  font-weight: bold;
  text-decoration: none;
  color: #233D4E;
}

.corner-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 80px;
}
.corner-block:before {
  background: white;
  position: absolute;
  content: " ";
  top: -50px;
  height: 80px;
  left: -5%;
  right: -5%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  z-index: 1;
}
.corner-block:after {
  background: white;
  position: absolute;
  content: " ";
  bottom: -50px;
  height: 80px;
  left: -5%;
  right: -5%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
@media (max-width: 1300px) {
  .corner-block:before {
    top: -50px;
    height: 65px;
    left: -15%;
    right: -15%;
  }
  .corner-block:after {
    bottom: -50px;
    height: 65px;
    left: -15%;
    right: -15%;
  }
}
.corner-block__overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.corner-block__overlay:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.corner-block__overlay.opacity-7 {
  background-color: rgba(35, 61, 78, 0.9);
}
.corner-block__overlay.opacity-6 {
  background-color: rgba(35, 61, 78, 0.85);
}
.corner-block__overlay.opacity-5 {
  background-color: rgba(35, 61, 78, 0.8);
}
.corner-block__overlay.opacity-4 {
  background-color: rgba(35, 61, 78, 0.75);
}
.corner-block__overlay.opacity-3 {
  background-color: rgba(35, 61, 78, 0.7);
}
.corner-block__overlay.opacity-2 {
  background-color: rgba(35, 61, 78, 0.6);
}
.corner-block__overlay.opacity-1 {
  background-color: rgba(35, 61, 78, 0.5);
}

.block-text-image-1 {
  min-height: 760px;
  background-image: url("../../images/block-text-image-1.jpg");
}
.block-text-image-1 a {
  text-decoration: underline;
  color: #F4F2F0;
  font-weight: bold;
}
.block-text-image-1__info {
  z-index: 3;
  color: #F4F2F0;
  width: 565px;
}
@media (max-width: 1300px) {
  .block-text-image-1__info {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: 1100px;
  }
}
@media (max-width: 1220px) {
  .block-text-image-1__info {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .block-text-image-1__info {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .block-text-image-1__info {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.block-text-image-1__info_head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.block-text-image-1__info p {
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .block-text-image-1__info p {
    font-size: 18px;
  }
}
.block-text-image-1__image {
  z-index: 3;
  margin-left: 64px;
}
.block-text-image-1__image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1300px) {
  .block-text-image-1 {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .block-text-image-1__info {
    margin: 0 auto;
  }
  .block-text-image-1__info_head {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
  }
  .block-text-image-1__image {
    margin-left: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  .block-text-image-1__image img {
    width: 100%;
    max-width: initial;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
  }
}

.block-text-order-1 {
  flex-direction: column;
  min-height: 337px;
  background-color: #233D4E;
  background-image: url("../../images/bg2.jpg");
  color: #F4F2F0;
}
.block-text-order-1__head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  color: #F4F2F0;
}
.block-text-order-1__notes {
  font-size: 18px;
  max-width: 800px;
  margin-bottom: 40px;
}
.block-text-order-1__notes a {
  color: #F4F2F0;
  text-decoration: underline;
  font-weight: bold;
}
.block-text-order-1__notes p {
  font-size: 18px;
}
.block-text-order-1__container {
  display: flex;
  flex-direction: column;
  width: initial !important;
}
@media (max-width: 992px) {
  .block-text-order-1 {
    background-attachment: initial;
  }
  .block-text-order-1__head {
    font-size: 24px;
  }
  .block-text-order-1__notes {
    text-align: left;
    font-size: 18px;
    line-height: 22px;
  }
}

.inline-order-form {
  display: flex;
  position: relative;
  z-index: 2;
}
.inline-order-form a {
  font-weight: bold;
  text-decoration: none;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
.inline-order-form a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.inline-order-form a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
.inline-order-form .text-error {
  margin-bottom: 30px;
  color: red;
}
.inline-order-form__container {
  margin: 0 auto;
  display: flex;
  border: 8px solid #F4F2F0;
  border-radius: 5px;
  padding: 16px;
}
@media (max-width: 1220px) {
  .inline-order-form__container {
    flex-direction: column;
  }
}
@media (max-width: 590px) {
  .inline-order-form__container {
    width: 100%;
    border-width: 5px;
    padding: 5px;
  }
}
.inline-order-form__inner {
  background-color: rgba(244, 242, 240, 0.9);
  padding: 50px;
  border-radius: 5px;
  flex: 1 1 100%;
  max-width: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inline-order-form__inner_centered {
  align-items: center;
  justify-content: center;
}
@media (max-width: 590px) {
  .inline-order-form__inner {
    max-width: initial;
    padding: 25px 15px 25px 15px;
  }
}
.inline-order-form .inline-order-form__inner + .inline-order-form__inner {
  margin-left: 16px;
}
@media (max-width: 1220px) {
  .inline-order-form .inline-order-form__inner + .inline-order-form__inner {
    margin-left: 0;
    margin-top: 16px;
  }
}
@media (max-width: 590px) {
  .inline-order-form .inline-order-form__inner + .inline-order-form__inner {
    margin-bottom: 5px;
  }
}
.inline-order-form p {
  font-size: 18px;
  text-align: center;
}
.inline-order-form p + p {
  margin-top: 24px;
}
@media (max-width: 1220px) {
  .inline-order-form p {
    font-size: 18px;
  }
  .inline-order-form p + p {
    margin-top: 15px;
  }
}
@media (max-width: 1220px) {
  .inline-order-form strong {
    line-height: 32px;
  }
}
.inline-order-form__title {
  margin-bottom: 34px;
  font-weight: bold;
  color: #233D4E;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 590px) {
  .inline-order-form__title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.inline-order-form__group {
  position: relative;
  margin-bottom: 30px;
}
.inline-order-form__button {
  width: 100%;
}
.inline-order-form__socials {
  padding-left: 0;
  margin-top: 35px;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.inline-order-form__socials li {
  list-style: none;
}
.inline-order-form textarea {
  resize: none;
  height: 100px;
  font-size: 14px !important;
}
.inline-order-form input, .inline-order-form textarea {
  background: none;
  color: #233D4E;
  font-size: 24px;
  padding: 5px;
  display: block;
  border: none;
  width: 100%;
}
@media (max-width: 1220px) {
  .inline-order-form input, .inline-order-form textarea {
    font-size: 18px;
  }
}
.inline-order-form input {
  border-radius: 0;
  border-bottom: 2px solid #233D4E;
  padding-left: 5px;
}
.inline-order-form textarea {
  border-radius: 5px;
  border: 2px solid #233D4E;
}
.inline-order-form input:focus, .inline-order-form textarea:focus {
  outline: none;
}
.inline-order-form input:focus ~ label,
.inline-order-form input:valid ~ label,
.inline-order-form textarea:focus ~ label {
  bottom: 100%;
  color: #fd6726;
  font-size: 11.2px;
}
.inline-order-form textarea:not(:placeholder-shown) ~ label,
.inline-order-form textarea:focus ~ label {
  bottom: calc(100% + 5px);
}
.inline-order-form label {
  color: #233D4E;
  font-size: 11.2px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  bottom: 10px;
  transition: 300ms ease all;
}
.inline-order-form input ~ label {
  font-size: 24px;
}
@media (max-width: 1220px) {
  .inline-order-form input ~ label {
    font-size: 18px;
  }
}

.block-how-order-master {
  min-height: 1061px;
  background-image: url("../../images/block-order-master-bg.jpg");
  flex-direction: column;
  display: flex;
}
.block-how-order-master a {
  color: #F4F2F0;
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 1300px) {
  .block-how-order-master svg {
    width: 40px;
    height: 40px;
  }
}
.block-how-order-master__container {
  display: flex;
  flex-direction: column;
}
.block-how-order-master__line {
  display: flex;
}
@media (max-width: 1300px) {
  .block-how-order-master__line {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }
  .block-how-order-master__line-reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 360px) {
  .block-how-order-master__line {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.block-how-order-master .block-how-order-master__line + .block-how-order-master__line {
  margin-top: 40px;
}
@media (max-width: 1300px) {
  .block-how-order-master .block-how-order-master__line + .block-how-order-master__line {
    margin: 0;
  }
}
.block-how-order-master__item {
  min-width: 580px;
  width: 100%;
  height: 200px;
  background: rgba(253, 103, 38, 0.7);
  color: #F4F2F0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1300px) {
  .block-how-order-master__item {
    margin-bottom: 51px !important;
    min-width: initial;
    height: 200px;
    border-radius: 0;
  }
}
.block-how-order-master__item span {
  width: 450px;
  text-align: center;
  font-size: 18px;
  margin-top: 12px;
}
@media (max-width: 1300px) {
  .block-how-order-master__item span {
    width: 90%;
    text-align: center;
    margin-top: 12px;
  }
}
@media (max-width: 590px) {
  .block-how-order-master__item span {
    font-size: 18px;
  }
}
.block-how-order-master .block-how-order-master__item + .block-how-order-master__item {
  margin-left: 40px;
}
@media (max-width: 1300px) {
  .block-how-order-master .block-how-order-master__item + .block-how-order-master__item {
    margin-left: 0;
  }
}
.block-how-order-master .right-triangle {
  position: relative;
}
.block-how-order-master .right-triangle:after {
  position: absolute;
  content: " ";
  left: 100%;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid rgba(253, 103, 38, 0.7);
}
.block-how-order-master .left-triangle {
  clip-path: polygon(-40px 0%, calc(50% - 40px) 0%, 50% 40px, calc(50% + 40px) 0%, 100% 0%, 100% 100%, -40px 100%, -40px 0%);
  position: relative;
}
.block-how-order-master .left-triangle:after {
  position: absolute;
  content: " ";
  right: 100%;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid rgba(253, 103, 38, 0.7);
}
.block-how-order-master .left-triangle svg {
  margin-top: 15px;
}
.block-how-order-master .bottom-triangle {
  clip-path: polygon(0% 0%, 100% 0%, calc(100% + 40px) calc(100% + 40px), 0% calc(100% + 40px), 0% calc(50% + 40px), 40px 50%, 0% calc(50% - 40px), 0% 0%);
  position: relative;
}
.block-how-order-master .bottom-triangle:after {
  position: absolute;
  content: " ";
  top: 100%;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 40px solid rgba(253, 103, 38, 0.7);
}
.block-how-order-master .top-triangle {
  clip-path: polygon(0% -40px, 100% -40px, 100% calc(50% - 40px), calc(100% - 40px) 50%, 100% calc(50% + 40px), 100% 100%, 0% 100%, 0% -40px);
}
@media (max-width: 1300px) {
  .block-how-order-master .right-triangle:after {
    left: initial;
    border-top: initial;
    border-bottom: initial;
    border-left: initial;
    top: 100%;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    border-top: 35px solid rgba(253, 103, 38, 0.7);
  }
  .block-how-order-master .left-triangle {
    clip-path: polygon(-35px 0%, calc(50% - 35px) 0%, 50% 35px, calc(50% + 35px) 0%, 100% 0%, 100% calc(100% + 35px), 0 calc(100% + 35px), 0% 0%);
    position: relative;
  }
  .block-how-order-master .left-triangle:after {
    right: initial;
    border-top: initial;
    border-bottom: initial;
    border-right: initial;
    top: 100%;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    border-top: 35px solid rgba(253, 103, 38, 0.7);
  }
  .block-how-order-master .left-triangle svg {
    margin-top: 15px;
  }
  .block-how-order-master .bottom-triangle {
    clip-path: polygon(-35px 0%, calc(50% - 35px) 0%, 50% 35px, calc(50% + 35px) 0%, 100% 0%, 100% calc(100% + 35px), 0 calc(100% + 35px), 0% 0%);
    position: relative;
  }
  .block-how-order-master .bottom-triangle:after {
    border-right: initial;
    border-left: initial;
    border-top: initial;
    top: 100%;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    border-top: 35px solid rgba(253, 103, 38, 0.7);
  }
  .block-how-order-master .bottom-triangle svg {
    margin-top: 20px;
  }
  .block-how-order-master .top-triangle {
    clip-path: polygon(-35px 0%, calc(50% - 35px) 0%, 50% 35px, calc(50% + 35px) 0%, 100% 0%, 100% calc(100% + 35px), 0 calc(100% + 35px), 0% 0%);
    position: relative;
  }
  .block-how-order-master .top-triangle:after {
    display: none;
  }
  .block-how-order-master .top-triangle svg {
    margin-top: 25px;
  }
}

.city-list__item-text {
  display: flex;
  font-size: 24px;
  flex: 1 1 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.city-list__wrapper {
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -30px;
}
.city-list__wrapper li {
  margin-bottom: 50px;
  margin-left: 30px;
  flex: 1 1 calc(33.3333333333% - 30px);
  list-style: none;
  position: relative;
}
.city-list__wrapper li a {
  outline: none;
  height: 268px;
  background-color: #F4F2F0;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  font-weight: bold;
  text-decoration: none;
  color: #233D4E;
  display: flex;
  flex-direction: column;
}
.city-list__wrapper li img {
  object-fit: cover;
  height: 208px;
  width: 100%;
}
@media (max-width: 1300px) {
  .city-list__wrapper li {
    margin-bottom: 24px;
  }
  .city-list__wrapper li a {
    height: 240px;
  }
  .city-list__wrapper li img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .city-list__wrapper li {
    flex: 1 1 calc(50% - 30px);
  }
}
@media (max-width: 590px) {
  .city-list__wrapper li {
    flex: 1 1 100%;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
}
@media (max-width: 1300px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1220px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.picture-block {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
.picture-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1300px) {
  .picture-block {
    max-width: 100%;
  }
  .picture-block + .picture-block {
    margin-top: -40px !important;
  }
  .picture-block + .picture-block .picture-block__container {
    padding-top: 50px;
  }
  .picture-block + .picture-block .picture-block__container:before {
    display: none;
  }
}
.picture-block__container {
  display: flex;
  align-items: center;
}
@media (max-width: 1300px) {
  .picture-block__container {
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #F4F2F0;
    padding-bottom: 40px;
  }
  .picture-block__container:before {
    background: white;
    position: absolute;
    content: " ";
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: 5;
    top: -50px;
    height: 65px;
    left: -15%;
    right: -15%;
  }
  .picture-block__container:after {
    background: white;
    position: absolute;
    content: " ";
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    bottom: -50px;
    height: 65px;
    left: -15%;
    right: -15%;
  }
}
.picture-block a {
  text-decoration: none;
  font-weight: bold;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
.picture-block a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.picture-block a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
.picture-block p {
  font-size: 18px;
}
.picture-block p + p {
  margin-top: 16px;
}
@media (max-width: 992px) {
  .picture-block p {
    font-size: 18px;
  }
}
.picture-block__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(35, 61, 78, 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color ease-out 0.3s;
}
.picture-block__overlay svg {
  opacity: 0.9;
  transition: opacity ease-out 0.3s;
}
.picture-block__overlay:hover {
  background-color: rgba(35, 61, 78, 0.5);
}
.picture-block__overlay:hover svg {
  opacity: 0.6;
}
.picture-block__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  color: #233D4E;
}
.picture-block__image {
  object-fit: cover;
  min-width: 500px;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.picture-block__image img {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .picture-block__image {
    width: 100%;
    height: 300px;
    min-width: initial;
    border-radius: 0;
  }
}
.picture-block__text {
  background-color: #F4F2F0;
  min-height: 310px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0 5px 5px 0;
  padding: 40px;
}
@media (max-width: 1300px) {
  .picture-block__text {
    margin-top: 40px;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    min-height: initial;
  }
}
.picture-block__wrapper {
  max-width: 530px;
}
@media (max-width: 1300px) {
  .picture-block__wrapper {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1100px;
  }
}
@media (max-width: 1220px) {
  .picture-block__wrapper {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .picture-block__wrapper {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .picture-block__wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.picture-block__right .picture-block__container {
  flex-direction: row-reverse;
}
.picture-block__right .picture-block__text {
  box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 5px 0 0 5px;
}
@media (max-width: 1300px) {
  .picture-block__right .picture-block__container {
    flex-direction: column;
  }
  .picture-block__right .picture-block__text {
    box-shadow: none;
    border-radius: 0;
  }
}

.block-reviews {
  min-height: 859px;
  background-image: url("../../images/block-reviews.jpg");
  flex-direction: column;
  display: flex;
}
.block-reviews__container {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  list-style: none;
}
.block-reviews a {
  color: #F4F2F0;
  text-decoration: underline;
}
.block-reviews__item {
  padding: 24px;
  flex: 1 1 calc(33.3333333333% - 16px);
  background-color: #F4F2F0;
  border-radius: 5px;
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .block-reviews__item {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 590px) {
  .block-reviews__item {
    flex: 1 1 100%;
  }
}
.block-reviews__item img {
  width: 50px;
  height: 50px;
}
.block-reviews__item-title-wrapper {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
.block-reviews__item-title {
  margin-left: 15px;
}
.block-reviews__item-name {
  font-weight: 600;
  font-size: 14px;
}
.block-reviews__item-date {
  font-size: 14px;
}
.block-reviews__item-review {
  height: 160px;
  overflow-y: auto;
  font-size: 18px;
  padding-right: 5px;
  scrollbar-color: black;
}
.block-reviews__item-review::-webkit-scrollbar {
  width: 3px;
  -webkit-appearance: none;
  scrollbar-color: black;
}
.block-reviews__item-review::-webkit-scrollbar-track {
  background: #A7A7A7;
  border-radius: 3px;
}
.block-reviews__item-review::-webkit-scrollbar-thumb {
  background: #233D4E;
  width: 5px;
  border-radius: 3px;
}
.block-reviews__item-review::-webkit-scrollbar-thumb:hover {
  background: rgba(35, 61, 78, 0.7);
}
.questions-block {
  display: flex;
}
@media (min-width: 1301px) {
  .questions-block {
    justify-content: space-between;
  }
  .questions-block__title {
    max-width: 345px;
  }
}
.questions-block__items {
  padding-left: 0;
}
.questions-block .questions-block__item + .questions-block__item {
  margin-top: 16px;
}
.questions-block__item {
  display: flex;
}
.questions-block__item-content {
  width: 690px;
}
.questions-block__item-action {
  width: 40px;
  height: 40px;
  background-color: #fd6726;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 20px;
  cursor: pointer;
  transition: background-color ease-out 0.3s;
}
.questions-block__item-action:hover {
  background-color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.questions-block__item-action:active {
  background-color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
.questions-block__item-title {
  font-weight: 600;
  font-size: 24px;
  min-height: 40px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #F4F2F0;
  color: #233D4E;
}
.questions-block__item-answer {
  display: none;
  padding: 10px 20px;
}
.questions-block__item-answer a {
  font-weight: bold;
  text-decoration: none;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
.questions-block__item-answer a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.questions-block__item-answer a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
.questions-block__item-opened .questions-block__item-content {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background-color: #F4F2F0;
}
.questions-block__item-opened .questions-block__item-title {
  background-color: #fd6726;
  color: #F4F2F0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.questions-block__item-opened .questions-block__item-answer {
  display: block;
}
@media (max-width: 1300px) {
  .questions-block {
    flex-direction: column;
  }
  .questions-block .questions-block__item-action {
    min-width: 40px;
    min-height: 40px;
    margin-right: 10px;
  }
  .questions-block .questions-block__item-content {
    width: 100%;
  }
  .questions-block .questions-block__item-title {
    font-size: 18px;
    align-items: center;
    display: flex;
  }
  .questions-block .questions-block__item-answer {
    font-size: 18px;
  }
}

.link-block, .big-link {
  text-align: center;
}
.link-block a, .big-link a {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  border-bottom: 2px dashed #fd6726;
  color: #fd6726;
  transition: color ease-out 0.3s;
}
.link-block a:hover, .big-link a:hover {
  color: rgb(252.7671232877, 85.301369863, 12.7328767123);
}
.link-block a:active, .big-link a:active {
  color: rgb(237.8082191781, 73.4246575342, 2.1917808219);
}
@media (max-width: 1300px) {
  .link-block a, .big-link a {
    font-size: 20px;
  }
}

.columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}

.columns .column {
  border: 5px solid #233d4e;
}
@media (min-width: 1221px) {
  .columns .column {
    width: calc((100% - 100px) / 3);
  }
}
@media (max-width: 1221px) {
  .columns .column {
    width: calc((100% - 100px) / 2);
  }
}
@media (max-width: 800px) {
  .columns .column {
    width: 100%;
  }
}

.block-accent {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 32px;
  border: 5px solid #233d4e;
}

.columns .column .block-accent {
  border: none !important;
}

.columns .column .container {
  padding-left: 0;
  padding-right: 0;
}

.block-accent .container {
  padding-left: 0;
  padding-right: 0;
  margin: 32px 0;
}

.block-accent__round {
  border-radius: 15px;
}

.block-accent__invert {
  border-color: #fd6726 !important;
}

.block-accent__badge {
  text-align: center;
  color: #f4f2f0;
  background-color: #fd6726;
  padding: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 550px;
  align-self: center;
  margin-top: -15px;
}

.block-accent__badge-bordered {
  background-color: #f8f9f9;
  color: #233d4e;
  border: 3px solid #233d4e;
}

.block-accent__badge span {
  font-size: 1.1em;
  font-weight: bold;
  white-space: nowrap;
}

.footer {
  background-color: #233D4E;
  color: #F4F2F0;
}
.footer a {
  color: #F4F2F0;
  text-decoration: none;
  font-weight: 600;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  margin-bottom: 38px;
}
@media (min-width: 1301px) {
  .footer__container {
    padding: 0;
  }
}
.footer__first-section {
  max-width: 235px;
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__work-time {
  font-size: 16px;
  margin-bottom: 16px;
}
.footer__policy {
  font-size: 16px;
  margin-top: auto;
  margin-bottom: 16px;
}
.footer__copyright {
  font-size: 16px;
}
.footer__middle-section {
  padding-right: 30px;
  padding-left: 40px;
}
@media (max-width: 1300px) {
  .footer__middle-section {
    padding: 0;
  }
}
.footer__menu-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 1300px) {
  .footer__menu-items {
    margin-bottom: -16px;
  }
}
.footer__menu-items li {
  align-items: center;
  display: flex;
  margin-right: 28px;
  margin-bottom: 16px;
  cursor: pointer;
}
.footer__menu-items li a {
  text-decoration: none;
  color: #F4F2F0;
  font-size: 17px;
}
.footer__menu-items li svg {
  margin-left: 4px;
  margin-top: 2px;
}
@media (max-width: 1300px) {
  .footer__last-section {
    margin-left: 0;
  }
}
.footer__order-button {
  font-size: 18px;
  margin-bottom: 30px;
  white-space: nowrap;
  width: 100%;
}
.footer__contacts {
  margin-bottom: 30px;
  line-height: 30px;
}
.footer__contacts ul {
  list-style: none;
}
.footer__contacts ul li {
  margin-top: 4px;
  margin-bottom: 4px;
}
.footer__contacts a {
  position: relative;
  display: block;
  font-weight: 600;
}
.footer__socials {
  display: flex;
  margin-right: -16px;
}
.footer__socials svg {
  display: block;
  margin-right: 16px;
}
@media (max-width: 1300px) {
  .footer__socials {
    justify-content: space-between;
    margin-right: 0;
  }
  .footer__socials svg {
    margin-right: 0;
  }
}
@media (max-width: 1300px) {
  .footer__container {
    flex-direction: column;
  }
  .footer__menu-items {
    flex-direction: column;
  }
  .footer__menu-items li + li {
    margin-top: 15px;
  }
  .footer__work-time {
    margin-bottom: 0;
  }
  .footer .footer__first-section, .footer .footer__last-section, .footer .footer__menu {
    min-width: 100%;
    border-bottom: 2px solid #F4F2F0;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .footer__middle-section {
    order: 2;
    width: 100%;
  }
  .footer__order-button {
    width: 100%;
    height: 40px;
    margin-bottom: 25px;
  }
  .footer__contacts {
    line-height: 22px;
    margin-bottom: 25px;
  }
  .footer__contacts a {
    font-weight: bold;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.no-scroll {
  overflow: hidden;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-negative-1 {
  margin-top: -170px;
}

.dn {
  display: none;
}

@media (max-width: 1300px) {
  .s-mt-0 {
    margin-top: 0px;
  }
  .s-mb-0 {
    margin-bottom: 0px;
  }
  .s-mt-24 {
    margin-top: 24px;
  }
  .s-mb-24 {
    margin-bottom: 24px;
  }
  .s-mt-40 {
    margin-top: 40px;
  }
  .s-mb-40 {
    margin-bottom: 40px;
  }
  .s-mt-50 {
    margin-top: 50px;
  }
  .s-mb-50 {
    margin-bottom: 50px;
  }
  .mt-negative-1 {
    margin-top: -140px;
  }
  .s-dn {
    display: none;
  }
  .s-db {
    display: block;
  }
  .s-df {
    display: flex;
  }
}
