@charset "UTF-8";

.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  font-weight: 500;
  white-space: nowrap;
}

.btn-orange {
  background: #FD5A42;
  border: 1px solid #FD5A42;
  color: #fff;
  box-shadow: 0 4px 0 0 #D93921;
}

.btn-orange:hover {
  background: rgb(252.7329842932, 67.9712041885, 40.7670157068);
  color: #fff;
}

.btn-green {
  background: #02818A;
  border: 1px solid #02818A;
  color: #fff;
  box-shadow: 0 4px 0 0 #027078;
}

.btn-green:hover {
  background: rgb(1.6357142857, 105.5035714286, 112.8642857143);
  color: #fff;
}

.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #FD5A42;
  box-shadow: 0 4px 0 0 rgba(255, 255, 255, 0.71);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.6392156863);
  color: #FD5A42;
}

.btn-transparent {
  border: 1px solid rgba(255, 255, 255, 0.1568627451);
  background: rgba(255, 255, 255, 0.2039215686);
  box-shadow: 0 4px 0 0 rgba(255, 255, 255, 0.4117647059);
  color: #fff;
}

.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.332);
  color: #fff;
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 20px 0;
}

.nav__link {
  color: #282828;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  white-space: nowrap;
}

.nav__link:hover {
  color: #FD5A42;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}

.dropdown-list__link:hover {
  color: #0566B4;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }

  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}

.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }

  .mobile-back {
    display: block;
  }

  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }

  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }

  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-submenu__list-item {
    padding: 0;
  }

  .nav__link {
    border-bottom: 1px solid #ececec;
  }

  .nav__link::after {
    transform: rotate(-90deg);
  }

  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }

  .dropdown-submenu__title {
    padding: 0 30px;
  }

  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }

  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }

  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }

  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }

  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }

  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}

.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}

.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}

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

