:root {
  --red: #b20003;
  --white: #fff;
  --black: #212121;
  --grey: #949494;
  --light-gray: #f5f5f5;
}

:root {
  color-scheme: light only;
}

body {
  font-size: 18px;
  line-height: 144%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--black);
}

a {
  transition: 0.4s ease;
  text-decoration: none;
  color: var(--black);
}
a:visited {
  color: var(--black);
}
a:hover {
  color: var(--red);
}
a:active {
  color: var(--red);
}

h1,
h2,
h3,
.main-title,
.section-title {
  margin: 0 0 24px;
  font-weight: 700;
}

h1,
.main-title {
  font-size: 58px;
  line-height: 117%;
  font-weight: 500;
}

h2,
.section-title {
  font-size: 48px;
  line-height: 116%;
  font-weight: 500;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  border: 1px solid var(--red);
  min-width: 196px;
  padding: 14px 22px;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--red);
}
button:visited,
.button:visited {
  color: var(--red);
}
button:hover,
.button:hover {
  background-color: var(--red);
  color: var(--white);
}
button--secondary,
.button--secondary {
  background-color: var(--red);
  color: var(--white);
}
button--secondary:visited,
.button--secondary:visited {
  color: var(--white);
}
button--secondary:hover,
.button--secondary:hover {
  background-color: transparent;
  color: var(--red);
}

input {
  font-size: 16px;
  line-height: 150%;
  border: 1px solid var(--grey);
  width: 100%;
  padding: 13px 23px;
  background-color: transparent;
  color: var(--black);
}
input:focus {
  border-color: var(--black);
  color: var(--black);
}
input:focus-visible {
  outline: none;
}
/*
input:invalid {
  border-color: #ff4949;
  color: #ff4949;
}
*/
input::placeholder {
  color: var(--grey);
}

textarea {
  border: 1px solid var(--grey);
  width: 100%;
  height: 123px;
  padding: 15px 23px;
}

p {
  margin-bottom: 8px;
}

ul {
  padding-left: 18px;
}
ul li::marker {
  color: var(--grey);
}

