/* Main styles */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
html,body {
    overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    color: #0B161C;
    background: #E7F2F7;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
main {
    padding-top: 118px;
}
.text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.section-title {
    font-weight: 600;
    font-size: 56px;
    color: #0B161C;
    line-height: 100%;
}
.section-descr {
    color: #0B161C;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}
.gray {
    color: #333333;
}
.blue {
    color: #1084BC;
}
button {
    transition: all .3s linear; 
}
section {
    margin-bottom: 100px;
}
.real-title {
    margin-bottom: 64px;
}
.fancybox__container {
  transition-duration: 0.7s !important;
}
.fancybox__iframe {
  border: none !important; /* убираем рамку */
}

.fancybox__slide.has-iframe {
  padding: 0 !important; /* убираем внутренние отступы вокруг видео */
}

.fancybox__content {
  background: transparent !important; /* убираем фон */
}


/* Modal */
.modal-wrap {
    display: flex;
    gap: 60px;
}
.modal-inf span {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #1084BC;
}
.modal-inf {
    display: flex;
    gap: 40px;
    flex-direction: column;
    padding-top: 16px;
}
.modal-wrap {
    padding-top: 64px;
}
.modal-footer-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: rgba(11, 22, 28, 0.3);
}
.modal-footer-text a{
    color: rgba(11, 22, 28, 0.3);
}
.modal-content {
    padding: 0px 64px;
    border-radius: 16px;
}
.modal-footer {
    padding-top: 0;
    padding-bottom: 32px;
}
.modal-footer-text {
    margin-top: 0;
}
.modal-header {
    padding-bottom: 0;
    padding-top: 64px;
}
.btn-close {
    position: absolute;
    right: 24px;
    top: 24px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1010px;
        margin-right: auto;
        margin-left: auto;
    }
}
/* Header styles */
.top-nav {
    background: #fff;
    height: 78px;
}
.top-nav .container {
    height: 100%;
}
.top-nav-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-nav-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}
.top-nav-num-btn {
    border: 1px solid #1084BC !important;
    border-radius: 16px;
    padding: 11px 24.5px;
    background: #fff !important;
    color: #1084BC !important;
    font-weight: 500;
    font-size: 16px;
}
.top-nav-num-btn:hover {
    background: #1084BC !important;
    color: #fff !important;
}
.top-nav-btn {
    background: #1084BC !important;
    border: 1px solid #1084BC !important;
    border-radius: 16px;
    padding: 12px 32.5px;
    font-weight: 500;
    font-size: 16px;
    color: #fff !important;
}
.top-nav-btn:hover {
    background: #fff !important;
    color: #1084BC !important;
}
.mob-top-nav-btn {
    display: none !important;
    width: 40px;
    height: 40px;
    background: #1084BC !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0 !important;
}



/* Main nav styles */
.main-nav {
    background: #DAF2FF;
    height: 40px;
}
.main-nav .container {
    height: 100%;
}
.main-nav-wrap {
    height: 100%;
}
.main-nav-list {
    height: 100%;
}
.nav-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0;
    height: 100%;
}
.nav-item a {
    text-decoration: none;
    color: #0B161C;
    transition: .3s linear;
}
.nav-item {
    list-style: none;
    font-size: 16px;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-active > a{
    font-weight: 600;
    color: #1084BC !important;
}
.nav-active > svg path {
    stroke: #1084BC;
}
.nav-item a:hover  {
    color: #1084BC;
}
.nav-item svg {
    transition: transform .3s linear;
}

.nav-item svg path {
    transition: stroke .3s linear;
}

.nav-item:hover svg path {
    stroke: #1084BC;
}

.nav-item:hover svg {
    transform: rotate(180deg);
}

.nav-item svg {
   margin-bottom: -1.5px;
}
.nav-item.has-dropdown {
    position: relative;
}
.nav-item.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: #fff;
    min-width: 220px;
    border-top: none;
    display: flex;
    gap: 6px;
    flex-direction: column;
    padding: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 16px;
    width: 100%;
    background: transparent;
}
.nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown .has-submenu {
    position: relative;
}
.dropdown .submenu {
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    background: #fff;
    min-width: 220px;
    display: flex;
    gap: 6px;
    flex-direction: column;
    padding: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.dropdown .has-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 16px;
    height: 100%;
    background: transparent;
}
.dropdown .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown li a,
.submenu li a {
    display: block;
    padding: 5.5px 24px;
    text-decoration: none;
    color: #0B161C;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.dropdown li a:hover,
.submenu li a:hover {
    background: #DAF2FF;
    color: #1084BC;
}
.nav-items li {
    list-style: none;
    text-wrap: nowrap;
}
.submenu {
    border-radius: 16px;
    padding: 24px 0 !important;
}
.dropdown {
    border-radius: 16px;
    padding: 24px 0 !important;
}
.has-submenu svg{
    transform: unset !important;
    margin-bottom: 0;
    margin-top: -1px;
    margin-left: 32px;
}
.has-submenu svg path{
    stroke: #0B161C !important;
}
.dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Для последних 3 элементов */
.nav-item.has-dropdown:nth-last-child(-n+3) .dropdown {
    left: auto;
    right: 0; /* Выравниваем по правому краю родителя */
}

.nav-item.has-dropdown:nth-last-child(-n+3) .dropdown .has-submenu .submenu {
    left: auto;
    right: calc(100% + 16px); /* Подменю теперь открывается влево */
}


/* Banner styles */
.banner-section {
    height: 640px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}
.banner-section .container {
    height: 100%;
}
.banner-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.banner-text-wrap {
    max-width: 587px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.banner-title {
    font-weight: 600;
    font-size: 56px;
    margin-bottom: 0;
    line-height: 100%;
}
.banner-subtitle {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
}
.banner-btn {
    background: #fff !important;
    color: #1084BC !important;    
    border: 0 !important;
    width: fit-content;
    padding: 16px 29px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
}
.banner-btn:hover {
    background: #1084BC !important;
    color: #fff !important;
}
.banner-media {
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.banner-media-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.banner-video {
    width: 290px;
    height: 290px;
    background-color: #1084BC;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.banner-video-preview {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.banner-video-preview,
.banner-video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-video-content {
    display: none;
    cursor: pointer;
}
.banner-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}


/* Info section styles */
.info-items-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}
.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
    max-width: 290px;
}
.info-item-logo picture {
    width: 87px;
}
.info-item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}


