.surgery-description {
    position: relative;
    padding-top: 152px;
    background-color: var(--darkest, #111);
}

@media (max-width: 1000px) {
    .surgery-description {
        padding-top: 130px;
    }
}

@media (max-width: 767px) {
    .surgery-description {
        padding-top: 80px;
    }
}

.surgery-description .marquee {
    width: 100vw;
    max-width: 100%;
    margin-bottom: 60px;
    height: 200px;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
}

@media (max-width: 1000px) {
    .surgery-description .marquee {
        height: 100px;
        margin-bottom: 50px;
    }
}

.surgery-description .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    -webkit-animation: marquee 50s linear infinite;
    animation: marquee 50s linear infinite;
}

@-webkit-keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.surgery-description__decor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: rgba(255, 255, 255, 0.1);
    font-family: "Sverdlovsk", sans-serif;
    font-size: 200px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    position: absolute;
    white-space: nowrap;
    bottom: 0;
    left: 0;
}

@media (max-width: 1450px) {
    .surgery-description__decor {
        left: -56px;
    }
}

@media (max-width: 1000px) {
    .surgery-description__decor {
        font-size: 100px;
    }
}

.surgery-description__decor span {
    display: block;
}

.surgery-description__decor span:not(:last-child) {
    margin-right: 65px;
}

@media (max-width: 1000px) {
    .surgery-description__decor span:not(:last-child) {
        margin-right: 30px;
    }
}

@-webkit-keyframes animMarquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animMarquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.surgery-description__title {
    margin-bottom: 36px;
}

@media (max-width: 1000px) {
    .surgery-description__title {
        text-align: center;
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .surgery-description__title {
        text-align: left;
        margin-bottom: 30px;
    }
}

.surgery-description__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 1fr;
    grid-template-columns: 49% 1fr;
    gap: 90px;
    margin-bottom: 80px;
    position: relative;
}

@media (max-width: 1450px) {
    .surgery-description__wrapper {
        -ms-grid-columns: 47% 1fr;
        grid-template-columns: 47% 1fr;
        gap: 60px;
    }
}

@media (max-width: 1210px) {
    .surgery-description__wrapper {
        gap: 47px;
    }
}

@media (max-width: 1000px) {
    .surgery-description__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 78px;
    }
}

@media (max-width: 767px) {
    .surgery-description__wrapper {
        gap: 72px;
    }
}

.surgery-description__photo {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    position: sticky;
    top: 15px;
}

@media (max-width: 1000px) {
    .surgery-description__photo {
        position: static;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.surgery-description__text {
    color: #B4B4B4;
}

.surgery-description__text h1 {
    font-size: 2em;
}

.surgery-description__text h2 {
    font-size: 1.7em;
}

.surgery-description__text h3 {
    font-size: 1.3em;
}

.surgery-description__text h4 {
    font-size: 1.17em;
}

.surgery-description__text h5 {
    font-size: 1em;
}

.surgery-description__text h1,
.surgery-description__text h2 {
    color: var(--white);
    font-family: "Sverdlovsk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.surgery-description__text h3,
.surgery-description__text h4,
.surgery-description__text h5,
.surgery-description__text h6 {
    color: var(--white);
}

.surgery-description__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
}

@media (max-width: 470px), (hover: hover) {
    .surgery-description__text a:hover {
        color: var(--white);
    }
}

.surgery-description__text ul {
    margin-bottom: 20px;
}

.surgery-description__text li {
    padding-left: 20px;
    position: relative;
}

@media (max-width: 1000px) {
    .surgery-description__text li {
        padding-left: 23px;
    }
}

.surgery-description__text li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--light-grey, #B7B7B7);
}

@media (max-width: 1000px) {
    .surgery-description__text li:before {
        left: 9px;
        top: 13px;
    }
}

.surgery-description__text p {
    margin-bottom: 20px;
}

.surgery-info {
    position: relative;
}

.surgery-info__photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 46%;
    height: 100%;
    z-index: -1;
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
}