@media (max-width: 1399px) {
  h1,
  .main-title {
    font-size: 48px;
    line-height: 116%;
  }
  h2,
  .section-title {
    font-size: 36px;
    line-height: 117%;
  }
}
@media (max-width: 1199px) {
  h1,
  .main-title {
    font-size: 38px;
    line-height: 121%;
  }
  h2,
  .section-title {
    font-size: 28px;
    line-height: 150%;
  }
}
@media (max-width: 991px) {
  h1,
  .main-title {
    font-size: 28px;
    line-height: 150%;
  }
  h2,
  .section-title {
    font-size: 20px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  h1,
  h2,
  h3,
  .main-title,
  .section-title {
    margin: 0 0 16px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
    line-height: 129%;
  }
  h1,
  h2,
  h3,
  .main-title,
  .section-title {
    margin: 0 0 8px;
  }
  h1,
  .main-title {
    font-size: 26px;
    line-height: 123%;
  }
  button,
  .button {
    min-width: 100%;
  }
}
.page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.ptb-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-96 {
  padding-bottom: 96px;
}

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

.text-red {
  color: var(--red);
}

@media (max-width: 767px) {
  .ptb-96 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .pt-96 {
    padding-top: 48px;
  }
  .pb-96 {
    padding-bottom: 48px;
  }
}
.site-header {
  position: sticky;
  z-index: 99;
  top: 0;
  padding: 16px 0;
  background-color: var(--white);
}
.site-header__logo-img {
  max-width: 100%;
width: 50%;
}
.site-header__nav {
  display: flex;
  justify-content: center;
}
.site-header__nav-list {
  display: flex;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav-item--has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-header__nav-item--has-children::after {
  content: "";
  transition: 0.4s ease;
  width: 20px;
  height: 20px;
  background: url("../img/global/chevron-down-20-black.svg");
}
.site-header__nav-item--has-children:hover::after {
  transform: rotate(180deg);
}
.site-header__nav-item--has-children:hover .site-header__nav-sublist {
  opacity: 1;
  visibility: visible;
  max-height: 400px;
}
.site-header__nav-link {
  font-weight: 700;
  white-space: nowrap;
}
.site-header__nav-sublist {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  margin: 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  max-height: 0;
  padding: 24px;
  background-color: var(--white);
  list-style: none;
}
.site-header__nav-sublist .site-header__nav-link {
  font-weight: 400;
}
.site-header__phone {
  font-size: 20px;
  line-height: 130%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-weight: 500;
}
.site-header__phone::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/phone-24-red.svg");
}
.site-header__mobile-menu-btn {
  margin-left: auto;
  border: 0;
  min-width: 0;
  width: 24px;
  height: 24px;
  padding: 0;
}
.site-header__mobile-menu-btn svg:last-child {
  display: none;
}
.site-header__mobile-menu-btn path {
  transition: 0.4s ease;
}
.site-header__mobile-menu-btn:hover {
  background-color: transparent;
}
.site-header__mobile-menu-btn:hover path {
  fill: var(--red);
}
.site-header__mobile-menu-btn.active svg:first-child {
  display: none;
}
.site-header__mobile-menu-btn.active svg:last-child {
  display: block;
}
.site-header:not(.site-header--home-page) {
  border-bottom: 1px solid var(--light-gray);
}

@media (max-width: 1199px) {
  .site-header__nav-list {
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .site-header__phone {
    font-size: 0;
  }
}
.site-main {
  position: relative;
  flex: 1;
}

.site-footer__top {
  border-top: 1px solid var(--light-gray);
  padding: 48px 0;
}
.site-footer__logo-img {
  max-width: 100%;
	width: 50%;
}
.site-footer__title {
  margin-bottom: 8px;
  font-weight: 600;
}
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu-link--main {
  font-weight: 600;
}
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 16px 0 24px;
}
.site-footer__phone {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer__phone::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/phone-24-red.svg");
}
.site-footer__email {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer__email::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/email-24-red.svg");
}
.site-footer__messengers {
  display: flex;
  gap: 24px;
}
.site-footer__messenger path {
  transition: 0.6s ease;
}
.site-footer__messenger:hover path:first-child {
  fill: var(--black);
}
.site-footer__bottom {
  padding: 24px 0;
  background-color: var(--light-gray);
}
.site-footer__copyright {
  font-size: 16px;
  line-height: 150%;
}
.site-footer__policy {
  font-size: 16px;
  line-height: 150%;
  margin-left: auto;
}

@media (max-width: 575px) {
  .site-footer__contacts {
    gap: 16px;
  }
  .site-footer__copyright {
    margin: 0 auto 16px;
  }
  .site-footer__policy {
    margin: 0 auto;
  }
}
.slick-slider {
  margin: 0 -12px;
}

.other-services .slick-track {
  display: flex;
}

.slick-slide {
  padding: 0 12px;
}
.other-services .slick-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.slick-dots {
  display: flex;
  align-items: center;
  order: 2;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slick-dots li {
  display: flex;
  margin-bottom: 0;
  height: 8px;
}
.slick-dots li.slick-active button {
  background-color: var(--red);
}
.slick-dots button {
  border: 0;
  border-radius: 50%;
  min-width: auto;
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: var(--grey);
  font-size: 0;
}

.slick-arrow {
  border: none;
  min-width: auto;
  padding: 0;
}
.slick-arrow.slick-prev {
  order: 1;
}
.slick-arrow.slick-next {
  order: 3;
}
.slick-arrow:hover {
  background-color: transparent;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}
.mobile-menu__sublist-wrapper {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: 0.4s ease;
  width: 100vw;
  height: 100%;
  padding: 96px 24px 48px 24px;
  background-color: #ffffff;
}
.mobile-menu__sublist-wrapper.active {
  transform: translateX(0%);
}
.mobile-menu__sublist-header {
  position: relative;
  padding: 16px 0;
}
.mobile-menu__sublist-header svg {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.mobile-menu__sublist-title {
  font-size: 18px;
  line-height: 144%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}
.mobile-menu__sublist {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu__item {
  border-bottom: 1px solid var(--light-gray);
  padding: 12px 0;
}
.mobile-menu__item--has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__item--has-children > svg {
  cursor: pointer;
}
.mobile-menu__item--has-children:has(svg.active) .mobile-menu__sublist {
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.2s ease;
  max-height: 0;
  padding: 0;
}
.mobile-menu__item:last-child {
  border-bottom: none;
}
.mobile-menu__link {
  font-size: 18px;
  line-height: 144%;
}
.mobile-menu__email {
  font-size: 18px;
  line-height: 144%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.mobile-menu__email::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/email-24-red.svg");
}
.mobile-menu__messengers {
  display: flex;
  gap: 24px;
}
.mobile-menu__messenger path {
  transition: 0.6s ease;
}
.mobile-menu__messenger:hover path:first-child {
  fill: var(--black);
}

.modal.fade {
  background-color: rgba(33, 33, 33, 0.6);
}
.modal.fade.order-service-modal, .modal.fade.thanks-modal {
  z-index: 9999;
}

.modal-dialog--mobile-menu {
  margin: 0;
  min-width: 100vw;
  height: 100vh;
}
.order-service-modal .modal-dialog {
  min-width: 636px;
}
.modal-dialog > * {
  position: relative;
  pointer-events: auto;
}

.modal-wrapper {
  position: relative;
  overflow-y: auto;
  padding: 48px;
  background-color: var(--white);
}
.modal-wrapper--mobile-menu {
  height: 100%;
  padding: 120px 0 48px;
}
.thanks-modal .modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 96px;
  background: #fff url("../img/thanks-page/thanks-bg.png") center/cover no-repeat;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  border-radius: 0;
  min-width: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: url("../img/global/close-24-red.svg");
  font-weight: 500;
}
.modal-close-btn:hover {
  background: url("../img/global/close-24-red.svg");
}

@media (max-width: 767px) {
  .order-service-modal .modal-dialog {
    min-width: calc(100% - 24px);
  }
}
@media (max-width: 575px) {
  .modal-dialog--mobile-menu {
    width: 100%;
  }
  .modal-wrapper {
    padding: 48px 16px 24px;
  }
  .modal-wrapper--mobile-menu {
    padding-top: 108px;
  }
  .thanks-modal .modal-wrapper {
    padding: 48px 24px 24px;
  }
}
.modal.lightbox {
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(33, 33, 33, 0.8);
}
.modal.lightbox .btn-close {
  top: -30px !important;
  min-width: 0;
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  background: url("../img/global/close-30-white.svg") center/contain no-repeat !important;
}
.modal.lightbox .btn-close:hover {
  box-shadow: none;
  background-color: transparent !important;
}
.modal.lightbox .btn-close svg {
  display: none;
}
.modal.lightbox .carousel-control {
  min-width: auto;
}
.modal.lightbox .carousel-control:hover, .modal.lightbox .carousel-control:focus {
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}
.modal.lightbox .carousel-control-next-icon {
  background: url("../img/global/arrow-right-circle-30.svg") center/contain no-repeat;
}
.modal.lightbox .carousel-control-prev-icon {
  background: url("../img/global/arrow-left-circle-30.svg") center/contain no-repeat;
}
.modal.lightbox .carousel-item .ratio {
  background: transparent !important;
}

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

.accordion-item {
  border: 1px solid var(--light-gray);
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

.accordion-button {
  padding: 23px;
  font-weight: 600;
}
.accordion-button::after {
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-down-24-grey.svg");
}
.accordion-button:hover {
  background-color: transparent;
  color: var(--black);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: var(--white);
  color: var(--black);
}
.accordion-button:not(.collapsed)::after {
  transform: none;
  background: url("../img/global/chevron-up-24-red.svg");
}

.accordion-body {
  font-size: 16px;
  line-height: 150%;
  padding: 0 24px 24px;
}

@media (max-width: 575px) {
  .accordion-button {
    padding: 15px;
  }
  .accordion-body {
    font-size: 14px;
    line-height: 129%;
    padding: 0 16px 16px;
  }
}
.tab-pane {
  position: relative;
}

.nav-tabs {
  display: flex;
  gap: 16px 24px;
  margin-bottom: 30px;
  border-bottom: 0;
}

.prices-page .nav-item.hidden {
  display: none;
}

.nav-link {
  font-size: 18px;
  line-height: 144%;
  margin: 0 !important;
  border: 1px solid var(--red) !important;
  border-radius: 0 !important;
  min-width: 0;
  padding: 11px 23px;
  color: var(--red);
}
.nav-link:hover {
  color: var(--white);
}
.nav-link.active {
  background-color: var(--red) !important;
  color: var(--white) !important;
}

.tab-content .nav-tabs {
  gap: 8px 24px;
  margin-bottom: 48px;
}
.tab-content .nav-link {
  border: 0 !important;
  padding: 0;
  background-color: transparent;
  color: var(--grey);
}
.tab-content .nav-link.active {
  border-bottom: 1px solid var(--black) !important;
  background-color: transparent !important;
  color: var(--black) !important;
}

@media (max-width: 767px) {
  .nav-tabs {
    gap: 16px;
  }
  .nav-item {
    width: calc(50% - 8px);
  }
  .nav-link {
    width: 100%;
    padding: 11px 10px;
  }
  .tab-content .nav-tabs {
    gap: 8px 16px;
  }
  .tab-content .nav-item {
    width: auto;
  }
}
@media (max-width: 575px) {
  .nav-item {
    width: 100%;
  }
  .tab-content .nav-tabs {
    margin-bottom: 24px;
  }
  .tab-content .nav-link {
    font-size: 14px;
    line-height: 129%;
  }
}
.breadcrumbs {
  position: relative;
  z-index: 2;
}
.breadcrumbs__wrapper {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  padding: 48px 0;
  color: #8c8c8c;
  list-style: none;
}
.breadcrumbs__item {
  display: inline;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  color: var(--red);
}
.breadcrumbs__link {
  color: var(--red);
}
.breadcrumbs__link:visited {
  color: var(--red);
}

@media (max-width: 575px) {
  .breadcrumbs__wrapper {
    font-size: 14px;
    line-height: 129%;
    padding: 24px 0;
  }
}
.announcement {
  padding: 16px 0;
  backdrop-filter: blur(20px);
  background: rgba(245, 245, 245, 0.8);
}
.announcement__text {
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 1399px) {
  .announcement__text {
    font-size: 16px;
    line-height: 150%;
  }
}
.main-screen {
  position: relative;
  background: linear-gradient(90deg, #e0e0e0 0%, #fff 100%);
}
.main-screen::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56vw;
  background: url("../img/home-page/main-screen-bg-skyfest.png") left/cover no-repeat;
}
.main-screen__item-text {
  font-size: 22px;
  line-height: 145%;
  margin-bottom: 32px;
}
.main-screen__item-img {
  margin: auto 0 0 auto;
  max-width: 100%;
}
.main-screen__controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1399px) {
  .main-screen__item-text {
    font-size: 20px;
    line-height: 130%;
  }
}
@media (max-width: 1199px) {
  .main-screen__item-text {
    font-size: 18px;
    line-height: 144%;
  }
}
@media (max-width: 991px) {
  .main-screen__item-text br {
    display: none;
  }
  .main-screen__controls {
    bottom: 24px;
  }
}
@media (max-width: 767px) {
  .main-screen__item-text {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
  }
  .main-screen__item-img {
    margin: auto auto 0;
    max-width: 58vw;
  }
}
@media (max-width: 575px) {
  .main-screen::before {
    content: none;
  }
  .main-screen__item-text {
    font-size: 14px;
    line-height: 129%;
    margin-bottom: 16px;
  }
  .main-screen__item-img {
    max-width: 100%;
  }
}
.advantages {
  padding: 24px 0;
  background-color: var(--light-gray);
}
.advantages__title {
  margin-bottom: 56px;
}
.advantages__item-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.advantages__item-text {
  font-size: 20px;
  line-height: 130%;
  padding-right: 0.9vw;
  font-weight: 500;
  text-wrap: balance;
}
.advantages--services-cat {
  padding: 96px 0;
  background-color: transparent;
}
.advantages--service {
  padding: 96px 0;
}

@media (max-width: 1199px) {
  .advantages {
    padding: 24px 0 0;
  }
  .advantages--services-cat, .advantages--service {
    padding: 96px 0;
  }
}
@media (max-width: 991px) {
  .advantages__item-icon {
    width: 48px;
    height: 48px;
  }
  .advantages__item-text {
    font-size: 18px;
    line-height: 144%;
  }
}
@media (max-width: 767px) {
  .advantages--services-cat, .advantages--service {
    padding: 48px 0;
  }
  .advantages__item-text {
    font-size: 16px;
    line-height: 150%;
    padding-right: 2vw;
  }
}
@media (max-width: 575px) {
  .advantages__title {
    margin-bottom: 24px;
  }
  .advantages__item-icon {
    width: 36px;
    height: 36px;
  }
}
.services-block__title {
  margin-bottom: 32px;
}
.services-block__item {
  position: relative;
  z-index: 1;
}
.services-block__item:nth-child(1) {
  z-index: 4;
}
.services-block__item:nth-child(2) {
  z-index: 3;
}
.services-block__item:nth-child(3) {
  z-index: 2;
}
.services-block__item-wrapper {
  position: relative;
  display: flex;
  height: 232px;
}
.services-block__item-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 16px;
  transition: max-height 0.4s ease;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height: 232px;
  background-color: var(--white);
}
.services-block__item-inner:hover {
  transition: max-height 1s ease;
  max-height: 2000px;
}
.services-block__item-inner:hover .services-block__item-list {
  overflow: visible;
  transition: max-height 1s ease;
  max-height: 5000px;
}
.services-block__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.services-block__item-title {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--black);
}
.services-block__item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 88px;
  padding: 0;
  list-style: none;
}
.services-block__item-subitem {
  font-size: 16px;
  line-height: 150%;
  position: relative;
  padding-left: 12px;
  color: var(--grey);
}
.services-block__item-subitem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--grey);
}
.services-block__item-subitem.new-line {
  padding-left: 0;
}
.services-block__item-subitem.new-line::before {
  content: none;
}
.services-block__item-link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-weight: 500;
  color: var(--grey);
}
.services-block__item-link::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../img/global/chevron-right-30-grey.svg") center/contain no-repeat;
}
.services-block__item-img {
  margin: auto 0 0 auto;
  max-width: 220px;
}

