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

body {
    font-family: "Roboto", sans-serif;
}
.wrap {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    justify-content: space-between;
    padding-bottom: 20px;
    /*&:before {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    inset: 0;*/
    /*    background: url("") no-repeat center / cover;*/
    /*    opacity: 0.6;*/
    /*    filter: blur(5px);*/
    /*    z-index: -1;*/
    /*}*/
}
.main-contaiter {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1280px;
    width: 100%;
    padding: 40px;
    margin: 40px auto;
}

.text-block {
    text-align: center;
    max-width: 70%;
    margin: 0 auto 60px;
    h1 {
        color: rgb(33, 37, 41);
        font-size: 56px;
        line-height: 67px;
        font-weight: 400;
        margin-bottom: 18px;
    }
    .description {
        color: rgb(108, 117, 125);
        font-size: 20px;
        line-height: 30px;
    }
}

.cards-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.card {
    width: calc(33% - 16px);
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    &.pro-type {
        border: 1px solid #0d6efd;
    }
}
.card-header {
    padding: 16px;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    text-align: center;
    font-size: 1.5rem;
}
.pro-type .card-header {
    background: #0d6efd;
    color: #fff;
}
.card-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    ul {
        list-style: none;
        margin: 16px 0;
        li {
            text-align: center;
            margin-bottom: 8px;
        }
    }
}
.info-block__price {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 18px;
    color: rgb(108, 117, 125);
    span {
        color: rgb(33, 37, 41);
        font-size: 36px;
    }
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0d6efd;
    height: 48px;
    width: calc(100% - 32px);
    margin: 0 auto 16px;
    border-radius: 4px;
    cursor: pointer;
    color: #0d6efd;
    font-size: 18px;
    text-decoration: none;
    &.btn-fill {
        color: #fff;
        background: #0d6efd;
    }
}
.btn_back {
    width: calc(33% - 16px);
    margin: 40px auto;
}
.info-text-small {
    text-align: center;
    color: rgba(0, 0, 0, 0.2);
    font-size: 12px;
}

.modal-wrap {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    &.show {
        opacity: 1;
        visibility: visible;
    }
}
.modal-block-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.modal-block {
    width: 450px;
    height: 300px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}
.modal-text {
    text-align: center;
    color: rgb(108, 117, 125);
    font-size: 18px;
    line-height: 24px;
}
.modal-close-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    background: url("images/close.svg") no-repeat center / 26px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .main-contaiter {
        padding: 20px;
    }
    .text-block {
        max-width: 86%;
        h1 {
            font-size: 42px;
            line-height: 52px;
        }
        .description {
            font-size: 18px;
            line-height: 24px;
        }
    }
    .card, .btn_back {width: calc(33% - 8px);}
    .card-header {
        font-size: 18px;
    }
    .card-btn {font-size: 16px;}
}

@media screen and (max-width: 767px) {
    .text-block {
        max-width: 100%;
        h1 {
            font-size: 32px;
            line-height: 42px;
        }
        .description {
            font-size: 16px;
            line-height: 20px;
        }
    }
    .card {width: 100%; margin-bottom: 24px;}
    .btn_back {width: 100%;}
    .cards-block {
        flex-direction: column;
    }
}