/* refund_banner_section */
.refund_banner_section {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}

.refund_banner_section::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.refund_banner_section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refund_banner_section h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    text-align: center;
}

/* refund_banner_section */

/* refund_content_section */
#refund_content_section {
    padding: 3rem 0;
    margin: 1rem 0;
}

#refund_content_section p {
    font-size: 19px;
    font-family: system-ui !important;
    margin-bottom: 1px;
    color: var(--grey_color2);
}

#refund_content_section p span {
    font-size: 19px;
    font-weight: 600;
    font-family: system-ui !important;
}

#refund_content_section h2 {
    font-family: system-ui !important;
}

#refund_content_section h3 {
    font-weight: 700;
    font-size: 34px;
    margin-top: 1.8rem;
    font-family: system-ui !important;
}

/* refund_content_section */