@media (max-width: 1399px) {
  .services-block__item-img {
    max-width: 160px;
  }
}
@media (max-width: 1199px) {
  .services-block__item-inner {
    gap: 8px;
  }
  .services-block__item-img {
    max-width: 140px;
  }
}
@media (max-width: 991px) {
  .services-block__item-wrapper {
    height: auto;
  }
  .services-block__item-inner {
    position: relative;
    gap: 16px;
    max-height: 100%;
  }
  .services-block__item-list {
    overflow: visible;
    max-height: 100%;
  }
  .services-block__item-img {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .services-block__item-inner {
    gap: 0;
  }
  .services-block__item-list {
    margin-left: -12px;
  }
  .services-block__item-subitem.new-line {
    padding-left: 12px;
  }
  .services-block__item-img {
    max-width: 160px;
  }
}
@media (max-width: 575px) {
  .services-block__title {
    margin-bottom: 24px;
  }
  .services-block__item-content {
    padding: 16px 8px 16px 16px;
  }
  .services-block__item-title {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 8px;
  }
  .services-block__item-list {
    gap: 4px;
    margin: 0 0 8px -8px;
  }
  .services-block__item-subitem {
    font-size: 14px;
    line-height: 129%;
    padding-left: 8px;
  }
  .services-block__item-subitem::before {
    width: 3px;
    height: 3px;
  }
  .services-block__item-subitem.new-line {
    padding-left: 8px;
  }
  .services-block__item-link {
    font-size: 14px;
    line-height: 129%;
  }
  .services-block__item-link::after {
    width: 24px;
    height: 24px;
  }
  .services-block__item-img {
    max-width: 100px;
  }
}
.about__top-text {
  margin-bottom: 4px;
}
.about__bottom-text {
  margin-bottom: 24px;
}
.about__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 24px;
  background-color: var(--light-gray);
}
.about__item-number {
  font-size: 40px;
  line-height: 125%;
  margin-bottom: 2px;
  font-weight: 500;
  text-align: center;
  color: var(--red);
}
.about__item-top-text {
  margin-bottom: 16px;
  text-align: center;
}
.about__item-bottom-text {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--grey);
}

