:root {
    --white: #fff;
    --blue: #057575;
    --mint: #48dbb7;
    --gray: #f3f3f3;
    --black: #000;
    --gark-gray: #3f3f3f;
}

:root {
    --font-family: "Poppins", sans-serif;
    --second-family: "Inter Tight", sans-serif;
    --third-family: "Vela Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

button {
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
}

a {
    text-decoration: none;
    line-height: normal;
    cursor: pointer;
}

img,
svg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

html,
body {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    scrollbar-width: thin;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body.active {
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 0 120px;
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
}

.row {
    display: flex;
}

.opacite {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
}

.opacite-main {
    top: 0;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
}

.opacite-main.active {
    display: flex;
}

.opacite.active {
    display: flex;
}

.header {
    flex: 0 0 auto;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100vw;
    z-index: 100;
}

.header__row {
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
}

.header__logo img {
    max-width: 150px;
    object-fit: contain;
}

.header__logo-text {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 9px;
    color: #868686;
    max-width: 136px;
    margin-left: 10px;
}

.header__right {
    display: flex;
    align-items: center;
}

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

.header__contact a {
    display: flex;
    align-items: center;
}

.header__contact a:first-child {
    margin-bottom: 2px;
}

.header__contact a svg {
    margin-right: 5px;
}

.header__contact a span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: var(--gark-gray);
}

.header__language {
    display: flex;
    align-items: center;
    margin: 0 17px;
    position: relative;
    cursor: pointer;
}

.header__language-name {
    display: none;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    color: var(--gark-gray);
}

.header__language-container.active .header__language-name {
    display: block;
}

.header__language img {
    max-width: 12px;
    margin-left: 2px;
    margin-right: 2px;
    object-fit: contain;
}

.header__language-flag {
    display: none;
}

.header__language-container.active .header__language-flag {
    display: block;
}

.header__language-container {
    display: none;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
}

.header__language-container button {
    display: flex;
}

.header__language-container.active {
    display: flex;
}

.header__language button {
    z-index: 2;
}

.header__language button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.header__language-svg {
    transition: 0.7;
}

.header__language-svg.active {
    transform: rotate(180deg);
}

.header__button {
    border-radius: 30px;
    padding: 10px 24px;
    max-width: max-content;
    box-sizing: border-box;
    background: var(--mint);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: var(--white);
}

.header__burger {
    display: none;
    border-radius: 10px;
    padding: 25px 30px;
    background: var(--white);
    position: absolute;
    top: calc(100% + 11px);
    right: 120px;
    z-index: 10000;
}

.header__burger ul {
    display: flex;
    flex-direction: column;
}

.header__burger ul li {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}

.header__burger ul li button,
.header__burger ul li a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: right;
    color: #333;
}

.header__burger ul li:last-child {
    margin-top: 7px;
}

.header__burger ul li:last-child button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: var(--white);
    border-radius: 30px;
    padding: 10px 24px;
    background: var(--mint);
    max-width: max-content;
    box-sizing: border-box;
}

.header__burger.active {
    display: flex;
}

.header__burger-button {
    margin-left: 5px;
    border-radius: 32px;
    width: 38px;
    height: 38px;
    background: var(--mint);
    z-index: 10000;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
}

.header__burger-button.open span:first-child {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header__burger-button.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.header__burger-button.open span:last-child {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.header__burger-button-line {
    width: 15px;
    height: 2px;
    border-radius: 10px;
    background: var(--white);
    opacity: 1;
    left: calc(50% - 7.5px);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    position: absolute;
}

.header__burger-button-line:first-child {
    top: 14px;
}

.header__burger-button-line:nth-child(2) {
    top: 18px;
}

.header__burger-button-line:last-child {
    top: 22px;
}

.main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 40px;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    align-self: flex-start;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    width: 270px;
    height: 380px;
    margin-right: 10px;
}

.marquee-item img {
    border-radius: 20px;
    height: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery {
    overflow: hidden;
    position: relative;
}

.gallery__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.gallery__background {
    position: absolute;
    top: -128px;
    right: -25px;
    z-index: -1;
}

.gallery__row {
    flex-direction: column;
    padding: 128px 0 50px 0;
    align-items: center;
}

.gallery__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 50px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-bottom: 20px;
    max-width: 820px;
}

.gallery__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--gark-gray);
    margin-bottom: 40px;
    max-width: 820px;
}

.gallery__buttons {
    display: flex;
    align-items: center;
}

.gallery__buttons button {
    border: 1px solid var(--blue);
    border-radius: 30px;
    padding: 14px 45px;
    background: var(--white);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    max-width: max-content;
    box-sizing: border-box;
    transition: 0.7s;
}

.gallery__buttons button:first-child {
    margin-right: 8px;
}

.gallery__buttons button:hover {
    background: var(--blue);
    color: var(--white);
}

.info {
    background: var(--gray);
}

.info__row {
    flex-direction: column;
    padding: 25px 0 50px 0;
}

.info__top {
    display: flex;
    width: 100%;
}

.info__line {
    height: inherit;
    width: 1px;
    background: var(--gray);
}

.info__item {
    width: 25%;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.info__item svg {
    margin-bottom: 77px;
}

.info__item:first-child {
    border-radius: 20px 0 0 20px;
}

.info__item:last-child {
    border-radius: 0 20px 20px 0;
}

.info__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 0;
    margin-top: 10px;
}

.info__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
    margin-bottom: 0;
    margin-top: auto;
}

.info__bottom {
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px;
    background: var(--blue);
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: var(--white);
    text-align: center;
}

.service {
    position: relative;
    overflow: hidden;
}

.service__slider {
    display: none;
}

.service__gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service__row {
    flex-direction: column;
    padding: 50px 0 40px 0;
}

.service__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-bottom: 20px;
}

.service__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
}

.service__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 19px;
}

.service__top-left {
    display: flex;
    flex-direction: column;
}

.service__top-right {
    border-radius: 30px;
    padding: 4px 12px;
    box-sizing: border-box;
    background: var(--mint);
    display: flex;
    align-items: center;
    margin-top: 78px;
    height: max-content;
}

.service__top-right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: var(--white);
    margin-left: 5px;
}

.service__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service__background {
    position: absolute;
    bottom: -217px;
    right: -251px;
    z-index: -1;
}

.service__item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
    max-width: 393px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
    background: var(--white);
    margin-right: 10px;
    margin-bottom: 10px;
}

.service__item:nth-child(3n) {
    margin-right: 0;
}

.service__item img {
    border-radius: 5px;
    height: 100%;
    max-height: 192px;
}

.service__item-title {
    margin-top: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
}

