.grecaptcha-badge {
    display: none !important;
}

html:has(.breadcrumbs) .header {
    margin: 0 0 40px 0;
}

.header__topbar {
    border-bottom: 1px solid rgba(30, 30, 30, .15);
    padding: 15px 0;
}

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

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

.header__menu a {
    font-size: 14px;
    font-weight: 500;
    transition-duration: .2s;
}

.header__menu a:hover {
    color: var(--main-color);
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__contact b {
    color: rgba(30, 30, 30, .4);
    font-size: 14px;
    font-weight: 500;
}

.header__contact span {
    font-size: 14px;
    font-weight: 500;
}

.header__contact a {
    font-size: 14px;
    font-weight: 500;
    transition-duration: .2s;
}

.header__contact a:hover {
    color: var(--main-color);
}

.header__main {
    border-bottom: 1px solid rgba(30, 30, 30, .15);
}

.header__main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header__company {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__company__logo {
    width: 100px;
}

.header__company__logo img {
    width: 100%;
}

.header__company__slogan {
    color: rgba(30, 30, 30, .6);
    font-size: 14px;
    font-weight: 600;
}

.header__company__slogan b {
    font-size: inherit;
    font-weight: inherit;
    color: var(--main-color);
}

.header__search {
    position: relative;
    width: 470px;
    display: flex;
    align-items: center;
}

.header__search__input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    height: 45px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    transition-duration: .2s;
}

.header__search__input:hover {
    border: 1px solid #1e1e1e;
}

.header__search__btn {
    width: 43px;
    height: 43px;
    background-image: url('../image/search.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    right: 1px;
    transition-duration: .2s;
    border-radius: 0 5px 5px 0;
}

.header__search__btn:hover {
    background-color: rgba(240, 240, 240);
}

.header__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.header__phones a {
    font-size: 18px;
    font-weight: 500;
    transition-duration: .2s;
}

.header__phones a:hover {
    color: var(--main-color);
}

.header.header_black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.30);
}

.header.header_black .header__topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.header.header_black .header__menu a {
    color: white;
    transition-duration: .2s;
}

.header.header_black .header__menu a:hover {
    color: var(--main-color);
}

.header.header_black .header__phones a {
    color: white;
    transition-duration: .2s;
}

.header.header_black .header__phones a:hover {
    color: var(--main-color);
}

.header.header_black .header__company__slogan {
    color: rgba(255, 255, 255, .6);
}

.header.header_black .header__contact b {
    color: rgba(255, 255, 255, .6);
}

.header.header_black .header__contact a,
.header.header_black .header__contact span {
    color: white;
}

.header.header_black .header__contact a {
    transition-duration: .2s;
}

.header.header_black .header__contact a:hover {
    color: var(--main-color);
}

.header.header_black .header__main {
    border: none;
}

.header.header_black .header__search__input {
    color: white;
    background-color: transparent;
    border: 1px solid rgb(168, 168, 168);
}

.header.header_black .header__search__input:hover {
    border: 1px solid #fff;
}

.header.header_black .header__search__btn {
    background-image: url('../image/search_w.svg');
}

.header.header_black .header__search__btn:hover {
    background-color: rgb(50, 50, 50);
}

.fixed-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.15);
    background: #F7F7F7;
    z-index: 10;
}

.fixed-header__main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.fixed-header__company {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fixed-header__company__logo {
    width: 100px;
}

.fixed-header__company__logo img {
    width: 100%;
}

.fixed-header__company__slogan {
    color: rgba(30, 30, 30, .6);
    font-size: 14px;
    font-weight: 600;
}

.fixed-header__company__slogan b {
    font-size: inherit;
    font-weight: inherit;
    color: var(--main-color);
}

.fixed-header__search {
    width: 28px;
    height: 28px;
}

.fixed-header__search img {
    width: 100%;
}

.fixed-header__btn {
    width: 250px;
}

.fixed-header__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.fixed-header__phones a {
    font-size: 18px;
    font-weight: 500;
    transition-duration: .2s;
}

.fixed-header__phones a:hover {
    color: var(--main-color);
}

.fixed-header.fixed-header_black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.30);
}

