@import "sections/reviewers.css";
@import "sections/benefits.css";
@import "sections/prefooter.css";
@import "sections/customer-reviews.css";
@import "sections/mbg.css";
@import "sections/faqs.css";

.h1, h1 {
    font-size: 3.5rem;
}
@media screen and (max-width: 1199px) {
    h1, .h1 {
        font-size: 3rem;
    }
}
@media screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 2.25rem;
    }
    h2, .h2 {
        font-size: 2.25rem;
    }
}

/* Hero Section*/
.hero {
    border-radius: 2.5rem 2.5rem 0 0;
    background-color: var(--black-text);
    background-image: url("/images/redesign/best-usenet-provider/hero-bg.jpg");
    background-repeat: no-repeat;
    background-position-x: 60%;
    background-size: cover;
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: auto;
}
.hero h1, .hero h5 {
    margin-bottom: 1rem;
}

.hero__cta-group {
    margin: 1.5rem 0;
}

.hero__cta-group img {
    margin-left: 1.5rem;
}

.hero .mbg-text {
    margin: .75rem 0 0;
}

.hero .hero-foreground {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    object-fit: cover;
    height: 100%;
    padding: 0;
}

.hero-devices {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 1.5rem;
    align-items: center;
    width: 100%;
}
.hero-devices p {
    font-size: 1rem;
    font-weight: 400;
    margin-right: .5rem;
    margin-bottom: 0;
}
.hero-devices svg {
    margin: 0 .25rem;
    height: 1.125rem;
}

@media screen and (max-width: 1399px) {
    .hero {
        padding: 4rem 0;
    }
    .hero__cta-group img {
        width: 30%;
    }
}
@media screen and (max-width: 1199px) {
    .hero {
        padding: 3rem 0;
    }
    .hero .hero-foreground {
        width: 45%;
        object-position: 45%;
    }
    .hero__cta-group {
        margin: 1rem 0
    }
    .hero__cta-group img {
        margin-left: 1rem;
    }
    .hero .col-6 {
        width: 56%;
    }
}

@media screen and (max-width: 991px) {
    .hero .hero-foreground {
        display: none;
    }
    .hero .col-6 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1, .hero h5 {
        text-align: center;
        padding: 0;
    }
    .hero__cta-group {
        display: flex;
        flex-direction: column;
    }
    .hero__cta-group img {
        height: 5rem;
        margin: 1.5rem 0 0;
        width: auto;
    }
    .hero-devices {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Hero Section*/

/* Retention Description Accordion Section */
.ret-desc-accordion {
    padding: 4rem 0;
}

.ret-desc-accordion h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 0;
}

.ret-desc-accordion p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 140%;
}

.accordion-wrapper {
    margin: 4rem 0 0;
}

.accordion-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.accordion-content .accordion {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.accordion-content .accordion-item {
    background: none;
    border: none;
    position: relative;
    margin: 1rem 0;
}

.accordion-content .accordion-button, .accordion-content .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.accordion-content .accordion-button::after {
    content: none;
}

.accordion-content .accordion-button.collapsed {
    opacity: .3;
}

.accordion-content .accordion-button {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 135%;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-content .accordion-button:before,
.accordion-content .accordion-collapse:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--black-text);
    transition: .15s ease;
    max-height: 100%;
}

.accordion-content .accordion-button:not(.collapsed):before,
.accordion-content .accordion-collapse.show:before {
    transition: .15s ease;
    max-height: 100%;
}

.accordion-content .accordion-link {
    text-decoration: none;
    margin-top: 2rem;
}

.accordion-content .accordion-body {
    padding-top: 1rem;
    padding-bottom: 0;
}
.accordion-content .accordion-body p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 155%;
}
.accordion-content .accordion-body p b,
.accordion-content .accordion-body p strong {
    font-weight: 700;
}

.accordion-content .accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-imgs {
    padding-right: 5rem;
}

.accordion-imgs img {
    display: none;
    border-radius: 2.5rem;
    height: 25rem;
    width: 100%;
    object-fit: cover;
}

.accordion-imgs img.shown {
    display: block;
}

.ret-desc-accordion--cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
}

.ret-desc-accordion--cta .cta-btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 1rem;
    padding: 1rem 7.5rem;
}