/* Price section styles */
.price-box {
    border-radius: 16px;
    overflow: hidden;
}
.price-main-item-wrap {
    display: flex;
}
.price-image {
    width: 50%;
    align-self: stretch;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.price-list-wrap {
    width: 50%;
    background: #fff;
    padding: 70px 64px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}
.price-list-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.price-list-head-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 0;
    line-height: 100%;
}
.price-list-head-bar {
    background: #DAF2FF;
    color: #1084BC;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    text-wrap: nowrap;
}
.price-list-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.price-list-items a {
    text-decoration: none;
    color: #333;
    transition: .3s;
}
.price-list-items a:hover {
    text-decoration: underline;
}
.price-list-item {
    padding-bottom: 16px;
    border-bottom: 1px solid #DAF2FF;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-list-item:last-child {
    border-bottom: none;
}
.price-list-item-text {
    line-height: 100%;
    max-width: 360px;
}
.price-list-item-amount {
    line-height: 100%;
}
.price-list-button {
    border: 1px solid #1084BC !important;
    border-radius: 16px;
    padding: 17px 24.5px;
    background: #fff !important;
    color: #1084BC !important;
    font-weight: 600;
    font-size: 18px;
    max-width: 290px;
}
.price-list-button:hover {
    background: #1084BC !important;
    color: #fff !important;
}

/* Fast section styles */
.fast-box {
    background: #fff;
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
}
.fast-title {
    font-weight: 600;
    font-size: 56px;
    line-height: 100%;
    color: #1084BC;
    margin-bottom: 28px;
}
.fast-desc {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 48px;
}
.fast-num {
    font-weight: 600;
    font-size: 56px;
    line-height: 100%;
    color: #1084BC !important;
    margin-bottom: 48px;
    text-decoration: none;      
    -webkit-text-decoration-skip: none; 
    -webkit-touch-callout: none; 
}

.fast-btn {
    background: #1084BC !important;
    color: #fff !important;
    border: 0 !important;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #1084BC !important;
}
.fast-btn:hover {
    background: #fff !important;
    color: #1084BC !important;
}

/* Count section styles */
.count-wrap {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.count-text {
    max-width: 594px;
}
.count-title {
    margin-bottom: 58px;
}
.count-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 518px;
}
.count-item {
    background: #fff;
    border-radius: 800px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 99px;
    padding-right: 24px;
}
.count-item-number {
    width: 186px;
    min-width: 186px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B2E2F8;
    border-radius: 100px;
    height: 100%;
}
.count-item-number span {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #1084BC;
}
.count-item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #1084BC;
}

/* Cases */
.case.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.case.photo-grid .case {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.case.photo-grid .tall {
  grid-column: 2;      
  grid-row: 1 / span 2; 
}


/* Story section styles */
.story-section .section-title {
    text-align: center;
}
.story-slide {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: unset;
    align-self: stretch;
}
.story-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; 
}
.story-swiper {
  flex: 1;
  border-radius: 16px;
}
.story-btn-prev,
.story-btn-next {
  position: static;
  flex-shrink: 0;
  cursor: pointer;
}
.single-specialist-desc br{
    display: none;
}
.story-slide-frame {
    height: 200px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}
.story-play-btn {
    border: 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(8px);
    background: #0B161C4D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0 !important;
}
.story-play-btn picture {
    transform: translateX(2px);
}
.story-slide-title {
    height: 48px;
}
.story-frame-info {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #0B161C4D;
    backdrop-filter: blur(30px);
    border-radius: 3px;
    color: #fff;
    padding: 4px 2px;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}
.story-frame-info-devider {
    content: '';
    width: 2px;
    height: 2px;
    background: #fff;
}
.story-slide-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}
.story-slide-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.story-btn-prev::after {
    display: none;
    width: 42px;
}
.story-btn-next::after {
    display: none;
    width: 42px;
}
.story-btn-prev {
    width: 42px;
}
.story-btn-next {
    width: 42px;
}

/* Start section styles */
.start-section .section-title{
    text-align: center;
    margin-bottom: 24px;
}
.start-section-descr{
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}
.start-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 38px;
    flex-grow: 1;
    width: 32%;
}
.start-item-num {
    font-weight: 700;
    font-size: 96px;
    line-height: 104px;
    letter-spacing: -8%;
    color: #B2E2F8;
}
.start-item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    max-width: 200px;
}
.start-item-content {
    display: flex;
    flex-direction: column;
    gap: 38px;
}
.start-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.start-item:first-child {
    background: #1084BC;
}
.start-item:first-child .start-item-num,
.start-item:first-child .start-item-title,
.start-item:first-child .start-item-desc {
    color: #fff;
}
.start-item-button {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
}
.start-item-button:hover {
    background: #fff !important;
    color: #1084BC !important;
}

/* Rehub section styles */
.rehub-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.rehub-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.rehub-gallery__item {
    height: 300px;
    width: calc(32% - 10px);
}
.rehub-section .section-title,
.rehub-section .section-descr {
    text-align: center;
}
.rehub-section .section-title {
    margin-bottom: 32px;
}
.rehub-gallery {
    margin-bottom: 64px;
}
.rehub-item {
    width: fit-content;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
}
.rehub-item span {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}
.rehub-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Service section styles */
.service-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}
.service-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-item-button {
    background: transparent !important;
    color: #1084BC !important;
    border: 1px solid #1084BC !important;
    padding: 4px 20px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
}
.service-item-button:hover {
    background: #1084BC !important;
    color: #fff !important;
}
.service-list-content {
    margin: 64px 0;
    margin-bottom: 0;
}

.service-item-text-mob {
    display: none;
}
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 32px;
}
.service-tab {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    cursor: pointer;
    position: relative;
}
.service-tab .service-tab-title {
    padding-bottom: 12px;
    border-bottom: 2px solid #B2E2F8;
    transition: .3s;
}
.service-tab:first-child {
    padding-right: 64px;
    position: relative;
}
.service-tab:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #B2E2F8;
}
.service-tab--active {
    color: #1084BC;
}
.service-tab:hover .service-tab-title {
    border-color: #1084BC;
}
.service-tab--active .service-tab-title {
    border-color: #1084BC;
}
.service-content {
  display: none;
}
.service-content--active {
  display: block;
}
.service-content-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 64px;
}