.surgery-info__photo img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 100%;
}

@media (max-width: 1000px) {
    .surgery-info__photo {
        width: 130%;
    }
}

.surgery-info__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 148px;
    padding: 60px 0;
    min-height: 772px;
    width: 61%;
}

@media (max-width: 1450px) {
    .surgery-info__wrapper {
        min-height: 600px;
        margin-top: 105px;
    }
}

@media (max-width: 1210px) {
    .surgery-info__wrapper {
        min-height: 510px;
    }
}

@media (max-width: 1000px) {
    .surgery-info__wrapper {
        height: calc(100vh - 105px);
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .surgery-info__wrapper {
        width: 100%;
        margin-top: 60px;
        min-height: 660px;
        height: auto;
        padding-top: 0;
        padding-bottom: 53px;
    }
}

.surgery-info__back {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.3;
    letter-spacing: 0.21em;
}

@media (max-width: 767px) {
    .surgery-info__back {
        display: none;
    }
}

.surgery-info__back svg {
    margin-right: 12px;
}

.surgery-info__back path {
    -webkit-transition: stroke 0.5s;
    transition: stroke 0.5s;
}

.surgery-info__back:hover path {
    stroke: #FFFFFF;
}

.surgery-info__subtitle {
    display: block;
    font-size: 24px;
    line-height: 1.23;
    text-transform: uppercase;
    letter-spacing: 0.23em;
    margin-bottom: 10px;
    font-weight: normal;
    color: #979797;
}

@media (max-width: 1450px) {
    .surgery-info__subtitle {
        font-size: 18px;
    }
}

.surgery-info__title {
    font-family: "Sverdlovsk", sans-serif;
    color: var(--white);
    font-size: 100px;
    line-height: 1.23;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 28px;
}

@media (max-width: 1450px) {
    .surgery-info__title {
        font-size: 80px;
    }
}

@media (max-width: 1210px) {
    .surgery-info__title {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .surgery-info__title {
        font-size: 32px;
        margin-bottom: 18px;
    }
}

.surgery-info__text {
    max-width: 594px;
    width: 100%;
    text-wrap: balance;
    margin-bottom: 38px;
    color: #DBDBDB;
}

@media (max-width: 767px) {
    .surgery-info__text {
        max-width: 100%;
    }
}

.surgery-info__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
}

@media (max-width: 470px), (hover: hover) {
    .surgery-info__text a:hover {
        color: var(--white);
    }
}

.surgery-info__text ul {
    margin-bottom: 10px;
}

.surgery-info__text li {
    padding-left: 20px;
    position: relative;
}

@media (max-width: 1000px) {
    .surgery-info__text li {
        padding-left: 23px;
    }
}

.surgery-info__text li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--light-grey, #B7B7B7);
}

@media (max-width: 1000px) {
    .surgery-info__text li:before {
        left: 9px;
        top: 13px;
    }
}

