section.main-banner {
    margin-bottom: 3rem;
}

.banner-content {
    flex: 0 0 50%;
    background-color: #EFF1FF;
    padding: 2em 1em 3.5em 3.5em;
    border-radius: 40px 0 0 40px;
}

.banner-content-block {
    align-items: normal;
    position: relative;
}

.banner-content h4, .banner-content h4 a {
    color: var(--light-blue);
}

.down-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-theme-white);
    border: 5px solid var(--bg-light-gray);
    position: absolute;
    left: calc(50% - 28px);
    bottom: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.down-arrow img {
    width: 16px;
    transform: rotate(135deg);
}

.banner-image img {
    border-radius: 0 40px 40px 0;
    height: 100%;
    object-fit: cover;
}

.banner-content img.review-rating {
    margin-bottom: 0 !important;
}


/* QUICK LINKS */
.quick-links-section .section-heading {
    text-align: left;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.quick-links {
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 30px auto 50px;
}

.quick-link {
    position: relative;
    display: flex;
    align-items: baseline;
    width: calc(50% - 15px);
    gap: 15px;
    color: var(--global-font-color);
    text-decoration: none;
    outline: none !important;
}

.quick-link .index {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bold-blue);
    border: 2px solid var(--bold-blue);
    border-radius: 12px;
    box-shadow: -13px 13px var(--bold-blue);
    padding: 12.5px;
    margin: 0;
}

.quick-link .title {
    position: relative;
    color: var(--theme-green);
    margin: 0;
}

.quick-link .title::after {
    content: ">";
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
}

.quick-link .subtitle {
    font-size: 0.85rem;
    color: var(--global-font-color);
    margin-top: 0;
    margin-bottom: 0;
}
/* /QUICK LINKS */


/* MULTI COLUMN */
.multi-columns-section {
    position: relative;
    padding-top: 2em;
}

.multi-columns-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: var(--bold-blue);
}

.multi-columns-section .section-heading-block {
    position: relative;
    max-width: 910px;
}

.multi-columns-section .section-subtitle {
    margin-bottom: 10px;
}

.multi-columns-section .section-heading {
    margin-top: 10px;
    margin-bottom: 10px;
}

.multi-columns {
    position: relative;
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--bg-light-gray);
    padding: 2.5em;
    border-radius: 40px;
    margin: 2em auto 0;
}

.multi-column {
    width: calc(50% - 20px);
}

.multi-column .link {
    text-decoration: none;
    outline: none !important;
    border-radius: 22px;
}

.multi-column .image-wrapper {
    width: 100%;
    height: 285px;
    background: #ECF0F1;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    margin-bottom: 7px;
}

