#quotes-page {
    margin-top: 25px;
    position: relative;
}

#quotes-page .sticky-sidebar {
    padding-top: 50px;
    top: 0;
}

#quotes-page .sticky-sidebar .content_auto_sidebar_wrapper {
    border-radius: 30px;
}

#quotes-page .sticky-sidebar .content_auto_sidebar_wrapper .content_auto_sidebar_title {
    padding-left: 15px;
}

#quotes-page .sticky-sidebar .content_auto_sidebar_links {
    max-height: 15vh;
}

#quotes-page section {
    padding: 50px 0;
    position: relative;
}

#quotes-page .quotes-wave {
    width: 100vw;
    position: relative;
}

#quotes-page .quotes-wave.top {
    top: 5px;
}

#quotes-page .quotes-wave.bottom {
    bottom: 5px;
}

#quotes-page .quotes-wave.bottom.last {
    bottom: -1px;
    background-color: var(--bobex-blue);
}

#quotes-page .quotes-wave img {
    width: 100vw;
}

#quotes-page h2 {
    margin-bottom: 25px;
    margin-top: 0;
}

#quotes-page .quotes-container {
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

#quotes-page .hiw-wrapper {
    background-color: var(--bobex-local-bg-color);
}

#quotes-page .hiw-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 25px;
}

#quotes-page .hiw-cards-wrapper .hiw-card {
    border-radius: 8px;
    background: white;
    box-shadow: 2px 2px 2px 0 rgba(23, 93, 166, 0.25);
    padding: 25px;
    flex: 1;
    min-width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

#quotes-page .hiw-cards-wrapper .hiw-card .hiw-card-title {
    color: var(--bobex-orange-logo);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

#quotes-page .hiw-cards-wrapper .hiw-card .hiw-card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#quotes-page .hiw-wrapper .quotes-cta {
    display: flex;
    justify-content: center;
}

#quotes-page .quotes-btn {
    position: absolute;
    bottom: -50px;
    border-radius: 50px;
    background-color: var(--bobex-orange-logo);
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    cursor: pointer;
    transition: .3s all ease;
    border: 2px solid var(--bobex-orange-logo);
    z-index: 1;
}

#quotes-page .quotes-btn:hover {
    background-color: white;
    color: var(--bobex-orange-logo);
}

#quotes-page .compare-and-save-wrapper {
    padding-top: 65px;
}

#quotes-page .compare-and-save-wrapper .text {
    display: block;
}

#quotes-page .compare-and-save-wrapper .text .bold {
    font-weight: bold;
}

#quotes-page .compare-and-save-wrapper .trustpilot-widget {
    margin-top: 25px;
}

#quotes-page .content-wrapper {
    background-color: var(--bobex-local-bg-color);
}

#quotes-page .content-wrapper .quotes-content {
    background-color: var(--bobex-local-bg-color);
}

#quotes-page .content-wrapper .quotes-content > p:last-child {
    margin-bottom: 0;
}

#quotes-page .faq-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

#quotes-page .faq-wrapper .faq-content > div:not(.bobex-faq-main-wrapper) {
    display: none;
}

#quotes-page #need_to_know {
    background-color: var(--bobex-blue);
    padding: 50px;
    padding-bottom: 75px;
    top: 2px;
}

#quotes-page #need_to_know .btn,
#quotes-page #need_to_know .btn i {
    transition: .3s all ease;
}

#quotes-page #need_to_know .btn:hover,
#quotes-page #need_to_know .btn:focus {
    box-shadow: none;
}

/* Media queries */
@media screen and (min-width: 800px) {
    #quotes-page .hiw-cards-wrapper {
        flex-direction: row;
    }
}

@media screen and (min-width: 992px) {
    #quotes-page .quotes-wrapper {
        padding-top: 15px;
    }

    #quotes-page .quotes-btn {
        bottom: -130px;
    }
}

@media screen and (min-width: 1960px) {
    #quotes-page section {
        padding: 100px 0;
    }

    #quotes-page .quotes-btn {
        bottom: -180px;
    }

    #quotes-page .faq-wrapper {
        margin-top: 180px;
        margin-bottom: 86px;
    }
}

@media screen and (min-width: 2800px) {
    #quotes-page section {
        padding: 125px 0;
    }

    #quotes-page .quotes-btn {
        bottom: -230px;
    }

    #quotes-page .faq-wrapper {
        margin-top: 230px;
        margin-bottom: 136px;
    }
}
/* End media queries */