.surgery-info__text p:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .surgery-info__btn {
        border-color: #FFFFFF;
        -webkit-backdrop-filter: blur(14.6000003815px);
        backdrop-filter: blur(14.6000003815px);
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 767px) {
    .surgery-info__btn {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.home-before {
    background-color: var(--darkest, #111);
    padding-bottom: 120px;
    margin-bottom: 120px;
    position: relative;
}

@media (max-width: 767px) {
    .home-before {
        background-color: var(--Dark, #181818);
    }
}

@media (max-width: 1450px) {
    .home-before {
        margin-bottom: 105px;
    }
}

@media (max-width: 1000px) {
    .home-before {
        padding-bottom: 80px;
        margin-bottom: 118px;
    }
}

@media (max-width: 767px) {
    .home-before {
        padding-top: 120px;
        padding-bottom: 70px;
    }
}

.home-before__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 36px;
}

@media (max-width: 1000px) {
    .home-before__top {
        margin-bottom: 46px;
    }
}

@media (max-width: 767px) {
    .home-before__top {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home-before__title {
        width: 100%;
        text-align: center;
    }
}

.home-before__more span {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .home-before__more {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.home-before__list {
    margin-right: -200px;
    margin-bottom: 40px;
}

@media (max-width: 1450px) {
    .home-before__list {
        margin-right: -21%;
    }
}

@media (max-width: 1210px) {
    .home-before__list {
        margin-right: -26%;
        margin-bottom: 32px;
    }
}

@media (max-width: 1000px) {
    .home-before__list {
        margin-right: -15%;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .home-before__list {
        margin-right: 0;
        padding-bottom: 80px;
        margin-bottom: 33px;
    }
}

.home-before .swiper-navigation {
    display: none;
}

@media (max-width: 767px) {
    .home-before .swiper-navigation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.home-before__photos {
    aspect-ratio: 1/1;
}

@media (max-width: 1000px) {
    .home-before__photos:nth-child(5) {
        display: none;
    }
}

.home-before__text {
    max-width: 944px;
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 1210px) {
    .home-before__text {
        max-width: 832px;
        font-size: 18px;
    }
}

@media (max-width: 1000px) {
    .home-before__text {
        font-size: 16px;
    }
}

.home-before .beer-handle, .home-before .beer-range:focus ~ .beer-handle {
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1000px) {
    .home-reviews .swiper-wrapper {
        padding-bottom: 98px;
    }
}

.home-reviews__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 1450px) {
    .home-reviews__top {
        margin-bottom: 17px;
    }
}

@media (max-width: 1210px) {
    .home-reviews__top {
        margin-bottom: 29px;
    }
}

@media (max-width: 1000px) {
    .home-reviews__top {
        margin-bottom: 47px;
    }
}

@media (max-width: 767px) {
    .home-reviews__top {
        margin-bottom: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

.home-reviews__title {
    margin-bottom: 10px;
}

.home-reviews__slider {
    margin-bottom: 30px;
    margin-right: -28%;
}

@media (max-width: 1450px) {
    .home-reviews__slider {
        margin-right: -23%;
    }
}

@media (max-width: 1000px) {
    .home-reviews__slider {
        margin-right: -27%;
    }
}

@media (max-width: 767px) {
    .home-reviews__slider {
        margin-right: 0;
    }
}

.home-reviews__slide {
    padding-top: 53px;
    position: relative;
}

.home-reviews__slide:before {
    content: "";
    width: 109px;
    height: 121px;
    position: absolute;
    top: 0;
    left: 25px;
    background-image: url(../img/icons/quotes.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.home-reviews__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
    height: 74px;
    overflow: hidden;
}

.home-reviews__item {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.home-reviews__item:not(:last-child) {
    margin-right: 10px;
}

.home-reviews__link {
    width: 64px;
    height: 64px;
    overflow: hidden;
}

.home-reviews__descr {
    margin-bottom: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
    .home-reviews__descr {
        -webkit-line-clamp: 5;
        margin-bottom: 28px;
    }
}

.home-reviews__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-reviews__photo {
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 24px;
}

@media (max-width: 767px) {
    .home-reviews__photo {
        width: 50px;
        height: 50px;
        margin-right: 14px;
    }
}

.home-reviews__firstsimbol {
    flex: none;
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 24px;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 26px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.home-reviews__name {
    display: block;
    font-size: 24px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .home-reviews__name {
        font-size: 20px;
        font-weight: 400;
    }
}

.home-reviews__text {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: #999;
}

.home-reviews__btn {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .home-blog .swiper .swiper-navigation {
        display: none;
    }
}

@media (max-width: 470px) {
    .home-blog .swiper .swiper-navigation {
        left: 26%;
    }
}

@media (max-width: 1210px) {
    .home-blog {
        margin-bottom: 83px;
    }
}

@media (max-width: 1000px) {
    .home-blog {
        margin-bottom: 98px;
    }
}

.home-blog__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 36px;
}

@media (max-width: 1000px) {
    .home-blog__top {
        margin-bottom: 46px;
    }
}

@media (max-width: 767px) {
    .home-blog__top {
        margin-bottom: 28px;
    }
}

.home-blog__list {
    margin-right: -17%;
}

@media (min-width: 1930px) {
    .home-blog__list {
        margin-right: 0;
    }
}

@media (max-width: 1450px) {
    .home-blog__list {
        margin-right: -14%;
    }
}

@media (max-width: 767px) {
    .home-blog__list {
        margin-right: -34%;
    }
}

@media (max-width: 350px) {
    .home-blog__list {
        margin-right: 0;
    }
}

.home-blog__item {
    color: var(--white);
    position: relative;
    padding: 14px 32px 50px 32px;
    aspect-ratio: 4/5;
    overflow: hidden;
}

@media (max-width: 1450px) {
    .home-blog__item {
        padding: 34px 32px 30px 32px;
    }
}

@media (max-width: 767px) {
    .home-blog__item {
        padding: 0;
        aspect-ratio: auto;
    }
}

.home-blog__item:hover .home-blog__img {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.home-blog__item:hover .home-blog__info {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.home-blog__img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
    -webkit-transition: -webkit-filter 0.5s;
    transition: -webkit-filter 0.5s;
    transition: filter 0.5s;
    transition: filter 0.5s, -webkit-filter 0.5s;
}

@media (max-width: 767px) {
    .home-blog__img {
        position: static;
        aspect-ratio: 10/11;
        margin-bottom: 16px;
    }
}

.home-blog__info {
    -webkit-transform: translateY(79%);
    -ms-transform: translateY(79%);
    transform: translateY(79%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

@media (max-width: 1630px) {
    .home-blog__info {
        -webkit-transform: translateY(72%);
        -ms-transform: translateY(72%);
        transform: translateY(72%);
    }
}

@media (max-width: 1050px) {
    .home-blog__info {
        -webkit-transform: translateY(66%);
        -ms-transform: translateY(66%);
        transform: translateY(66%);
    }
}

@media (max-width: 1002px) {
    .home-blog__info {
        -webkit-transform: translateY(72%);
        -ms-transform: translateY(72%);
        transform: translateY(72%);
    }
}

@media (max-width: 767px) {
    .home-blog__info {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.home-blog__content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-blog__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    .home-blog__tabs {
        position: absolute;
        top: 22px;
        left: 8px;
    }
}

.home-blog__tab:not(:last-child) {
    margin-right: 2px;
}

@media (max-width: 767px) {
    .home-blog__tab {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }
}

.home-blog__inner {
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 1210px) {
    .home-blog__inner {
        height: 90px;
    }
}

@media (max-width: 767px) {
    .home-blog__inner {
        height: auto;
        margin-bottom: 15px;
    }
}

.home-blog__name {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 3.48px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 1210px) {
    .home-blog__name {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 767px) {
    .home-blog__name {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 20px;
        letter-spacing: 2.32px;
    }
}

.home-blog__text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    height: 210px;
    margin-bottom: 30px;
}

@media (max-width: 1630px) {
    .home-blog__text {
        -webkit-line-clamp: 6;
        height: 180px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .home-blog__text {
        display: none;
    }
}

.home-blog__link-more {
    color: var(--white);
}

@media (max-width: 767px) {
    .home-blog__link-more {
        margin-bottom: 20px;
    }
}

@media (max-width: 350px) {
    .home-blog__link-more {
        margin-bottom: 50px;
    }
}


.home-reviews__blockquote .home-reviews__links {
    display: none;
}


.home-reviews__firstsimbol {
    flex: none;
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 24px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}


body .main-wrapper {
    overflow-x: clip;
}

.surgery-page {
    text-wrap: balance;
}

@media (max-width: 1000px) {
    .surgery-page {
        background: none;
    }
}

.surgery-page .home-before {
    background-color: var(--dark, #181818);
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .surgery-page .home-before {
        padding-top: 0;
    }
}

.surgery-page .home-reviews__btn {
    margin: 0;
}

.surgery-page .home-before__more {
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 767px) {
    .surgery-page .home-before__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .surgery-page .home-before__title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .surgery-page .home-reviews .swiper-navigation {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        left: 0;
    }
}

/*.swiper-pagination.surgeries-swiper-pagination {*/
/*    position: static;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    -ms-flex-wrap: wrap;*/
/*    flex-wrap: wrap;*/
/*    width: 100%;*/
/*    gap: 8px 0;*/
/*    margin-top: 20px;*/
/*}*/

/*.surgeries-swiper-pagination .swiper-pagination-bullet {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background-color: var(--light-gray);*/
/*    color: var(--dark);*/
/*    line-height: 1;*/
/*    !*opacity: 1;*!*/
/*    -webkit-transition: opacity 0.5s;*/
/*    transition: opacity 0.5s;*/
/*}*/

.surgeries-swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper .swiper-wrapper.surgeries-swiper-wrapper {
    padding-bottom: 40px;
}

.swiper .surgeries-swiper-navigation.swiper-navigation {
    position: static;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .swiper .surgeries-swiper-navigation.swiper-navigation {
        left: 50%;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.before-list__item {
    max-width: 550px;
}

/*@media (max-width: 1000px) {*/
/*  .before-list__item {*/
/*    max-width: 550px;*/
/*  }*/
/*}*/
@media (max-width: 767px) {
    .before-list__item {
        max-width: 500px;
        /*margin: 0 auto;*/
    }
}

.before-list__item-beer {
    aspect-ratio: 1/1;
    width: 100%;
}

.before-list__item-info {
    margin-top: 13px;
    padding-top: 16px;
    border-top: 1px solid rgba(183, 183, 183, 0.3);
}

@media (max-width: 1450px) {
    .before-list__item-info {
        padding-top: 8px;
    }
}

.before-list__item-info.active .before-list__item-more svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.before-list__item-info.active .before-list__item-link {
    height: 20px;
}

.before-list__item-info.active .before-list__item-text {
    height: 100px;
}

.before-list__item-info.active .before-list__item-text p {
    height: 74px;
}

.before-list__item-name {
    font-size: 18px;
    line-height: 1.67;
    color: var(--white);
    margin-bottom: 7px;
}

@media (max-width: 1450px) {
    .before-list__item-name {
        margin-bottom: 0;
    }
}

.before-list__item-text {
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    height: 58px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    margin-bottom: 5px;
}

.before-list__item-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    height: 58px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

@media (max-width: 767px) {
    .before-list__item-text {
        margin-bottom: 10px;
    }
}

.before-list__item-link {
    color: var(--blue);
    /*height: 0;*/
    overflow: hidden;
    -webkit-transition: opacity 0.5s, height 0.5s;
    transition: opacity 0.5s, height 0.5s;
    margin-top: 7px;
}

.before-list__item-link:hover {
    opacity: 0.6;
}

.before-list__item-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.5;
    font-size: 14px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.before-list__item-more:hover {
    opacity: 1;
}

.before-list__item-more svg {
    fill: #B7B7B7;
    margin-left: 5px;
}

.article-content__attention {
    padding-top: 25px;
    border-top: 2px solid var(--blue);
    font-size: 14px;
    margin-bottom: 60px;
}

.article-content__attention-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--light-gray);
}


.surgery-price {
    margin-bottom: 80px;
}
.surgery-price__title {
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 1000px) {
    .surgery-price__title {
        margin-bottom: 40px;
    }
}

.surgery-price__wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .surgery-price__wrapper {
        flex-direction: column-reverse;
    }
}

.surgery-price__text {
    margin-bottom: 24px;
}

.surgery-price__link {
    color: #C9C9C9;
    letter-spacing: 3.36px;
    margin-bottom: 64px;
    text-align: right;
    justify-content: flex-end;
}

.surgery-price__right {
    min-width: 510px;
}

@media (max-width: 480px) {
    .surgery-price__right {
        min-width: initial;
    }
}

.surgery-price__price {
    color: var(--white, #FFF);
    font-family: "Sverdlovsk", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3.75px;
    text-transform: uppercase;
    text-align: right;
}

@media (max-width: 380px) {
    .surgery-price__price {
        font-size: 20px;
        letter-spacing: 2.75px;
    }
}

.surgery-price__price-item {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 10px;
}

.surgery-price__price-count {
    font-size: 80px;
    letter-spacing: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1450px) {
    .surgery-price__price-count {
        font-size: 60px;
        letter-spacing: 8px;
    }
}

@media (max-width: 480px) {
    .surgery-price__price-count {
        font-size: 48px;
        letter-spacing: 6px;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .surgery-price__price-count {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

.surgery-price__price-text {
    font-size: 25px;
    line-height: 1.5;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .home-reviews .swiper-wrapper {
        padding-bottom: 98px;
    }
}
.home-reviews__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}
@media (max-width: 1450px) {
    .home-reviews__top {
        margin-bottom: 17px;
    }
}
@media (max-width: 1210px) {
    .home-reviews__top {
        margin-bottom: 29px;
    }
}
@media (max-width: 1000px) {
    .home-reviews__top {
        margin-bottom: 47px;
    }
}
@media (max-width: 767px) {
    .home-reviews__top {
        margin-bottom: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}
.home-reviews__title {
    margin-bottom: 10px;
}
.home-reviews__slider {
    margin-bottom: 30px;
    margin-right: -28%;
}
@media (max-width: 1450px) {
    .home-reviews__slider {
        margin-right: -23%;
    }
}
@media (max-width: 1000px) {
    .home-reviews__slider {
        margin-right: -27%;
    }
}
@media (max-width: 767px) {
    .home-reviews__slider {
        margin-right: 0;
    }
}
.home-reviews__slide {
    padding-top: 53px;
    position: relative;
}
.home-reviews__slide:before {
    content: "";
    width: 109px;
    height: 121px;
    position: absolute;
    top: 0;
    left: 25px;
    background-image: url(../img/icons/quotes.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.home-reviews__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
    height: 74px;
    overflow: hidden;
}
.home-reviews__item {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}
.home-reviews__item:not(:last-child) {
    margin-right: 10px;
}
.home-reviews__link {
    width: 64px;
    height: 64px;
    overflow: hidden;
}
.home-reviews__descr {
    margin-bottom: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
    .home-reviews__descr {
        -webkit-line-clamp: 5;
        margin-bottom: 28px;
    }
}
.home-reviews__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.home-reviews__photo {
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 24px;
}
@media (max-width: 767px) {
    .home-reviews__photo {
        width: 50px;
        height: 50px;
        margin-right: 14px;
    }
}
.home-reviews__name {
    display: block;
    font-size: 24px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
}
@media (max-width: 767px) {
    .home-reviews__name {
        font-size: 20px;
        font-weight: 400;
    }
}
.home-reviews__text {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: #999;
}
.home-reviews__btn {
    margin: 0 auto;
}
.home-reviews__blockquote .home-reviews__links{
    display:none;
}

.home-reviews__firstsimbol {
    flex: none;
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 24px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}


.home-blog__item-inner {

}


.home-blog__item-inner {
    color: var(--white);
    position: relative;
    padding: 14px 32px 50px 32px;
    /*aspect-ratio: 4/5;*/
    overflow: hidden;
}
@media (max-width: 1450px) {
    .home-blog__item-inner {
        padding: 34px 32px 30px 32px;
    }
}
@media (max-width: 767px) {
    .home-blog__item-inner {
        padding: 0;
        /*aspect-ratio: auto;*/
    }
}


.home-blog__item {
    padding: 0;
    aspect-ratio: auto;
}

@media (max-width: 1210px) {
    .home-blog__inner {
        height: 120px;
    }
}

@media (max-width: 767px) {
    .home-blog__inner {
        height: auto;
    }
}