.banner .container {
    height: 100%;
}

.banner {
    height: 550px;
    background-image: url(img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -110px 0;
}

.banner__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: baseline;
    justify-content: center;
    height: 100%;
}

.banner__title {
    width: 100%;
    margin-top: -70px;
    font-weight: bold;
    font-size: 30px;
    line-height: 36px;
    color: #0B454A;
}

.banner__slogan {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #2A2F30;
}

.banner__btns {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: baseline;
    justify-content: baseline;
}

.banner__price {
    font-size: 20px;
    color: #004f56;
}

.section-advantages {
    background-color: #F7F7F7;
    padding: 70px 0 100px;
}

.how-much-table table {
    border-collapse:collapse;
    max-width: 600px;
    min-width: 30%;
}
.how-much-table table td {
    border: none;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
}

.how-to__steps {
    margin-top: 50px;
    padding-left: 55px;
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr;

    gap:80px;
}

.how-to__step {
    font-size: 14px;
    line-height: 23px;
    position: relative;

}

.how-to__step:nth-of-type(3n) {
    margin-right: 0;
}

.how-to__step:before {
    color: rgba(177, 229, 223, 0.7);
    font-size: 80px;
    line-height: 23px;
    font-weight: bold;
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -55px;
    top: 25px;
}
@media (min-width: 576px) {
    .how-to__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
    .how-to__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {

}

@media (min-width: 576px) {
    .banner__btns {
        gap: 20px;
        align-items: baseline;
        justify-content: baseline;
        flex-direction: row;
    }

    .banner {

        background-position: 0 0;
    }
}

@media (min-width: 768px) {
    .banner__title {
        width: 525px;
    }

    .banner {
        height: 700px;
    }
}

.plk__warning {
    margin-top: 2.5em;
    margin-bottom: 4em;
}

.plk__alert {
    display: flex;
    align-items: center;
    padding: 1.25em 1.5em;
    font-weight: 700;
    color: #ffffff;
    background-color: #00898d;
}

.plk__alert::before {
    display: block;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
    font-size: 2em;
    line-height: 1.3em;
    text-align: center;
    color: #00898d;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    content: '!';
}

.plk__alert p:last-child {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .plk__warning {
        margin-top: 2.25em;
        margin-bottom: 3.75em;
    }
}

@media (min-width: 992px) {
    .plk__warning {
        margin-top: 2.8125em;
        margin-bottom: 4.6875em;
        font-size: 1.125em;
    }
}

@media (min-width: 1200px) {
    .plk__warning {
        margin-bottom: 5.3125em;
    }
}

@media (min-width: 1440px) {
    .plk__warning {
        margin-top: 4.125em;
        font-size: 1.25em;
    }
}