.header__top {
  background: #E9EBEE;
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__desc {
  color: #66727F;
  font-style: normal;
  font-weight: 400;
  line-height: 149%;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  max-width: 366px;
}

.header__contacts {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__contact {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.header__phone-wrp {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  background: #F1F2F4;
  padding: 8px;
}

.header__phone-label {
  font-size: 13px;
  color: #66727F;
}

.header__phone {
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: #0B1F33;
  white-space: nowrap;
}

.header__messengers {
  display: flex;
  gap: 10px;
}

.header__nav-info {
  display: none;
}

.header__fixed-contacts {
  display: none;
}

@media only screen and (max-width: 946px) {
  .header__wrp {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .header__desc {
    display: none;
  }

  .header__top {
    flex: 2 1 0;
    /* grow: 2, shrink: 1, basis: 0 */
  }

  .header__nav {
    flex: 0 1 0;
    /* grow: 1, shrink: 1, basis: 0 */
  }

  .header__nav-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 60px 20px 20px 20px;
  }

  .header__nav-contact {
    display: flex;
    gap: 10px;
    font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
    align-items: center;
    color: #0B1F33;
  }

  .header__nav-icon {
    width: 20px;
    height: 20px;
    fill: #FD5A42;
    flex-shrink: 0;
  }

  .header__nav-socials {
    display: flex;
    gap: 10px;
  }

  .header__nav-phone-label {
    color: #66727F;
    font-size: 13px;
    font-weight: 300;
  }

  .header__nav-phone a {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F33;
  }

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

@media only screen and (max-width: 740px) {
  .header__desc {
    display: inline;
  }

  .header__messengers {
    display: none;
  }

  .header__btn {
    display: none;
  }
}

@media only screen and (max-width: 578px) {
  .header__desc {
    display: none;
  }

  .header__logo img {
    width: 50%;
  }

  .header__phone-wrp {
    background: transparent;
    align-items: end;
  }

  .header__phone-label {
    font-size: 12px;
  }
}

.header {
  position: absolute;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
}

.menu-fixed .nav__link {
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
}

.menu-fixed .nav__item:not(:last-child) {
  margin-right: 30px;
}

.menu-fixed .header__top {
  display: none;
}

.menu-fixed .header__nav-wrp {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.menu-fixed .header__fixed-contacts {
  display: flex;
}

.menu-fixed .header__fixed-contacts .btn {
  box-shadow: none;
  border-radius: 0;
}

.menu-fixed .header__phone-wrp {
  background: transparent;
}

@media only screen and (max-width: 1400px) {
  .menu-fixed .header__fixed-contacts .btn {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__fixed-contacts {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .menu-fixed {
    padding-bottom: 0;
  }

  .menu-fixed .header__top {
    display: flex;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bgmain__banner {
  width: 100%;
  border-radius: 15px;
  padding: 90px 70px;
  position: relative;
  overflow: hidden;
}

.bgmain__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
}

.bgmain__wrp {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.bgmain h1 {
  color: #FFF;
  font-family: RoadRadio;
  font-size: clamp(1.5rem, 1.2625rem + 1.1875vw, 2.6875rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.bgmain p {
  color: #FFF;
  font-family: "SF Pro Display";
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 149%;
  /* 29.8px */
}

.bgmain__info {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.bgmain__logos {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.bgmain__video {
  width: 160px;
  height: 90px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 4px solid #FFF;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.99);
  overflow: hidden;
}

.bgmain__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bgmain__logo {
  display: flex;
  width: 135px;
  height: 50px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.bgmain__tizers {
  padding: 30px;
}

.bgmain__tizer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bgmain span {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  font-weight: 500;
}

@media only screen and (max-width: 752px) {
  .bgmain__banner {
    padding: 30px;
    margin-top: 20px;
  }

  .bgmain__info {
    flex-direction: column;
  }

  .bgmain__logo {
    align-self: auto;
  }
}

@media only screen and (max-width: 578px) {
  .bgmain__banner {
    padding: 20px;
  }

  .bgmain__tizers {
    padding: 20px 0;
  }

  .bgmain__tizer {
    align-items: center;
  }

  .bgmain__tizer img {
    width: 30px;
    height: 30px;
  }
}

.service {
  padding: 60px 0;
  background: #EDEDED;
}

.service__bg {
  background: url("../bg2.webp");
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
}

.service img {
  border-radius: 15px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service__wblock {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service__wblock .link {
  margin-top: auto;
  align-self: flex-start;
}

.service__slider-title {
  color: #0B1F33;
  font-family: "SF Pro Display";
  font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}

.service__active {
  font-size: 32px;
  font-weight: 700;
  color: #FD5A42;
}

.service__all {
  font-size: 18px;
  font-weight: 700;
}

.service__slider-arrows {
  display: flex;
  gap: 10px;
}

.service__slider-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 50%;
  transition: all 0.3s;
}

.service__slider-arrow:hover {
  background: #FD5A42;
}

.service__slider-arrow:hover .service__slider-icon {
  fill: #fff;
}

.service__slider-icon {
  width: 6px;
  height: 10px;
  fill: #0B1F33;
}

.service__slider-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
}

.service__slide {
  background: #FD5A42;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  height: -moz-available;
  height: -webkit-fill-available;
  height: stretch;
  display: flex;
  flex-direction: column;
}

.service__slide p {
  color: #fff !important;
}

.service__btn {
  margin-top: auto;
  align-self: flex-start;
}

.service__block-text {
  margin-bottom: 20 [x];
}

.service__video {
  padding: 15px;
  border-radius: 15px;
  background: #F1F2F4;
  position: relative;
  height: 100%;
}

.service__video-play {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02818A;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 35%;
  border-radius: 50%;
}

.service__video-play img {
  width: 26px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service__video-play:hover {
  background: #FD5A42;
}

.service__video-play:hover .ring {
  border: 2px solid rgba(253, 90, 66, 0.6);
}

.service .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(2, 129, 138, 0.6);
  animation: pulse-ring 5s ease-out infinite;
  pointer-events: none;
}

.service .ring-1 {
  width: 68px;
  height: 68px;
  animation-delay: 0s;
}

.service .ring-2 {
  width: 68px;
  height: 68px;
  animation-delay: 0.7s;
}

.service .ring-3 {
  width: 68px;
  height: 68px;
  animation-delay: 1.4s;
}

.service__tizer {
  width: 100%;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.service__tizer p {
  color: #66727F;
}

.service__tizer-top {
  display: flex;
  gap: 15px;
}

.service__tizer-top img {
  flex-shrink: 0;
}

.service__tizer-title {
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
}

.service__chars {
  margin: 60px 0 0 0;
}

.service__char-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 15px;
}

.service__price {
  background: rgb(255 255 255 / 49%);
  ;
  font-size: 15px;
  padding: 5px 10px;
  align-self: flex-start;
  border-radius: 4px;
}

.service__char-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service__block-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.service__link {
  display: inline;
  font-weight: 700;
  margin-top: auto;
}

.service__chars-title {
  margin-bottom: 20px;
}

.service__slider .swiper-autoheight .swiper-slide {
  height: inherit;
}

@media only screen and (max-width: 578px) {
  .service {
    padding: 30px 0;
  }

  .service__wblock {
    padding: 15px;
  }

  .service__slide {
    padding: 15px;
    height: auto;
  }

  .service__slider-nav {
    margin: 15px 0;
  }

  .service__slider-title {
    margin-top: 20px;
  }

  .service__chars {
    margin: 30px 0 0 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.mobile {
  background: #2A2A2C;
  color: #fff;
}

.mobile h1,
.mobile h2,
.mobile h3,
.mobile h4 {
  font-size: clamp(1.375rem, 1.225rem + 0.75vw, 2.125rem);
  font-family: RoadRadio;
  line-height: 1.3;
  margin-bottom: 5px;


}

.mobile h1 span,
.mobile h2 span,
.mobile h3 span,
.mobile h4 span {
  color: #FD5A42;


}

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

.mobile__left {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  flex: 2 1 0;
  /* grow: 1, shrink: 1, basis: 0 */
}

.mobile__heading {
  font-size: clamp(1.375rem, 1.225rem + 0.75vw, 2.125rem);
  font-family: RoadRadio;
  line-height: 1.3;
  margin-bottom: 5px;
}

.mobile__heading span {
  color: #FD5A42;
}

.mobile__center {
  position: relative;
  flex: 2 1 0;
  display: flex;
  align-items: end;
}

.mobile__center img {
  display: block;
}

.mobile__right {
  margin: 30px 0;
  flex: 2 1 0;
}

.mobile__right ul {
  margin: 15px 0;
  list-style-type: disc;
}

.mobile__right ul li {
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  padding: 4px 0;
}

.mobile__btn {
  align-self: flex-start;
  margin-top: 20px;
}

@media only screen and (max-width: 1000px) {
  .mobile__wrp {
    flex-direction: column;
  }

  .mobile__left {
    order: 1;
    margin-bottom: 0;
  }

  .mobile__right {
    order: 2;
    margin: 0;
  }

  .mobile__center {
    order: 3;
  }
}

.project__input:checked~.project__checkbox-span {
  border: 1px solid #FD5A42;
  color: #fff;
  background: #FD5A42;
}

.project__checkbox-span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid #02818A;
  background: #02818A;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  border-radius: 4px;
}

.project__image {
  position: relative;
  overflow: hidden;
  display: block;
  height: 162px;
}

.image-switch {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-switch__item {
  flex-grow: 1;
  cursor: pointer;
}

.image-switch__img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.image-switch__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-switch__item:first-child .image-switch__img {
  opacity: 1;
  z-index: -1;
}

.image-switch__item:hover .image-switch__img {
  opacity: 1;
  z-index: -1;
}

.image-pagination {
  position: relative;
  z-index: 30;
  width: 100%;
  display: flex;
  justify-content: center;
}

.image-pagination__item {
  display: block;
  width: 30px;
  height: 2px;
  margin: 0 3px;
  background-color: #9f9f9f;
  padding: 0;
}

.image-pagination__item--active {
  background-color: #FD5A42;
}

.projects {
  margin: 60px 0;
}

.projects__filter {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 15px;
  background: #fff;
  gap: 60px;
}

.project:hover .project__title {
  color: #02818A;
}

.project__geo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.project__geo span {
  color: #66727F;
  font-size: 15px;
}

.project__top {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.project__icon {
  width: 15px;
  height: 15px;
  fill: #FD5A42;
  flex-shrink: 0;
}

.project__category {
  font-size: 13px;
  color: #0B1F33;
  background: #E7E9ED;
  padding: 4px 10px;
  align-self: flex-start;
}

.project__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project__title {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  font-weight: 500;
  line-height: 1.3;
  color: #0B1F33;
  display: block;
}

.project__image {
  border-radius: 12px;
}

.projects-page .project {
  background: #f1f2f3;
}

@media only screen and (max-width: 578px) {
  .projects {
    margin: 30px 0;
  }

  .project {
    gap: 30px;
    padding: 10px;
  }

  .project__image {
    border-radius: 9px;
  }

  .project__checkbox-span {
    padding: 6px 7px;
  }
}

.about {
  background: #EDEDED;
  padding: 60px 0;
}

.about__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.about__heading {
  max-width: 600px;
  flex-basis: 45%;
}

.about__subheading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  flex-basis: 45%;
}

.about__subheading img {
  width: 43px;
  height: auto;
}

.about__subheading span {
  color: #0B1F33;
  font-family: RoadRadio;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.about__bottom {
  position: relative;
  padding: 20px;
  margin-top: -60px;
  overflow: hidden;
}

.about__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #272C2D;
  width: 100%;
  border-radius: 15px;
  height: 70%;
  z-index: 1;
}

.about__row {
  position: relative;
  z-index: 60;
}

.about__block {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.about__left {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.about__profi {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}

.about__profi-wrp {
  display: flex;
  gap: 15px;
}

.about__profi-big {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.about__profi_item {
  color: #fff;
}

.about__profi-logo {
  align-self: flex-start;
}

.about__btn {
  align-self: flex-start;
}

.about__man {
  position: relative;
  display: block;
  bottom: -20px;
  z-index: 20;
}

.about__right {
  gap: 30px;
  margin-top: -30px;
}

.about__slide {
  display: flex;
  color: #fff;
  flex-direction: column;
}

.about__slide-title {
  color: #FFF;
  font-family: RoadRadio;
  font-size: clamp(2.5rem, 1.9375rem + 2.8125vw, 5.3125rem);
  font-style: normal;
  font-weight: 700;
}

.about__slide-subtitle {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
}

.about__info {
  color: #fff;
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

.about__name {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  font-weight: 700;
}

.about__post {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  opacity: 0.7;
  max-width: 336px;
}

.about__socials {
  display: flex;
  gap: 10px;
}

.about__bg {
  position: absolute;
  width: 484px;
  height: 153px;
  z-index: 0;
  border-radius: 484px;
  background: #FD5A42;
  filter: blur(150px);
  bottom: 0;
}

@media only screen and (max-width: 1400px) {
  .about__left {
    margin-bottom: 0;
  }

  .about__right {
    margin-top: -20px;
  }
}

@media only screen and (max-width: 1200px) {
  .about__overlay {
    height: 100%;
  }

  .about__bottom {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .about {
    padding: 30px 0;
  }

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

  .about__man {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: -20px;
  }

  .about__right {
    width: 60%;
    margin-top: 0;
  }
}

.certs {
  padding: 60px 0;
}

.certs__slider {
  margin-top: 30px;
}

.certs .swiper-autoheight,
.certs .swiper-autoheight .swiper-slide {
  height: inherit;
}

.cert__slide {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: -moz-available;
  height: -webkit-fill-available;
  height: stretch;
  border-radius: 15px;
}

.cert__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.cert__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cert__title {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.cert__info {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.cert__info-wrp {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cert__info-label {
  font-size: 15px;
  color: #0B1F33;
}

.cert__info-label:hover {
  color: #FD5A42;
}

.cert__size {
  color: #66727F;
  font-size: 15px;
}

@media only screen and (max-width: 578px) {
  .certs {
    padding: 30px 0;
  }

  .cert__slide {
    height: auto;
  }
}

.slider__nav {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.slider__nav-wrp {
  display: flex;
  gap: 40px;
  align-items: center;
}

.slider__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 50%;
  transition: all 0.3s;
}

.slider__arrow:hover {
  background: #FD5A42;
}

.slider__arrow:hover .slider__icon {
  fill: #fff;
}

.slider__icon {
  width: 6px;
  height: 10px;
  fill: #0B1F33;
}

.slider__progress {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100px;
}

.slider__scrollbar {
  position: relative;
}

.slider__counts {
  color: #66727F;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.swiper-horizontal>.slider__scrollbar,
.slider__scrollbar.swiper-scrollbar-horizontal {
  position: relative;
}

.slider__scrollbar .swiper-scrollbar-drag {
  background: #FD5A42;
}

.staff {
  margin-bottom: 60px;
}

.staff img {
  border-radius: 15px;
}

@media only screen and (max-width: 578px) {
  .staff {
    margin-bottom: 30px;
  }
}

.videos__slider {
  padding-bottom: 30px;
}

.videos__slide img {
  border-radius: 10px;
  border: 4px solid #FFF;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.17);
  transition: all 0.3s;
}

.videos__slide img:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.17);
}

.news {
  padding: 60px 0;
  background: #EDEDED;
}

.news .nav-pills .nav-link.active,
.news .nav-pills .show>.nav-link {
  color: #0B1F33;
  background-color: #DCE5ED;
  border: 1px solid #DCE5ED;
}

.news__pills {
  display: flex;
  gap: 5px;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
}

.news__pills button {
  padding: 17px 20px;
  border-radius: 4px;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.news__banner {
  border-radius: 15px;
}

.news__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  border-radius: 15px;
  transition: all 0.3s;
  padding: 20px;
}

.news__block-title {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
}

.news__block-arrow {
  display: flex;
  width: 35px;
  height: 35px;
  /*  padding: 15px; */
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
}

.news__icon {
  width: 15px;
  height: 15px;
}

.news__block-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: self-end;
}

.white-block {
  background: #fff;
}

.white-block:hover .news__block-arrow {
  background: #02818A;
}

.white-block:hover .news__icon {
  fill: #fff;
}

.white-block .news__category {
  font-size: 13px;
  text-transform: uppercase;
  color: #66727F;
  background: #F3F3F3;
  border-radius: 4px;
  padding: 7px 10px;
  align-self: flex-start;
}

.white-block .news__block-title {
  color: #0B1F33;
}

.white-block .news__block-arrow {
  background: #FD5A42;
}

.white-block .news__icon {
  fill: #fff;
}

.orange-block {
  background: #FD5A42;
}

.orange-block:hover .news__block-arrow {
  background: #02818A;
}

.orange-block:hover .news__icon {
  fill: #fff;
}

.orange-block .news__category {
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(243, 243, 243, 0.1921568627);
  border-radius: 4px;
  padding: 7px 10px;
  align-self: flex-start;
}

.orange-block .news__block-title {
  color: #fff;
}

.orange-block .news__block-arrow {
  background: #fff;
}

.orange-block .news__icon {
  fill: #0B1F33;
}

.big-block {
  height: 100%;
}

.big-block .news__block-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.big-block .news__category {
  align-self: flex-start;
}

.big-block .news__block-text {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  opacity: 0.7;
  color: #fff;
  line-height: 1.3;
  width: 60%;
}

.big-block .news__block-title {
  width: 60%;
}

body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

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

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}

#watchme .btn-close {
  right: -30px;
}

#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}

.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}

.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}

.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}

.modal-contacts__bottom span {
  margin-left: 10px;
}

.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #FD5A42;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}

.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}

.form_input__modal .modal-file {
  color: #66727F;
  margin-bottom: 10px;
  display: block;
}

.form_input__modal:focus {
  border-bottom: 2px solid #FD5A42;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #FD5A42;
  color: #fff;
  border: 1px solid #FD5A42;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}

.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #FD5A42;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}

.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}

.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}

.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}

.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }

  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }

  .modal-header {
    padding-top: 60px;
  }

  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }

  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}

.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}

.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.form__radios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 16px 27px 24px;
  border-radius: 8px;
  background: #eee;
  margin-bottom: 15px;
}

.form__radios__modals {
  flex-direction: column;
  padding: 0px;
  align-items: start;
  background: none;
}

.form__radios__btns__modals {
  display: flex;
  gap: 10px;
}

.form__radios__title__modals {
  font-size: 14px !important;
  color: #66727F !important;
  margin-bottom: 10px;
}

.radio-mess input {
  display: none;
}

.radio__img {
  width: 85px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.radio-mess input:checked~.radio__img {
  opacity: 1;
}

.form__radios__title {
  color: #0B1F33;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
}

.cresults__agreement .checkbox-text {
  color: #5C5C77;
  font-size: 14px;
}

.cresults__agreement .checkbox-text a {
  color: #FD5A42;
  font-size: 14px;
  text-decoration: underline;
}

@media only screen and (max-width: 576px) {
  .cresults__agreement .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .cresults__agreement .checkbox-text a {
    font-size: 12px;
  }

  .form__radios__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form__radios {
    flex-wrap: wrap;
  }
}

.custom-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 1px;
  background: #FD5A42;
  margin-right: 10px;
  flex-shrink: 0;
}

.custom-checkbox input:checked+.checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 15px;
  height: 11px;
  background: url(../img/svg-check-ic.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
}

.modal__wrapper {
  padding-top: 0 !important;
}

.modal__wrapper li {
  padding: 0 !important;
}

.privat-info-black {
  color: #0B1F33;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #fff;
  background-color: #FD5A42;
  border-color: #FD5A42;
  opacity: 0.5;
}

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

.cookie__modal p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.5;
}

.cookie__modal__btn {
  align-self: center;
}

@media only screen and (max-width: 578px) {
  .cookie__modal {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cookie__modal p {
    text-align: center;
  }
}

.heading-page {
  background: #f1f2f3;
  padding: 30px 0px 90px 0;
}

.heading-page h1 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 500;
}

.breadcrumbs li {
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}

.breadcrumbs li a {
  color: #66727F;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  color: #66727F;
}

.breadcrumbs li+li::before {
  color: #66727F;
  content: "—";
  padding: 0 5px;
}

@media only screen and (max-width: 945px) {
  .heading-page {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 546px) {
  .heading-page {
    padding: 20px 0;
  }
}

.content {
  background: #fff;
  padding: 20px;
  margin-top: -60px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
  line-height: 1.2;
  margin: 14px 0 10px 0;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  color: #0B1F33;
  font-weight: 500;
}

.content h2 {
  /* От 19px до 28px */
  font-size: clamp(1.1875rem, 1.05rem + 0.6vw, 1.75rem);
}

.content h3 {
  /* От 18px до 24px */
  font-size: clamp(1.125rem, 1rem + 0.45vw, 1.5rem);
}

.content h4 {
  /* От 17px до 20px */
  font-size: clamp(1.0625rem, 0.95rem + 0.3vw, 1.25rem);
}

.content h5 {
  /* От 16px до 18px */
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.125rem);
}

.content h6 {
  /* От 15px до 16px */
  font-size: clamp(0.9375rem, 0.9rem + 0.1vw, 1rem);
}

.content .main-text {
  background: #ececec;
  border-left: 2px solid #02818A;
  padding: 20px 10px 20px 30px;
  margin: 15px 0;
}

.content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #66727F;
  margin: 0 0 5px 0;
}

.content ul {
  list-style-type: disc;
  padding: 0;
  margin: 0;
  padding-left: 30px;
}

.content ul li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}

.content ol {
  list-style-type: decimal;
  padding: 0;
  margin: 0;
  padding-left: 30px;
}

.content ol li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}

.content table td {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
  padding: 17px;
  color: #66727F;
  background: #f8f8f8;
  border: 1px solid #fff;
}

.content table thead td {
  background: #02818A;
  color: #fff;
  border-right: 1px solid #fff;
}

.about__video {
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

@media only screen and (max-width: 578px) {
  .content {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    background: transparent;
  }
}

.prices__slider img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

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

.vitem {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 10px;
}

.vitem iframe {
  border-radius: 8px;
  width: 100%;
}

.vitem__poster {
  height: 250px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

.vitem__video-play {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02818A;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30%;
  border-radius: 50%;
}

.vitem__video-play img {
  width: 26px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.vitem__video-play:hover {
  background: #FD5A42;
}

.vitem .service__video-play {
  top: 30%;
}

@media only screen and (max-width: 578px) {
  .vitem__video-play {
    width: 40px;
    height: 40px;
    top: 30%;
  }

  .vitem__video-play img {
    width: 10px;
    height: 10px;
  }
}

#mainCarousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #66727F;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
    0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 13px;
  --carousel-button-svg-height: 13px;
  --carousel-button-width: 44px;
  --carousel-button-height: 44px;
  --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: center;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  border-radius: 24px;
  display: block;
  border-radius: 10px;
}

#mainCarousel .carousel__button.is-prev {
  left: -1.5rem;
}

#mainCarousel .carousel__button.is-next {
  right: -1.5rem;
}

#mainCarousel .carousel__button:focus {
  outline: none;
  box-shadow: none;
}

#thumbCarousel {
  margin-bottom: 20px;
}

#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
  overflow: hidden;
}

#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__button.is-prev {
    display: none;
  }

  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}

