* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    margin: 0;
    background-color: black;
    font-family: 'Montserrat';
    color: white;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
*::-webkit-scrollbar {
    display: none;
}

.title {
    position: relative;
    width: 100%;
    padding: 100px 0 0;
    margin: 0 auto;
    background-color: #0f0f0f;
}

.title .top {
    width: 85%;
    margin: 0 auto;
    position: relative;
}

.title .detail {
    width: 100%;
    font-size: 18vw;
    font-family: Oswald;
    color: #272727;
    position: relative;
    line-height: 1.2;
}

.title .car {
    position: absolute;
    top: 27%;
    right: -7%;
    max-width: 60%;
}

.title .bottom {
    display: flex;
    margin-top: 19%;
    margin-left: 7.5%;
    width: 85%;
    justify-content: space-between;
    padding-bottom: 90px;
    gap: 50px;
}

.title .leftside {
    font-size: 60px;
    font-weight: bold;
    width: 720px;
    text-transform: uppercase;
}


.title .bottom .rightside {
    font-size: 17px;
    min-width: 600px;
    max-width: 750px;
    line-height: 30px;
}

.pack_btn {
    color: white;
    background-color: #D40000;
    border: none;
    padding: 13px 40px;
    border-radius: 7px;
    font-weight: bold;
    font-size: 16px;
    margin: 3vw 0 3vw;
}

.tinting {
    background-color: #1e1e1e;
}

.tinting .top {
    padding: 4vw 7.5%;
    font-size: clamp(32px, 5vw, 50px);
    font-weight: bold;
}

.main_sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 4.5%;
    width: 100%;
}

.big_photo {
  width: 100%;
  object-fit: contain;
}

.packs {
    display: flex;
    width: 100%;
    flex: 0 1 20%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.pack {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0000002e;
    border-radius: 8px;
    padding: 1.2vw 1.2vw 2vw 1.2vw;
    max-width: 300px;
    min-width: 17%;
}

.glass_img {
    text-align: center;
}

.glass_img img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.pack .name {
    font-size: clamp(1.2rem, 2.5vw, 32px);
    font-weight: 700;
    margin: 1.8vw 0 0.7vw;
    text-align: center;
}

.pack .terms {
    font-size: clamp(1rem, 1.5vw, 20px);
    text-align: center;
    margin-bottom: 1.5vw;
    line-height: 2;
}

.pack .cost {
    font-size: 1.45vw;
    font-weight: 700;
    background-color: #1e1e1e;
    border: 1px solid #ffffff;
    padding: 1vw 2vw;
    border-radius: 1vw;
    text-align: center;
}

.material {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 30px 7.5%;
}

.material .leftside {
    color: black;
}

.material .rightside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 930px;
    gap: 4vw;
}

.material .name {
    font-size: 35px;
    font-weight: bold;
}

.material .text {
    width: 320px;
    margin-top: 15px;
    font-weight: bold;
}

.material .rightside img {
    width: 9vw;
    min-width: 170px;
}

.video {
    display: flex;
    justify-content: space-between;
    background-color: #c9c9c9;
    padding-block: 80px;
    padding-left: 7.5%;
    padding-right: 9%;
}

.video .leftside {
    color: black;
}

.video .name {
    font-size: 35px;
    font-weight: bold;
}

.video .text {
    width: 320px;
    margin-top: 20px;
    font-weight: bold;
}

.video .rightside {
    position: relative;
}

.video .rightside iframe {
    position: relative;
    z-index: 40;
}

.video .rightside iframe, .video .rightside .background {
    width: 650px;
    height: 400px;
}

.video .rightside .background {
    background-color: #D40000;
    position: absolute;
    top: 0;
    transform: rotate(3deg);
}

@media screen and (max-width: 1720px) {
    .packs {
        justify-content: center;
        gap: 3.5vw;
        flex-basis: 33.3333%;
    }

    .pack {
        max-width: 28vw;
    }
}

@media screen and (max-width: 1200px) {
    .title .leftside {
        font-size: 38px;
        width: auto;
    }

    .title .bottom {
        gap: 0;
    }

    .title .bottom .rightside {
        min-width: 600px;
        max-width: 100%;
    }

    .row_s, .tech, .material, .video, .title .bottom {
        flex-direction: column;
    }

    .title .bottom .rightside {
        width: 100% !important;
        max-width: none;
    }

    .tech, .video, .features {
        padding-top: 30px !important;
    }

    .tech .rightside img {
        width: 100%;
    }

    .leftside, .rightside {
        margin-top: 30px;
        width: 100% !important;
    }

    .packs {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 38vw);
        justify-content: center;
        gap: 6vw;
    }

    .packs > :last-child:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 38vw;
    }

    .pack {
        max-width: 100%;
    }

    .pack .terms {
        height: auto;
    }

    .pack .cost {
        font-size: 18px;
    }

    .material .rightside  {
        justify-content: center;
        gap: 20vw;
    }

}

@media screen and (max-width: 768px) {
    .video {
        padding-block: 50px;
    }

    .video .rightside iframe, .video .rightside .background {
        width: 90%;
        height: 250px;
    }
}

@media screen and (max-width: 700px) {
    .title .rightside {
        min-width: 0px !important;
    }

    .title .leftside {
        font-size: 35px;
    }

    .packs {
        grid-template-columns: repeat(1, 64vw);
    }

    .packs > :last-child:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        width: auto;
    }

    .material .rightside img {
        min-width: 113px;
    }
}
