.header {
    background: #1E1E1E;
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
  display: flex;
  width: 100px;
  flex-shrink: 0;
}

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

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 40px;
}

.header__navigation {
    border-radius: 30px;
    background: #5555553b;
    padding: 16px 0;
}

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

.navigation__list a {
    color: #FAFAFA;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px 20px;
    transition: .3s;
}

.navigation__list a.active {
    border-radius: 30px;
    background: #85041A;
}

.navigation__list a:hover {
    border-radius: 30px;
    background: #85041A;
}

.navigation__list a:hover.active {
    color: #FAFAFA;
}

.header__tel {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
    border-radius: 40px;
    border: 1px solid #FFF;
    padding: 13px 19px;
    transition: .3s;
}

.header__tel:hover {
    color: #e4042a;
}

.header-menu-icon {
    display: none;
}

.services-desktop {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 16px;
}

.services-desktop__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 5px;
    background: rgba(217, 217, 217, 1);
    text-align: center;
    color: #1E1E1E;
    font-weight: 18;
    font-weight: 700;
    transition: .2s ease-in-out;
}

.services-desktop__item:hover {
    background: #85041A;
    color: #fff;
}

@media (max-width:1200px) {
    .header-menu-icon {
        z-index: 150;
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        cursor: pointer;
        padding: 10px;
        order: 3;
    }

    .header-menu-icon span,
    .header-menu-icon::after,
    .header-menu-icon::before {
        position: absolute;
        left: 25%;
        height: 4%;
        width: 30px;
        transition: all 0.3s ease 0s;
        background-color: #fafafa;
    }

    .header-menu-icon::after,
    .header-menu-icon::before {
        content: "";
    }

    .header-menu-icon::after {
        top: 12px;
    }

    .header-menu-icon::before {
        bottom: 12px;
    }

    .header-menu-icon span {
        top: 50%;
        transform: scale(1) translate(0, -50%);
    }

    .header-menu-icon._active span {
        transform: scale(0) translate(0, -50%);
    }

    .header-menu-icon._active::after {
        top: 48%;
        left: 27%;
        transform: rotate(-45deg) translate(0, -50%);
        background-color: #fff;
        height: 1%;
        width: 20px;
    }

    .header-menu-icon._active::before {
        bottom: 50%;
        left: 27%;
        transform: rotate(45deg) translate(0, 50%);
        background-color: #fff;
        height: 1%;
        width: 20px;
    }

    .header__navigation {
        position: fixed;
        top: -200%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1E1E1E;
        border-radius: 0;
        z-index: 100;
        transition: top 0.8s ease 0s;
    }

    .header__navigation._active {
        top: 0;
    }

    .navigation__list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 100px;
        padding-left: 30px;
        align-items: baseline;
    }

    .navigation__list a.active {
        background: none;
    }

    .header__tel {
        font-size: 14px;
    }

}

@media (max-width:992px) {
    .header__tel {
        display: none;
    }
    .header__wrapper {
        padding: 10px 20px;
    }
    .navigation__list a {
        font-size: 20px;
    }
}

/* header end */
/* main */
.breadcrumbs {
    margin-bottom: 25px;
    padding-top: 100px;
    position: relative;
    z-index: 10;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumbs ul li {
    color: #555;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: lowercase;
    /* 93.75% */
}

.breadcrumbs ul a {
    color: #555;
    transition: .3s;
}

.breadcrumbs ul a:hover {
    color: #85041A;
}

.main-block {
    position: relative;
    background-color: #000;
}

.main-block::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.main-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 50px;
}
.mob-img {
    display: none;
}
.main-block__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 300px 15px 35px;
}

.main-block__content span {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
    /* 18px */
}

.main-block__content h1 {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    /* font-size: 62px; */
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    /* 55.8px */
    letter-spacing: -2.17px;
    text-transform: uppercase;
    margin: 7px 0;
}

.main-block__content p {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 23.8px */
    max-width: 556px;
    margin: 0 auto;
}

.main-block__content a {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    background: #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 36px;
    width: 230px;
    margin: 35px auto 64px;
    transition: .3s;
}

@media (min-width: 480px) {   
    .main-block__content a:hover {
        background-color: #3d9210;
        color: #fff;
    }
}