@media only screen and (max-width: 578px) {
  #mainCarousel .carousel__slide {
    height: 300px;
  }

  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.product-container-thumb .carousel__slide {
  width: 70px !important;
  height: 70px !important;
  border-radius: 10px !important;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li.active span {
  background: #E23824;
  color: white;
  border-radius: 4px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #E23824;
}

.pagination a:hover {
  background: #f5f5f5;
  color: #66727F;
}

.active>.page-link,
.page-link.active {
  border: 1px solid #E23824;
}

.news__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
}

.news__item:hover .news__title {
  color: #0566B4;
}

.news__image {
  height: 181px;
}

.news__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.news__tags,
.news__date {
  font-size: 15px;
  line-height: 1.3;
  color: #66727F;
  margin: 5px 0;
}

.news__tags {
  margin: 10px 0;
}

.news__title {
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: #0B1F33;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.news__desc {
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
}

.news__date {
  margin-top: auto;
  margin-bottom: 20px;
  font-size: 14px;
}

.news__bottom {
  padding: 15px;
}

.contacts {
  border: 1px solid #ececec;
  padding: 20px;
}

.contacts__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}

.contacts__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}

.contacts__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.contacts__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contacts__group {
  margin: 20px 0;
}

.contacts__label {
  font-size: 16px;
  color: #66727F;
  margin-bottom: 10px;
}