.service__item-text {
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

.service__item-button {
    border: 1px solid var(--blue);
    border-radius: 30px;
    padding: 14px 45px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: var(--blue);
    transition: 0.7s;
    background: var(--white);
    box-sizing: border-box;
    margin-top: auto;
    transition: 0.7s;
}

.service__item-button:hover {
    background: var(--blue);
    color: var(--white);
}

.work {
    background: var(--gray);
}

.work__row {
    flex-direction: column;
    padding: 50px 0 40px 0;
    align-items: center;
}

.work__google {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 5px 10px 5px 5px;
    background: #fafcfe;
    max-width: max-content;
}

.work__google-circle {
    border-radius: 30px;
    background: #eaeaeb;
    margin-right: 11px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work__google-text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    color: var(--gark-gray);
    margin-right: 11px;
}

.work__google-stars {
    display: flex;
    align-items: center;
}

.work__google-stars span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: var(--gark-gray);
    margin-right: 5px;
}

.work__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 30px;
}

.work__item-title {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 16px;
}

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

.work__item-review {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.work__item-review a span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #939393;
    margin-left: 6px;
}

.about__row {
    padding: 50px 0;
    justify-content: space-between;
}

.about__bottom {
    display: none;
}

.about__left {
    margin-right: 40px;
}

.about__left img {
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;
    object-fit: contain;
}

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

.about__us {
    border-radius: 30px;
    padding: 5px 15px;
    background: var(--gray);
    max-width: max-content;
    display: flex;
    align-items: center;
}

.about__us span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: var(--black);
    margin-left: 5px;
}

.about__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: var(--gark-gray);
    margin-bottom: 34px;
}

.about__plus {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.about__plus-top {
    margin-bottom: 5px;
    display: flex;
}

.about__plus-top span {
    margin-left: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

.about__plus-bottom {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

.about__buttons {
    display: flex;
    margin-top: 12px;
    margin-left: 30px;
}

.about__buttons-svg {
    transition: 0.7s;
}

.about__buttons a {
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    background: var(--gray);
    display: flex;
    box-sizing: border-box;
    align-items: center;
    position: relative;
    transition: 0.7s;
    margin-right: 20px;
    padding: 14px 100px;
    margin-right: 10px;
}

.about__buttons a::before {
    content: url("../image/about__button-list.png");
    width: 130px;
    height: 89px;
    left: -50px;
    position: absolute;
    bottom: 0;
}

.about__buttons a:hover {
    background: var(--blue);
    color: var(--white);
}

.about__buttons a:hover .about__buttons-svg {
    fill: white;
}

.about__buttons button {
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    background: var(--gray);
    display: flex;
    box-sizing: border-box;
    align-items: center;
    position: relative;
    transition: 0.7s;
    padding: 14px 71px;
    margin-right: 10px;
}

.about__buttons button:hover {
    background: var(--blue);
    color: var(--white);
}

.about__buttons button:hover .about__buttons-svg {
    fill: white;
}

.blog {
    position: relative;
    overflow: hidden;
}

.blog__background {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.blog__row {
    padding: 50px 0;
    align-items: center;
    flex-direction: column;
}

.blog__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 30px;
}

.blog__container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog__item {
    border-radius: 20px;
    padding: 15px;
    box-sizing: border-box;
    width: calc(50% - 6px);
    background: var(--gray);
    position: relative;
    margin-right: 12px;
}

.blog__item:nth-child(2n) {
    margin-right: 0;
}

.blog__item:nth-child(1) {
    margin-bottom: 10px;
}

.blog__item:nth-child(2) {
    margin-bottom: 10px;
}

.blog__item img {
    max-width: 210px;
    border-radius: 5px;
}

.blog__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: var(--black);
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--gark-gray);
    margin-bottom: 10px;
}

.blog__item-more {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--blue);
}

.blog__item-service {
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 30px;
    padding: 5px 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: var(--black);
    background: var(--white);
}

.blog__button {
    border: 1px solid var(--blue);
    border-radius: 30px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--blue);
    background: var(--white);
    transition: 0.7s;
}

.blog__button-svg {
    fill: #057575;
    transition: 0.7s;
}

.blog__button span {
    margin-right: 10px;
}

.blog__button:hover {
    background: var(--blue);
    color: var(--white);
}

.blog__button:hover .blog__button-svg {
    fill: white;
}

.footer {
    flex: 0 0 auto;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.footer__background {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.footer__row {
    padding: 50px 0 70px 0;
    z-index: 2;
    position: relative;
    justify-content: space-between;
}

.footer__logo-mob {
    display: none;
}

.footer__us {
    background: var(--white);
    margin-bottom: 40px;
}

.footer__contact {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    display: flex;
    flex-direction: column;
}

.footer__contact-name {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.footer__contact-name span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--gark-gray);
    margin-left: 4px;
}

.footer__social {
    display: flex;
    padding-top: 20px;
    margin-bottom: 40px;
}

.footer__social-item {
    border-radius: 25px;
    padding: 15px;
    background: var(--white);
    margin-right: 10px;
}

.footer__right iframe {
    border-radius: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    min-width: 280px;
    max-width: max-content;
}

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

.krytex__background {
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.krytex .swiper {
    display: none;
}

.krytex__row {
    display: flex;
    flex-direction: column;
    padding: 98px 0 50px 0;
}

.krytex__top {
    display: flex;
    margin-bottom: 30px;
}

.krytex__top picture {
    display: inline-block;
    width: 33%;
    margin-right: 2px;
    border-radius: 5px;
    max-height: 450px;
}

.krytex__top picture img,
.krytex__top picture video {
    border-radius: 5px;
    height: 100%;
    width: 100%;
}

.krytex__top picture:last-child {
    margin-right: 0;
}

.krytex__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.krytex__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 50px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-bottom: 10px;
}

.krytex__geo {
    border-radius: 30px;
    padding: 5px 20px;
    background: rgba(5, 117, 117, 0.1);
    max-width: max-content;
    display: flex;
    margin-bottom: 20px;
}

.krytex__geo span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--blue);
    margin-left: 10px;
}

.krytex__slider {
    margin-bottom: 30px;
}

.krytex__slider .swiper-wrapper .swiper-slide img {
    max-height: 350px;
    border-radius: 5px;
}

.krytex__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    max-width: 605px;
    margin-bottom: 30px;
}

.krytex__button {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 12px 11px 12px;
    box-sizing: border-box;
    border-radius: 30px;
    background: var(--blue);
    display: flex;
    max-width: 241px;
    width: 100%;
    align-items: center;
}

.krytex__button-mobile {
    display: none;
}

.krytex__button svg {
    margin-right: 0;
    margin-left: 44px;
}

.krytex__button-container {
    position: relative;
    max-width: 368px;
    width: 100%;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    justify-content: end;
    box-sizing: border-box;
    border: 1px solid var(--blue);
}

.krytex__button-container span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--black);
}

.krytex__button span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-right: 0;
    margin-left: auto;
}

.detailing {
    position: relative;
    overflow: hidden;
}

.detailing__gradient {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.detailing__background {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.detailing__row {
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
}

.detailing__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
}

.detailing__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 618px;
}

