﻿/*Shared styles for pages not in quote journey*/

.page-top-header {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

    .page-top-header .header {
        font-size: 3.2rem;
        font-weight: bold;
        margin-bottom: 1rem
    }

    .page-top-header .sub-header {
        font-size: 1.5rem;
        font-weight: 500;
    }

.orange-divider {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 3rem;
}

    .orange-divider::before {
        content: '';
        position: absolute;
        left: -5%;
        right: -5%;
        width: 110%;
        height: 4px;
        background-color: var(--primary-color);
    }

.orange-divider-narrow {
    position: relative;
    width: 80%;
    margin-left:10%;
    margin-right:10%;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 3rem;
}

.accordion {
    width: 100%;
}

.accordion-header {
    width: 100%;
    border: none;
    text-align: left;
    padding: 15px;
    padding-bottom:0;
    cursor: pointer;
    transition: background 0.3s;
}

    .accordion-header:hover {
        background: #ebebeb;
    }

    .accordion-header div {
        display: flex;
        justify-content: space-between;
    }

    .accordion-header h3 {
        font-size: 1.75rem;
        font-weight: bold;
    }

.accordion-arrow {
    width: 50px;
    transition: transform 0.3s ease;
}

    .accordion-arrow.active {
        transform: rotate(180deg);
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    display: flex;
}

.accordion-option.active .accordion-content {
    transition: max-height 0.5s linear, padding 0.1s linear;
    max-height: fit-content;
    padding: 15px;
    padding-top: 5px;
}

.accordion-content p {
    margin-bottom: 1rem;
    margin-right: 2rem;
    font-size: 20px;
}

.accordion-content li {
    margin-bottom: .2rem;
    font-size: 20px;
}

.accordion-content img {
    width: 120px;
}

.accordion-option:not(:first-child) {
    border-top: 1px solid black;
}

.orange-text {
    color: var(--primary-color);
}

.one-rem-m-b {
    margin-bottom: 1rem;
}
.two-rem-m-b {
    margin-bottom: 2rem;
}

.background-full-width {
    /*background-color: #4eaaff0f;*/
    background-color: #f9f8f69a;
    margin-right: 0;
    margin-left: 0;
}