.contacts__input {
  margin-bottom: 10px;
}

.contacts__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts__btn {
  padding: 15px 30px;
}

.content-contacts {
  margin: 20px 0;
}

@media only screen and (max-width: 578px) {
  .contacts {
    padding: 5px;
  }
}

.quiz-homepage {
  padding: 60px 0;
}

@media only screen and (max-width: 578px) {
  .quiz-homepage {
    padding: 30px 0;
  }
}

.quiz-wrapper {
  font-family: inherit;
}

.quiz-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* Progress bar styles */
.quiz-progress-wrapper {
  margin-bottom: 25px;
}

.quiz-progress {
  height: 20px;
  background: #e9ecef;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.quiz-progress-bar {
  height: 100%;
  background: #FD5A42;
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}

.quiz-progress-text {
  font-size: 14px;
  color: #6c757d;
}

/* Steps */
.quiz-step {
  display: none;
  animation: fadeIn 0.4s;
}

.quiz-step.active {
  display: block;
}

.quiz-title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  color: #343a40;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image radio buttons */
.image-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.quiz-radio {
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0;
}

.quiz-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.quiz-radio .radio-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  color: #495057;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
}

.quiz-radio .radio-image img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.quiz-radio .radio-label {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.quiz-radio:hover .radio-image {
  border-color: #b8daff;
}

.quiz-radio input[type=radio]:checked+.radio-image {
  border-color: #FD5A42;
  background: #ffffff;
  color: #FD5A42;
  box-shadow: 0 0 0 1px #FD5A42;
}

/* Ranges */
.quiz-range-group .range-item {
  margin-bottom: 30px;
}

.quiz-range-group .range-item label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #495057;
}

