/* Banner Section */

.banner-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;
    padding: 1rem;
    background: var(--theme-gradient);
    color: #fff;
    border-radius: var(--default-radius)
}

.banner-image {
    position: absolute;
    width: 150px;
    bottom: 0px;
    right: 0px;
    filter: drop-shadow(-10px -10px 50px #1c1a2491);
}

.banner-headline {
    max-width: 600px;
    margin: 1rem 0px;
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: bold;
    color: #000;
}

/* Pricing Section */

.pricing-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: var(--primary-font);
}

.pricing-box-wrapper {
    display: flex;
    width: 95%;
    max-width: 500px;
    margin: 1.5rem 0px;
    flex-direction: column;
}

.pricing-discount {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.pricing-box {
    display: flex;
    width: 100%;
    padding: 1rem .5rem;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--theme-color);
    border-radius: var(--default-radius);
}

.pricing-main {
    background: var(--theme-gradient);
}

.pricing-title {
    margin: 1rem auto;
    font-size: 26px;
    color: var(--theme-color);
}

.pricing-text {
    font-size: 16px;
    font-weight: 500;
}

.pricing-wrapper-old,
.pricing-wrapper {
    position: relative;
    display: flex;
    margin: .1rem .5rem;
    align-items: center;
}

.pricing-wrapper-old::after {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0px;
    top: 50%;
    background-color: var(--danger-color);
}

.pricing-old-value {
    margin-right: .5rem;
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-dark-color);
}

.pricing-value {
    margin-right: .5rem;
    font-size: 30px;
    font-weight: bold;
}

.pricing-symbol {
    color: var(--text-neutral-color);
}

.pricing-features {
    margin: 1rem auto;
    list-style: none;
}

.pricing-features li {
    display: flex;
    margin: .5rem 0px;
    align-items: center;
}

.pricing-features li img {
    margin-right: .5rem;
}

.pricing-info-text {
    margin: 1rem auto;
    color: var(--text-neutral-color);
}


.pricing-cta {
    width: fit-content;
    font-family: var(--secondary-font);
    background-color: var(--theme-color);
    padding: .75rem 1.5rem;
    border-radius: var(--default-radius);
    color: #fff !important;
    text-decoration: none;
}

.pricing-cta:hover {
    background-color: #330e81;
}

.pricing-garantee-title {
    margin-right: .5rem;
    margin: .75rem auto;
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 600;
}

.pricing-image-ssl {
    width: 100px;
    margin: .75rem auto;
}

/* Beta Section */
.beta-section {
    padding: 2rem 0px;
}

.beta-container {
    display: flex;
    width: 100%;
    min-height: 200px;
    padding: 1.5rem 1rem;
    flex-direction: column;
    justify-content: center;
    background-color: var(--theme-color);
    color: #fff;
    font-family: var(--primary-font);
    border-radius: var(--default-radius);
}

.beta-title {
    font-size: 28px;
    margin: 0rem 0px 1rem 0px;
}

.beta-text {
    font-size: 18px;
    line-height: 1.5;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .hero-block {
        width: 80%;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .banner-container {
        padding: 2rem;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .banner-headline {
        font-size: 38px;
    }

    .pricing-container {
        flex-direction: row;
        justify-content: space-around;
    }

    .pricing-box-wrapper {
        width: 300px;
    }

    .pricing-discount {
       font-size: 22px;
    }

    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-text {
        font-size: 18px;
    }

    .pricing-value {
        font-size: 38px;
    }

    .pricing-garantee-title {
        margin: 2.5rem 0px;
        margin-right: 2rem;
        font-size: 36px
    }
    
    .pricing-image-ssl {
        margin: 2.5rem 0px;
    }

    .beta-container {
        padding: 2rem;
    }

    .beta-title {
        font-size: 36px;
        margin: 0rem 0px 1.5rem 0px;
    }
    
    .beta-text {
        font-size: 22px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .pricing-container {
        justify-content: space-between;
    }

    .pricing-box-wrapper {
        width: 30%;
    }
}