@media (max-width: 1399px) {
  .about__item-number {
    font-size: 28px;
    line-height: 150%;
  }
}
@media (max-width: 1199px) {
  .about__item-wrapper {
    padding: 24px 16px;
  }
  .about__item-number {
    font-size: 26px;
    line-height: 123%;
  }
}
@media (max-width: 991px) {
  .about__item-number {
    font-size: 18px;
    line-height: 144%;
  }
}
@media (max-width: 575px) {
  .about__item-wrapper {
    padding: 16px;
  }
  .about__item-top-text {
    margin-bottom: 8px;
  }
  .about__item-bottom-text {
    font-size: 14px;
    line-height: 129%;
  }
}
.portfolio__title {
  margin-bottom: 32px;
}
.portfolio__link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px auto;
  font-weight: 500;
  color: var(--red);
}
.portfolio__link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-right-24-red.svg");
}
.portfolio__link:visited {
  color: var(--red);
}
.portfolio__list {
  display: grid;
  grid-template-areas: "item-1 item-1 item-2 item-3" "item-1 item-1 item-4 item-5";
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 24px;
}
.portfolio__item:nth-child(1) {
  grid-area: item-1;
}
.portfolio__item:nth-child(1) .portfolio__item-wrapper {
  height: 100%;
}
.portfolio__item:nth-child(1) .portfolio__item-content {
  transform: translateY(calc(100% - 114px));
}
.portfolio__item:nth-child(1) .portfolio__item-link {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  padding-top: 16px;
}
.portfolio__item:nth-child(2) {
  grid-area: item-2;
}
.portfolio__item:nth-child(3) {
  grid-area: item-3;
}
.portfolio__item:nth-child(4) {
  grid-area: item-4;
}
.portfolio__item:nth-child(5) {
  grid-area: item-5;
}
.portfolio__item-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  height: 237px;
}
.portfolio__item-wrapper:hover .portfolio__item-content {
  justify-content: flex-end;
  transform: translateY(0);
}
.portfolio__item-wrapper:hover .portfolio__item-link {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  padding-top: 16px;
}
.portfolio__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio__item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(calc(100% - 100px));
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: rgba(33, 33, 33, 0.6);
}
.portfolio__item-title {
  font-weight: 600;
  color: var(--white);
}
.portfolio__item-link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  max-height: 0;
  font-weight: 500;
  color: var(--white);
}
.portfolio__item-link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-right-24-white.svg") center/contain no-repeat;
}

