
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-item {
    flex: 1;
    min-width: 300px;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
}
.flex-item.with-tp{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.section-headings {
    text-align: center;
    font-weight: 900;
    font-size: 30px !important;
    color: var(--text-color);
}

img {
    /* filter: brightness(100%) contrast(80%) saturate(100%) blur(0px) hue-rotate(0deg); */
    border-radius: var(--border-radius);
}

.section-title{
        text-align: center;
}

/* ========= for modals and and other popups close buttons ======*/
.close-button {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 50px;
    right: 15px;
    top: -10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
}

/* id_preferred_contact_methods */
#id_preferred_contact_methods{
    display: flex;
    flex-wrap: wrap;
}
#id_preferred_contact_methods div{
    border: 1px solid;
    border-radius: 10px;
    margin: 2px;
}
#id_preferred_contact_methods div:hover {
    background-color: var(--primary-color);
}
#id_preferred_contact_methods div label{
    padding: 5px 30px;
}
#id_preferred_contact_methods div label input{
    margin-right: 10px;
}

/* Custom scrollbar */
.phone-dropdown-options::-webkit-scrollbar,
.faq--content::-webkit-scrollbar {
    width: 8px;
}

.phone-dropdown-options::-webkit-scrollbar-track,
.faq--content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.phone-dropdown-options::-webkit-scrollbar-thumb,
.faq--content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.phone-dropdown-options::-webkit-scrollbar-thumb:hover,
.faq--content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ============== Learn More =========== */
.learn-more {
    color: var(--primary-color);
    font-weight: bolder;
}

.learn-more:hover {
    color: var(--button-bg-hover);
}