/* banner */

.banner {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), color-mix(in srgb, var(--primary-color) 80%, transparent));
    top: 0;
    left: 0;
}

.banner_content {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner_para {
    color: #495057;
    font-size: 16px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 48px;
    font-family: "Inter", serif;
}


@media only screen and (max-width:767px) {
    .banner {
        height: auto;
        margin-top: 50px;
        padding: 15px 0px 0px 0px;
    }

    .banner_heading {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .banner {
        height: auto;
    }
}


/* banner */

.payment_process {
    padding: 40px 0;
}

.payment_process .row {
    align-items: center;
}

.payment .steps .step {
    background: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    margin-bottom: 35px;
    position: relative;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 220px;
    transition: all 0.3s ease;
}

.payment .steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.payment .steps .step::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    background: rgba(255, 255, 255, 0.3);
    height: 200px;
    width: 200px;
    border-radius: 50%;
    z-index: 0;
}

.payment .steps .step .step_no {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(-35%, 30%);
    color: var(--primary-color);
    font-family: 'kanit';
    font-size: 91px;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.2;
}

.payment .steps .step_info {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    position: relative;
    z-index: 2;
}

.payment .steps .step_info b {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Gabriela', serif;
}

.payment_gateways .gateway {
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    margin-bottom: 30px;
    padding: 40px;
    background: var(--text-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    overflow: hidden;
    position: relative;
}

.payment_gateways .gateway .bg-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'kanit';
    font-size: 200px;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.payment_gateways .gateway .heading {
    font-size: 30px;
    font-family: 'kanit';
    font-weight: 400;
    color: #493812;
    text-transform: capitalize;
    text-align: center;
}

.payment_gateways .gateway .info {
    font-size: 16px;
    color: #000;
    text-align: justify;
}

.payment_gateways .gateway .info-2 {
    font-size: 20px;
    color: #D4B773;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    position: relative;
}

.payment_gateways .gateway form {
    padding: 10px;
    border: 2px solid #493812;
    background: #493812;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.payment_gateways .gateway .paypal-btn {
    padding: 10px;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 4px;
}

.payment_gateways .gateway .paypal-box {
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 40px;
    background: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    overflow: hidden;
    position: relative;
}

.payment_gateways .gateway .payment_btn a img {
    max-width: 130px;
}