@media (max-width: 1399px) {
  .portfolio__item:nth-child(1) .portfolio__item-content {
    padding: 24px;
  }
  .portfolio__item-content {
    padding: 24px 16px;
  }
}
@media (max-width: 1199px) {
  .portfolio__item-content {
    transform: translateY(calc(100% - 110px));
    padding: 16px;
  }
}
@media (max-width: 991px) {
  .portfolio__list {
    grid-template-areas: "item-1 item-1" "item-2 item-3" "item-4 item-5";
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio__item:nth-child(1) .portfolio__item-wrapper {
    height: 350px;
  }
  .portfolio__item-content {
    transform: translateY(calc(100% - 100px));
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .portfolio__list {
    display: flex;
    flex-direction: column;
  }
  .portfolio__item:nth-child(1) .portfolio__item-wrapper {
    height: 270px;
  }
  .portfolio__item-wrapper {
    height: 270px;
  }
  .portfolio__item-content {
    transform: translateY(calc(100% - 114px));
  }
  .portfolio__item-link {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
    padding-top: 16px;
  }
}
@media (max-width: 575px) {
  .portfolio__title {
    margin-bottom: 24px;
  }
  .portfolio__item:nth-child(1) .portfolio__item-wrapper {
    height: 240px;
  }
  .portfolio__item:nth-child(1) .portfolio__item-content {
    transform: translateY(calc(100% - 96px));
    padding: 16px;
  }
  .portfolio__item:nth-child(1) .portfolio__item-link {
    padding-top: 8px;
  }
  .portfolio__item-wrapper {
    height: 240px;
  }
  .portfolio__item-content {
    transform: translateY(calc(100% - 96px));
    padding: 16px;
  }
  .portfolio__item-link {
    font-size: 12px;
    line-height: 150%;
    padding-top: 8px;
  }
  .portfolio__item-link::after {
    width: 16px;
    height: 16px;
  }
}
.clients {
  background-color: var(--light-gray);
}
.clients__title {
  margin-bottom: 32px;
}
.clients__item {
  margin-bottom: 32px;
}
.clients__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 16px;
  background-color: var(--white);
}
.clients__item-img {
  max-height: 100%;
  object-fit: contain;
}
.clients__arrows {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.clients--about-page {
  background-color: var(--white);
}
.clients--about-page .clients__item-wrapper {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .clients__title {
    margin-bottom: 24px;
  }
  .clients__item {
    margin-bottom: 24px;
  }
}
.reviews__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  height: 156px;
  padding: 36px;
  background-color: var(--white);
}
.reviews__item-wrapper:hover {
  box-shadow: none;
  background-color: var(--light-gray);
}
.reviews__item-text {
  font-size: 16px;
  line-height: 150%;
  margin-top: auto;
  font-weight: 500;
  color: var(--grey);
}
.reviews--services-cat {
  margin-bottom: 96px;
  background-color: var(--light-gray);
}

@media (max-width: 767px) {
  .reviews--services-cat {
    margin-bottom: 48px;
  }
}
@media (max-width: 575px) {
  .reviews__item-wrapper {
    height: 120px;
    padding: 24px;
  }
}
.news-block__title {
  margin-bottom: 36px;
}
.news-block__item-wrapper {
  position: relative;
  display: flex;
  height: 362px;
}
.news-block__item-wrapper:hover .news-block__item-content {
  min-height: 144px;
}
.news-block__item-date {
  font-size: 12px;
  line-height: 150%;
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 24px;
  color: var(--white);
}
.news-block__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-block__item-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s ease;
  min-height: 362px;
  padding: 24px;
  background-color: rgba(33, 33, 33, 0.6);
}
.news-block__item-inner {
  display: flex;
  flex-direction: column;
  min-height: 96px;
}
.news-block__item-title {
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--white);
}
.news-block__item-link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: auto 0 0 auto;
  font-weight: 500;
  color: var(--white);
}
.news-block__item-link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-right-24-white.svg") center/contain no-repeat;
}
.news-block__link {
  margin: 8px auto 0;
}
.news-block__btn {
  margin: 8px auto 0;
}
.news-block__btn::after {
  content: "";
  transition: 0.4s ease;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/global/refresh-24-red.svg");
}
.news-block__btn:hover::after {
  background: url("../img/global/refresh-24-white.svg");
}

@media (max-width: 1399px) {
  .news-block__item-wrapper:hover .news-block__item-content {
    min-height: 170px;
  }
}
@media (max-width: 575px) {
  .news-block__title {
    margin-bottom: 24px;
  }
  .news-block__item-wrapper {
    height: 240px;
  }
  .news-block__item-wrapper:hover .news-block__item-content {
    min-height: 94px;
  }
  .news-block__item-content {
    min-height: 240px;
    padding: 16px;
  }
  .news-block__item-inner {
    min-height: 62px;
  }
  .news-block__item-title {
    margin-bottom: 8px;
  }
  .news-block__item-link {
    font-size: 12px;
    line-height: 150%;
  }
  .news-block__item-link::after {
    width: 16px;
    height: 16px;
  }
  .news-block__link, .news-block__btn {
    margin-top: 0;
  }
}
.seo-block p:last-child {
  margin-bottom: 0;
}