.detailing__service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.detailing__service-item {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gray);
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    max-width: 394px;
    border-radius: 20px;
}

.detailing__service-item:nth-child(3n) {
    margin-right: 0;
}

.detailing__service-item img {
    width: 100%;
    max-width: 375px;
    border-radius: 10px;
    height: 100%;
    max-height: 250px;
}

.detailing__service-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: var(--black);
    margin-top: 10px;
}

.detailing__button {
    border-radius: 30px;
    padding: 14.5px 24px;
    box-sizing: border-box;
    max-width: 722px;
    width: 100%;
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
    transition: 0.7s;
}

.detailing__button:hover {
    background: var(--blue);
    color: var(--white);
}

.detailing__button:hover .detailing__button-svg {
    fill: white;
}

.detailing__button span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
}

.plus {
    background: var(--gray);
}

.plus__row {
    padding: 50px 0;
}

.plus__right {
    max-width: 470px;
    width: 100%;
}

.plus__right img {
    border-radius: 10px;
    max-height: 236px;
    width: 100%;
}

.plus__left {
    display: flex;
    margin-right: 10px;
    flex-wrap: wrap;
}

.plus__item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 15px;
    background: var(--white);
    position: relative;
    max-width: 355px;
    box-sizing: border-box;
    margin-right: 10px;
}

.plus__item:nth-child(1) {
    margin-bottom: 10px;
}

.plus__item:nth-child(2) {
    margin-bottom: 10px;
}

.plus__item:nth-child(2n) {
    margin-right: 0;
}

.plus__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 5px;
}

.plus__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

.plus__item svg {
    position: absolute;
    top: 10px;
    right: 10px;
}

.additional__row {
    padding: 50px 0 40px 0;
    flex-direction: column;
    align-items: center;
}

.additional__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 20px;
}

.additional__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 20px;
}

.additional__button {
    background: var(--white);
    border: 1px solid var(--blue);
    border-radius: 30px;
    padding: 14px 40px;
    max-width: max-content;
    box-sizing: border-box;
    color: var(--blue);
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: 0.7s;
}

.additional__button:hover {
    color: var(--white);
    background: var(--blue);
}

.additional__button:hover .additional__button-svg {
    fill: white;
}

.additional__button span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    margin-right: 13px;
}

.additional__service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.additional__item {
    border-radius: 20px;
    padding: 15px 20px 15px 15px;
    background: var(--gray);
    max-width: 594px;
    display: flex;
    margin-right: 12px;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
}

.additional__item-more {
    display: none;
}

.additional__item-full {
    background: var(--blue);
    max-width: 594px;
    padding: 30px 34px;
    flex-direction: column;
    border-radius: 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
}

.additional__item-full-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 110%;
    color: var(--white);
    margin-bottom: 15px;
    max-width: 492px;
}

.additional__item-full-text {
    max-width: 492px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: var(--white);
    margin-bottom: 36px;
}

.additional__item-full-button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
    max-width: max-content;
    box-sizing: border-box;
    padding: 14px 69px;
    border-radius: 30px;
    background: var(--white);
}

.additional__item:nth-child(2n) {
    margin-right: 0;
}

.additional__item-left {
    position: relative;
    margin-right: 20px;
}

.additional__item-left img {
    max-width: 210px;
    border-radius: 5px;
}

.additional__item-left a {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    border-radius: 30px;
    padding: 10px;
    justify-content: center;
    width: 100%;
    max-width: 164px;
    box-sizing: border-box;
    align-items: center;
    background: var(--white);
}

.additional__item-left a span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    color: var(--blue);
    margin-right: 10px;
}

.additional__item-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: var(--black);
    margin-top: 38.5px;
    margin-bottom: 10px;
    max-width: 329px;
}

.additional__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--gark-gray);
    margin-bottom: 10px;
    max-width: 329px;
}

.additional__item-price {
    display: flex;
}

.additional__item-price span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: var(--black);
    border-radius: 30px;
    background-color: var(--white);
    padding: 5px 10px;
    box-sizing: border-box;
    margin-right: 5px;
}

.nano__row {
    padding: 128px 0 50px 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
}

.nano__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
}

.nano__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--gark-gray);
    margin-top: 20px;
    margin-bottom: 22px;
}

.nano__blog {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nano__blog-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 30px auto;
    justify-content: center;
}

.nano__blog-buttons-item {
    padding: 10px 30px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    background: var(--gray);
    max-width: max-content;
    box-sizing: border-box;
    color: var(--gark-gray);
    margin-right: 8px;
    margin-top: 8px;
}

.nano__blog-buttons-item:last-child {
    margin-right: 0;
}

.nano__blog-buttons-item.active {
    background: var(--blue);
    color: var(--white);
}

.nano__blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 14px;
}

.nano__blog-more {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    border-radius: 30px;
    padding: 14px 45px;
    background: var(--white);
    border: 1px solid var(--blue);
    box-sizing: border-box;
    max-width: max-content;
    margin: 39px auto 0 auto;
    transition: 0.7s;
}

.nano__blog-more:hover {
    color: var(--white);
    background: var(--blue);
}

.nano__item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    max-width: 390px;
    margin-bottom: 11px;
}

.nano__item.hidden {
    display: none;
}

.nano__item img {
    max-width: 391px;
}

.nano__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    margin-top: 20px;
    color: var(--black);
}

.nano__item-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--gark-gray);
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nano__item a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--blue);
}

.nano__item-name {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: var(--black);
    position: absolute;
    border-radius: 30px;
    top: 5px;
    right: 5px;
    background: var(--white);
    padding: 5px 10px;
    box-sizing: border-box;
}

.anim {
    opacity: 0;
    transform: translateY(20px);
}

.premium__row {
    padding: 116px 0 50px 0;
}

.premium__right {
    position: relative;
}

.premium__right img {
    border-radius: 10px;
}

.premium__right-img {
    height: 630px;
}

.premium__right-mob {
    display: none;
}

.premium__right-plus {
    backdrop-filter: blur(36.5999984741px);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    max-width: max-content;
    border-radius: 30px;
    position: absolute;
}

.premium__right-plus-top {
    top: 21px;
    right: 22px;
}

.premium__right-plus-middle {
    top: 245px;
    left: 20px;
}

.premium__right-plus-bottom {
    right: 34px;
    top: 309px;
}

.premium__right-plus span {
    margin-left: 7px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.premium__right-car {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--blue);
    border-radius: 5px;
    padding: 5px 10px;
    box-sizing: border-box;
}

.premium__right-car-block {
    display: flex;
}

.premium__right-car-block img {
    border: 1px solid var(--blue);
    border-radius: 100px;
    max-width: 56px;
    margin-left: -19px;
}

.premium__right-car-block img:first-child {
    margin-left: 0;
}