@media screen and (max-width: 1399px) {
    .ret-desc-accordion {
        padding: 2rem 0 1rem;
    }
    .ret-desc-accordion h2 {
        font-size: 3.5rem;
    }
    .accordion-content .accordion-button {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 1199px) {
    .ret-desc-accordion {
        padding: 3rem 0 1rem;
    }
    .ret-desc-accordion h2 {
        font-size: 2.75rem;
    }
    .ret-desc-accordion p {
        font-size: 1rem;
    }
    .accordion-wrapper {
        margin: 2rem 0;
    }
}

@media screen and (max-width: 991px) {
    .ret-desc-accordion h2 {
        font-size: 2rem;
    }
    .accordion-imgs {
        padding: 0;
        width: 45%;
        margin: 0 auto 1rem;
        order: -1;
    }
    .accordion-imgs img {
        height: auto;
    }
    .accordion-items {
        width: 100%;
    }
    .ret-desc-accordion p {
        font-size: .85rem;
        line-height: 170%;
    }
    .accordion-content .accordion-button {
        font-size: 1rem;
    }
    .ret-desc-accordion--cta {
        margin-top: 2rem;
    }
    .ret-desc-accordion--cta .cta-btn {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .accordion-wrapper {
        border-radius: 1.5rem;
    }

}

@media screen and (max-width: 575px) {
    .accordion-wrapper {
        margin: 2rem auto;
        width: 95%;
        padding: 0;
    }
    .accordion-content .accordion-button {
        font-size: 1.2rem;
        padding: .65rem 1rem;
    }
    .accordion-content .accordion-item .accordion-collapse:before {
        width: .18rem;
    }

    .accordion-imgs {
        width: 100%;
    }
    .accordion-content .accordion-body {
        font-size: 1rem;
    }
    .ret-desc-accordion p {
        font-size: 1rem;
    }
}

/* Retention Description Accordion Section */
/* Retention Benefits Section */
.ret-benefits {
    border-radius: 2.5rem;
    background: #E9E9E9;
    padding: 4rem 0;
}
.ret-benefits .accordion-imgs {
    padding: 0 0 0 5rem;
}
.ret-benefits .accordion-imgs img {
    height: 20rem;
}

.ret-benefits h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 1rem;
}
.ret-benefits .accordion-wrapper {
    margin-bottom: 4rem;
}

.ret-benefits .benefits {
    padding: 0;
}
.ret-benefits .benefits--list {
    margin: 1rem 0;
}
.ret-benefits .benefits--item {
    border-radius: 2.5rem;
    background: #FFF;
}

.ret-benefits .ret-desc-accordion--cta {
    margin-top: 3rem;
}

@media screen and (max-width: 991px){
    .ret-benefits .accordion-imgs {
        padding: 2rem 0 0 0;
        width: 100%;
    }
    .ret-benefits .accordion-imgs img {
        height: auto;
        width: 100%;
    }
}

/* Retention Benefits Section */
/* Simple Block Section */
.simple-block {
    padding: 4rem 0;
    background: #fff;
}
.simple-block.rtl {
    border-radius: 2.5rem;
    background: #FAFAFA;
}
.simple-block h2 {
    margin-bottom: 1rem;
}
.simple-block h5 {
    font-weight: 400;
}
.simple-block--wrapper {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.simple-block--img {
    padding-right: 5rem;
}
.simple-block--img img {
    border-radius: 2.5rem;
    height: 25rem;
    object-fit: cover;
}
.simple-block.rtl .simple-block--img {
    padding: 0 0 0 5rem;
}
.simple-block--text h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 1rem;
}
.simple-block--text p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 1.5rem;
}
.simple-block--text .learn-more {
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
}
.simple-block--text .cta-btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: 160%;
    margin-top: 3rem;
    border-radius: 0.75rem;
    padding: 1rem;
    width: 40%;
    display: flex;
    justify-content: center;
    align-content: center;
}
@media screen and (max-width: 991px){
    .simple-block {
        padding: 2rem 0;
    }
    .simple-block--wrapper {
        margin-top: 0;
    }
    .simple-block--img, .simple-block.rtl .simple-block--img {
        padding: 0 0 2rem 0;
        width: 100%;
        order: -1;
    }
    .simple-block--img img {
        height: auto;
    }
    .simple-block--text {
        width: 100%;
    }
    .simple-block--text h3 {
        font-size: 1.75rem;
    }
    .simple-block--text .cta-btn {
        width: 60%;
        margin: 2rem auto 0;
    }
}
@media screen and (max-width: 575px){
    .simple-block--text .cta-btn {
        width: 100%;
    }
}
/* Simple Block Section */

/* Customer Reviews Section*/
.customer-reviews {
    background: #fff;
}
/* Customer Reviews Section*/

/* Prefooter Section*/
.prefooter {
    border-radius: 0 2.5rem 0 0;
    background: #EBEBEB;
    padding: 3.75rem 0;
}
.prefooter h2 {
    margin-bottom: 1.5rem;
}
.prefooter p {
    margin-top: 0;
}
.prefooter .cta-btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: 160%;
    margin-top: 1rem;
    border-radius: 0.75rem;
    padding: 1rem;
    width: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
}
@media screen and (max-width: 1399px){
    .prefooter img {
        object-position: 35%;
    }
}
@media screen and (max-width: 575px){
    .prefooter .cta-btn {
        width: 100%;
    }
}
/* Prefooter Section*/