.main-form {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}
.main-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38vw;
  background: url("../img/home-page/main-screen-bg-skyfest.png") left/cover no-repeat;
}
.main-form__content {
  position: relative;
  z-index: 2;
}
.main-form__text {
  margin-bottom: 16px;
}
.main-form__btn {
  width: 100%;
  padding: 11px 22px;
}
.main-form__policy {
  font-size: 14px;
  line-height: 129%;
  color: var(--grey);
}
.main-form__policy a {
  color: var(--red);
}
.main-form__policy a:hover {
  color: var(--black);
}
.main-form__img {
  position: absolute;
  right: -120px;
  bottom: 0;
}

.not-found__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not-found__title {
  margin-bottom: 32px;
}
.not-found__title svg {
  max-width: 30vw;
  max-height: 14vw;
}
.not-found__text {
  margin-bottom: 32px;
}

.contacts-page__title {
  margin-bottom: 32px;
}
.contacts-page__text {
  margin-bottom: 32px;
}
.contacts-page__contact {
  margin-bottom: 12px;
}
.contacts-page__contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 24px;
  text-align: center;
}
.contacts-page__contact-link {
  color: var(--black);
}
.contacts-page__contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-page__messengers {
  display: flex;
  justify-content: center;
  gap: 2.5vw;
  margin-top: 12px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
}
.contacts-page__messenger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contacts-page__messenger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.25vw;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background-color: var(--light-gray);
}
.contacts-page__messenger:last-child::before {
  content: none;
}
.contacts-page__map {
  height: 100% !important;
}
.contacts-page__map > ymaps {
  height: 100% !important;
}

@media (max-width: 1199px) {
  .contacts-page__messengers {
    gap: 48px;
  }
  .contacts-page__messenger::before {
    right: -24px;
  }
  .contacts-page__map {
    height: 352px !important;
  }
}
@media (max-width: 575px) {
  .contacts-page__title {
    margin-bottom: 24px;
  }
  .contacts-page__contact-wrapper {
    padding: 16px 12px;
  }
  .contacts-page__messengers {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 12px;
  }
  .contacts-page__messenger {
    gap: 4px;
  }
  .contacts-page__messenger::before {
    content: none;
  }
}
.services-page__title {
  margin-bottom: 32px;
}
.services-page__item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  min-height: 334px;
  height: 100%;
  padding: 24px;
}
.services-page__item-wrapper:hover {
  box-shadow: none;
  background-color: var(--light-gray);
}
.services-page__item-title {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--black);
}
.services-page__item-link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--grey);
}
.services-page__item-link::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../img/global/chevron-right-30-grey.svg") center/contain no-repeat;
}
.services-page__item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100%;
}

@media (max-width: 575px) {
  .services-page__item-wrapper {
    min-height: 228px;
    padding: 16px;
  }
  .services-page__item-img {
    max-width: 50%;
  }
}
.service-category-first {
  position: relative;
  margin-top: -120px;
  background: linear-gradient(90deg, #e0e0e0 0%, #fff 100%);
}
.service-category-first::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56vw;
  background: url("../img/home-page/main-screen-bg-skyfest.png") left/cover no-repeat;
}
.service-category-first__content {
  padding: 120px 0 96px;
}
.service-category-first__text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 32px;
}
.service-category-first__btns-wrapper {
  display: flex;
  gap: 24px;
}
.service-category-first__link::after {
  content: "";
  transition: 0.4s ease;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-right-24-red.svg");
}
.service-category-first__link:hover::after {
  background: url("../img/global/chevron-right-24-white.svg");
}
.service-category-first__img {
  margin: auto;
  max-width: 100%;
  padding-top: 96px;
}

@media (max-width: 991px) {
  .service-category-first__img {
    padding-top: 0;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .service-category-first {
    margin-top: -72px;
  }
  .service-category-first__content {
    padding: 72px 0 48px;
  }
  .service-category-first__btns-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .service-category-first__img {
    padding-top: 0;
    max-width: 100%;
  }
}
.service-category-list__item-wrapper {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
}
.service-category-list__item-wrapper:hover {
  box-shadow: none;
  background-color: var(--light-gray);
}
.service-category-list__item {
  display: flex;
}
.service-category-list__item.hidden {
  display: none;
}
.service-category-list__item-img {
  width: 100%;
  height: 161px;
  object-fit: cover;
}
.service-category-list__item-title {
  font-size: 20px;
  line-height: 130%;
  flex: 1;
  padding: 24px;
  font-weight: 500;
}
.service-category-list__btn::after {
  content: "";
  transition: 0.4s ease;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/global/refresh-24-red.svg");
}
.service-category-list__btn:hover::after {
  background: url("../img/global/refresh-24-white.svg");
}

@media (max-width: 575px) {
  .service-category-list__item-img {
    height: 110px;
  }
  .service-category-list__item-title {
    font-size: 16px;
    line-height: 150%;
    padding: 16px;
  }
}
.service-category-faq__title {
  margin-bottom: 32px;
}

@media (max-width: 575px) {
  .service-category-faq__title {
    margin-bottom: 24px;
  }
}
.service-first {
  margin-top: -120px;
  padding: 120px 0 84px;
  background: linear-gradient(90deg, #e0e0e0 0%, #fff 100%);
}
.service-first__characteristic-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0;
  list-style: none;
}
.service-first__characteristic-title {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--grey);
}
.service-first__characteristic-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-first__characteristic-subitem {
  font-size: 16px;
  line-height: 150%;
  position: relative;
  padding-left: 12px;
}
.service-first__characteristic-subitem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--grey);
}
.service-first__price-period-wrapper {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}
.service-first__price-title, .service-first__period-title {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--grey);
}
.service-first__price, .service-first__period {
  font-size: 16px;
  line-height: 150%;
}
.service-first__btns-wrapper {
  display: flex;
  gap: 24px;
}
.service-first__img {
  margin: auto;
  max-width: 100%;
}