.quiz-range-group .range-item .range-val {
  font-weight: bold;
  color: #FD5A42;
  font-size: 18px;
}

.styled-slider {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
}

.styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FD5A42;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  -webkit-transition: transform 0.1s;
  transition: transform 0.1s;
}

.styled-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.styled-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FD5A42;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  border: none;
}

.styled-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

/* Form inputs */
.quiz-form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.quiz-input {
  padding: 14px 20px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.quiz-input:focus {
  border-color: #FD5A42;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.quiz-file-label {
  display: inline-block;
  padding: 14px 20px;
  background: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  color: #495057;
  font-weight: 500;
  transition: all 0.2s;
}

.quiz-file-label:hover {
  background: #e2e6ea;
  border-color: #adb5bd;
}

.quiz-file-input {
  display: none;
}

/* Nav Buttons */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}

.quiz-nav .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-nav .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quiz-nav .btn-prev {
  background: #e9ecef;
  color: #495057;
}

.quiz-nav .btn-prev:not(:disabled):hover {
  background: #dde2e6;
}

.quiz-nav .btn-next {
  background: #FD5A42;
  color: #fff;
}

.quiz-nav .btn-next:hover {
  background: #02818A;
}

/* Price Panel */
.price-title {
  margin-top: 0;
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
  color: #66727F;
  margin-bottom: 20px;
  font-weight: 400;
}