html:has(.breadcrumbs) .mobile-header {
    margin: 0 0 30px 0;
}

.mobile-header__main {
    border-bottom: 1px solid rgba(30, 30, 30, .15);
}

.mobile-header__main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile-header__company {
    display: flex;
    align-items: center;
}

.mobile-header__company__logo {
    width: 85px;
}

.mobile-header__company__logo img {
    width: 100%;
}

.mobile-header.mobile-header_black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.30);
}

.mobile-header__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.mobile-header__phones a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.mobile-header.mobile-header_black .mobile-header__topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.mobile-header.mobile-header_black .mobile-header__main {
    border: none;
}

.mobile-header.mobile-header_black .mobile-header__phones a {
    color: white;
}

.mobile-fixed-header {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(30, 30, 30, .15);
    background-color: white;
}

.mobile-fixed-header__main {
    border-bottom: 1px solid rgba(30, 30, 30, .15);
}

.mobile-fixed-header__main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile-fixed-header__company {
    display: flex;
    align-items: center;
}

.mobile-fixed-header__company__logo {
    width: 75px;
}

.mobile-fixed-header__company__logo img {
    width: 100%;
}

.mobile-fixed-header__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.mobile-fixed-header__phones a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.banner {
    margin-bottom: var(--mb);
}

.banner__slider {
    position: relative;
}

.banner__dots {
    position: absolute;
    bottom: 50px;
    left: 15px;
    right: 15px;
    z-index: 10;
}

.banner__item {
    height: 100vh;
    position: relative;
}