@media (max-width: 575px) {
  .service-first {
    padding-bottom: 48px;
  }
  .service-first__btns-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.service-description {
  padding-top: 48px;
}
.service-description--services-cat {
  padding-top: 0;
}
.service-description__text {
  font-size: 16px;
  line-height: 150%;
}
.service-description__text p {
  margin-bottom: 32px;
}
.service-description__text li {
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .service-description__text {
    font-size: 14px;
    line-height: 129%;
  }
  .service-description__text p {
    margin-bottom: 16px;
  }
}
.service-examples__title {
  margin-bottom: 32px;
}
.service-examples__arrows {
  gap: 24px;
}
.service-examples__arrows--desktop {
  display: flex;
  margin: 0 0 32px auto;
}
.service-examples__arrows--mobile {
  display: none;
  margin: 24px auto 0;
}
.service-examples__item-wrapper {
  display: block;
  height: 274px;
}
.service-examples__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .service-examples__arrows--desktop {
    display: none;
  }
  .service-examples__arrows--mobile {
    display: flex;
  }
}
@media (max-width: 575px) {
  .service-examples__title {
    margin-bottom: 24px;
  }
}
.service-price__title {
  margin-bottom: 32px;
}
.service-price__table {
  margin: 0;
}
.service-price__table tr {
  border-color: var(--grey);
}
.service-price__table th {
  font-size: 16px;
  line-height: 150%;
  border-color: var(--grey);
  padding: 16px;
  background-color: var(--light-gray);
  font-weight: 400;
}
.service-price__table td {
  font-size: 16px;
  line-height: 150%;
  border-color: var(--grey);
  padding: 16px;
}
.service-price__table td:last-child {
  white-space: nowrap;
}

@media (max-width: 575px) {
  .service-price__title {
    margin-bottom: 24px;
  }
  .service-price th,
  .service-price td {
    font-size: 14px;
    line-height: 129%;
  }
}
.other-services__title {
  margin-bottom: 32px;
}
.other-services__item-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
}
.other-services__item-wrapper:hover {
  box-shadow: none;
  background-color: var(--light-gray);
}
.other-services__item {
  display: flex;
}
.other-services__item-img {
  width: 100%;
  height: 161px;
  object-fit: cover;
}
.other-services__item-title {
  font-size: 20px;
  line-height: 130%;
  flex: 1;
  padding: 24px;
  font-weight: 500;
}
.other-services__arrows {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

@media (max-width: 575px) {
  .other-services__title {
    margin-bottom: 24px;
  }
}
.order-service-modal__text {
  margin-bottom: 32px;
}
.order-service-modal__service-input {
  display: none;
}
.order-service-modal__policy {
  font-size: 14px;
  line-height: 129%;
  color: var(--grey);
}
.order-service-modal__policy a {
  color: var(--red);
}
.order-service-modal__policy a:hover {
  color: var(--black);
}
.order-service-modal__btn {
  width: 100%;
}

@media (max-width: 575px) {
  .order-service-modal__text {
    margin-bottom: 16px;
  }
}
.thanks-modal__img {
  margin-bottom: 24px;
}
.thanks-modal__text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
  text-align: center;
}

.article-page__date {
  font-size: 12px;
  line-height: 150%;
  margin-bottom: 32px;
}
.article-page__content {
  font-size: 16px;
  line-height: 150%;
}
.article-page__content p {
  margin-bottom: 24px;
}
.article-page__content li {
  margin-bottom: 16px;
}
.article-page__content li strong {
  display: inline-block;
  margin-bottom: 8px;
}

.about-page__title {
  margin-bottom: 32px;
}
.about-page__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
.about-page__item {
  width: 50%;
}
.about-page__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--light-gray);
  height: 100%;
  padding: 24px;
}
.about-page__item-number {
  font-size: 40px;
  line-height: 125%;
  margin-bottom: 2px;
  font-weight: 500;
  text-align: center;
  color: var(--red);
}
.about-page__item-text {
  margin-bottom: 16px;
  text-align: center;
}
.about-page__item-description {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--grey);
}
.about-page__img-wrapper {
  margin-bottom: 32px;
  width: 100%;
}
.about-page__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .about-page__item-wrapper {
    padding: 24px 12px;
  }
  .about-page__item-number {
    font-size: 36px;
    line-height: 117%;
  }
}
@media (max-width: 991px) {
  .about-page__item-number {
    font-size: 26px;
    line-height: 123%;
  }
}
@media (max-width: 575px) {
  .about-page__title {
    margin-bottom: 24px;
  }
  .about-page__item-wrapper {
    padding: 16px 12px;
  }
  .about-page__item-number {
    font-size: 22px;
    line-height: 145%;
  }
  .about-page__item-text {
    margin-bottom: 4px;
  }
  .about-page__item-description {
    font-size: 12px;
    line-height: 150%;
  }
}
.about-advantages {
  background-color: var(--light-gray);
}
.about-advantages__text {
  margin-bottom: 32px;
}
.about-advantages__item-wrapper {
  height: 100%;
  padding: 24px;
  background-color: var(--white);
}
.about-advantages__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.about-advantages__item-title {
  font-size: 20px;
  line-height: 130%;
  font-weight: 500;
}
.about-advantages__item-text {
  font-size: 16px;
  line-height: 150%;
  color: var(--grey);
}