.premium__right-text {
    margin-top: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-align: right;
    color: var(--white);
}

.premium__left {
    display: flex;
    flex-direction: column;
    margin-right: 56px;
    max-width: 670px;
    box-sizing: border-box;
}

.premium__left-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    border-radius: 5px;
    padding: 5px 10px;
    background: var(--mint);
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: max-content;
    box-sizing: border-box;
}

.premium__left-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--gark-gray);
    margin-bottom: 50px;
}

.premium__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-top: 53px;
}

.popup {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 40px;
    box-sizing: border-box;
    background: var(--white);
    position: relative;
}

.popup__form-select {
    border-radius: 5px;
    padding: 17px 20px;
    box-sizing: border-box;
    background: #f0f0f0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.popup__form-select-change {
    position: absolute;
    top: calc(100% + 5px);
    z-index: 1;
    left: 0;
    display: none;
    background: #f0f0f0;
    flex-direction: column;
    gap: 10px;
    padding: 5px 20px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid var(--blue);
}

.popup__form-select-change span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #686868;
    display: none;
    cursor: pointer;
}

.popup__form-select-change span.active {
    display: flex;
}

.popup__form-select-change.active {
    display: flex;
}

.popup__form-select span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #686868;
    display: none;
    cursor: pointer;
}

.popup__form-select span.active {
    display: flex;
}

.popup__form-group-date {
    position: relative;
}

.popup__form-data::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup__form-data::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("../image/calendar.png") no-repeat center/contain;
    pointer-events: none;
}

.popup__book {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    flex-shrink: 0;
    max-width: 530px;
    width: 100%;
}

.popup__book .popup {
    max-width: 530px;
    padding: 50px 30px 30px 30px;
}

.popup__book .popup__form {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

.popup__book .popup__form-text {
    margin-bottom: 5px;
}

.popup__book .popup__form-group {
    width: 100%;
}

.popup__book .popup__form-group label {
    top: auto;
    bottom: 20px;
}

.popup__book .popup__form-group-tel {
    padding-left: 43px;
}

.popup__book .popup__form-group input:nth-child(2) {
    padding-left: 20px;
}

.popup__book .popup__form-group-half {
    max-width: 233px;
    width: 100%;
}

.popup__book.active {
    display: flex;
}

.popup input:focus,
.popup textarea:focus {
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--black);
}

.popup input,
.popup textarea {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--black);
}

.popup__close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.popup__close-book {
    position: absolute;
    right: 10px;
    top: 10px;
}

.popup__consultation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    flex-shrink: 0;
    max-width: 440px;
    width: 100%;
}

.popup__consultation .popup {
    max-width: 440px;
}

.popup__consultation.active {
    display: flex;
}

.popup__button {
    border-radius: 30px;
    padding: 14px 28px;
    background: var(--blue);
    width: 100%;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    box-sizing: border-box;
    margin-top: 20px;
}

.popup__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
}

.popup__custom-box {
    border-radius: 5px;
    width: 15px;
    margin-right: 6px;
    height: 15px;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.popup__custom-box svg {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.popup__checkbox-group {
    position: relative;
    align-items: center;
    display: flex;
}

.popup__checkbox-group input[type=checkbox]:checked+label .popup__custom-box svg {
    opacity: 1;
    transform: scale(1);
}

.popup__checkbox-group input[type=checkbox]:checked+.popup__checkbox-label .popup__custom-box {
    transform: translateY(-0.5px);
}

.popup__checkbox-group input[type=checkbox]:checked+.popup__checkbox-label .popup__custom-box .check {
    transform: scale(1);
    opacity: 1;
}

.popup__checkbox-group input[type=checkbox]:focus+.popup__checkbox-label .popup__custom-box {
    outline: none;
}

.popup__checkbox-group input[type=checkbox] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.popup__checkbox-group label {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.popup__checkbox-group label span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    color: #515151;
}

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

.popup__form-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

.popup__form-group {
    position: relative;
    margin-bottom: 5px;
}

.popup__form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
}

.popup__form-group input {
    border-radius: 5px;
    padding: 17.5px 20px;
    background: #f0f0f0;
    width: 100%;
    border: none;
    box-sizing: border-box;
}

.popup__form-group input:nth-child(2) {
    padding-left: 43px;
}

.advantages {
    background: url("../image/advantages__background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.advantages__row {
    padding: 50px 0 40px 0;
    flex-wrap: wrap;
}

.advantages__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--white);
    max-width: 392px;
    display: flex;
    align-items: center;
}

.advantages__item {
    padding: 15px;
    margin-bottom: 10px;
    box-sizing: border-box;
    backdrop-filter: blur(37.7000007629px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.advantages__item:nth-child(-n+3) {
    min-width: 350px;
    max-width: 394px;
    min-height: 200px;
}

.advantages__item:nth-child(4) {
    margin-left: 0;
}

.advantages__item:nth-child(n+4) {
    min-width: 290px;
    max-width: 292px;
    min-height: 237px;
}

.advantages__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--white);
    margin-top: auto;
    margin-bottom: 5px;
}

.advantages__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 0;
}

.advantages__item svg {
    margin-bottom: 58px;
}

.question {
    position: relative;
}

.question__gradient-left {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

.question__gradient-right {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
}

.question__row {
    padding: 50px 0;
    flex-direction: column;
}

.question__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 110%;
    text-align: center;
    color: var(--blue);
}

.question__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: var(--gark-gray);
    margin-top: 15px;
    margin-bottom: 34px;
}

.question__form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.question__form input:focus,
.question__form textarea:focus {
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--black);
}

.question__form input,
.question__form textarea {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--black);
}

.question__form .popup__form-group {
    max-width: 283px;
    width: 100%;
    margin-right: 5px;
    margin-bottom: 0;
}

.question__form .popup__form-group input {
    border-radius: 30px;
}

.question__button {
    background: var(--white);
    padding: 17px 62px;
    box-sizing: border-box;
    max-width: max-content;
    border-radius: 100px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: var(--blue);
    border: 1px solid var(--blue);
    flex-shrink: 0;
    transition: 0.7s;
}

.question__button:hover {
    color: var(--white);
    background: var(--blue);
}

.for {
    margin-top: 98px;
    background-image: url("../image/partner__background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.for__row {
    padding: 30px 0;
    flex-direction: column;
    align-items: center;
}

.for__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
}

.for__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--white);
}

.contact__row {
    padding: 128px 0 50px 0;
    flex-direction: column;
}

.contact .footer__contact-name {
    margin-bottom: 20px;
}

.contact .footer__contact-name svg path {
    fill: #48DBB7;
}

.contact .footer__contact-name span {
    color: #858585;
}

.contact__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-bottom: 20px;
}

.contact__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--gark-gray);
    margin-bottom: 70px;
}

.contact__top {
    display: flex;
    margin-bottom: 30px;
}