.price-value {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 700;
  color: #0B1F33;
  margin-bottom: 15px;
}

.price-note {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  margin: 0;
}

.person__wrp ul {
  padding-left: 30px;
}

.person__row {
  display: flex;
  gap: 10px;
}

.person__ellipse {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
}

.person__ellipse img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.person__decor {
  position: absolute;
  left: -80px;
  top: 0;
}

.person__info {
  margin: 15px 0;
}

.person__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.person__page {
  justify-content: end;
  gap: 30px;
}

.person__post {
  color: #66727F;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.4;
  margin-bottom: 5px;
}

.person__name {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 10px;
}

.person__btn {
  color: #fff;
  background: #26D366;
  padding: 10px 20px;
  border-radius: 4px;
  min-width: 137px;
  font-size: 14px;
}

.person__btn:hover {
  color: #fff;
  background: rgb(55.4397590361, 219.0602409639, 115.9698795181);
}

.person__after-title {
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.person__after ul {
  list-style-type: none;
}

.person__after li {
  position: relative;
  color: #0B1F33;
  padding: 8px 0px 8px 20px;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.person__after li::before {
  content: "";
  background: #FD5A42;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
  box-shadow: 0 0 15px orangered;
}

.person__text p {
  line-height: 1.4;
  color: #66727F;
  padding: 8px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}

.person__phone {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  font-weight: 700;
  color: #0B1F33;
  display: block;
  margin-top: 10px;
}

.person__phone:hover {
  color: #0B1F33;
}

.person__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.person__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1400px) {
  .person__btn {
    font-size: 12px;
    padding: 10px;
  }

  .person__post {
    font-size: 14px;
  }

  .person__name {
    font-size: 14px;
  }

  .person__after-title {
    font-size: 14px;
  }

  .person__after li {
    font-size: 14px;
  }

  .person__text p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 578px) {
  .person {
    background: #fff;
    padding: 10px;
    margin-top: 20px;
  }

  .person__btn {
    padding: 8px 5px;
    font-size: 12px;
  }

  .person__column {
    display: flex;
    gap: 30px;
  }
}

@media only screen and (max-width: 1400px) {
  .smtext {
    font-size: 14px;
  }
}

.pcard {
  padding: 25px 15px;
  background: #fff;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  width: 100%;
}

.pcard .chars {
  gap: 12px;
}

.pcard__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pcard__title {
  font-size: 20px;
}

.pcard__logo {
  width: 72px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pcard__logo img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.pcard__desc {
  line-height: 1.3;
  color: #66727F;
  margin-bottom: 20px;
}

.pcard__price {
  font-size: 22px;
  font-weight: 700;
}

.pcard__sticker {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  padding: 4px 7px 4px 7px;
  line-height: 1.3;
}

.pcard__chars-title {
  font-weight: 400;
  margin-bottom: 15px;
}

.products-slider-prices {
  background: #fff;
}

.chars {
  margin: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #66727F;
}

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

.chars__term {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  font-weight: 400;
}

.chars__val {
  margin: 0;
  color: #66727F;
  white-space: nowrap;
}

.chars__term::after {
  content: "..................................................................................................................................................................";
  position: absolute;
  color: #66727F;
  font-weight: 300;
}

.products {
  margin: 20px;
}

.product {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.product__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.product__title {
  font-size: clamp(1.0625rem, 1.0875rem - 0.125vw, 0.9375rem);
  line-height: 1.3;
  color: #0B1F33;
  font-weight: 500;
  margin-bottom: 10px;
}

.product__desc {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  line-height: 1.3;
  color: #66727F;
}

.product__link {
  font-size: clamp(0.9375rem, 0.925rem + 0.0625vw, 1rem);
  color: #FD5A42;
  margin-top: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  background: #1C1E25;
}

.footer__blocks {
  margin: 30px 0;
}

.footer__block {
  background: #333438;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
}

.footer__block-wrp {
  display: flex;
  gap: 50px;
}

.footer__block-top {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer__desc {
  color: #fff;
  opacity: 0.4;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
}

.footer__btns {
  display: flex;
  gap: 5px;
  align-items: stretch;
}

.footer__btns-wrp {
  display: flex;
  gap: 5px;
  align-items: stretch;
}

.footer__social {
  border-radius: 4px;
  background: rgba(156, 158, 162, 0.1921568627);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 46px;
  height: 46px;
}

.footer__social img {
  opacity: 0.4;
  transition: all 0.3s;
}

.footer__social:hover img {
  opacity: 1;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap;
}

.footer__phone a {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.footer__phone a:hover {
  color: #fff;
}

.footer__phone-label {
  color: #fff;
  opacity: 0.4;
  font-size: 15px;
}

.footer__email {
  display: flex;
  gap: 10px;
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  opacity: 0.7;
}

.footer__email:hover {
  opacity: 1;
}

.footer__icon {
  width: 17px;
  height: 17px;
  fill: #FD5A42;
  flex-shrink: 0;
}

.footer__title {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul li a {
  color: white;
  opacity: 0.4;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  padding: 7px 0;
  display: block;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
}

.footer__part {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.2823529412);
}

.footer__part a {
  color: rgba(255, 255, 255, 0.2823529412);
}

.footer__part:hover a {
  color: #fff;
}

.footer__heart {
  width: 13px;
  height: 13px;
  fill: #FD5A42;
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2823529412);
}

.footer__btn {
  white-space: nowrap;
  align-self: flex-start;
}

@media only screen and (max-width: 1200px) {
  .footer__btns-wrp {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 864px) {
  .footer__bottom {
    flex-direction: column;
  }

  .footer__part {
    text-align: center;
  }

  .footer__title {
    margin-bottom: 10px;
  }

  .footer__menu {
    margin-top: 20px;
  }

  .footer__block-wrp {
    flex-direction: column;
  }
}

@media only screen and (max-width: 578px) {
  .footer__block {
    padding: 20px;
  }

  .footer__btns {
    flex-direction: column;
    gap: 15px;
  }
}

@media only screen and (max-width: 360px) {
  .footer__btns {
    flex-direction: column;
  }
}

.gallery {
  margin: 20px 0;
  overflow: hidden;
}

.gallery__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery__btn {
  padding: 20px 30px;
  color: #66727F;
}

.gallery img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

@media only screen and (max-width: 578px) {
  .gallery {
    margin: 30px 0;
  }
}

.product__input:checked~.product__checkbox-span {
  border: 1px solid #FD5A42;
  color: #fff;
  background: #FD5A42;
}

.product__checkbox-span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid #02818A;
  background: #02818A;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  border-radius: 4px;
}

@media only screen and (max-width : 578px) {
  .product__checkbox-span {
    padding: 6px 7px;
  }
}


.products_page .product {
  background: #f5f5f5;
}

.products__filter {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

}

.product__price-wrp {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media only screen and (max-width : 358px) {
  .product__price-wrp {
    flex-direction: column;
  }
}

.product__price {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li.active span {
  background: #E23824;
  color: white;
  border-radius: 4px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #E23824;
}

.pagination a:hover {
  background: #f5f5f5;
  color: #66727F;
}

.service_item {
  padding: 15px;
  color: #0B1F33;
  background: #ececec;
  width: 100%;
  line-height: 1.3;
}