.main-block__content .mob-tel {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 15px */
    border-radius: 40px;
    border: 1px solid #FFF;
    padding: 22px 35px;
    background-color: transparent;
    display: none;
}

.main-block__content-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.main-block__content .main-block__content-info span {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.84px;
}

.main-block__content .main-block__content-info p {
    color: #FAFAFA;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 210px;
}

.services-block {
    background-color: #FAFAFA;
    padding-top: 100px;
    padding-bottom: 100px;
}

.services-block__wrapper h2 {
    font-size: 50px;
}

.services-block__wrapper p {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 40px;
}

.services-block__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: auto;
    position: relative;
}

.services-block__container::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #555;
}

.services-block__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-block__list li {
    margin-left: auto;
}

.list-right {
    border: none;
}

.list-right li {
    margin-right: auto;
    margin-left: 0;
}

.services-block__list a {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    border: 1px solid #C2C2C2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 24px 35px;
    transition: .3s;
}

.services-block__list a:hover {
    color: #fff;
    background-color: #85041A;
    border-color: #85041A;
}

.services-block__logo {
    text-align: center;
    position: relative;
    margin: 28px auto;
}

.services-block__logo::before {
    position: absolute;
    content: '';
    width: 47%;
    height: 1px;
    background-color: #555;
    left: 0;
    top: 50%;
}

.services-block__logo::after {
    position: absolute;
    content: '';
    width: 47%;
    height: 1px;
    background-color: #555;
    right: 0;
    top: 50%;
}

.services-block__container,
.services-block__logo {
    display: none;
}

.feedback-block {
    padding: 130px 0;
    background-color: #1E1E1E;
}

.feedback-block__wrapper {
    display: flex;
    flex-direction: column;
}

.feedback-block h2 {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 39.1px */
    text-transform: uppercase;
    max-width: 826px;
    margin: auto;
}

.feedback-block p {
    color: #F3F3F3;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 21px */
    max-width: 549px;
    margin: 8px auto 35px;
}

.feedback-block a {
    border-radius: 40px;
    background: #FFF;
    color: #1E1E1E;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 15px */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 22px;
    margin: auto;
    transition: .3s;
}

/* .feedback-block a:hover {
    background-color: #85041A;
    color: #FAFAFA;
} */

@media (min-width: 480px) {
    .feedback-block a:hover {
        background: #3d9210;
        color: #FAFAFA;
    }
}


.feedback-block span {
    color: #c5c908;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 16.8px */
    margin: 15px auto;
}

.feedback-block__wrapper .mob-tel {
    background-color: transparent;
    border: 1px solid #fff;
    color: #FFF;
    margin-top: 10px;
    display: none;
}

.about-block__wrapper {
    display: flex;
    gap: 40px;
    background-color: #FAFAFA;
    margin-top: 80px;
    margin-bottom: 80px;
}

.about-block__left {
    width: 50%;
    /* max-width: 680px; */
    position: relative;
    padding: 20%;
}

.about-block__left::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000040;
    z-index: 1;
}

.about-block__left .main-block__content-info {
    position: absolute;
    bottom: 15px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
    gap: 10px;
    display: none;
}

.about-block__left .main-block__content-info .info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-block__left .main-block__content-info .info-container span {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
}

.about-block__left .main-block__content-info .info-container p {
    color: #FAFAFA;
    text-align: center;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-block__left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-block__right {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 50%;
}

.about-block__right h2 {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: uppercase; */
    max-width: 600px;
}

.about-block__right p {
    color: #555;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 24px */
    margin-top: 20px;
}

.about-block__right a {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 15px */
    border-radius: 40px;
    background: #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 177px;
    padding: 22px;
    margin-top: 35px;
    transition: .3s;
}

@media (min-width: 480px) {   
    .about-block__right a:hover {
        background: #3d9210;
    }
}

.reviews-block {
    padding-bottom: 66px;
    padding-top: 80px;
    background-color: #1E1E1E;
}

.reviews-block__wrapper h2 {
    text-align: start;
    color: #FAFAFA;
    margin-bottom: 30px;
}

.reviews__slider {
    padding-bottom: 50px;
    height: 512px;
}

.swiper-pagination-bullet {
    background: #fff;
}

.reviews__slider .swiper-slide {
    position: relative;
    transition: .3s;
}


.reviews-slide {
    position: relative;
    max-height: 100%;
    overflow: hidden;
}

.reviews-slide::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.7;
}
.reviews .reviews-slide::after {
    display: none;
}
.reviews__slider .swiper-slide-active .reviews-slide::after{
    display: none;
}
.reviews-slide img {
    width: 100%;
    max-height: 100%;
    /* object-fit: cover; */
}

