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

.container {
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
}

.content {
    padding: 100px 200px;
    width: 100%;
    display: initial;
}

.start h1 {
    font-size: clamp(2rem, 1.5rem + 1vw, 4rem);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}
.tariff-sheet {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    width: 100%;
}
.tariff-sheet::-webkit-scrollbar {
    height: 10px;
}
.tariff-sheet::-webkit-scrollbar-thumb {
    background: #b9b9b9;
    border-radius: 10px;
}

.tariff-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    width: 350px;
    height: 962px;
    border-radius: 10px;
    padding: 45px;
    background:
        linear-gradient(white 0 0) padding-box,
        linear-gradient(90deg,#00B2FF99, #8204AE99 100%) border-box;
    border: 5px solid transparent;
    scroll-snap-align: start;
    text-align: center;
    h1 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    p {
        line-height: 1.4;
        margin-bottom: 20px;
    }

    button {
        cursor: pointer;
        font-size: 1.2rem;
        padding: 15px 30px;
        border-radius: 40px;
        border: none;
        background: linear-gradient(90deg,#00B2FF99, #8204AE99);
    }

    button:hover{
        color: white;
    }

}
 
@media (width <= 1600px) {
    .content{
        padding: 40px 100px 100px 100px;
    }
}

@media (width <= 1440px) {
    .start{
        margin: 0;
        h1{
            padding: 0 0 40px 0;
            width: 100%;
        }
    }
    .tariff-sheet{
        width: 100%;
        height: fit-content;
    }
}

@media (width <= 950px) {
    .content {
        padding: 60px;
    }
    .start{
        h1{
            padding: 0 0 20px 0;
        }
    }
    .tariff-card{
        height: 700px;
    }
    
}

@media (width <= 750px) {
    .content {
        padding: 87px 20px 40px 20px;
        height: max-content;
    }
}

@media (width <= 400px) {
    .tariff-sheet{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tariff-card{
        width: 100%;
        height: auto;
    }
}

@media (350px <= width <= 1440px) {
    html {
        font-size: clamp(12px, 10.716px + 0.367vw, 16px);
    }
}