@media (max-width: 991px) {
  .about-advantages__item-title {
    font-size: 18px;
    line-height: 144%;
  }
  .about-advantages__item-icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .about-advantages__item-header {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .about-advantages__text {
    margin-bottom: 24px;
  }
  .about-advantages__item-wrapper {
    padding: 16px;
  }
  .about-advantages__item-header {
    flex-direction: row;
    align-items: center;
  }
  .about-advantages__item-icon {
    width: 36px;
    height: 36px;
  }
  .about-advantages__item-text {
    font-size: 14px;
    line-height: 129%;
  }
}
.portfolio-page__title {
  margin-bottom: 32px;
}
.portfolio-page__item-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  height: 350px;
}
.portfolio-page__item-wrapper:hover .portfolio-page__item-content {
  justify-content: flex-end;
  transform: translateY(0);
}
.portfolio-page__item-wrapper:hover .portfolio-page__item-link {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  padding-top: 16px;
}
.portfolio-page__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-page__item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(calc(100% - 100px));
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: rgba(33, 33, 33, 0.6);
}
.portfolio-page__item-title {
  font-weight: 600;
  color: var(--white);
}
.portfolio-page__item-link {
  font-size: 16px;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  max-height: 0;
  font-weight: 500;
  color: var(--white);
}
.portfolio-page__item-link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/global/chevron-right-24-white.svg") center/contain no-repeat;
}
.portfolio-page__btn {
  margin: 8px auto 0;
}
.portfolio-page__btn::after {
  content: "";
  transition: 0.4s ease;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/global/refresh-24-red.svg");
}
.portfolio-page__btn:hover::after {
  background: url("../img/global/refresh-24-white.svg");
}

@media (max-width: 575px) {
  .portfolio-page__title {
    margin-bottom: 24px;
  }
  .portfolio-page__item-wrapper {
    height: 200px;
  }
  .portfolio-page__item-content {
    transform: translateY(calc(100% - 69px));
    padding: 16px;
  }
  .portfolio-page__item-link {
    font-size: 12px;
    line-height: 150%;
    padding-top: 8px;
  }
  .portfolio-page__item-link::after {
    width: 16px;
    height: 16px;
  }
  .portfolio-page__btn {
    margin-top: 0;
  }
}
.case-page__title {
  margin-bottom: 32px;
}
.case-page__item-wrapper {
  position: relative;
  display: block;
  height: 350px;
}
.case-page__item-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s ease;
  background-color: rgba(33, 33, 33, 0.6);
}
.case-page__item-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s ease;
  width: 36px;
  height: 36px;
  background: url("../img/global/search-36-white.svg") center/contain no-repeat;
}
.case-page__item-wrapper:hover::before, .case-page__item-wrapper:hover::after {
  opacity: 1;
}
.case-page__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-page__btn {
  margin: 8px auto 0;
}
.case-page__btn::after {
  content: "";
  transition: 0.4s ease;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/global/refresh-24-red.svg");
}
.case-page__btn:hover::after {
  background: url("../img/global/refresh-24-white.svg");
}

@media (max-width: 767px) {
  .case-page__item-wrapper {
    height: 250px;
  }
}
@media (max-width: 575px) {
  .case-page__title {
    margin-bottom: 24px;
  }
  .case-page__btn {
    margin-top: 0;
  }
}
.case-description__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  padding: 48px 24px;
  background-color: var(--light-gray);
}
.case-description__icon {
  margin-bottom: 8px;
}
.case-description__title {
  font-size: 40px;
  line-height: 125%;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.case-description__text {
  text-align: center;
}

@media (max-width: 1199px) {
  .case-description__title {
    font-size: 26px;
    line-height: 123%;
  }
}
@media (max-width: 575px) {
  .case-description__wrapper {
    margin-bottom: 24px;
    padding: 24px 16px;
  }
  .case-description__icon {
    width: 48px;
    height: 48px;
  }
  .case-description__title {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 8px;
  }
}
.prices-page__text {
  margin-bottom: 48px;
}
.prices-page__text a {
  text-decoration: underline;
  color: var(--red);
}
.prices-page__show-btn {
  font-size: 18px;
  line-height: 144%;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border: 0;
  min-width: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 400;
  color: var(--red);
}
.prices-page__show-btn:hover {
  background-color: transparent;
  color: var(--black);
}
.prices-page__show-btn.show {
  display: inline-flex;
}
.prices-page__table-wrapper {
  margin-bottom: 48px;
}
.prices-page__table-wrapper:last-child {
  margin-bottom: 0;
}
.prices-page__table-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.prices-page__table-title {
  font-weight: 500;
}
.prices-page__table-period {
  font-size: 16px;
  line-height: 150%;
  color: var(--grey);
}
.prices-page__table {
  margin: 0;
}
.prices-page__table tr {
  border-color: var(--grey);
}
.prices-page__table th {
  font-size: 16px;
  line-height: 150%;
  border-color: var(--grey);
  min-width: 305px;
  padding: 16px;
  background-color: var(--light-gray);
  font-weight: 400;
}
.prices-page__table th:last-child {
  white-space: nowrap;
}
.prices-page__table td {
  font-size: 16px;
  line-height: 150%;
  border-color: var(--grey);
  min-width: 305px;
  padding: 16px;
}
.prices-page__table td:last-child {
  white-space: nowrap;
}
.prices-page__inner-text {
  margin: 16px 0 32px;
}

@media (max-width: 991px) {
  .prices-page th:last-child,
  .prices-page td:last-child {
    min-width: 220px;
  }
}
@media (max-width: 767px) {
  .prices-page th:last-child,
  .prices-page td:last-child {
    min-width: 180px;
  }
}
@media (max-width: 575px) {
  .prices-page__text {
    margin-bottom: 24px;
  }
  .prices-page__show-btn {
    font-size: 14px;
    line-height: 129%;
  }
  .prices-page__table-wrapper {
    margin-bottom: 24px;
  }
  .prices-page__table-period {
    font-size: 12px;
    line-height: 150%;
  }
  .prices-page th,
  .prices-page td {
    font-size: 14px;
    line-height: 129%;
    min-width: 220px;
    padding: 12px;
  }
  .prices-page th:last-child,
  .prices-page td:last-child {
    min-width: 140px;
  }
  .prices-page__inner-text {
    margin: 16px 0 24px;
  }
}

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