.service-addons-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.service-addon {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    width: 32%;
    margin-bottom: 44px;
}
.service-addon:nth-child(4),
.service-addon:nth-child(5),
.service-addon:nth-child(6) {
    margin-bottom: 0;
}

.service-addon-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}

/* Team section styles */
.team-section-title {
    margin-bottom: 32px;
}
.team-items-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.team-item {
    flex: 1;
    max-width: 289px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.team-item-img {
    width: 100%;
    height: 400px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 12px;
}
.team-item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}
.team-item-title a {
    text-decoration: none !important;
    color: #0B161C !important;
}

/* Serts section styles */
.serts-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.sert-item {
    flex: 1;
    max-width: 289px;
}
.sert-item img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Mob menu */
/* Общие стили */
.main-nav-mob {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.main-nav-mob.active {
  transform: translateY(0);
}



/* Контент меню */
.main-nav-mob__content {
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  max-height: 100%;
  flex: 1;
  position: relative;
}

/* Кнопки */
.main-nav-mob-toggle {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.main-nav-mob__close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* Список */
.main-nav-mob__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 48px;
}

.main-nav-mob__list > li {
  border-bottom: 1px solid #eee;
  list-style: none !important;
}

.main-nav-mob__list a,
.main-nav-mob__dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  color: #000;
  background: none;
  border: none;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

/* Дропдауны */
.main-nav-mob__dropdown {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.main-nav-mob__dropdown li{
    list-style: none;
}
.menu-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.main-nav-mob__dropdown-toggle.active .menu-arrow {
  transform: rotate(180deg);
}

.has-submenu .menu-arrow {
  transform: rotate(0deg);
}

.has-submenu .main-nav-mob__dropdown-toggle.active .menu-arrow {
  transform: rotate(90deg);
}




/* Faq */
.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-item {
    border: 0 !important;
    border-radius: 0 !important;
    border-top: 1px solid #0B161C !important;
    cursor: pointer;
    background: transparent;
}
.accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #0B161C;
    user-select: none;
    gap: 32px;
}
.accordion-item:last-of-type {
    border-bottom: 1px solid #0B161C !important;
}
.accordion-item-body-content {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 32px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #333333;
}
.accordion-item-header svg {
    transition: .2s;
}
.accordion-item-header.active svg {
    transform: rotate(45deg);
}



/* States */
.state-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    
}
.state-item {
    flex: 1;
    max-width: 289px;
    min-width: 289px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    align-self: stretch;
}
.state-img {
    width: 100%;
    min-height: 185px;
    background-color: #0B161C;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 16px 16px 0 0;
}
.state-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    height: 100%;
}
.state-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    flex-grow: 1;
}
.state-title a {
    text-decoration: none;
    color: #0B161C;
}
.state-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 100px;
}
.state-params {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.state-time {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    gap: 4px;
}
.state-views {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    gap: 4px;
}



/* Contact form */
.contact-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 64px;
    display: flex;
    gap: 60px;
}
.contact-form-box .modal-footer-text p {
    margin-bottom: 0;
}
.contact-form-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
}
.contact-form-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 49%;
    gap: 0 !important;
}
.contact-form-title {
    font-size: 56px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 20px;
}
.contact-form-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
}
.contact-form-image {
    width: 100%;
    height: 100%;
    max-width: 494px;
    height: 494px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 50%;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form p {
    margin-bottom: 0;
}
.wpcf7-form-control {
    margin-bottom: 16px;
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.wpcf7-not-valid {
    border: 1px solid red !important;
}
.wpcf7-response-output {
    margin: 0 !important;
    padding: 16px !important;
    text-align: center !important;
    border-radius: 16px !important;
    border-color: #1084BC !important;
}   
.modal-body-new {
    flex-direction: column;
    gap: 64px;
}
.modal-body-new-text {
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
}
.modal-body-new-btn {
    max-width: 325px;
}
.modal-wrap.active-elem {
    padding-bottom: 64px;
}
.contact-form input {
    width: 100%;
    height: 64px;
    background: #DAF2FF;
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 0 28px;
    color: #0B161C;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.contact-form input::placeholder {
    color: gray;
}
.submit-btn {
    width: 100%;
    height: 64px;
    background: #1084BC !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #DAF2FF !important;
}
.submit-btn:hover {
    background: #DAF2FF !important;
    color: #1084BC !important;
}
.description-text-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}
.description-text-content {
    font-size: 18px;
}
.description-text-content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 16px;
}
.description-text-content h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 16px;
}


/* Footer */
footer {
    padding: 56px 0;
    background: #1084BC;
    color: #fff;
}
.footer-top-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #DAF2FF;
}
.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
}
.footer-bottom-items {
    display: flex;
}
.footer-links a {
    text-decoration: none;
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-contact-big a {
    text-decoration: none;
    margin-right: 2px;
}
.footer-contact-big span{
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-left: 12px;
}
.footer-contact-big {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.footer-contact-sm {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}
.footer-contact-sm span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}
.footer-bottom-items {
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
}
.footer-bottom-items a {
    text-decoration: none;
    color: #fff;
}
.footer-up-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100px;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #fff !important; 
    background: transparent !important;
    font-size: 14px;
    line-height: 120%;
    color: #fff !important;
}
.footer-up-btn:hover {
    color: #1084BC !important;
    background: #fff  !important;
}
.footer-up-btn svg path {
    transition: .3s;
}
.footer-up-btn:hover svg path {
    stroke: #1084BC !important;
}



/* Alco page */
.alco-info-items-wrap {
    flex-wrap: wrap;
    row-gap: 60px;
}
.alco-info-item {
    width: 31%;
    max-width: unset;
}


/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: rgba(11, 22, 28, 0.3);
}
.breadcrumbs a {
  color: rgba(11, 22, 28, 0.3);
  text-decoration: none;
}
.breadcrumbs__sep {
  margin: 0 5px;
  color: rgba(11, 22, 28, 0.3);
}
.breadcrumbs__current {
  color: rgba(11, 22, 28, 0.3);
  font-weight: 500;
}
.page-breadcrumbs {
    margin-top: 24px;
    margin-bottom: 64px;
}