.banner__item__image {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner__item__image:after {
    content: "";
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.banner__item__inner {
    padding: 260px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
    width: 700px;
}

.banner__item__title {
    color: #FFF;
    font-size: 52px;
    font-weight: 600;
}

.banner__item__text {
    color: #FFF;
    font-size: 18px;
}

.banner__item__buttons {
    display: flex;
    gap: 40px;
}

.banner__item__buttons .btn-fill,
.banner__item__buttons .btn-light {
    width: 250px;
}

.advantages {
    margin-bottom: var(--mb);
}

.advantages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.advantages__dots {
    display: none;
    margin: 0 0 15px 0;
}

.advanatages__item {
    width: calc((100% - 80px) / 3);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 24.8px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.advantages__icon {
    border-radius: 50%;
    width: 34px !important;
    animation: pulse 3s linear infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 2px #B2DAF5;
    }
    50% {
        box-shadow: 0 0 0 6px #B2DAF5;
    }
    100% {
        box-shadow: 0 0 0 2px #B2DAF5;
    }
}

.advantages__name {
    font-size: 18px;
    font-weight: 500;
}

.advantages__text {
    color: #979797;
    font-size: 14px;
    font-weight: 400;
}

.services {
    margin-bottom: var(--mb);
}

.services__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.services__item {
    width: calc((100% - 80px) / 3);
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 24.2px 0px rgba(0, 0, 0, 0.02);
    padding: 5px;
}

.services__image {
    height: 240px;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.services__image__inner {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    transition-duration: .3s;
}

.services__image:hover .services__image__inner {
    transform: scale(1.1);
}

.services__content {
    position: relative;
    padding: 0 20px 90px 20px;
    height: calc(100% - 240px);
}

.services__content:after {
    content: "";
    position: absolute;
    top: -20px;
    height: 20px;
    left: 0;
    right: 0;
    border-radius: 10px 10px 0 0;
    background-color: white;
}

.services__name {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 15px 0;
    display: block;
}

.services__desc {
    color: #979797;
    font-size: 14px;
    font-weight: 300;
}

.services__buttons {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services__btn {
    color: var(--primary-text-color);
    width: 180px;
}

.services__link {
    width: 40px;
    height: 40px;
    background-image: url('../image/arrow-white.svg');
    background-color: var(--main-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    border-radius: 50%;
    transition-duration: .2s;
}

.services__link:hover {
    background-color: var(--main-color-hover);
}

.services__bottom {
    display: flex;
    justify-content: center;
    margin: 65px 0 0 0;
}

.services__bottom .btn-light {
    color: var(--primary-text-color);
    width: 280px;
}

.steps {
    margin-bottom: var(--mb);
}

.steps__list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.steps__item {
    width: calc((100% - 80px) / 3);
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 24.8px 0px rgba(0, 0, 0, 0.03);
    padding: 30px 20px;
}

.steps__header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0 0 20px 0;
}

.steps__digit {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.steps__name {
    font-size: 20px;
    font-weight: 500;
}

.steps__text {
    color: #979797;
    font-size: 16px;
    line-height: 26px;
}

.steps__text a,
.steps__text button {
    color: var(--main-color);
    text-decoration: underline;
    font-size: inherit;
    font-weight: inherit;
    transition-duration: .2s;
}

.steps__text a:hover,
.steps__text button:hover {
    text-decoration: none;
}

.callback {
    margin-bottom: var(--mb);
}

.callback__inner {
    display: flex;
    gap: 40px;
}

.callback__sidebar {
    width: calc((100% - 80px) / 3);
    padding: 30px;
    border-radius: 5px;
    background-image: url('../image/callback.png');
    background-color: var(--main-color);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.callback__sidebar__title {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.callback__sidebar__phones {
    margin: 0 0 20px 0;
    display: flex;
    gap: 20px;
}

.callback__sidebar__phones a {
    color: var(--main-color-pale);
    font-size: 14px;
    font-weight: 600;
    transition-duration: .2s;
}

.callback__sidebar__phones a:hover {
    color: white;
}

.callback__sidebar__mails {
    margin: 0 0 20px 0;
    display: flex;
    gap: 20px;
}

.callback__sidebar__mails a {
    color: var(--main-color-pale);
    font-size: 14px;
    font-weight: 600;
    transition-duration: .2s;
}

.callback__sidebar__mails a:hover {
    color: white;
}

.callback__content {
    width: calc((100% - 40px) / 3 * 2 + 40px);
    padding: 30px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 24.8px 0px rgba(0, 0, 0, .03);
    background-image: url('../image/callback-bg-2.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
}

.callback__content__title {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 25px 0;
}

.callback__content__subtitle {
    color: #979797;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 25px 0;
}

.callback__content__subtitle a {
    color: var(--main-color);
    text-decoration: underline;
    font-size: inherit;
    font-weight: inherit;
    transition-duration: .2s;
}

.callback__content__subtitle a:hover {
    text-decoration: none;
}

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

.callback__content__form__inner .field {
    width: calc((100% - 60px) / 3);
}

.callback__content__form__inner .btn-fill {
    width: calc((100% - 60px) / 3);
}

.about-advantages {
    margin-bottom: var(--mb);
    background-image: url('../image/about-advantages-bg.svg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 500px;
}

.about-advantages.about-advantages_about-page {
    background-image: none;
}

.about-advantages__wrapper {
    display: flex;
    gap: 40px;
}

.about-advantages__title {
    width: calc((100% - 80px) / 3);
}

.about-advantages.about-advantages_about-page .about-advantages__text {
    width: 480px;
}

.about-advantages__text * {
    font-size: 18px;
    font-weight: 400;
}

.about-advantages__text p {
    margin: 0 0 20px 0;
}

.about-advantages__text b {
    font-weight: 600;
}

.about-advantages__text a {
    color: var(--main-color);
    transition-duration: .2s;
}

.about-advantages__text a:hover {
    text-decoration: none;
}

.about-advantages__content {
    width: calc((100% - 80px) / 3 * 2);
}

.about-advantages.about-advantages_about-page .about-advantages__content {
    width: calc(100% - 520px);
}

.about-advantages .block-small-title {
    width: 100%;
}

.about-advantages__text {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.about-advantages__text a {
    color: var(--main-color);
    text-decoration: underline;
    font-size: inherit;
    font-weight: inherit;
}

.about-advantages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-advantages__item {
    width: calc(50% - 10px);
    border-radius: 5px;
    background: #FFF;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0px 4px 24.8px 0px rgba(0, 0, 0, .03);
}

.about-advantages__item.about-advantages__item_image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 130px;
}

.about-advantages__icon {
    width: 34px;
    border-radius: 50%;
    animation: pulse 3s linear infinite;
}

.about-advantages__name {
    font-size: 18px;
    font-weight: 500;
}

.about-advantages__item.about-advantages__item_link {
    background-color: transparent;
    border: 1px solid var(--main-color);
    padding: 20px;
    justify-content: space-between;
    transition-duration: .2s;
}

.about-advantages__item.about-advantages__item_link:hover {
    border: 1px solid var(--main-color-hover);
}

.about-advantages__link {
    width: 40px;
    height: 40px;
    background-image: url('../image/arrow-white.svg');
    background-color: var(--main-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    border-radius: 50%;
}

.footer {
    background: #2B2B2B;
}

.footer__btn {
    width: 220px;
}

.footer__topbar {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer__company__logo {
    width: 100px;
}

.footer__company__logo img {
    width: 100%;
}

.footer__company__clogan {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 600;
}

.footer__company__clogan b {
    font-size: inherit;
    font-weight: inherit;
    color: white;
}

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
}

.footer__menu a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    transition-duration: .2s;
}

.footer__menu a:hover {
    color: var(--main-color);
}

.footer__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer__contact {
    padding: 0 0 0 35px;
    position: relative;
    display: flex;
    align-items: center;
}

.footer__contact:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer__contact.footer__contact_phone:after {
    background-image: url('../image/phone.svg');
}

.footer__contact.footer__contact_mail:after {
    background-image: url('../image/mail.svg');
}

.footer__contact.footer__contact_location:after {
    background-image: url('../image/location.svg');
}

.footer__contact a {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    transition-duration: .2s;
}

.footer__contact a:hover {
    color: var(--main-color);
}

.footer__contact span {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
}

.seo-move__inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.seo-move img {
    width: 50px;
}

.seo-move__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.seo-move__links a {
    color: #76AE0A;
    font-size: 14px;
    font-weight: 400;
}

.footer__bottom {
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 400;
}

.footer__policy {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.footer__policy:hover {
    text-decoration: none;
}

.breadcrumbs {
    margin: 0 0 50px 0;
}

.breadcrumbs__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumbs a {
    color: #979797;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumbs small {
    color: #979797;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumbs span {
    font-size: 14px;
    font-weight: 400;
}

.page-title {
    margin: 0 0 70px 0;
}

.page-title h1 {
    font-size: 52px;
    font-weight: 600;
}

.page-title h1 b {
    color: var(--main-color);
    font-size: inherit;
    font-weight: inherit;
}

.contacts {
    margin-bottom: var(--mb);
}

.contacts__wrapper {
    display: flex;
    gap: 40px;
}

.contacts__map {
    width: 580px;
    border-radius: 5px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
}

.contacts__content {
    width: calc(100% - 620px);
}

.contacts__title {
    font-size: 52px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.contacts__schedule {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 70px 0;
}

.contacts__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contacts__item {
    width: calc(50% - 20px);
    border-top: 1px solid #E8E8E8;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacts__item__name {
    color: #979797;
    font-size: 14px;
    font-weight: 400;
}

.contacts__phones {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contacts__phones a {
    font-size: 16px;
    font-weight: 500;
}

.contacts__item__content {
    font-size: 16px;
    font-weight: 500;
}

.about-content {
    margin-bottom: var(--mb);
    background-image: url('../image/about-advantages-bg.svg');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 500px;
}

.about-content__text {
    margin-bottom: var(--mb);
    font-size: 32px;
    font-weight: 500;
    width: calc(100% - 30%);
}

.about-content__text a {
    font-size: inherit;
    line-height: inherit;
    color: var(--main-color);
    text-decoration: underline;
}

.about-content__image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.services-detail-text {
    margin-bottom: var(--mb);
}

.services-detail-text__wrapper {
    display: flex;
    gap: 40px;
}

.services-detail-text__content {
    width: calc((100% - 80px) / 3 * 2 + 40px);
}

.services-detail-text__content * {
    font-size: 18px;
    font-weight: 400;
}

.services-detail-text__callback {
    width: calc((100% - 80px) / 3);
    padding: 30px;
    border-radius: 5px;
    background-image: url('../image/callback.png');
    background-color: var(--main-color);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-detail-text__callback__title {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.services-detail-text__callback__subtitle {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    margin: 0 0 40px 0;
}

.services-detail-text__callback__btn {
    width: 220px;
    border: 1px solid white;
    transition-duration: .2s;
}

.services-detail-text__callback__btn:hover {
    background-color: var(--main-color-hover);
}

.services-detail-gallery {
    margin-bottom: var(--mb);
    overflow: hidden;
}

.services-detail-gallery__slider {
    position: relative;
}

.services-detail-gallery__slider__item {
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.services-detail-gallery .owl-stage-outer {
    overflow: unset;
}

.services-detail-gallery__slider__dots {
    margin: 0 0 20px 0;
}

.services-detail-gallery__slider__nav button {
    position: absolute;
    top: calc(50% - 20px);
    z-index: 10;
}

.services-detail-gallery__slider__nav button.owl-prev {
    left: -65px;
}

.services-detail-gallery__slider__nav button.owl-next {
    right: -65px;
}

.services-detail-table {
    margin-bottom: var(--mb);
}

.services-detail-table__desc {
    margin: 15px 0 0 0;
}

.services-detail-table__desc * {
    font-size: 16px;
    font-weight: 400;
}

.services-detail-content-section {
    margin-bottom: var(--mb);
}

.services-detail-content-blocks {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.services-detail-content-block__row {
    display: flex;
    gap: 40px;
}

.services-detail-content-block__row:nth-child(2n) {
    flex-direction: row-reverse;
}

.services-detail-content-block__image {
    width: 580px;
}

.services-detail-content-block__image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.services-detail-content-block__content {
    width: calc(100% - 620px);
}

.services-detail-additional {
    margin-bottom: var(--mb);
}

.menu {
    background: #FFF;
    width: 410px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    z-index: 30;
    transition-duration: .3s;
}

.menu__inner {
    padding: 80px 40px 40px 40px;
    position: relative;
}

.menu.active {
    right: 0;
}

.menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu__menu {
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.menu__menu a {
    font-size: 18px;
    font-weight: 600;
    transition-duration: .2s;
}

.menu__menu a:hover {
    color: var(--main-color);
}

.menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.menu__contacts__phones {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.menu__contacts__phones a {
    font-size: 16px;
    font-weight: 500;
    transition-duration: .2s;
}

.menu__contacts__phones a:hover {
    color: var(--main-color);
}

.menu__contacts__location {
    font-size: 14px;
    font-weight: 500;
}

.menu__contacts__location b {
    font-size: inherit;
    font-weight: inherit;
    color: #979797;
}

.menu__contacts__location span {
    font-size: inherit;
    font-weight: inherit;
}

.menu__contacts__location a {
    font-size: inherit;
    font-weight: inherit;
}

.menu__contacts__mail {
    font-size: 14px;
    font-weight: 500;
}

.menu__contacts__mail b {
    font-size: inherit;
    font-weight: inherit;
    color: #979797;
}

.menu__contacts__mail a {
    font-size: inherit;
    font-weight: inherit;
    transition-duration: .2s;
}

.menu__contacts__mail a:hover {
    color: var(--main-color);
}

.menu__btn {
    width: 100%;
    margin: 35px 0 0 0;
}

.menu__search {
    margin: 0 0 30px 0;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.menu__search__input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    height: 45px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    transition-duration: .2s;
}

.menu__search__input:hover {
    border: 1px solid #1e1e1e;
}

.menu__search__btn {
    width: 43px;
    height: 43px;
    background-image: url('../image/search.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    right: 1px;
    transition-duration: .2s;
    border-radius: 0 5px 5px 0;
}

.menu__search__btn:hover {
    background-color: rgba(240, 240, 240);
}

.search-modal {
    border-bottom: 1px solid rgba(30, 30, 30, .15);
    background: #F7F7F7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
}

.search-modal__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 35px 0;
}

.search-modal__wrapper {
    position: relative;
    width: 650px;
    display: flex;
    align-items: center;
}

.search-modal__input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    height: 45px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    transition-duration: .2s;
}

.search-modal__input:hover {
    border: 1px solid #1e1e1e;
}

.search-modal__btn {
    width: 43px;
    height: 43px;
    background-image: url('../image/search.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    right: 1px;
    transition-duration: .2s;
    border-radius: 0 5px 5px 0;
}

.search-modal__btn:hover {
    background-color: rgba(240, 240, 240);
}

.search-modal__close {
    width: 24px;
    height: 24px;
    background-image: url('../image/close_b.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.modal {
    display: none;
}

.modal.active {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal__item {
    width: 600px;
    background: #FFF;
    padding: 30px 40px;
    border-radius: 5px;
    position: relative;
    display: none;
}

.modal__item.active {
    display: block;
}

.modal__title {
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.modal__title b {
    font-size: inherit;
    font-weight: inherit;
    color: var(--main-color);
}

.modal__close {
    position: absolute;
    top: -20px;
    right: -20px;
}

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

.modal__form__btn {
    width: 100%;
}

.modal__success__icon {
    width: 82px;
    height: 82px;
    background-image: url('../image/success.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto 50px auto;
}

.modal__success__text {
    color: #979797;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 50px 0;
}

.mobile-header {
    display: none;
}

.search-input {
    margin: 0 0 50px 0;
}

.search-input__wrapper {
    display: flex;
    gap: 20px;
}

.search-input__input {
    border-radius: 5px;
    border: 1px solid #eee;
    background-color: #FFF;
    width: 400px;
    height: 45px;
    padding: 5px 5px 5px 10px;
}

.search-input__btn {
    font-size: 14px;
    height: 45px;
    width: 100px;
}

.go-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    background-image: url('../image/arrow-white.svg');
    transform: rotate(-90deg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition-duration: .2s;
    z-index: 10;
}

.go-up:hover {
    background-color: var(--main-color-hover);
}

#cookie-notice {
	left: auto !important;
	right: 34px;
	bottom: 34px !important;
	min-width: auto;
	max-width: 360px;
	border-radius: 20px;
	border: 1px solid #eaeaea;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.cookie-notice-container {
	text-align: left;
	
}

.cn-text-container {
	margin-bottom: 15px;
	font-weight: 600 !important;
}

.cn-text-container h3 {
	font-weight: 800;
	margin-bottom: 10px;
}

.cn-text-container a {
	font-weight: 600;
	text-decoration: none;
}

#cn-notice-buttons {
	display: flex;
	justify-content: space-between;
}

#cn-accept-cookie {
	background-color: var(--main-color) !important;
	
}

#cn-refuse-cookie {
	background-color: #262626 !important;
}

#cn-close-notice {
	display: none;
}

.cn-set-cookie.cn-button {
	color: #FFF !important;
	font-weight: 600 !important;
	margin-left: 0 !important;
	padding: 8.5px 15px !important;
}