.open-modal {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    width: 210px;
    border-radius: 30px;
    background: #85041A;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.reviews__container .open-modal {
    opacity: 1;
    visibility: visible;
}

.swiper-slide-active .open-modal {
    opacity: 1;
    visibility: visible;
}
/* 
@media (min-width: 992px) {   
    .reviews-slide a:hover {
        background-color: #1E1E1E;
        color: #e4042a;
    }
} */

.open-modal:hover {
    background: #3d9210;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.swiper-button-prev,
.swiper-button-next {
    top: 96%;
}

.swiper-button-prev {
    left: 47%;
}

.swiper-button-next {
    right: 47%;
}

.swiper-button-prev svg rect,
.swiper-button-prev svg path,
.swiper-button-next svg rect,
.swiper-button-next svg path {
    transition: .3s;
}

.swiper-button-prev:hover svg rect,
.swiper-button-next:hover svg rect {
    fill: #85041A;
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
    fill: #FAFAFA;
}

.faq {
    background-color: #FAFAFA;
    padding-bottom: 100px;
    padding-top: 80px;
}

.faq__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.faq__left h2 {
    text-align: start;
}

.faq__right {
    width: 100%;
    max-width: 635px;
}

.accordeon__wrapper {
    border-top: 1px solid #555;
    padding-top: 16px;
    padding-bottom: 27px;
    position: relative;
}

.accordeon__wrapper:last-of-type {
    border-bottom: 1px solid #555;
}

.accordeon__wrapper::after {
    position: absolute;
    content: '';
    top: 15px;
    right: 0;
    width: 31px;
    height: 31px;
    background: url('../images/new/services-after.svg') center no-repeat;
    transition: .3s;
}

.accordeon__wrapper.active::after {
    transform: rotate(45deg);
}

.accordeon__title {
    cursor: pointer;
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 22.4px */
    transition: .3s;
    padding-right: 40px;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.accordeon__wrapper.active .accordeon__title {
    color: #e4042a;
}

.accordeon__title:hover {
    color: #85041A;
}

.accordeon__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out;
}

.accordeon__content p {
    color: #555;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 24px */
    padding: 10px 0 0;
}

.feedback-block-white {
    background-color: #fff;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 80px;
}

.feedback-block-white h2 {
    color: #1E1E1E;
    max-width: 624px;
    font-size: 42px;
}

.feedback-block-white p {
    color: #555;
}

.feedback-block-white a {
    background-color: #85041A;
    color: #fafafa;
}

@media (min-width: 480px) {
    .feedback-block-white a:hover {
        background: #3d9210;
        color: #fff;
    }
}

.feedback-block-white span {
    color: #1E1E1E;
}

.feedback-block-white.feedback-block span {
    color: #C6213D;
}

.feedback-block-white .mob-tel {
    border-color: #555;
    color: #1E1E1E;
}

.swiper-pagination {
    display: none;
}

.about-block__right p {
    font-family: 'Segoe UI Regular';
}

@media (max-width:1400px) {
    .main-block__content h1 {
        /* font-size: 54px; */
        font-size: 46px;
    }

    .about-block__right h2 {
        font-size: 27px;
        max-width: 400px;
    }
}

@media (max-width:1140px) {
    .main-block__content h1 {
        /* font-size: 48px; */
        font-size: 40px;
    }

    .services-block__list a {
        font-size: 14px;
    }

    .feedback-block h2 {
        font-size: 28px;
    }

    .about-block__right h2 {
        font-size: 24px;
    }

    .about-block__right p {
        font-size: 18px;
    }
}

@media (max-width:992px) {
    .services-desktop {
        display: none;
    }
    .services-block__container {
        display: grid;
    }
    .main-block__content {
        padding: 210px 15px 1px;
    }
    .dect-img {
        display: none;
    }
    .mob-img {
        display: block;
    }
    .main-block__content h1 {
        /* font-size: 44px; */
        font-size: 38px;
    }

    .main-block__content p {
        font-size: 15px;
        max-width: 294px;
    }

    .main-block__content span {
        font-size: 16px;
    }

    .main-block__content a {
        margin: 10px auto;
    }

    .main-block__content .mob-tel {
        display: flex;
    }

    .main-block__content-info {
        display: none;
    }

    .services-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-block__container {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 10px;
    }

    .services-block__container::after {
        display: none;
    }

    .services-block__list {
        gap: 15px;
    }

    .services-block__list li {
        margin-left: 0;
        position: relative;
        border-bottom: 1px solid #c2c2c2;
        padding-bottom: 15px;
    }

    .services-block__list li::after {
        position: absolute;
        content: '';
        background: url('../images/new/services-after.svg') center no-repeat;
        top: -7px;
        right: 0;
        width: 31px;
        height: 31px;
    }

    .list-right li {
        margin-right: 0;
    }

    .services-block__list a {
        border: none;
        padding: 0;
        border-radius: 0;
        font-size: 15px;
        width: 100%;
        justify-content: start;
        text-transform: none;
        padding-right: 45px;
        position: relative;
        z-index: 1;
    }
    .services-block__list a:hover {
        background-color: transparent;
        color: #85041A;
    }
    .services-block__logo {
        display: none;
    }

    .swiper-pagination {
        display: block;
    }

    .feedback-block {
        margin: 0 auto;
        padding: 70px 0;
    }

    .feedback-block h2 {
        font-size: 26px;
    }

    .feedback-block__wrapper .mob-tel {
        display: flex;
    }

    .about-block__wrapper {
        flex-direction: column;
    }

    .about-block__left {
        width: 100%;
        padding: 44%;
    }
    .about-block__left::before {
        display: block;
    }
    .about-block__right {
        padding-top: 0;
        width: 100%;
        padding-bottom: 0;
    }

    .about-block__right h2 {
        font-size: 30px;
        max-width: 500px;
    }

    .about-block__right p {
        font-size: 14px;
    }

    .about-block__left .main-block__content-info {
        display: flex;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-prev svg rect,
    .swiper-button-next svg rect {
        fill: transparent;
    }

    .swiper-button-next svg,
    .swiper-button-prev svg {
        transform: scale(1.5);
    }

    .swiper-button-prev svg path,
    .swiper-button-next svg path {
        fill: #85041A;
        transform: scale(1.5) translate(-5px, -5px);
    }

    .swiper-button-prev,
    .swiper-button-next {
        top: 50%;
    }

    .swiper-button-next {
        right: 15px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq__wrapper {
        flex-direction: column;
    }

    .faq__right {
        max-width: 100%;
    }

    .accordeon__title {
        font-size: 16px;
    }

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

    .feedback-block-white {
        padding: 60px 0;
        margin: 0;
    }

    .main-block img {
        object-fit: cover;
    }
}


/* @media (max-width:480px) {
    .services-block__list a {
        max-width: 270px;
    }
} */


/* main end */

/* footer */
.footer {
    margin-top: auto;
    background-color: #1E1E1E;
    position: relative;
}
.footer::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 1px solid #fff;
}
.footer__wrapper {
    padding-top: 60px;
    padding-bottom: 44px;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
}

.footer__bot .footer__container {
    margin-top: 36px;
}

.footer__container::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid #C2C2C2;
    width: 1px;
    height: 100%;
}

.footer__left {
    display: flex;
    justify-content: space-between;
}

.footer__right {
    display: flex;
    justify-content: space-between;
}

.footer__left span,
.footer__right span {
    color: #C6213D;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 16.8px */
    text-transform: uppercase;
}

.contacts-container {
    width: 100%;
    max-width: 204px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contacts-container:nth-of-type(2) {
    margin-top: 30px;
}

.contacts-container a {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: .3s;
}

.contacts-container a:hover {
    color: #e4042a;
}

.contacts-container p {
    color: #C2C2C2;
    text-align: right;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 14.4px */
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s;
}

.footer__nav a:hover {
    color: #e4042a;
}

.footer__logo {
  display: flex;
  justify-content: center;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.footer__logo::before {
    position: absolute;
    content: '';
    top: 23px;
    left: 0;
    border: 1px solid #C2C2C2;
    width: 44%;
    height: 1px;
}

.footer__logo::after {
    position: absolute;
    content: '';
    top: 23px;
    right: 0;
    border: 1px solid #C2C2C2;
    width: 44%;
    height: 1px;
}

.footer__bot .footer__left span,
.footer__bot .footer__right span {
    margin-top: auto;
    display: block;
}

.footer .info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 330px;
    justify-content: space-between;
    margin-left: auto;
    text-align: right;
    height: 200px;
}

.info-container p {
    color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 21px */
}

.footer__left .info-container p {
    max-width: 206px;
    margin-left: auto;
}

.footer__right .info-container {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.info-container span {
    color: #555;
    text-align: right;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
}

.info-container a {
    color: #555;
    text-align: left;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s;
}

.info-container a:hover {
    color: #e4042a;
    text-decoration: underline;
}

.footer__mob {
    display: none;
    text-align: center;
}

.footer__mob-top {
    border-bottom: 1px solid #fafafa;
    padding-bottom: 50px;
}

.footer__mob .footer__logo {
    margin: 0;
    width: 100%;
}

.footer__mob .footer__logo::before {
    width: 35%;
}

.footer__mob .footer__logo::after {
    width: 35%;
}

.footer__mob-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.footer__mob-top span {
    color: #C6213D;
    text-align: center;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 16.8px */
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.footer__mob-contacts a {
    border-radius: 40px;
    border: 1px solid #FFF;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
/* 
.footer__mob-contacts a:nth-of-type(1) {
    font-size: 22px;
} */

.footer__mob .footer__nav {
    margin-top: 50px;
}

.footer__mob .footer__nav ul {
    align-items: center;
}

.footer__mob-info {
    margin-top: 50px;
}

.footer__mob-info p {
    color: #D9D9D9;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 21px */
}

.footer__mob-bot {
    margin-top: 25px;
}

.footer__mob-bot p,
.footer__mob-bot a {
    color: #555;
    text-align: right;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width:992px) {

    .footer__left span,
    .footer__right span {
        font-size: 10px;
    }

    .contacts-container a {
        font-size: 14px;
    }

    .footer__nav a {
        font-size: 14px;
    }

    .info-container {
        max-width: 230px;
    }

    .info-container p {
        font-size: 12px;
    }
}

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

    .footer__mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer__wrapper {
        padding-top: 54px;
        padding-bottom: 25px;
    }
}
@media (max-width:480px) {
    .footer__logo::before {
        left: -20px;
    }
    .footer__logo::after {
        right: -20px;
    }
}
/* footer end */

/* services */
.services {
    padding-top: 0;
}

.services .services-block__wrapper p {
    margin-bottom: 108px;
}

.services-inner {
    padding-bottom: 100px;
}

.services-inner__content {
    width: 100%;
    max-width: 1160px;
    margin: 70px auto 35px;
}

.services-inner__content p {
    color: #555;
    font-family: 'Segoe UI Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 24px */
}

.services-inner__content a {
    text-decoration: underline;
    color: #2f83fc;
}

.services-inner__content p:not(:first-of-type) {
    margin-top: 20px;
}

/* .services-inner__wrapper a {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    background: #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    padding: 21px;
    margin: auto;
    transition: .3s;
} */

/* .services-inner__wrapper a:hover {
    background-color: #1E1E1E;
}

.services-inner__wrapper a:active {
    background: #3d9210;
} */

@media (max-width:992px) {
    .services-inner__content {
        margin: 30px auto;
    }

    .services-inner {
        padding-bottom: 50px;
    }

    .services-inner h1 {
        font-size: 26px;
    }

    .services-inner__content p {
        font-size: 14px;
    }

    .services .services-block__wrapper p {
        margin-bottom: 30px;
    }
}

/* services end */

/* reviews */
.reviews__wrapper {
    background: #E5E5E5;
    margin-top: 80px;
    padding-bottom:50px;
}

.reviews__container {
    padding: 50px 35px 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.reviews__card {
    height: 100%;
}

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

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 50px;
}

.pagination a svg rect,
.pagination a svg path {
    transition: .3s;
}

.pagination a:hover svg rect {
    fill: #85041A;
}

.pagination a:hover svg path {
    fill: #fff;
}

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

.pagination ul a {
    color: #1E1E1E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    border-radius: 6px;
    background: #FFF;
    padding: 8px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.pagination ul a:hover {
    color: #e4042a;
}

.pagination ul a.active {
    color: #fff;
    background-color: #85041A;
}
@media (max-width:1040px) {
    .reviews__container .open-modal {
        width: 165px;
    }
}
@media (max-width:992px) {
    .reviews__container {
        grid-template-columns: 1fr 1fr;
        padding: 20px 35px 30px;
    }

    .reviews__wrapper {
        margin-top: 50px;
        padding-bottom: 50px;
    }
    .pagination {
        padding-bottom: 30px;
    }
}

@media (max-width:540px) {
    .reviews__container {
        grid-template-columns: 1fr;
    }
}

/* reviews end */

/* about */
.about .about-block__wrapper {
    margin-top: 80px;
    padding-bottom: 100px;
}

.about .about-block__left {
    height: 800px;
}

.about .about-block__right {
    padding: 0;
}

.about .about-block__right h2 {
    color: #000;
    font-family: Roboto;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.84px;
    max-width: 600px;
    /* text-transform: uppercase; */
}

.about h3 {
    color: #85041A;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
}

.about h3 span {
    color: #85041A;
}

.about .about-block__right a {
    width: 280px;
    margin-left: 0;
}

.about .about-block__right a.services-inner__link {
    background: #2f83fc;
}

.about .about-block__right a.services-inner__link:hover {
    background: #3d9210;
}

.slider-block {
    padding: 80px 0;
    background-color: #1E1E1E;
}

.certificate__slider {
    height: 400px;
    padding-bottom: 50px;
}

.certificate__slider .swiper-button-prev,
.certificate__slider .swiper-button-next {
    top: 95%;
}

.certificate-slide {
    height: 100%;
    border-radius: 5px;
    background: #292927;
    padding: 50px 80px;
    cursor: zoom-in;
}

.certificate-slide.fullscreen {
    cursor: zoom-out;
}

.certificate-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width:1440px) {
    .about .about-block__right h2 {
        font-size: 38px;
    }

    .about h3 {
        font-size: 28px;
    }
}

@media (max-width:992px) {
    .about .about-block__right h2 {
        font-size: 28px;
        text-align: center;
    }

    .about h3 {
        font-size: 26px;
        text-align: center;
    }

    .about .about-block__right {
        padding-bottom: 50px;
    }

    .about .about-block__right a {
        margin: 35px auto 0;
    }

    .about .about-block__wrapper {
        margin-top: 18px;
    }

    .certificate-slide {
        padding: 20px 40px;
    }

    .certificate__slider .swiper-button-prev,
    .certificate__slider .swiper-button-next {
        top: 50%;
    }

    .about .about-block__wrapper {
        padding-bottom: 0;
    }
}

@media (max-width:767px) {
    .about .about-block__right h2 {
        font-size: 26px;
        text-align: center;
    }

    .about .about-block__left {
        height: 370px;
    }

    .about h3 {
        font-size: 24px;
        text-align: center;
    }
}

/* about end */

/* practice */
.practice__wrapper {
    background: #E5E5E5;
    margin-top: 80px;
}

.practice__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 70px;
}

.practice__card {
    border-radius: 5px;
    background: #FFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.practice__card h2 {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 28.8px */
}

.practice__card p {
    color: #555;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin-top: 20px;
    margin-bottom: 33px;
}

.practice__card a {
    color: #85041A;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 18px */
    border-radius: 40px;
    border: 1px solid #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    width: 200px;
    margin-top: auto;
    transition: .3s;
}

.practice__card a:hover {
    background-color: #85041A;
    color: #fff;
}

.practice__card a:active {
    background: #3d9210;
}

@media (max-width:1140px) {
    .practice__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:992px) {
    .practice__wrapper {
        margin-top: 50px;
    }

    .practice__card h2 {
        font-size: 20px;
    }

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

    .practice__card a {
        font-size: 14px;
    }
}

@media (max-width:660px) {
    .practice__container {
        grid-template-columns: 1fr;
        padding: 50px 0 30px;
    }
}
/* practice end */

/* blog */
.feedback-block-blog {
    border-bottom: 1px solid #fff;
}

.blog__wrapper {
    background: #E5E5E5;
    margin-top: 80px;
}

.blog__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.blog__card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
}

.blog__content {
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px;
}

.blog__img {
    position: relative;
    padding: 39%;
}

.blog__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__card h2 {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 28.8px */
    margin: 30px 40px 60px;
}

.blog__card a {
    color: #85041A;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 18px */
    border-radius: 40px;
    border: 1px solid #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    width: 200px;
    margin-top: auto;
    transition: .3s;
    margin: auto 40px 40px;
}

.blog__card a:hover {
    background-color: #85041A;
    color: #fff;
}

.blog__card a:hover {
    background: #3d9210;
}

.blog-inner__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 100px;
}

.blog-inner__left {
    width: 100%;
    max-width: 564px;
}

.blog-inner__left p {
    color: #555;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 24px */
}

.blog-inner__right {
    width: 100%;
    max-width: 565px;
}

.blog-inner__img {
    position: relative;
    padding: 37%;
}

.blog-inner__img-mob {
    display: none;
}

.blog-inner {
    padding-bottom: 100px;
}

.blog__link,
.services-inner__link {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    background: #85041A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    padding: 21px;
    margin: 0 auto;
    transition: .3s;
    font-weight: 700;
}

.services-inner__link {
    background: #2f83fc;
    margin-top: 20px;
 }

.services-inner__link:hover,
.blog__link:hover {
    background: #3d9210;
}
.blog-inner__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main {
    position: relative;
}

@media (max-width:992px) {
    .blog__container {
        grid-template-columns: 1fr 1fr;
    }

    .blog-inner__img {
        padding: 0;
    }

    .blog-inner__img img {
        display: none;
    }

    .blog-inner__img-mob {
        display: block;
        position: relative;
        padding: 33%;
        margin-bottom: 40px;
        margin-top: -105px;
    }
    .blog-inner__img-mob::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0000005e;
        z-index: 1;
    }

    .blog-inner h1 {
        font-size: 26px;
    }

    .blog-inner__img-mob img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog__card h2 {
        font-size: 20px;
        margin: 30px 40px 20px;
    }

    .blog__card a {
        font-size: 14px;
    }

    .blog__wrapper {
        margin-top: 20px;
    }

    .blog-inner__wrapper {
        flex-direction: column-reverse;
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .blog-inner__left {
        max-width: 100%;
    }

    .blog-inner__left p {
        font-size: 14px;
    }
}

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

@media (max-width:660px) {
    .blog__container {
        grid-template-columns: 1fr;
    }
}
@media (max-width:540px) {
    .blog-container {
        padding: 0;
    }
}
/* blog end */
/* contacts */
.contacts__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.contacts__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contacts__container span {
    color: #1E1E1E;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 28.8px */
}

.contacts__container a,
.contacts__container p {
    color: #1E1E1E;
    text-align: center;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    /* 36px */
    transition: .3s;
}

.contacts__container a:hover {
    color: #85041A;
}

@media (max-width:1280px) {
    .contacts__container span {
        font-size: 20px;
    }

    .contacts__container a,
    .contacts__container p {
        font-size: 26px;
    }
}

@media (max-width: 1240px) {
    .about .about-block__right h2 {
        font-size: 31px;
        max-width: 420px;
    }
}

@media (max-width:992px) {
    .contacts__wrapper {
        grid-template-columns: 1fr;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contacts__container span {
        font-size: 16px;
    }

    .contacts__container a,
    .contacts__container p {
        font-size: 18px;
    }
    .about .about-block__right h2 {
        margin-left: auto;
        margin-right: auto;
    }
}

/* contacts end */


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000c2;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__wrapper {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    position: relative;
    height: 90%;
    overflow: auto;
    background-color: #000;
}

.modal__wrapper::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}


.modal__wrapper::-webkit-scrollbar-thumb {
    background-color: #a5a5a5;
    border-radius: 6px;
}


.modal__wrapper::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 6px;
}