/* About */
.about-banner-desc p{
    margin-bottom: 0;
}
.about-banner-wrap {
    display: flex;
    align-items: center;
    gap: 120px;
}
.about-banner-text {
    max-width: 495px;
}

.about-banner-inner-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    margin-top: 58px;
    margin-bottom: 38px;
}
.about-services-section-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}
.about-services-item {
    background: #fff;
    border-radius: 16px;
    max-width: 226px;
    padding: 24px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.about-services-item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
}
.about-services-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.about-story-slide {
    width: 336px;
    height: 347px;
    border-radius: 16px;
}
.about-story-slide-image {
    width: 100%;
    height: 100%;
}
.about-story-slide-image img {
    border-radius: 16px;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-work-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    padding-top: 48px;
    max-width: 392px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: stretch;
}
.about-work-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.first-about-work-item {
    max-width: 597px;
}
.about-work-title {
    max-width: 390px;
}
.about-work-item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #333;
}
.about-facts-section {
    margin-bottom: 64px;
}
.about-facts-bar {
    width: 100%;
    border-top: 1px solid #1084BC;
    border-bottom: 1px solid #1084BC;
    gap: 16px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-facts-bar-num {
    font-weight: 800;
    font-style: Bold;
    font-size: 115.2px;
    line-height: 124.8px;
    letter-spacing: -8%;
    color: #1084BC;
}
.about-facts-bar-text {
    font-weight: 400;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #1084BC;
    max-width: 671px;
}
.about-info-section .info-item {
    max-width: 330px;
}
.about-work-mob-title {
    display: none;
}




/* Reviews */
.reviews-page-title {
    display: flex;
    justify-content: space-between;
}
.reviews-page-title-bar {
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    height: 56px;
}
.reviews-page-title-bar span {
    font-weight: 600;
    transform: translateY(2px);
}
.rev-star {
    transform: translateY(-1px);
}
.reviews-page-title .section-title {
    margin-bottom: 0 !important;
}
.reviews-page-title {
    margin-bottom: 64px;
}
.reviews-page-form-wrap {
    max-width: 289px;
}
.reviews-page-form-wrap form {
    display: flex;
    flex-direction: column;
}
.reviews-page-form-wrap form input  {
    padding: 16px 24px;
    border: 0 !important;
    outline: 0 !important;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
}
.reviews-page-form-wrap form textarea {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
    padding: 16px 24px;
    border: 0 !important;
    outline: 0 !important;
    resize: none;
}
.reviews-page-form-wrap form textarea::placeholder {
    color: rgba(11, 22, 28, 0.3);
}
.reviews-page-form-wrap form input::placeholder {
    color: rgba(11, 22, 28, 0.3);
}
.add-file-box {
    background: #fff;
    border-radius: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.add-file {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
}
.policy-check {
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
}
.policy-check span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}
.policy-check span a {
    color: #0B161C;
}
.reviews-form-btn {
    height: 64px;
    width: 100%;
    background: rgba(16, 132, 188, 1) !important;
    border: 0 !important;
    border-radius: 16px;
    color: #fff !important;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    border: 1px solid #1084BC !important;
}
.reviews-form-btn:hover {
    color: rgba(16, 132, 188, 1) !important;
    background: #fff !important;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.custom-checkbox input {
    display: none;
}
.custom-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #1084BC;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.custom-checkbox span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    border-radius: 2px;
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.2s ease;
}
.custom-checkbox input:checked + span::after {
  opacity: 1;
}
.add-file span {
    font-weight: 400;
    font-size: 14px;
}
.reviews-page-content {
    display: flex;
    gap: 20px;
}
.reviews-tabs {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 32px;
}
.reviews-tab {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    cursor: pointer;
    position: relative;
}
.reviews-tab .reviews-tab-title {
    padding-bottom: 12px;
    border-bottom: 2px solid #B2E2F8;
    transition: .3s;
}

.reviews-tab-double {
    padding-right: 64px;
    position: relative;
}
.reviews-tab-double::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #B2E2F8;
}

.reviews-tab--active {
    color: #1084BC;
}
.reviews-tab:hover .reviews-tab-title {
    border-color: #1084BC;
}
.reviews-tab--active .reviews-tab-title {
    border-color: #1084BC;
}
.reviews-content {
  display: none;
}
.reviews-content--active {
  display: block;
}
.reviews-content-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reviews-addons-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.reviews-page-content-wrapper {
    flex-grow: 1;
}
.reviews-text-wrapper {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.reviews-list-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reviews-contents {
    flex-grow: 1;
}
.reviews-content {
    height: 100%;
}
.reviews-text-item {
    padding: 24px;
    border: 1px solid #E7F2F7;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.reviews-text-item-header {
    display: flex;
    gap: 48px;
    align-items: center;
}
.reviews-text-item-header span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #1084BC;
}
.reviews-text-item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.reviews-text-item-images {
    display: flex;
    align-items: center;
    gap: 8px;
}
.reviews-text-item-images img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}
.reviews-text-item-answer {
    display: flex;
    align-items: center;
    gap: 16px;
}
.reviews-text-item-answer-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reviews-text-item-answer-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-text-item-answer-title span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #1084BC;
}
.reviews-text-item-answer-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.reviews-video-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 250px;
    max-width: 250px;
    flex-grow: 1;
}
.reviews-video-item-box {
    width: 100%;
    height: 163px;
    background-color: #1084BC;
    border-radius: 16px;
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.reviews-video-item-box a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews-video-item-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.reviews-video-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reviews-video-item-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.reviews-video-item-date {
    color: rgba(11, 22, 28, 0.5);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    vertical-align: center;
}
.reviews-video-item-views {
    display: flex;
    align-items: center;
    gap: 4px;
}
.reviews-video-item-views span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.5);
}
.reviews-video-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 32px;
}
.reviews-show-more-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.reviews-show-more-btn {
    border: 0 !important;
    outline: 0 !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: underline;
    background: transparent !important;
    color: #1084BC !important;
}
.reviews-top-btn-mob {
    display: none;
    width: 100%;
    height: 64px;
    background: #1084BC !important;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #DAF2FF !important;
    margin-bottom: 32px;
}





