.ssl_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
    margin-top: 24px;

    @media screen and (min-width: 768px) {
        gap: 16px;
        margin-top: 48px;
    }
}

.ssl_wrapper .ssl_wrapper__title {
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    color: var(--color-neutral-1000);
    margin-bottom: 0;
}

.ssl_wrapper .ssl_wrapper__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    color: var(--color-black-500);
}

.ssl_wrapper .ssl_wrapper__banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 6px;
    border: 1px solid var(--color-neutral-100, #dde0e3);
    width: 100%;
    overflow: hidden;
}

.ssl_wrapper__banner .banner_head {
    padding: 24px 24px 16px 24px;
    background: #f4f6f8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    width: 100%;

    @media screen and (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
}

.ssl_wrapper__banner .banner_head .banner_head__icon {
    display: none;

    @media screen and (min-width: 768px) {
        display: flex;
    }
}

.ssl_wrapper__banner .banner_head .banner_head__titles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.ssl_wrapper__banner .banner_head .banner__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    color: var(--color-neutral-1000, #2e3136);
}

.ssl_wrapper__banner .banner_head .banner__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-neutral-800, #595e66);
    margin-bottom: 0;
}

.ssl_wrapper__banner .banner_head .banner_head__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;

    @media screen and (min-width: 768px) {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
    }
}

.ssl_wrapper__banner .banner_head .banner__price {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: #17191c;
}

.ssl_wrapper__banner .banner_head .banner__action {
}

.ssl_wrapper__banner .banner_content {
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    width: 100%;

    @media screen and (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.ssl_wrapper__banner .banner_content .banner_content__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.ssl_wrapper__banner .banner_content .item_title__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.ssl_wrapper__banner .banner_content .item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    color: var(--color-neutral-800, #595e66);
}

.ssl_wrapper__banner .banner_content .item__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-neutral-800, #595e66);
    margin-bottom: 0;
}

.ssl_wrapper__banner .banner_footer {
    padding: 0px 24px 24px 24px;
}

.ssl_wrapper__banner .banner_footer a {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}

.rounded-24 {
    border-radius: 24px;
}

.banner-common {
    padding: 40px 30px;
    background: #F6F6F6;
    height: auto;
}

.banner-hosting {
    background-image: url('img/mask-group.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-ssl {
    background-image: url('img/woman-security.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 90%;
}

.banner-common a {
    padding: 20px 24px;
    font-size: 14px;
    border: 1px solid #DDE0E3;
}

@media (min-width: 768px) {
    .banner-common {
        padding: 60px 60px;
        height: 560px;
    }
}