.multi-column .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.multi-column .title {
    color: var(--color-theme-white);
    background-color: var(--dark-blue);
    text-align: center;
    padding: 17.5px 15px;
    margin: 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.multi-column .link:hover .title {
    background-color: var(--theme-green);
}
/* /MULTI COLUMN */


/* ICONS SECTION */
.icons-section {
    padding-top: 1.5em;
}

.icons-section .section-heading {
    text-align: left;
    margin-bottom: 15px;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 80%;
    margin: 40px auto 0;
}

.icon {
    width: calc(25% - 30px);
}

.icon img {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.icon .title {
    max-width: 170px;
    margin: 10px auto 0;
}
/* /ICONS SECTION */


/* POINTS SECTION */
.points-section {
    background-color: #EFF1FF;
    background: linear-gradient(250deg, #EFF1FF 89%, var(--bold-blue) 11%);
    padding-top: 2em;
    padding-bottom: 3em;
    margin-top: 3em;
}

.points-section .section-heading {
    text-align: left;
    margin-bottom: 15px;
}

.points {
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px 30px;
    margin: 30px auto 50px;
}

.point {
    width: calc(33.33% - 20px);
    position: relative;
    color: var(--light-blue);
    padding-left: 30px;
}

.point:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--bold-blue);
    border-radius: 50%;
}
/* /POINTS SECTION */


/* CONTENT SECTION */
.content-section {
    padding-top: 3em;
}

.content-section .section-heading-block {
    max-width: 910px;
}

.content-section .section-subtitle {
    margin-bottom: 10px;
}

.content-section .section-heading {
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-wrapper {
    max-width: 70%;
    margin: 50px auto 0;
}

.content-data {
    display: flex;
    margin-bottom: 40px;
}

.content-data img {
    width: 250px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
    margin-right: 30px;
}

.content-data .title {
    color: var(--dark-blue);
    margin-top: 0;
    margin-bottom: 7px;
}

.content-data .description {
    margin-top: 7px;
}

.bottom-content {
    margin-bottom: 0;
}
/* /CONTENT SECTION */


/* CONTENT WITH BACKGROUND SECTION */
.content-bg-section {
    position: relative;
    background-color: var(--dark-blue);
    margin-top: 3em;
}

.content-bg-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
}

.content-bg-block {
    position: relative;
    max-width: 60%;
    padding: 3em 3em 3em 8em;
}

.content-bg-block::before {
    content: "";
    position: absolute;
    left: 2em;
    top: calc(4em / 2);
    width: 3px;
    height: calc(100% - 4em);
    background: var(--color-theme-white);
}

.content-bg-block h3 {
    margin-top: 0;
}

.content-bg-section .btn-theme {
    margin-top: 25px;
}
/* /CONTENT WITH BACKGROUND SECTION */


/* FAQS */
section.faqs .section-content {
    padding: 1.5em 1em;
}

.acc {
    margin-bottom: 22px;
}

.acc-head {
    background-color: var(--bold-blue);
    padding: 16px 35px;
    font-size: 22px;
    position: relative;
    cursor: pointer;
    border-radius: 22px;
}

.acc-head.active {
    background-color: var(--dark-blue);
}

.acc-head p {
    width: calc(100% - 25px);
    color: var(--color-theme-white);
    font-size: 1.25rem;
    margin: 0;
}

.acc-content {
    margin-top: -30px;
    padding: 45px 60px 15px;
    display: none;
    background-color: var(--bg-light-gray);
    border-radius: 22px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgb(0 0 0 / 17%) 0px 1px 3px -1px;
}

.acc-head.active::before {
    transform: rotate(90deg);
}

.acc-head.active img.close-icon {
    display: none;
}

.acc-head img.open-icon {
    display: none;
}

.acc-head.active img.open-icon {
    display: block;
}

.acc-head img.close-icon {
    display: block;
}

.acc-icon {
    width: 44px;
    position: absolute;
    right: 11px;
    top: calc(50% - 22px);
}

.acc-container {
    padding: 1em 4em 0;
}

.faq-content .btn-center-block {
    margin-top: 20px;
}
/* /FAQS */


/* EXPLORE SECTION */
.explore-section .section-content {
    padding-top: 2em;
    padding-bottom: 3em;
	background-color: var(--bold-blue);
    border-radius: 40px;
}

.explore-section h3.section-heading {
    text-align: left;
    margin-top: 0;
}

.explore-section .section-content p.section-subtitle {
    margin-top: 40px;
    margin-bottom: 12px;
}

.explore-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding-left: 4em;
    padding-right: 4em;
    margin-top: 40px;
    margin-bottom: 60px;
}

.explore-row .explore-col {
    width: calc(50% - 40px);
    background-color: var(--color-theme-white);
    padding: 10px;
    border-radius: 22px;
}

.explore-row .explore-col .explore-content {
    background-color: var(--bg-light-gray);
    padding: 10px;
}

.explore-row .explore-col h3 {
    color: var(--dark-blue);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 8px 0 0;
    line-height: 1.3em;
}

.explore-row .explore-col p {
    margin: 10px 0;
}