.contact__top-left {
    display: flex;
    flex-direction: column;
    max-width: 417px;
    margin-right: 63px;
    justify-content: center;
}

.contact__top-text {
    font-family: var(--font-family);
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 25px;
    color: var(--gark-gray);
}

.contact__bottom {
    padding: 40px 95px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../image/contact__background.jpg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact__bottom-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    color: var(--gark-gray);
    max-width: 701px;
    margin-bottom: 30px;
}

.contact__bottom-title span {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--blue);
    cursor: pointer;
}

.contact__social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__social-block {
    display: flex;
    flex-direction: column;
    margin-right: 90px;
    min-width: 330px;
}

.contact__social-block .footer__contact-name {
    margin-bottom: 27px;
}

.contact__social-block .footer__contact-name svg {
    flex-shrink: 0;
}

.contact__social-block .footer__contact {
    margin-bottom: 0;
    font-size: 25px;
}

.contact__social-block .footer__social {
    padding-top: 0;
    margin-bottom: 0;
}

.contact__social-block .footer__social-item {
    flex-shrink: 0;
}

.contact__social-block .footer__social-item:last-child {
    margin-right: 0;
}

.contact__social-block:last-child {
    margin-right: 0;
    min-width: 0;
}

.contact__social-block:last-child .footer__contact-name {
    margin-bottom: 15px;
}

.contact__footer .footer__background {
    display: none;
}

.contact__footer .footer__right {
    display: none;
}

.contact__footer .footer__left {
    display: none;
}

.contact__footer .footer__logo-mob {
    display: flex;
}

.contact__footer .footer__row {
    padding: 9px 0;
    justify-content: center;
}

.introduction__row {
    flex-direction: column;
    padding: 50px 0 40px 0;
}

.introduction .about__us {
    margin: 0 auto;
}

.introduction__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 30px;
}

.introduction__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    color: var(--black);
}

.introduction .info__item {
    background: var(--gray);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-right: 10px;
}

.introduction .info__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-top: 0;
    margin-bottom: auto;
}

.introduction .info__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--black);
}

.introduction .info__item:last-child {
    margin-right: 0;
}

::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #686868;
}

::-webkit-input-placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #686868;
}

::-moz-placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #686868;
}

:-ms-input-placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #686868;
}

.quality__row {
    padding: 30px 0 119px 0;
}

.quality__left {
    margin-right: 30px;
}

.quality__left img {
    max-width: 670px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

.quality__line {
    margin: 20px 0;
    border: 1px solid var(--mint);
    width: 100%;
    height: 1px;
    box-sizing: border-box;
}

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

.quality__item-top {
    display: flex;
    align-items: center;
}

.quality__item span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-left: 5px;
}

.quality__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--black);
}

.quality__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--gark-gray);
    margin-bottom: 30px;
}

.quality__content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.price {
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.price .about__us {
    margin: 0 auto;
    background: var(--white);
}

.price__row {
    padding: 50px 0;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.price__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
    margin: 20px 0 40px 0;
}

.price__format {
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    box-sizing: border-box;
}

.price__format-item {
    background: var(--gray);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    position: relative;
    flex-direction: column;
    margin-bottom: 5px;
}

.price__format-item:last-child {
    margin-bottom: 0;
}

.price__format-item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-bottom: 10px;
}

.price__format-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--gark-gray);
    margin-bottom: 30px;
}

.price__format-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--black);
}

.price__format-number {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 55px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: right;
    color: var(--white);
    top: -12px;
    right: -6px;
    position: absolute;
}

.price__top {
    display: flex;
    margin-bottom: 30px;
}

.price__bottom {
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
}

.price__bottom-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--gark-gray);
    margin-bottom: 25px;
}

.price__bottom-group {
    display: flex;
    flex-direction: column;
}

.price__bottom-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.price__bottom-item:last-child {
    margin-bottom: 0;
}

.price__bottom-item span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--black);
    margin-left: 9px;
}

.price__plus {
    display: flex;
    flex-direction: column;
    max-width: 594px;
    margin-right: 87px;
}

.price__plus-item {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.price__plus-item:last-child {
    margin-bottom: 0;
}

.price__plus-top {
    display: flex;
    margin-bottom: 10px;
}

.price__plus-top span {
    margin-left: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
}

.price__plus-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: var(--black);
}

.price__plus-text li {
    margin-left: 27px;
}

.price__background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.benefit__row {
    flex-direction: column;
    padding: 50px 0 40px 0;
}

.benefit .about__us {
    margin: 0 auto;
}

.benefit__title {
    margin-top: 20px;
    margin-bottom: 40px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
}

.benefit__group {
    display: flex;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.benefit__item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    background: var(--gray);
    max-width: 595px;
    height: 100%;
}

.benefit__item:first-child {
    grid-area: 1/1/2/2;
}

.benefit__item:nth-child(2) {
    grid-area: 1/2/3/3;
}

.benefit__item:nth-child(3) {
    grid-area: 2/1/4/2;
}

.benefit__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: var(--blue);
    margin-bottom: 10px;
}

.benefit__item-ul li {
    margin-left: 23px;
}

.benefit__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--black);
}

.benefit__item:last-child {
    grid-area: 3/2/4/3;
}

.benefit__item-arrow {
    position: absolute;
    top: -26px;
    right: -28px;
}

.pricing__row {
    padding: 128px 0 50px 0;
    flex-direction: column;
}

.pricing__row .gallery__buttons {
    justify-content: center;
}

.pricing__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--blue);
}

.pricing__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--gark-gray);
    margin-top: 20px;
    margin-bottom: 50px;
}

.pricing__tabs {
    display: flex;
    margin-bottom: 30px;
    gap: 8px;
}

.pricing__tabs-btn {
    appearance: none;
    border: 0;
    border-radius: 30px;
    padding: 14px 45px;
    box-sizing: border-box;
    background: var(--gray);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: var(--gark-gray);
    cursor: pointer;
    max-width: 294px;
    width: 100%;
}

.pricing__tabs-btn.active {
    background: var(--blue);
    color: var(--white);
}

.pricing__aside {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 235px;
    margin-right: 8px;
}

.pricing__aside-button {
    border: 1px solid var(--gray);
    border-radius: 5px;
    padding: 7px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    max-width: 235px;
    align-items: center;
    margin-bottom: 3px;
}

.pricing__aside-button svg path {
    fill: #727272;
}

.pricing__aside-button.active {
    border: 1px solid var(--blue);
}

.pricing__aside-button.active svg path {
    fill: #057575;
}

.pricing__aside-button.active span {
    color: var(--blue);
}

.pricing__aside-button:last-child {
    margin-bottom: 0;
}

.pricing__aside-button span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #727272;
}

.pricing__aside.active {
    display: flex;
}

.pricing__bottom {
    display: flex;
    justify-content: space-between;
    max-height: 381px;
    margin-bottom: 40px;
}