.modal__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.close-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: transparent;
}

@media (max-width:767px) {
    .modal__wrapper {
        height: 80%;
    }
}

@media (max-width: 480px) {
    .main-block__content span {
        font-size: 20px;
    }
    .main-block__content p {
        font-size: 18px;
        max-width: 350px;
    }
    .main-block__content a,
    .main-block__content .mob-tel {
        font-size: 18px;
        width: 260px;
        font-weight: 700;
    }
    .main-block__content .mob-tel {
        border: 3px solid #fff;
    }
    .services-block__wrapper p {
        font-size: 18px;
        color: #858282;
    }
    .feedback-block p {
        font-size: 20px;
        font-family: 'Segoe UI Regular';
    }
    .feedback-block a {
        font-size: 18px;
        width: 260px;
    }
    .feedback-block__wrapper .mob-tel {
        border: 3px solid #fff;
    }
    .feedback-block span {
        font-size: 18px;
        color: #c5c908;
    }
    .feedback-block-white.feedback-block span {
        color: #C6213D;
    }
    .main-block__content-info,
    .about-block__left::before {
        display: none;
    }
    .about-block__right p {
        margin-top: 10px;
        font-family: 'Segoe UI Regular';
        font-size: 20px;
        color: #000;
    }
    .about-block__content  {
        display: flex;
        flex-direction: column;
    }
    .about-block__right a {
        align-self: center;
        width: 200px;
        font-size: 18px;
        font-weight: 700;
    }
    .about-block__wrapper {
        margin-bottom: 50px;
    }
    .open-modal {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        width: 240px;
    }
    .reviews__container .open-modal {
      width: 240px;
    }
    .reviews-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .feedback-block-white .mob-tel {
        border-color: #555;
    }
    .footer__mob-contacts a:nth-of-type(1) {
        background-color: #85041A;
        color: #fafafa;
        border-color: #85041A;
    }
     .footer__mob-contacts a:nth-of-type(1):hover {
        background: #3d9210;
        border-color: #3d9210;
        color: #fff;
     }
     .about .about-block__right h2 {
        font-size: 24px;
        text-transform: unset;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
     }
     .about h3 {
        font-size: 22px;
     }
     .about h3 {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
     }
     .about .about-block__right a {
        margin-top: 0;
        width: 320px;
     }
     .about .about-block__right a:nth-of-type(2) {
        margin-top: 10px;
        background: #2f83fc;
     }
     .practice__card p,
     .blog-inner__left p {
        color: #000;
        font-family: 'Segoe UI Regular';
        font-size: 20px;
     }
     .practice__card a {
        align-self: center;
        font-size: 20px;
        width: 250px;
     }
     .services-inner__content p {
        font-size: 20px;
        color: #000;
     }
     .blog__card a {
        font-size: 18px;
        width: 250px;
        align-self: center;
     }
     .blog-inner {
        padding-bottom: 50px;
     }
     .about-block__left .main-block__content-info {
        display: none;
     }
     .main-block__content a:active {
        background-color: #3d9210;
        color: #fff;
     }
     .services-block__list a {
        font-size: 18px;
     }
     .services-block__list li {
        padding-bottom: 20px;
     }
     .services-block__list {
        gap: 20px;
     }
     .services-block__container {
        gap: 20px;
        margin-top: 20px;
     }
     .about-block__right a:active {
        background: #3d9210;
     }
     .accordeon__title {
        font-size: 18px;
     }
     .accordeon__wrapper {
        padding: 20px 0;
     }
     .accordeon__wrapper::after {
        top: 50%;
        transform: translateY(-50%);
     }
     .about-block__right h2 {
        max-width: 350px;
        font-size: 24px;
     }
    .feedback-block a:active {
        background: #3d9210;
        color: #FAFAFA;
    }
    .feedback-block-white a:active {
        background: #3d9210;
        color: #fff;
    }
}