@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home {
    background-image: url(../images/home.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 25px 0 40px;
}

.home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(0, 0, 0, 1) 70%
  );
    z-index: 1;
}

.home .wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    display: grid;
    gap: 50px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.header__logo {
    width: 140px;
}

a.header__logo img {
    width: 100%;
}

.header__menu {
    display: flex;
    gap: 25px;
}

.header__menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.signup__btn {
    color: #F99709;
    border: solid 2px #F99709;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.header__phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.home h1 {
    max-width: 500px;
    margin: 0;
    font-size: 24px;
}

.home h1 span {
    text-decoration: underline;
}

.home h1 strong {
    color: #F99709;
    font-weight: 700;
}

.home__cars {
    display: flex;
    gap: 25px;
    align-items: center;
}

.home__cars span {
    width: 10%;
    max-width: 80px;
}

.home__cars span img {
    width: 100%;
}

.from__cta__wrapper {
    display: grid;
    gap: 20px;
}

.from__cta__wrapper .privacy__form {
    font-size: 10px;
}

.from__cta {
    display: flex;
    align-items: end;
    gap: 25px;
}

.from__cta__col {
    display: grid;
}

.from__cta__title {
    font-size: 12px;
}

.from__cta__col input {
    border: none;
    background: none;
    border-bottom: solid 1px #858585;
    padding: 8px 10px;
    color: #fff;
    outline: none;
}

.from__cta > :nth-child(1) input {
    border-bottom-color: #F99709;
}

.from__cta__col input::placeholder {
    color: #fff;
    font-weight: 300;
}

.from__cta button {
    background-color: #F99709;
    border: none;
    color: #fff;
    padding: 10px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
}

.home .wrapper .privacy__form a {
    color: #fff;
}