/* Price page */
.price-page-title {
    text-align: start !important;
}
.price-page-title h1{
    text-align: start !important;
}
.price-page-content-title {
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}
.price-page-content-title-second {
    margin-top: 64px;
}






/* Contact page */
.contact-page-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-page-info {
    min-width: 289px;
    max-width: 289px;
    display: flex;
    flex-direction: column;
    gap: 62px;
}
.contact-info-page-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1084BC !important;
    border-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    color: #1084BC !important;
    background: transparent !important;
}
.contact-info-page-btn:hover {
    color: #fff !important;
    background: #1084BC !important;
}
.contact-page-info-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}
.contact-page-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-page-info-item span {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.contact-page-info-item .phone {
    font-weight: 600;
}
.contact-page-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-page-map {
    flex-grow: 1;
    align-self: stretch;
    border-radius: 16px;
    overflow: hidden;
}
.contact-page-map p {
    height: 100%;
    margin-bottom: 0;
}



/* Licenses */
.licesnses-page-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}
.licenses-page-item {
    flex-grow: 1;
    border-radius: 16px;
    max-width: 289px;
}
.licenses-page-item img {
    max-width: 100%;
}




/* Posts */
.post-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}
.post-item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    flex-grow: 1;
    max-width: 289px;
}
.post-item-img {
    height: 196px;
    width: 100%;
    background-color: #1084BC;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.post-item-content {
    background: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}
.post-item-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.5);
}
.post-item-views {
    display: flex;
    gap: 8px;
    color: rgba(11, 22, 28, 0.5);
}
.post-item-views span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}
.post-item-text {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-item-text a {
    color: #0B161C;
    text-decoration: none;
}


/* Specialists */
.specialists-page-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 40px;
    justify-content: flex-start;
}
.specialists-page-items-wrapper .team-item {
    max-width: 289px;
    flex: unset;
    flex-grow: 1;
}
.specialists-page-items-wrapper .team-item .team-item-img {
    height: 445px !important;
}

