*,
::before,
::after {
    box-sizing: border-box;
}

:root {

    --psf-color-1: #44bb77;
    --psf-color-2: #ffd739;
    --psf-color-3: #3d498d;
    --psf-color-4: #2f2f2f;
    --psf-color-5: #e1e8ed;
    --psf-color-6: #f2f5f7;
    --psf-color-7: #FAFBFC;
    --psf-color-8: #ffffff;
    --psf-color-9: #FEF5DF;
    --psf-color-10: #FBC032;
    --psf-color-11: #FFDADA;
    --psf-color-12: #C01729;
    --psf-color-13: #DAEDE1;
    --psf-color-14: #108C3E;
    --psf-color-15: #C5E8FF;
    --psf-color-16: #FBE9DD;
    --primary: var(--psf-color-3);
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", serif;
    font-weight: 500;
    background-image: linear-gradient(180deg, #C5E8FF 0%, #fff 100%);
    color: var(--psf-color-4);
}

p {
    color: var(--psf-color-4);
}

header {
    position: relative;
    z-index: 1;
}

header::before {
    content: "";
    position: absolute;
    background-image: url('https://parivartansandeshfoundation.com/donation/assets/img/bg-top-1.png');
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
}

#main-container {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: calc(100vh - var(--admin-bar, 0px) - var(--theme-frame-size, 0px)*2);
    overflow: hidden;
    overflow: clip;
}

#main {
    flex: 1;
}

.psf-logo {
    background: #fff;
    display: block;
    max-width: 135px;
    padding: 15px;
    border: 1px solid #aaa;
}

#navbarNav .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--psf-color-4);
    padding: 10px 16px;
}

#footer {
    background: var(--psf-color-16);
}

#footer .footer-brand-title {
    font-size: 50px;
    border-top: 1px solid var(--psf-color-4);
    margin-top: 30px;
    padding-top: 30px;
}


.tabs-one .nav {
    display: flex;
    gap: 20px;
    justify-content: center;
}



@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tabs-one .nav {
        display: flex;
    }
}

.tabs-one .nav .tab-nav-item a {
    font-size: 16px;
    line-height: 24px;
    color: var(--psf-color-4);
    font-weight: 600;
    padding: 10px 18px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
    background: var(--psf-color-15);
}

.tabs-one .nav .tab-nav-item a.active {
    color: var(--white);
    background: var(--psf-color-1);
}

@media (max-width: 767px) {
    .tabs-one .nav {
        gap: 6px;
    }

    .tabs-one .nav .tab-nav-item a {
        font-size: 13px;
        padding: 4px 6px;
    }
}

.tabs-one .tab-content .tab-text {
    padding: 15px;
    margin-top: 40px;
}

.tabs-one .tab-content .tab-text .text {
    color: var(--psf-color-4);
}

.form_required {
    display: inline-block;
}

.form_required:after {
    content: "*";
    color: red;
    font-size: 25px;
    line-height: 0;
    display: inline-block;
    margin-left: 2px;
}

#step2 .psf_donation_option {
    text-align: left;
}


.psf_donation_options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 2px solid var(--psf-color-3);
    padding: 30px;
    border-radius: 15px;
    background: var(--psf-color-15);
    box-shadow: 0px 10px 0px var(--primary);
}

.psf_donation_option {
    width: 100%;
    background: #ffff;
    border: 2px solid var(--psf-color-3);
    padding: 10px;
    font-weight: 500;
    border-radius: 5px;
    color: var(--psf-color-4);
}

.psf_donation_option:hover {
    background: var(--psf-color-3);
    color: var(--white);
}

.psf_donation_options .form-control {
    font-weight: 500;
    border: 1px solid var(--psf-color-3);
}

.psf_donation_options .form-label {
    font-weight: 600;
}

.psf_thankyou_container {
    text-align: center;
    max-width: 450px;
    margin: auto;
}

.psf_thankyou_container h2 {
    font-size: 50px;
    color: var(--psf-color-12);
}

.psf_thankyou_container p {
    font-size: 22px;
    font-weight: 500;
}