.home__bullets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.home__bullets span {
    display: grid;
    grid-template-columns: 36px auto;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.home__bullets span::before {
    content: '';
    mask-repeat: no-repeat;
    background-color: #F99709;
    width: 36px;
    height: 36px;
}

.home__bullets > :nth-child(1)::before {mask-image: url(../images/b1.svg);}
.home__bullets > :nth-child(2)::before {mask-image: url(../images/b2.svg);}
.home__bullets > :nth-child(3)::before {mask-image: url(../images/b3.svg);}
.home__bullets > :nth-child(4)::before {mask-image: url(../images/b4.svg);}

h2 {
    text-align: center;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 10px;
    font-size: 27px;
}

h2::after {
    content: '';
    height: 2px;
    background-color: #F99709;
}

h2 span {
    padding: 0 20px;
}

h2 span strong {
    color: #F99709;
    font-weight: 700;
}

.services {}

.services__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.services__item {
    display: grid;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    align-content: start;
}

.services__item__cover {
    max-height: 150px;
    height: 15vw;
}

.services__item__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__item__content {
    padding: 15px;
    font-size: 14px;
}

.services__item__content h3 {
    margin: 0;
    text-align: center;
    border-bottom: solid 1px #F99709;
    padding: 0 0 12px;
    font-weight: 700;
    font-size: 14px;
}

.services__item__content ul {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 5px;
    font-size: 12px;
}

.services__item__content ul li {
    display: grid;
    grid-template-columns: 10px auto;
    gap: 10px;
    align-items: center;
}

.services__item__content ul li::before {
    content: '';
    mask-image: url(../images/ico_check.svg);
    mask-repeat: no-repeat;
    width: 10px;
    height: 10px;
    background-color: #F99709;
}

.services__item__btn {
    background-color: #f99709;
    color: #fff;
    padding: 10px 0;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-align: center;
    margin: 12px 0 0;
}

.brands {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    margin: 50px 0;
}

.brands span {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    height: 10vw;
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands span img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.price {
    text-align: center;
    position: relative;
}

.price::after,
.price::before {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

.price::after {
    background-image: url(../images/generator.webp);
    right: 0;
    top: 0;
}

.price::before {
    background-image: url(../images/filtrs.webp);
    left: 0;
    bottom: 0;
}

.price ul {
   margin: 40px 0;
   padding: 0;
   list-style: none;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 15px;
}

.price ul li {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 20px 15px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #fff;
}

.price ul li > :nth-child(2) {
    font-weight: 600;
}

.price__phone {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 21px;
}

.diagnost {
    background-image: url(../images/diagnost.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 50px 0 70px;
    overflow: hidden;
    margin: 25px 0 0;
    color: #fff;
}

.diagnost::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%
      );
    z-index: 1;
}

.diagnost .wrapper {
    position: relative;
    z-index: 2;
}

.diagnost h2 {
    justify-content: start;
}

.diagnost h2 span {
    padding: 0 15px 0 0;
}

.diagnost p {
    font-size: 14px;
}

.diagnost form {
    margin: 40px 0 0;
}

.diagnost .privacy__form {
    margin: 10px 0 0 0;
    font-size: 10px;
}

.diagnost .privacy__form a {
    color: #fff;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
}

.contact h2 {
    justify-content: start;
}

.contact h2 span {
    padding: 0 20px 0 0;
}

.contact__cnt {}

.contact__cnt ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.contact__cnt ul li {
    display: grid;
    grid-template-columns: 10px auto;
    gap: 10px;
    align-items: center;
}

.contact__cnt ul li::before {
    content: '';
    mask-repeat: no-repeat;
    width: 14px;
    height: 14px;
    background-color: #858585;
}

.contact__cnt ul > :nth-child(1)::before {mask-image: url(../images/ico_phone.svg);}
.contact__cnt ul > :nth-child(2)::before {mask-image: url(../images/ico_pin.svg);}
.contact__cnt ul > :nth-child(3)::before {mask-image: url(../images/ico_time.svg);}

.contact__cnt ul li a {
    color: #000;
    text-decoration: none;
}

.map {
    height: 350px;
}

.blocker {
    z-index: 5;
}

.filetype,
.burger__btn,
.header__menu span,
.fixed {
    display: none;
}

.modal__signup {
    max-width: 640px;
    padding: 30px 30px;
}

.modal__signup .from__cta__col input::placeholder {
    color: #000;
}

.modal__signup .from__cta>:nth-child(1) input {
    border-bottom-color: #858585;
}

.modal__signup .from__cta__col input {
    color: #000;
}

.modal__signup__title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.modal__signup__subtitle {
    text-align: center;
    margin: 5px 0 10px;
    font-size: 14px;
    border-bottom: solid 1px #e7e7e7;
    padding: 0 0 10px;
}

.modal__signup .privacy__form {
    margin: 10px 0 0 0;
    font-size: 10px;
}

label.error {
    background: #f00;
    color: #fff;
    font-size: 12px;
    padding: 3px;
    text-align: center;
    font-weight: 600;
    border-radius: 15px;
    margin: 5px 0 0 0;
}

.cookie {
    max-width: 225px;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    bottom: 10px;
    z-index: 9999;
    left: 10px;
    background: #fff;
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    display: none;
    justify-items: start;
    gap: 10px;
}

.cookie p {
    margin: 0;
}

.cookie p a {
    color: #000;
}

.cookie__close {
	background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}

.privacy__form {
    font-size: 12px;
}

.privacy__form a {
    color: #000;
}

@media screen and (max-width: 949px) {
    .header__menu {
        position: fixed;
        top: 0;
        right: -200vw;
        background-color: #000;
        width: 100%;
        height: 100%;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        transition: all 0.4s ease 0s;
    }
    .header__menu.active {
        right: 0;
        transition: all 0.4s ease 0s;
    }
    .header__menu span {
        display: block;
        mask-image: url(../images/ico_close.svg);
        mask-repeat: no-repeat;
        position: absolute;
        right: 25px;
        top: 25px;
        width: 32px;
        height: 32px;
        background-color: #fff;
        cursor: pointer;
    }
    .header__menu a {
        font-size: 18px;
    }
    .burger__btn {
        display: grid;
        gap: 7px;
        cursor: pointer;
    }
    .burger__btn::after,
    .burger__btn::before {
        content: '';
    }
    .burger__btn::after,
    .burger__btn::before,
    .burger__btn span {
        width: 35px;
        height: 1px;
        background-color: #fff;
    }
    .services__item__content {
        padding: 10px;
    }
    .home__bullets span::before {
        width: 28px;
        height: 28px;
    }
    .home__bullets span {
        font-size: 12px;
        grid-template-columns: 28px auto;
        gap: 10px;
        font-weight: 600;
    }
    .fixed {
        display: flex;
        gap: 5px;
        position: fixed;
        bottom: 10px;
        right: 0;
        padding: 0 15px;
        z-index: 3;
    }
    .fixed a {
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 500;
        display: grid;
        grid-template-columns: 28px auto;
        gap: 7px;
        align-items: center;
        border-radius: 6px;
        padding: 0 7px 0 0;
        font-size: 12px;
        font-weight: 600;
    }
    .fixed a i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 28px;
        height: 30px;
        border-radius: 6px 0 0 6px;
    }
    .fixed a i::before {
        content: '';
        width: 40%;
        height: 40%;
        mask-repeat: no-repeat;
        background-color: #fff;
    }
    .fixed > :nth-child(1) {background-color: #01a9b2;}
    .fixed > :nth-child(1) i {background-color: #008f97;}
    .fixed > :nth-child(1) i::before {mask-image: url(../images/ico_check.svg);}
    .fixed > :nth-child(2) {background-color: #ff9000;}
    .fixed > :nth-child(2) i {background-color: #d97b02;}
    .fixed > :nth-child(2) i::before {mask-image: url(../images/ico_phone.svg);}
    .fixed > :nth-child(3) {background-color: #df5e62;}
    .fixed > :nth-child(3) i {background-color: #be5053;}
    .fixed > :nth-child(3) i::before {mask-image: url(../images/ico_pin.svg);}
}

@media screen and (max-width: 899px) {
    .price {
        padding: 0 0 80px;
    }
}

@media screen and (max-width: 849px) {
    .services__item__content h3 {
        font-size: 12px;
    }
    .services__list {
        gap: 10px;
    }
}

@media screen and (max-width: 749px) {
    .price ul li {
        font-size: 12px;
    }
    .home h1 {
        text-align: center;
        max-width: unset;
    }
    .home__cars {
        justify-content: center;
    }
    .from__cta {
        flex-direction: column;
        align-items: center;
    }
    .home .wrapper {
        gap: 30px;
    }
    .home .from__cta {
        border: solid 1px #fff;
        padding: 25px 0;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    }
    .diagnost {
        padding: 20px 0 40px;
    }
    .diagnost h2 {
        text-align: center;
        justify-content: center;
    }
    .diagnost p {
        text-align: center;
    }
}

@media screen and (max-width: 699px) {
    .services__item__content ul li {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 7px;
    }
    .services__item__content ul li::before {
        width: 15px;
        height: 1px;
        mask-image: unset;
    }
    .services__item__content ul > :last-child::before {
        display: none;
    }
}

@media screen and (max-width: 649px) {
    body {
        font-size: 14px;
    }
    a.header__logo {
        width: 115px;
    }
    .signup__btn {
        padding: 5px 20px;
        font-size: 12px;
    }
    .header__phone {
        font-size: 12px;
    }
    .home h1 {
        font-size: 18px;
    }
    .home__bullets {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .services p {
        text-align: center;
    }
    .services__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands {
        margin: 25px 0;
        gap: 5px;
    }
    .diagnost {
        margin: 0;
    }
    .price {
        padding: 0 0 45px;
    }
    .price::after, .price::before {
        width: 60px;
        height: 60px;
    }
    h2 {
        font-size: 24px;
    }
    .price ul {
        gap: 10px;
    }
    .price ul li {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    .contact {
        grid-template-columns: 1fr;
    }
    .contact__cnt {}
    .home__cars span {
        width: 15%;
    }
}

@media screen and (max-width: 499px) {
    .header {
        display: grid;
        grid-template-columns: 115px auto 35px;
        gap: 5px 0;
    }
    .header__logo {
        order: 1;
        grid-row: span 2;
    }
    a.header__logo {
        width: 100%;
    }
    .header__phone {
        order: 2;
        text-align: center;
    }
    .burger__btn {
        order: 3;
        justify-self: end;
        position: relative;
        top: 10px;
    }
    .signup__btn {
        order: 4;
        text-align: center;
        padding: 5px 30px;
    }
    .home .wrapper {
        gap: 20px;
    }
    .home h1 {
        font-weight: 600;
        font-size: 16px;
        margin: 10px 0 0 0;
    }
    .home__cars {
        gap: 15px;
    }
    .home__bullets {
        margin: 10px 0 0 0;
    }
    .services__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .services__item__content ul li {
        text-align: left;
        display: grid;
    }
    .services__item__content ul li::before {
        mask-image: url(../images/ico_check.svg);
        width: 10px;
        height: 10px;
    }
    .services__item__content ul > :last-child::before {
        display: inline;
    }
    h2 {
        font-size: 21px;
    }
}

@media screen and (max-width: 399px) {
    .header {
        grid-template-columns: 100px auto 30px;
    }
    .burger__btn::after, .burger__btn::before, .burger__btn span {
        width: 30px;
    }
    .home .from__cta {
        padding: 20px 15px;
    }
    .from__cta button {
        width: 100%;
    }
}

@media screen and (max-width: 349px) {
    .brands {
        grid-template-columns: repeat(5, 1fr);
    }
    .brands span {
        height: 15vw;
    }
    
    .price::after, .price::before {
        width: 40px;
        height: 40px;
    }
    .price__phone {
        font-size: 18px;
    }
    .services__list {
        grid-template-columns: 1fr;
    }
    .services__item__cover {
        height: 25vw;
    }
    .signup__btn {
        padding: 5px 15px;
    }
    .header {
        grid-template-columns: 89px auto 25px;
    }
    .burger__btn::after, .burger__btn::before, .burger__btn span {
        width: 25px;
    }
}