.explore-row .explore-col .explore-image {
    height: 300px;
    background: #ECF0F1;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.explore-row .explore-col .explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}
/* /EXPLORE SECTION */


/* CTA */
section.cta {
    padding-top: 1em;
    padding-bottom: 2em;
}

.cta-block {
    background-position: center !important;
    background-size: cover !important;
    margin-top: 35px;
    padding: 3em 4em;
    border-radius: 22px;
}

.cta-block-content {
    max-width: 60%;
}

.cta-block-content p.section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

.cta-block-content h3 {
    margin: 5px 0 30px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.75rem;
}

.cta-block-content a.btn-theme {
    margin-top: 2.5em;
    margin-bottom: 10px;
}
/* /CTA */

.call-review {
    margin-top: 70px;
    margin-bottom: 40px;
}


@media (max-width: 1250px) {
    .quick-links,
    .points,
    .content-wrapper {
        max-width: 80%;
    }

    .multi-columns-section .section-heading-block,
    .content-section .section-heading-block {
        max-width: 980px;
    }

    .multi-columns,
    .icons {
        max-width: 90%;
    }

    .content-bg-block {
        padding-left: 5em;
    }
}

@media (max-width: 767px) {
    .container.full-width {
        padding-left: 30px;
        padding-right: 30px;
    }

    .banner-content-block {
        flex-direction: column;
    }

    .banner-content {
        border-radius: 0;
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }

    .main-banner>.container.full-width {
        padding-left: 0;
        padding-right: 0;
    }

    .banner-content h4 {
        font-size: 0.875rem;
        justify-content: center;
    }

    .banner-content h1 {
        font-size: 3rem;
    }

    .banner-content img.review-rating {
        margin: 0 auto 45px;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-image img {
        border-radius: 0;
    }

    .main-banner .down-arrow {
        bottom: -24px;
    }

    .quick-links {
        max-width: 100%;
        gap: 20px;
    }

    .quick-link {
        width: 100%;
    }

    .quick-link .index {
        width: 50px;
        height: 50px;
        padding: 10px;
        box-shadow: -10px 10px var(--dark-blue);
    }

    .multi-columns {
        max-width: 100%;
        gap: 30px;
        padding: 30px 20px;
    }

    .multi-column {
        width: 100%;
    }

    .multi-column .title {
        font-size: 1.25rem;
        padding: 12.5px;
    }

    .points,
    .icons {
        max-width: 100%;
        justify-content: space-between;
        gap: 20px;
    }

    .point,
    .icon {
        width: calc(50% - 20px);
    }

    .icons-section {
        padding-top: 1em;
    }

    .content-wrapper {
        max-width: 100%;
        margin-top: 30px;
    }

    .content-data {
        background-color: var(--bg-light-gray);
        flex-wrap: wrap;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-bottom: 30px;
    }

    .content-data img {
        width: 100%;
        height: auto;
        max-height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .content-data .content {
        padding: 0 20px 5px;
    }

    .content-bg-section {
        padding-bottom: 300px;
    }

    .content-bg-section::after {
        width: 100%;
        height: 300px;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 25%, 100% 0%, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(0 25%, 100% 0%, 100% 100%, 0% 100%);
    }

    .content-bg-block {
        max-width: 100%;
        padding-top: 2.5em;
        padding-left: calc(2em + 30px);
        padding-right: 30px;
        padding-bottom: 1em;
    }

    .content-bg-block::before {
        left: 30px;
        top: 2em;
        height: calc(100% - 2em);
    }

    section.faqs .section-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .acc-container {
        padding: 10px 0;
    }

    .acc-content {
        padding: 35px 30px 20px;
    }

    .faq-content .btn-center-block {
        margin-bottom: 0;
    }

    .explore-section>.container.full-width {
        padding-left: 0;
        padding-right: 0;
    }

    .explore-section .section-content {
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 0;
    }

    .explore-row {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        margin-bottom: 40px;
    }

    .explore-row .explore-col {
        width: 100%;
    }

    .cta-block {
        padding: 45px 15px;
        text-align: center;
        min-height: 785px;
        background-image: var(--background-mb) !important;
        background-position: bottom !important;
        background-size: cover !important;
    }

    .cta-block-content {
        max-width: 100%;
    }

    .cta-block-content p.section-subtitle {
        text-align: center;
        margin-bottom: 15px;
    }

    .cta-block-content h3 {
        font-size: 1.5rem;
        line-height: 1.3em;
    }

    .cta-block-content a.btn-theme {
        margin-top: 20px;
    }

    section.cta {
        padding-left: 30px;
        padding-right: 30px;
    }

    .call-review {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}