.pricing__content {
    max-width: 957px;
    width: 100%;
    border-radius: 10px;
}

.pricing__content-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    display: none;
    flex-direction: column;
}

.pricing__content-table.active {
    display: flex;
}

.pricing__content-head {
    background: #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 2;
    border-radius: 10px 10px 0 0;
}

.pricing__content-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

.pricing__content-body::-webkit-scrollbar {
    width: 0;
}

.pricing__content-body::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

.pricing__content-row {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: auto;
    grid-auto-columns: 174px;
    grid-auto-flow: column;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.pricing__content-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: var(--blue);
    text-align: center;
    border: 1px solid #e8e8e8;
    padding: 10px 20px;
    box-sizing: border-box;
}

.pricing__content-text {
    border: 1px solid #e8e8e8;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing__content-text:nth-child(2),
.pricing__content-text:nth-child(3) {
    align-items: center;
}

.pricing__content-text p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: var(--gark-gray);
    margin-bottom: 10px;
}

.pricing__content-text span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--gark-gray);
}

@media (max-width: 1440px) {
    .info__bottom {
        display: none;
    }
    .service__item:nth-child(2n) {
        margin-right: 0;
    }
    .service__item:nth-child(3) {
        margin-right: 10px;
    }
    .about__row {
        flex-wrap: wrap;
    }
    .about__left {
        margin-right: 20px;
    }
    .about__left img {
        max-width: 293px;
        height: auto;
    }
    .about__right {
        flex: 1;
        margin-top: auto;
        margin-bottom: 0;
    }
    .about__right .about__plus {
        display: none;
    }
    .about__right .about__buttons {
        display: none;
    }
    .about__title {
        font-size: 35px;
    }
    .about__subtitle {
        font-size: 18px;
        margin-bottom: 0;
    }
    .about__bottom {
        display: flex;
        order: 3;
        flex-direction: column;
        width: 100%;
        margin-top: 27px;
    }
    .about__buttons {
        margin-left: 0;
        margin-top: 19px;
    }
    .about__buttons a {
        padding: 14px 138px;
        margin-right: 13px;
    }
    .about__buttons a::before {
        left: -16px;
    }
    .about__buttons button {
        padding: 14px 111px;
        margin-right: 0;
        justify-content: center;
    }
    .footer__row {
        flex-direction: column;
        padding: 50px 0 20px 0;
    }
    .footer__right iframe {
        width: 100%;
        height: 350px;
    }
    .footer__logo {
        display: flex;
        justify-content: end;
        margin-bottom: 40px;
        margin-top: -77px;
    }
    .detailing__service-item:nth-child(2n) {
        margin-right: 0;
    }
    .detailing__service-item:nth-child(3) {
        margin-right: 8px;
    }
    .plus__row {
        flex-direction: row-reverse;
        justify-content: start;
    }
    .plus__right {
        max-width: 349px;
    }
    .plus__right img {
        max-height: 482px;
        border-radius: 20px;
    }
    .plus__left {
        max-width: 359px;
        margin-left: 20px;
        margin-right: 0;
    }
    .plus__item {
        max-width: 100%;
        margin-right: 0;
    }
    .plus__item:nth-child(3) {
        margin-bottom: 10px;
    }
    .additional__service {
        justify-content: start;
    }
    .additional__item {
        max-width: 100%;
        margin-right: 0;
    }
    .additional__item-full {
        max-width: 100%;
    }
    .additional__item-full-title {
        max-width: 100%;
    }
    .additional__item-full-text {
        max-width: 100%;
    }
    .additional__item-title {
        max-width: 100%;
    }
    .additional__item-text {
        max-width: 100%;
    }
    .premium__left {
        margin-right: 0;
        max-width: 100%;
    }
    .premium__row {
        padding: 108px 0 50px 0;
    }
    .premium__title {
        max-width: 700px;
        margin-top: 0;
    }
    .premium__right {
        display: none;
    }
    .premium__right-img {
        width: 728px;
        height: 630px;
    }
    .premium__right-mob {
        max-width: 728px;
        display: flex;
        margin-bottom: 30px;
    }
    .premium__right-car {
        right: 10px;
        top: 10px;
        bottom: auto;
    }
    .premium__right-pluses {
        position: absolute;
        display: flex;
        align-items: center;
        bottom: 10px;
        left: 0;
        justify-content: center;
        width: 100%;
    }
    .premium__right-plus {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .advantages__title {
        width: 100%;
        max-width: none;
        margin-bottom: 30px;
    }
    .advantages__item {
        width: 100%;
        min-width: 290px !important;
    }
    .advantages__item:nth-child(2),
    .advantages__item:nth-child(6) {
        margin-left: 0;
    }
    .advantages__item:nth-child(2),
    .advantages__item:nth-child(5),
    .advantages__item:nth-child(6) {
        max-width: 54.12%;
    }
    .advantages__item:nth-child(3),
    .advantages__item:nth-child(4),
    .advantages__item:nth-child(7) {
        max-width: 44.5%;
    }
    .contact__top {
        flex-direction: column;
    }
    .contact__top-left {
        margin-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }
    .contact__top-text {
        font-size: 20px;
    }
    .contact__row {
        padding: 108px 0 50px 0;
    }
    .contact__subtitle {
        margin-bottom: 40px;
    }
    .contact__bottom {
        flex-direction: row;
        align-items: start;
        padding: 40px 19px;
    }
    .contact__bottom-title {
        max-width: 330px;
        font-size: 20px;
        margin-right: 30px;
    }
    .contact__social {
        flex-direction: column;
        margin-left: auto;
        align-items: start;
    }
    .contact__social .footer__contact-name {
        margin-bottom: 4px;
    }
    .contact__social-block {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .contact__social-block:last-child {
        margin-bottom: 0;
    }
    .price__top {
        flex-direction: column;
    }
    .price__plus-item {
        margin-bottom: 52px;
    }
    .price__plus-item:last-child {
        margin-bottom: 30px;
    }
    .price__bottom {
        padding: 0;
        background: transparent;
    }
}

@media (max-width: 1150px) {
    .info__row {
        padding: 20px 0 40px 0;
    }
    .info__top {
        flex-wrap: wrap;
    }
    .info__item {
        width: calc(50% - 3px);
        border-radius: 10px;
        margin-right: 5px;
    }
    .info__item__title {
        font-size: 18px;
    }
    .info__item-text {
        font-size: 14px;
        margin-top: 5px;
    }
    .info__item:first-child {
        border-radius: 10px;
        margin-bottom: 5px;
    }
    .info__item:nth-child(3) {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .info__item:last-child {
        border-radius: 10px;
        margin-right: 0;
    }
    .info__line {
        display: none;
    }
    .introduction .info__item {
        width: calc(50% - 5px);
        min-height: 154px;
    }
    .introduction .info__item-title {
        margin-top: auto;
        margin-bottom: 0;
    }
    .introduction .info__item:nth-child(1) {
        margin-bottom: 10px;
    }
    .introduction .info__item:nth-child(2) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .introduction .info__item:nth-child(3) {
        margin-right: 10px;
        margin-bottom: 0;
    }
    .pricing__tabs-btn {
        padding: 14px;
    }
    .pricing__aside {
        max-width: 196px;
    }
    .pricing__aside-button {
        max-width: 196px;
    }
    .pricing__aside-button span {
        font-size: 12px;
    }
    .pricing__content-row {
        grid-auto-columns: 137px;
    }
    .pricing__content-text span {
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .service__item img {
        max-width: 329px;
        height: 192px;
    }
    .service__item-title {
        max-width: 329px;
    }
    .service__item-text {
        max-width: 329px;
    }
    .service__title {
        font-size: 35px;
    }
    .service__top {
        margin-bottom: 30px;
    }
    .service__top-right {
        margin-top: 56px;
    }
    .work__title {
        font-size: 35px;
    }
    .blog__title {
        font-size: 35px;
    }
    .detailing__title {
        font-size: 35px;
    }
    .detailing__subtitle {
        font-size: 18px;
    }
    .detailing__service-item img {
        max-width: 340px;
    }
    .nano__title {
        font-size: 35px;
    }
    .nano__subtitle {
        font-size: 18px;
    }
    .nano__item {
        max-width: 357px;
    }
    .nano__item img {
        max-width: 357px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .pricing__row {
        padding: 98px 0 50px 0;
    }
    .pricing__title {
        font-size: 35px;
    }
    .pricing__subtitle {
        font-size: 18px;
    }
    .benefit__title {
        font-size: 35px;
    }
    .for__title {
        font-size: 35px;
    }
    .for__subtitle {
        font-size: 18px;
    }
    .price__title {
        font-size: 35px;
    }
    .contact__title {
        font-size: 35px;
    }
    .contact__subtitle {
        font-size: 18px;
    }
    .advantages__title {
        font-size: 35px;
    }
    .header__button {
        display: none;
    }
    .header__burger {
        right: 20px;
    }
    .header__burger-button {
        margin-left: 0;
    }
    .gallery__title {
        font-size: 35px;
        max-width: 600px;
    }
    .gallery__subtitle {
        max-width: 600px;
    }
    .krytex__title {
        font-size: 35px;
    }
    .krytex__text {
        font-size: 18px;
    }
    .additional__title {
        font-size: 35px;
    }
    .marquee-item {
        width: 213px;
        height: 300px;
        margin-right: 7px;
    }
    .premium__title {
        font-size: 35px;
        max-width: 540px;
    }
    .question__title {
        font-size: 30px;
    }
    .quality__row {
        flex-direction: column;
        padding: 30px 0 50px 0;
    }
    .quality__left {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .quality__left img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .quality__content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .service__row {
        padding: 50px 0;
    }
    .service .service__bottom {
        display: none;
    }
    .service__top-right {
        display: none;
    }
    .service__title {
        font-size: 28px;
    }
    .service__subtitle {
        font-size: 18px;
    }
    .service__slider {
        display: flex;
    }
    .service .service__item {
        margin-right: 0;
        margin-bottom: 0;
    }
    .service .service__item img {
        max-width: 250px;
    }
    .service .service__item-title {
        font-size: 18px;
        max-width: 250px;
    }
    .service .service__item-text {
        font-size: 14px;
        max-width: 250px;
    }
    .benefit__group {
        display: flex;
        flex-direction: column;
    }
    .benefit__item {
        max-width: 100%;
    }
    .for {
        margin-top: 78px;
    }
    .for__title {
        font-size: 28px;
    }
    .for__subtitle {
        font-size: 16px;
    }
    .price__title {
        font-size: 28px;
    }
    .price__plus-item {
        margin-bottom: 30px;
    }
    .price__plus-top span {
        font-size: 16px;
    }
    .price__plus-text {
        font-size: 14px;
    }
    .price__format-title {
        font-size: 20px;
    }
    .price__format-text {
        font-size: 14px;
    }
    .price__format-item-title {
        font-size: 16px;
    }
    .price__bottom-title {
        font-size: 20px;
    }
    .price__bottom-item span {
        font-size: 16px;
    }
    .contact__row {
        padding: 98px 0 50px 0;
    }
    .contact__title {
        font-size: 28px;
    }
    .contact__subtitle {
        margin-bottom: 30px;
    }
    .contact__top-text {
        font-size: 18px;
    }
    .work__title {
        font-size: 28px;
    }
    .work .service__item img {
        max-width: 300px;
    }
    .work .service__item-title {
        max-width: 300px;
    }
    .work .service__item-text {
        max-width: 300px;
    }
    .krytex__title {
        font-size: 28px;
    }
    .krytex__text {
        font-size: 16px;
    }
    .krytex__geo {
        padding: 3px 10px;
    }
    .krytex__geo span {
        font-size: 14px;
    }
    .krytex__button {
        display: none;
    }
    .krytex__button-container {
        border: none;
        justify-content: center;
        padding: 0;
    }
    .krytex__button-mobile {
        display: flex;
        position: relative;
        max-width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    .krytex__button-mobile svg {
        position: absolute;
        top: 10px;
        right: 25px;
    }
    .krytex__button-mobile span {
        margin-left: auto;
        margin-right: auto;
    }
    .about__title {
        font-size: 28px;
    }
    .about__plus-top span {
        font-size: 18px;
    }
    .about__plus-bottom {
        font-size: 14px;
    }
    .about__buttons {
        flex-direction: column;
    }
    .about__buttons a {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .blog__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .blog__item:last-child {
        margin-bottom: 0;
    }
    .blog__item img {
        max-width: 295px;
    }
    .blog__item-title {
        font-size: 18px;
    }
    .blog__item-more {
        font-size: 12px;
    }
    .blog__item-service {
        font-size: 11px;
        top: 20px;
        right: 30px;
    }
    .blog__item-text {
        font-size: 12px;
    }
    .detailing__title {
        font-size: 28px;
    }
    .detailing__subtitle {
        font-size: 16px;
    }
    .detailing__service-item {
        max-width: 100%;
    }
    .detailing__service-item img {
        max-width: 100%;
        max-height: 320px;
    }
    .plus__row {
        padding: 40px 0;
        flex-direction: column-reverse;
    }
    .plus__left {
        max-width: 100%;
        margin-left: 0;
    }
    .plus__right {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .plus__right img {
        max-height: 281px;
    }
    .plus__item {
        width: 100%;
    }
    .plus__item-title {
        font-size: 16px;
    }
    .plus__item-text {
        font-size: 14px;
    }
    .additional__title {
        font-size: 28px;
    }
    .additional__subtitle {
        font-size: 18px;
    }
    .advantages__title {
        font-size: 28px;
    }
    .advantages__item {
        margin-left: 5px;
        margin-bottom: 5px;
        min-height: 196px !important;
        min-width: 150px !important;
        max-width: calc(50% - 3px) !important;
        padding: 10px;
    }
    .advantages__item svg {
        margin-bottom: 10px;
    }
    .advantages__item-title {
        font-size: 16px;
    }
    .advantages__item-text {
        font-size: 12px;
    }
    .pricing__content {
        display: none;
    }
    .pricing__content-row {
        grid-auto-columns: 87px;
    }
    .pricing__content-text p {
        font-size: 14px;
    }
    .pricing__content-text span {
        font-size: 10px;
    }
    .pricing__content-title {
        font-size: 14px;
    }
    .pricing__bottom {
        max-height: none;
        margin-bottom: 20px;
    }
    .pricing__aside {
        max-width: 100%;
    }
    .pricing__aside-button {
        max-width: 100%;
    }
    .pricing__aside-button span {
        font-size: 14px;
    }
    .pricing__tabs-btn {
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 500;
        width: auto;
        flex: 1 1 auto;
    }
    .pricing__title {
        font-size: 28px;
    }
    .pricing__subtitle {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 30px;
    }
}

@media (max-width: 710px) {
    .work .service__item {
        max-width: 100%;
        margin-right: 0;
    }
    .work .service__item img {
        max-width: 100%;
        height: auto;
    }
    .work .service__item-title {
        max-width: 100%;
    }
    .work .service__item-text {
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .container {
        padding: 0 15px;
    }
    .opacite {
        top: -15px;
    }
    .header {
        top: 15px;
    }
    .header__burger {
        right: 15px;
    }
    .header__contact {
        display: none;
    }
    .header__logo img {
        max-width: 121px;
    }
    .header__logo-text {
        display: none;
    }
    .gallery__row {
        padding: 98px 0 70px 0;
    }
    .gallery__title {
        font-size: 28px;
        max-width: 330px;
    }
    .gallery__subtitle {
        max-width: 330px;
        font-size: 16px;
    }
    .gallery__buttons {
        width: 100%;
        flex-direction: column;
    }
    .gallery__buttons button {
        width: 100%;
        max-width: none;
    }
    .gallery__buttons button:first-child {
        margin-bottom: 8px;
        margin-right: 0;
    }
    .marquee-item {
        width: 199px;
        height: 280px;
    }
    .about__left {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-right: 0;
        margin-top: 30px;
    }
    .about__left img {
        max-width: 330px;
    }
    .about__bottom {
        margin-top: 20px;
    }
    .about__buttons a {
        padding: 14px;
    }
    .about__buttons button {
        padding: 14px;
    }
    .footer__row {
        padding: 50px 0 30px 0;
    }
    .footer__contact-name {
        font-size: 14px;
    }
    .footer__logo {
        display: none;
    }
    .footer__logo-mob {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .footer__right iframe {
        height: 200px;
    }
    .premium__row {
        padding: 98px 0 50px 0;
    }
    .premium__right-pluses {
        display: none;
    }
    .premium__right-car {
        bottom: 10px;
        right: 10px;
        top: auto;
    }
    .premium__right-img {
        width: 100%;
        height: auto;
    }
    .premium__left-text {
        font-size: 14px;
    }
    .premium__left-subtitle {
        font-size: 14px;
    }
    .premium__title {
        font-size: 28px;
        margin-top: 0;
    }
    .question__title {
        font-size: 25px;
    }
    .question__subtitle {
        font-size: 16px;
    }
    .question__form {
        flex-direction: column;
    }
    .question__form .popup__form-group {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .question__button {
        width: 100%;
        max-width: 100%;
    }
    .contact__bottom {
        flex-direction: column;
        background-position: center center;
    }
    .contact__bottom-title {
        margin-right: 0;
        max-width: 100%;
        font-size: 16px;
    }
    .contact__social {
        margin-left: 0;
    }
    .contact__social .footer__contact {
        font-size: 20px;
    }
    .contact__social .footer__contact-name span {
        font-size: 14px;
    }
    .contact__social-block {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .info__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .info__item svg {
        margin-bottom: 31px;
    }
    .info__row {
        padding: 30px 0 45px 0;
    }
    .additional__item {
        flex-direction: column;
        position: relative;
    }
    .additional__item-more {
        display: flex;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        color: var(--blue);
        border-radius: 30px;
        padding: 14px 28px;
        background: var(--white);
        border: 1px solid var(--blue);
        box-sizing: border-box;
        max-width: max-content;
        margin: 10px auto 0 auto;
        transition: 0.7s;
    }
    .additional__item-more:hover {
        color: var(--white);
        background: var(--blue);
    }
    .additional__item-title {
        font-size: 16px;
        margin-top: 20px;
    }
    .additional__item-full {
        margin-top: 40px;
        padding: 20px 15px 20px 20px;
    }
    .additional__item-full-title {
        font-size: 28px;
    }
    .additional__item-full-text {
        font-size: 16px;
    }
    .additional__item-price {
        flex-direction: column;
    }
    .additional__item-price span {
        max-width: max-content;
        margin-bottom: 5px;
    }
    .additional__item-price span:last-child {
        margin-bottom: 0;
    }
    .additional__item-left {
        position: static;
        margin-right: 0;
    }
    .additional__item-left img {
        max-width: 100%;
        max-height: 230px;
        width: 100%;
    }
    .additional__item-left a span {
        display: none;
    }
    .additional__item-left a {
        max-width: none;
        width: 38px;
        height: 38px;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 15px;
        right: 15px;
        left: auto;
        transform: none;
        background: var(--blue);
    }
    .additional__item-left a svg path {
        fill: white;
    }
    .nano__item {
        max-width: 330px;
    }
    .nano__item img {
        max-width: 330px;
    }
    .krytex__top {
        display: none;
    }
    .krytex .swiper {
        display: flex;
    }
    .introduction .info__item {
        width: 100%;
        margin-right: 0;
        min-height: 119px;
    }
    .introduction .info__item:nth-child(3) {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .introduction .info__item-title {
        margin-top: 0;
        margin-bottom: auto;
    }
    .benefit__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .benefit__item {
        padding: 20px;
    }
    .benefit__item-text {
        font-size: 14px;
    }
    .benefit__item-title {
        font-size: 16px;
    }
    .benefit__item-arrow {
        display: none;
    }
    .popup__book {
        max-height: 80%;
        max-width: 90%;
    }
    .popup__book .popup {
        max-height: 80%;
        overflow-y: scroll;
        padding: 20px 15px;
    }
    .popup__book .popup__title {
        max-width: 90%;
    }
    .popup__book .popup__form-group {
        margin-right: 0 !important;
    }
    .popup__book .popup__form-group-half {
        max-width: none;
    }
}

@media (max-width: 490px) {
    .blog__item img {
        max-width: 100%;
    }
}