.single-specialist-wrapper {
    display: flex;
    gap: 20px;
}
.single-specialist-image {
    max-width: 289px;
    min-width: 289px;
}
.single-specialist-image img {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}
.single-specialist-text {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.single-specialist-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.single-specialist-btn {
    width: 289px;
    height: 64px;
    background: #1084BC !important;
    border-radius: 16px;
    border: 1px solid #1084BC !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 18px;
}
.single-specialist-btn:hover {
    background: #fff !important;
    color: #1084BC !important;
}
.single-specialist-content {
    max-width: 785px;
}
.single-specialist-content p:last-child {
    margin-bottom: 0;
}
.single-post-params {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}
.single-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.7);
}
.single-post-user {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.7);
    text-decoration: underline;
}
.single-post-user a {
    color: rgba(11, 22, 28, 0.7);
}
.single-post-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.7);
}
.single-post-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(11, 22, 28, 0.7);
}
.single-post-box {
    font-size: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
}
.single-post-box a {
    color: #1084BC;
}
.single-post-box h2 {
    margin-top: 64px;
    margin-bottom: 32px;
    font-weight: 600 !important;
    font-size: 32px;
    line-height: 100%;
}
.single-post-box h2 span {
    font-weight: 600 !important;
}
.single-post-box tbody, td, tfoot, th, thead, tr {
    border-width: 1px;
    padding: 4px;
}
.single-post-box table {
    margin: 16px 0;
}
.single-post-box h3 {
    font-weight: 600 !important;
    font-size: 24px;
    line-height: 100%;
    margin-top: 64px;
    margin-bottom: 32px;
}
.single-post-box ul {
    margin-top: 16px;
}
.single-post-box ol {
    margin-top: 16px;
}
.single-post-box img {
    margin: 16px 0;
    border-radius: 16px;
}
.single-post-box h3 span {
    font-weight: 600 !important;
}
.single-post-box h4 {
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 120%;
}
.single-post-box li {
    margin-bottom: 16px;
}
.gray-box {
    padding: 24px;
    background: #EEF2F4;
    border-radius: 16px;
    margin-top: 64px;
    margin-bottom: 16px;
}
.gray-box p {
    margin-bottom: 0;
}
.warning-box {
    display: flex;
    background: #EEF2F4;
    border-radius: 10px;
    margin-top: 64px;
    margin-bottom: 16px;
}
.warning-box p {
    margin-bottom: 0;
}
.warning-icon {
    width: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF0040;
    border-radius: 10px 0 0 10px;
}
.warning-text {
    padding: 24px 32px;
    max-width: 780px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.ready-box {
    display: flex;
    background: #EEF2F4;
    border-radius: 10px;
    margin-top: 64px;
    margin-bottom: 16px;
}
.ready-box p {
    margin-bottom: 0;
}
.ready-icon {
    width: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00E0AC;
    border-radius: 10px 0 0 10px;
}
.ready-text {
    padding: 24px 32px;
    max-width: 780px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.edit-box {
    display: flex;
    background: #EEF2F4;
    border-radius: 10px;
    margin-top: 64px;
    margin-bottom: 16px;
}
.edit-box p {
    margin-bottom: 0;
}
.edit-icon {
    width: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1084BC;
    border-radius: 10px 0 0 10px;
}
.edit-text {
    padding: 24px 32px;
    max-width: 780px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.desc-text-wrapper {
  position: relative;
  max-height: 120px; /* высота примерно на 1 абзац */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.desc-text-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(231, 242, 247, 0) 0%, rgba(231, 242, 247, 0.8) 60%, #E7F2F7 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.desc-text-toggle {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;

  display: inline-flex; /* текст + иконка в ряд */
  align-items: center;
  gap: 6px;
}

.desc-text-wrapper.expanded {
  max-height: 9999px;
}

.desc-text-wrapper.expanded .desc-text-fade {
  opacity: 0;
}

.desc-text-toggle svg {
  transition: transform 0.3s ease;
}

.desc-text-toggle.active svg {
  transform: rotate(180deg);
}

.single-post-wrap {
    display: flex;
    gap: 16px;
}
.single-post-user-box {
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    height: fit-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.single-post-user-img {
    width: 150px;
    height: 150px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 50%;
    background-repeat: no-repeat !important;
}
.single-post-user-title {
    font-weight: 600;
    font-size: 20px;
}
.single-post-user-socials {
    display: flex;
    justify-content: center;
}
.single-post-user-num a {
    text-decoration: none;
    color: #0B161C;
    font-weight: 600;
    font-size: 22px;
}
.team-swiper {
  flex: 1;
}
.team-btn-prev,
.team-btn-next {
  position: static;
  flex-shrink: 0;
  cursor: pointer;
}
.team-btn-prev::after {
    display: none;
    width: 42px;
}
.team-btn-next::after {
    display: none;
    width: 42px;
}
.team-btn-prev {
    width: 42px;
}
.team-btn-next {
    width: 42px;
}
.team-item {
    width: auto;
    flex: none;
    max-width: unset;
    min-width: unset;
}




@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 960px;
    }
}
@media (min-width: 1240px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}
@media (max-width: 1239px) {
    .banner-subtitle {
        font-size: 20px;
    }
    .nav-item {
        padding: 0;
        font-size: 14px;
    }
    .info-item-desc {
        font-size: 14px;
    }
    .info-item-title {
        font-size: 18px;
    }
    .price-list-wrap {
        padding: 48px 32px;
        gap: 32px;
    }
    .price-list-item-amount {
        font-size: 14px;
    }
    .price-list-item-text {
        font-size: 14px;
    }
    .count-wrap {
        gap: 32px;
    }
    .count-item {
        min-width: 480px;
    }
    .count-desc {
        font-size: 14px;
    }
    .count-title {
        font-size: 50px;
    }
    .count-item-number {
        width: 150px;
        min-width: 150px;
    }
    .count-item-number span {
        font-size: 40px;
        line-height: 40px;
    }
    .case.photo-grid {
        grid-template-rows: repeat(2, 230px);
    }
    .rehub-item span {
        font-size: 22px;
    }
    .team-item-img {
        height: 400px;
    }
    .state-wrap {
        justify-content: flex-start;
    }
    .footer-bottom-items {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-devider {
        display: none;
    }
    .contact-form-box {
        flex-direction: column;
        align-items: center;
    }
    .contact-form-content {
        max-width: unset;
        gap: 0px;
    }
    .state-item {
        max-width: 300px;
        min-width: 289px;
    }
    .about-banner-wrap {
        gap: 60px;
    }
    .about-services-wrap {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .about-story-slide {
        height: 270px;
    }
    .about-work-title {
        max-width: 100%;
    }
    .about-work-wrap {
        justify-content: space-between;
        row-gap: 32px;
    }
    .first-about-work-item {
        max-width: 100%;
    }
    .about-work-item {
        max-width: 48%;
        flex-grow: 1;
    }
    .specialists-page-items-wrapper {
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .single-post-wrap {
        flex-direction: column-reverse;
    }
    .has-dropdown {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .has-submenu {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .has-submenu > a {
        width: fit-content;
        text-wrap: nowrap;
        margin-right: 32px;
    }
    .has-submenu svg {
        margin-left: 0 !important;
    }
    .has-dropdown > a {
        width: fit-content;
        text-wrap: nowrap;
    }
    .main-nav-mob__dropdown-toggle {
        flex-grow: 1;
        justify-content: flex-end;
        width: fit-content;
    }
    .main-nav-mob__dropdown {
        width: 100%;
    }
    main {
        padding-top: 83px;
    }
    section {
        margin-bottom: 60px;
    }
    .main-nav {
        display: none;
    }
    .top-nav {
        height: 83px;
    }
    .top-nav-num-btn, .top-nav-btn {
        display: none;
    }
    .mob-top-nav-btn {
        display: flex !important;
    }
    .top-nav-controls {
        gap: 6px;
    }
    .top-logo {
        width: 154px;
    }
    .banner-content {
        flex-direction: column;
    }
    .banner-section {
        background: none !important;
        height: unset;
    }
    .banner-section .in-container {
        max-width: 100% !important;
        padding: 0 !important;
    }
        .banner-text {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 120px 20px;
    }
    .banner-media {
        padding-right: 0;
        width: 100%;
    }
    .banner-video {
        width: 100%;
        border-radius: 0;
        height: 400px !important; 
    }
    .banner-media-title {
        display: none;
    }
    .info-items-wrap {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 40px;
    }
    .info-item {
        width: 48%;
    }
    .price-main-item-wrap {
        flex-direction: column !important;
    }
    .price-list-wrap {
        width: 100%;
    }
    .price-image {
        width: 100%;
        height: 600px;
    }
    .price-main-item-wrap:nth-child(2) {
        flex-direction: column-reverse !important;
    }
    .count-wrap {
        flex-direction: column;
        align-items: center;
    }
    .rehub-item span {
        font-size: 16px;
    }
    .service-item-price {
        text-wrap: nowrap;
    }
    .service-item-button {
        text-wrap: nowrap;
    }
    .team-items-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .team-item {
        width: 48%;
        flex: none;
    }
    .team-item-img {
        height: 275px;
    }
    .serts-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .sert-item {
        flex: unset;
        width: 48%;
    }
    .state-wrap {
        width: 122%;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .state-wrap::after {
        content: "";
        flex: 0 0 20%;
    }
    .footer-top-wrap {
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }
    .footer-links img {
        max-width: 40px;
    }
    .footer-bottom-wrap {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .footer-bottom-items {
        align-items: center;
    }
    .about-banner-wrap {
        flex-direction: column;
    }
    .about-services-item {
        max-width: 48%;
    }
    .about-facts-bar-num {
        font-size: 80px;
    }
    .about-facts-bar-text {
        font-size: 24px;
    }
    .reviews-page-content {
        flex-direction: column-reverse;
        gap: 0px;
    }
    .reviews-page-form-wrap {
        max-width: none;
        width: 100%;
        padding-top: 64px;
    }
    .reviews-video-wrapper {
        justify-content: center;
    }
    .contact-page-content-wrapper {
        flex-direction: column;
    }
    .contact-page-map {
        align-self: unset;
        height: 300px;
        width: 100%;
    }
    .licenses-page-item {
        max-width: 45%;
    }
    .licesnses-page-items {
        justify-content: center;
    }
    .post-items {
        justify-content: center;
    }
    .post-item {
        max-width: 289px;
    }
    .single-specialist-wrapper {
        flex-direction: column;
    }
    .edit-icon,
    .ready-icon,
    .warning-icon {
        min-width: 80px;
    }
    .modal-wrap {
        flex-direction: column;
        gap: 32px;
        padding-top: 32px;
    }
    .modal-inf {
        padding-left: 16px;
        padding-top: 0;
        gap: 20px;
    }
    .modal-content {
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    .rehub-gallery__item {
        height: 220px;
        width: auto;
    }
    .container, .container-sm {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    .banner-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
    }
    .banner-subtitle {
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -1%;
    }
    .banner-btn {
        width: 100%;
    }
    .banner-video {
        height: 260px;
    }
    .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: -1%;
    }
    .real-title {
        margin-bottom: 20px;
    }
    .info-item {
        width: 46%;
    }
    .price-section .container {
        padding: 0 !important;
    }
    .price-image {
        height: 400px;
    }
    .price-list-button {
        padding: 15px 24.5px;
        width: 100%;
        max-width: unset;
    }
    .price-list-wrap {
        gap: 40px;
        padding: 20px;
        padding-bottom: 40px;
    }
    .price-list-item {
        gap: 32px;
    }
    .price-list-item-amount {
        text-wrap: nowrap;
    }
    .fast-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
        margin-bottom: 28px;
    }
    .fast-desc {
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -1%;
        text-align: center;
        margin-bottom: 48px;
    }
    .fast-num {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
        margin-bottom: 48px;
    }
    .fast-btn {
        width: 100%;
    }
    .fast-box {
        padding: 20px;
    }
    .section-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
    }
    .count-title {
        margin-bottom: 40px;
    }
    .count-desc {
        font-size: 18px;
    }
    .count-wrap {
        gap: 40px;
    }
    .count-item {
        height: 70px;
        min-width: unset;
    }
    .count-item-number {
        width: 130px;
        min-width: 130px;
    }
    .count-item-number span {
        font-weight: 600;
        font-size: 32px;
        line-height: 60px;
        letter-spacing: -0.7%;
    }
    .count-items {
        gap: 10px;
    }
    .count-item-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
    }
    .cases {
        display: none;
    }
    .story-section .section-title {
        text-align: start;
    }
    .story-slider-wrapper .story-btn-next,
    .story-slider-wrapper .story-btn-prev {
        display: none !important;
    }
    .story-slider-wrapper .team-btn-next,
    .story-slider-wrapper .team-btn-prev {
        display: none !important;
    }
    .story-slider-wrapper .story-swiper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .story-slider-wrapper .team-swiper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .story-slider-wrapper .story-swiper .story-swiper-wrapper {
        display: flex;
        gap: 20px;
        transform: none !important; 
        width: auto !important;
    }
    .team-swiper .swiper-wrapper {
        display: flex;
        gap: 20px;
        transform: none !important; 
        width: auto !important;
        padding-left: 20px;
    }
    .story-slider-wrapper .story-swiper .story-slide {
        flex: 0 0 auto;
        max-width: 300px;
        min-width: 300px;
    }
    .story-slider-wrapper {
        width: 115%;
        transform: translateX(-20px);
    }
    .story-slider-wrapper .story-swiper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .story-slider-wrapper .story-swiper .story-swiper-wrapper::after {
        content: "";
        flex: 0 0 20px;
    }
    .team-swiper .swiper-wrapper::after {
        content: "";
        flex: 0 0 60px;
    }
    .team-item-img {
        height: 445px;
    }
    .start-section .section-title {
        margin-bottom: 10px;
        text-align: start;
    }
    .start-section-descr {
        text-align: start;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -3%;
        color: #494A4B;
    }
    .start-items {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
    }
    .start-items::after {
        content: "";
        flex: 0 0 20px;
    }
    .start-item {
        min-width: 300px;
        max-width: 300px;
    }
    .start-item {
        padding: 20px;
    }
    .start-item-title {
        font-weight: 600;
        font-size: 22px;
        line-height: 100%;
    }
    .start-item-desc {
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: -1%;
    }
    .start-item-content {
        gap: 20px;
    }
    .rehub-section .section-descr {
        display: none;
    }
    .rehub-section .section-title {
        text-align: start;
    }
    .rehub-gallery {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
        margin-bottom: 40px;
        padding-right: 60px;
    }
    .rehub-gallery__item img {
        height: 220px;
        width: 300px;
    }
    .rehub-gallery::after {
        content: "";
        flex: 0 0 20px;
    }
    .rehub-item {
        width: 100%;
        padding: 20px 16px;
    }
    .rehub-item svg {
        min-width: 20px;
    }
    .service-section .section-title {
        text-align: start !important;
    }
    .service-item-text {
        font-size: 18px;
    }
    .service-item-price {
        font-size: 18px;
    }
    .btn.service-item-button {
        font-size: 0; 
        padding: 8px; 
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }
    .btn.service-item-button::before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" fill="none" viewBox="0 0 24 25"><path fill="%231084BC" d="M21 12.74a.75.75 0 0 1-.75.75h-7.5v7.5a.75.75 0 1 1-1.5 0v-7.5h-7.5a.75.75 0 1 1 0-1.5h7.5v-7.5a.75.75 0 1 1 1.5 0v7.5h7.5a.75.75 0 0 1 .75.75Z"/></svg>');
        display: inline-block;
        vertical-align: middle;
    }
    .btn.service-item-button:hover::before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" fill="none" viewBox="0 0 24 25"><path fill="%23fff" d="M21 12.74a.75.75 0 0 1-.75.75h-7.5v7.5a.75.75 0 1 1-1.5 0v-7.5h-7.5a.75.75 0 1 1 0-1.5h7.5v-7.5a.75.75 0 1 1 1.5 0v7.5h7.5a.75.75 0 0 1 .75.75Z"/></svg>');
    }

    .service-item {
        padding: 18px 20px;
        min-height: 70px;
        height: auto;
    }
    .service-item-text {
        display: none;
    }
    .service-item-text-mob {
        display: flex;
        flex-direction: column;
        gap: 2px;
        max-width: 155px;
    }
    .service-item-text-mob-title {
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
    }
    .service-item-text-mob-desc {
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0%;
    }
    .service-tabs {
        gap: 30px;
        margin-bottom: 40px;
    }
    .service-tab {
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
    }
    .service-tab:first-child {
        padding-right: 30px;
    }
    .service-list-content {
        margin: 40px 0;
    }
    .service-addon-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
        height: 60px;
    }
    .service-addon:nth-child(4), .service-addon:nth-child(5), .service-addon:nth-child(6) {
        margin-bottom: 32px;
    }
    .service-addon-title br {
        display: none;
    }
    .service-addons-wrap {
        align-items: center;
        justify-content: center;
    }
    .service-addon {
        margin-bottom: 32px;
    }
    .service-section {
        margin-bottom: 30px;
    }
    .team-section-title {
        text-align: start !important;
        margin-bottom: 20px !important;
    }
    .team-section-text-m {
        text-align: start !important;
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -1%;
        margin-bottom: 40px;
    }
    .team-items-wrap {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
        justify-content: flex-start;
    }
    .team-item {
        width: unset;
        min-width: 289px;
        max-width: 289px;
        gap: 16px;
    }
    .team-item-text {
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
    }
    .team-items-wrap::after {
        content: "";
        flex: 0 0 40px;
    }
    .serts-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
        justify-content: flex-start;
    }
    .serts-wrap::after {
        content: "";
        flex: 0 0 40px;
    }
    .sert-item {
        width: unset;
        min-width: 289px;
        max-width: 289px;
        gap: 16px;
    }
    .serts-section .section-title {
        text-align: start !important;
        margin-bottom: 20px !important;
    }
    .faq-section .section-title {
        text-align: start !important;
        margin-bottom: 20px !important;
    }
    .accordion-item-header {
        padding: 32px 0;
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
    }
    .accordion-item-body-content {
        padding-left: 0;
        padding-right: 0;
    }
    .accordion-item-body-content {
        font-size: 16px;
        line-height: 100%;
    }
    .faq-wrap {
        padding-top: 20px;
    }
    .accordion-item-header svg {
        min-width: 40px;
    }
    .state-section .section-title {
        text-align: start !important;
    }
    .state-item {
        max-width: 289px;
        min-width: 289px;
    }
    .contact-form-box {
        padding: 16px;
    }
    .contact-form-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
    }
    .contact-form-text {
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
    }
    .contact-form-content {
        gap: 0px;
    }
    .contact-form-image {
        height: 300px;
        max-width: 300px;
    }
    .description-text-title {
        text-align: start !important;
    }
    .footer-up-btn {
        width: 100%;
    }
    .footer-bottom-up {
        width: 100%;
    }
    footer {
        padding: 32px 0;
    }
    .about-banner-inner-title {
        font-size: 18px;
        margin-top: 32px;
        margin-bottom: 16px;
    }
    .about-banner-img img{
        max-height: 300px;
    }
    .about-banner-wrap {
        gap: 30px;
    }
    .about-services-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
    }
    .about-services-wrap::after {
        content: "";
        flex: 0 0 20px;
    }
    .about-services-item {
        min-width: 289px;
        max-width: 289px;
        width: 100%;
        gap: 24px;
    }
    .about-story-slide {
        height: 345px;
    }
    .about-work-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-20px);
        width: 115%;
        padding-left: 20px;
    }
    .about-work-wrap::after {
        content: "";
        flex: 0 0 20px;
    }
    .about-work-title {
        display: none;
    }
    .about-work-item {
        min-width: 289px;
        max-width: 289px;
        width: 100%;
        padding-top: 24px;
    }
    .about-work-item-title {
        font-size: 20px;
    }
    .about-work-item-text {
        font-size: 14px;
    }
    .about-facts-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .about-work-mob-title {
        display: flex;
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 20px;
    }
    .reviews-tab {
        font-size: 16px;
    }
    .reviews-tab:first-child {
        padding-right: 32px;
    }
    .reviews-tabs {
        gap: 32px;
    }
    .reviews-text-item-text {
        font-size: 16px;
    }
    .reviews-page-title {
        margin-bottom: 32px;
    }
    .reviews-page-title-bar {
        border-radius: 16px;
        padding: 6px 18px;
        gap: 5px;
        height: 44px;
    }
    .price-page-content-title {
        font-size: 24px;
    }
    .post-item-img {
        height: 170px;
    }
    .specialists-page-items-wrapper .team-item {
        max-width: 158px;
        min-width: unset;
    }
    .specialists-page-items-wrapper .team-item .team-item-img {
        height: 237px !important;
    }
    .specialists-page-items-wrapper .team-item-title {
        font-size: 18px;
    }
    .specialists-page-items-wrapper .team-item-text {
        font-size: 14px;
    }
    .specialists-page-content .section-title {
        text-align: center !important;
    }
    .single-specialist-image {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    .single-specialist-content {
        font-size: 18px !important;
    }
    .single-specialist-desc {
        font-size: 18px !important;
    }
    .single-post-content .section-title {
        text-align: start !important;
    }
    .single-post-box {
        width: calc(100% + 40px);
        transform: translateX(-20px);
        padding: 32px 20px;
        border-radius: 0;
    }
    .edit-icon,
    .ready-icon,
    .warning-icon {
        min-width: 64px;
        width: 64px;
        align-items: flex-start;
        padding-top: 16px;
    }
    .ready-text {
        padding: 16px 12px;
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
    }
    .single-post-params {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .single-post-date {
        width: 48%;
    }
    .single-post-time {
        width: fit-content;
    }
    .modal-body .contact-form input {
        font-size: 14px;
        padding: 0 16px;
    }
    .reviews-top-btn-mob {
        display: flex;
    }
    .single-specialist-btn {
        margin: 0 auto;
    }
    .contact-page-content .section-title {
        text-align: center;
    }
    .contact-page-info-title {
        text-align: center;
    }
    .contact-page-content-wrapper {
        padding-top: 32px;
    }
    .contact-page-info {
        gap: 32px;
    }
    .contact-form-info {
        margin-bottom: 32px !important;
    }
    .modal-body-new-text {
        font-size: 32px;
    }
    .licenses-page-content .section-title {
        text-align: center !important;
    }
    .banner-media-title {
        position: absolute !important;
        top: -40px !important;
        display: block !important;
    }
    .banner-media {
        flex-direction: column-reverse !important;
        position: relative !important;
    }
}