:root{
    --black: #000000;
    --dark-yellow: #8a7333;
    --yellow: #e0c25f;
    --dark-gray: #545454;
    --gray: #e7e7e7;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --error: #c0392b;

    --radius: 6px;
    --fs-p: 1.2vw;
    --fs-h2: 2.7vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    :root{
        --fs-p: 1.5vw;
        --fs-h2: 3.4vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    :root{
        --fs-p: 1.9vw;
        --fs-h2: 4.5vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    :root{
        --fs-p: 2.4vw;
        --fs-h2: 5.6vw;
    }
}

@media (max-width: 480px){
    :root{
        --fs-p: 3vw;
        --fs-h2: 7vw;
    }
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.col-y{
    color: var(--yellow);
}

.col-dy{
    color: var(--dark-yellow);
}

.col-w{
    color: var(--white);
}

.col-dg{
    color: var(--dark-gray);
}

.col-lg{
    color: var(--light-gray);
}

.col-b{
    color: var(--black);
}

.fs-p{
    font-size: var(--fs-p);
}

.fs-h2{
    font-size: var(--fs-h2);
}

.fld-rr{
    flex-direction: row-reverse;
}

.mr-b{
    margin-bottom: 4rem;
}

.mr-b5{
    margin-bottom: .5rem;
}

.mr-b3{
    margin-bottom: .3rem;
}

.mr-l{
    margin-left: .7rem;
}

.nav-panel{
    background: var(--dark-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4%;
}

.nav-panel-con1{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.nav-panel-con1 i{
    color: var(--white);
    font-size: 1.5rem;
}

.nav-panel-con1 h4{
    color: var(--white);
    font-size: 1rem;
}

.nav-panel-con2{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.nav-panel-link{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .8rem;
}

.nav-panel-link i{
    color: var(--yellow);
    font-size: 1.1rem;
}

.nav-panel-link p a{
    text-decoration: none;
    color: var(--light-gray);
    font-size: .9rem;
    transition: .3s ease;
}

.nav-panel-link p:hover a{
    color: var(--white);
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2.5rem;
    background: var(--white); 
}

.logo img{
    display: block;
    height: auto;
    width: 6rem;
}

.nav__list{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1.7rem;
}

.nav__link{
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: .95rem;
    transition: 0.3s ease;
}

.nav__link:hover{
    color: var(--dark-yellow);
}

.nav__toggle,
.nav__close{
    display: none;
}

.navbar-btn button{
    background: var(--dark-yellow);
    border: none;
    padding: 1rem 1.6rem;
    border-radius: 2rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    cursor: pointer;
    font-weight: 600;
    transition: .3s ease;
}

.navbar-btn button:hover{
    background: var(--yellow);
}

@media (max-width: 1024px){
    .nav__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding-block: 4.5rem 3.5rem;
        z-index: 100;
        transition: top 1s;
    }
    .nav__list{
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }
    .nav__close{
        position: absolute;
        top: 1.15rem;
        right: 1.5rem;
    }
    .show-menu{
        top: 0;
    }
    .nav__toggle,
    .nav__close{
        font-size: 1.25rem;
        color: var(--dark-black);
        cursor: pointer;
        display: block;
    }
    .nav__link i{
        display: none;
    }
    ul li:hover .dropdown{
        display: none;
    }
    .navbar-btn{
        display: none;
    }
    .nav__list li.dropdown .dropdown-menu{
        display: none;
    }
}

@media (max-width: 800px){
    .nav-panel{
        justify-content: center;
    }
    .nav-panel-con2{
        display: none;
    }
    header{
        padding: .5rem 1.5rem;
    }
}

.hero-sec img{
    display: block;
    height: auto;
    width: 100%;
}

.donation-card{    
    max-width: 70%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 36px 40px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
}

.donation-heading{
    text-align: center;
    font-size: 1rem;
    margin-bottom: 28px;
}

.steps{
    display: flex;
    max-width: 560px;
    margin: 0 auto 32px;
    border: 1px solid var(--dark-yellow);
    border-radius: 4px;
    overflow: hidden;
}

.step{
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 14px;
    color: var(--dark-yellow);
    background: var(--white);
    position: relative;
}

.step.active{
    background: var(--dark-yellow);
    color: var(--white);
}

.step.completed{
    background: var(--yellow);
    color: var(--white);
}

.form-alert{
    background: #fdecea;
    color: var(--error);
    border: 1px solid #f5c6cb;
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-step{ 
    display: none; 
}

.form-step.active{ 
    display: block; 
}

label{
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.required{ 
    color: var(--error); 
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"]{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 15px;
    margin-bottom: 4px;
}

input:focus{
    outline: none;
    border-color: var(--dark-yellow);
    box-shadow: 0 0 0 3px rgba(58,42,125,0.15);
}

.field-error{
    display: block;
    color: var(--error);
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 8px;
}

.donations-for-label{
    text-align: center;
    font-weight: 600;
    margin: 24px 0 14px;
}

.cause-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.cause-btn{
    padding: 16px 8px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cause-btn:hover{ 
    background: #dcdce2; 
}

.cause-btn.selected{
    background: var(--dark-yellow);
    color: var(--white);
    border-color: #7c662a;
}

.details-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 12px;
}

.btn-row{
    display: flex;
    margin-top: 24px;
}

.btn-row-end{ 
    justify-content: flex-end; 
}

.btn-row-between{ 
    justify-content: space-between; 
}

.btn{
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary{
    background: var(--dark-yellow);
    color: var(--white);
}

.btn-primary:hover{ 
    background: #7c662a; 
}

.btn-secondary{
    background: #7c662a;
    color: var(--white);
}

.btn-secondary:hover{ 
    background: #7c662a; 
}

.btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.donation-subheading{
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.donation-summary{
    display: flex;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.donation-summary span{
    flex: 1;
    padding: 16px;
    font-weight: 600;
    border-right: 1px solid #ccc;
}

.donation-summary strong{
    flex: 1;
    padding: 16px;
    text-align: right;
    font-size: 18px;
}

.payment-box{
    border: 1px solid var(--dark-yellow);
    border-radius: var(--radius);
    padding: 24px;
}

.payment-box-label{
    font-weight: 700;
    margin-bottom: 16px;
}

.payment-methods{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.payment-method{
    display: grid;
    grid-template-columns: auto 140px 1fr;
    align-items: center;
    gap: 6px 14px;
    background: var(--light-gray);
    padding: 14px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
}

.payment-method:has(input:checked){
    border-color: var(--dark-yellow);
    background: #ece9f7;
}

.pm-name{ 
    font-weight: 700; 
    color: #1e7a4a; 
}

.pm-desc{ 
    font-size: 13px; 
    color: #555; 
    grid-column: 2 / 4; 
}

.payment-method input[type="radio"]{ 
    grid-row: 1 / 3; 
}

.terms-check{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
}

.terms-check input{ 
    width: auto; 
    margin: 0; 
}

.terms-check a{ 
    color: #c0392b; 
}

@media (max-width: 700px){
    .donation-card{ 
        padding: 24px 18px; 
        max-width: 85%;
    }
    .cause-grid{ 
        grid-template-columns: repeat(2, 1fr); 
    }
    .details-grid{ 
        grid-template-columns: 1fr; 
    }
    .payment-method{ 
        grid-template-columns: auto 1fr; 
    }
    .pm-desc{ 
        grid-column: 2 / 3; 
    }
    .steps span{ 
        font-size: 12px; 
    }
}

.sec-3{
    margin: 5rem 5%;
}

.icons-panel{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2%;
}

.icon-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    text-align: center;
    flex-basis: 7%;
}

.icon-el-img{
    background: var(--dark-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 4.5rem;
    width: 4.5rem;
}

.icon-el img{
    display: block;
    height: auto;
    width: 60%;
}

.icon-el h3{
    color: var(--dark-yellow);
    font-size: .85rem;
}

@media (min-width: 600px) and (max-width: 800px){
    .icon-el-img{
        height: 3.5rem;
        width: 3.5rem;
    }
    .icon-el h3{
        font-size: .65rem;
    }
}

@media (min-width: 400px) and (max-width: 600px){
    .icons-panel{
        flex-wrap: wrap;
        gap: 1rem;
    }
    .icon-el{
        flex-basis: 19%;
    }
    .icon-el-img{
        height: 4rem;
        width: 4rem;
    }
    .icon-el h3{
        font-size: .65rem;
    }
}

@media (max-width: 400px){
    .sec-3{
        margin: 5rem 2%;
    }
    .icons-panel{
        flex-wrap: wrap;
        gap: 1rem;
    }
    .icon-el{
        flex-basis: 19%;
    }
    .icon-el-img{
        height: 3.4rem;
        width: 3.4rem;
    }
    .icon-el h3{
        font-size: .65rem;
    }
}

.about-sec{
    background-image: url("../images/about-picbg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-main-con{
    padding: 5rem 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.chairman-pic{
    display: flex;
    margin-bottom: 1rem;
}

.fl-end{
    justify-content: flex-end;
}

.fl-start{
    justify-content: flex-start;
}

.chairman-pic img{
    display: block;
    height: 20vw;
    width: 20vw;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.about-content h2{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.2vw;
}

.about-p{
    text-align: justify;
    margin-top: .5rem;
}

.about-line{
    background: var(--white);
    height: 49vh;
    width: 9px;
    border-radius: 1rem;
}

.small-h p{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3vw;
    font-weight: 500;
    margin-bottom: .4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 800px) and (max-width: 1024px){
    .about-main-con{
        padding: 5rem 9%;
    }
    .about-content h2{
        font-size: 2.7vw;
    }
    .small-h p{
        font-size: 1.7vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .about-main-con{
        padding: 5rem 5%;
    }
    .chairman-pic img{
        width: 19vw;
    }
    .about-content h2{
        font-size: 3.3vw;
    }
    .small-h p{
        font-size: 2.2vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .about-main-con{
        padding: 5rem 7%;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .chairman-pic{
        justify-content: center;
    }
    .chairman-pic img{
        width: 30vw;
        height: 30vw;
    }
    .about-content h2{
        font-size: 4.3vw;
    }
    .about-p{
        text-align: center;
    }
    .small-h p{
        font-size: 2.7vw;
    }
    .about-line{
        height: 2px;
        width: 90%;
    }
}

@media (max-width: 480px){
    .about-main-con{
        padding: 5rem 7%;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .chairman-pic{
        justify-content: center;
    }
    .chairman-pic img{
        width: 37vw;
        height: 37vw;
    }
    .about-content h2{
        font-size: 5.6vw;
    }
    .about-p{
        text-align: center;
    }
    .small-h p{
        font-size: 3.3vw;
    }
    .about-line{
        height: 2px;
        width: 90%;
    }
}

.projects-head{
    padding: 4rem 10%;
    text-align: center;
}

.projects-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 4% 4rem;
    gap: .8rem;
}

.project-el{
    position: relative;
    cursor: pointer;
}

.project-el img{
    display: block;
    height: auto;
    width: 21vw;
    border-radius: .7rem;
}

.project-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
}

.project-content h2{
    font-size: 2.5vw;
}

.project-content h3{
    font-size: 1.5vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .project-el img{
        width: 27vw;
    }
    .project-content h2{
        font-size: 3.5vw;
    }
    .project-content h3{
        font-size: 2vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .project-el img{
        width: 35vw;
    }
    .project-content h2{
        font-size: 5vw;
    }
    .project-content h3{
        font-size: 2.5vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .projects-con{
        flex-direction: column;
        padding: 0 12% 4rem;
    }
    .project-el img{
        width: 70vw;
        height: 29vh;
        object-fit: cover;
    }
    .project-content h2{
        font-size: 7vw;
    }
    .project-content h3{
        font-size: 3.2vw;
    }
}

@media (max-width: 480px){
    .projects-con{
        flex-direction: column;
        padding: 0 9% 4rem;
    }
    .project-el img{
        width: 76vw;
        height: 33vh;
        object-fit: cover;
    }
    .project-content h2{
        font-size: 7vw;
    }
    .project-content h3{
        font-size: 4.8vw;
    }
}

.chairman-profile-sec{
    background: var(--yellow);
    padding: 3rem 10%;
}

.chairman-profile-con{
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--black);
}

.chairman-prof-pic img{
    display: block;
    width: 45vw;
    height: 49vh;
    object-fit: cover;
}

.chairman-profile-content{
    padding: 1rem 3%;
}

.chairman-profile-content h2{
    color: var(--dark-gray);
    font-size: 1.8vw;
}

.chairman-profile-content p{
    margin-top: .5rem;
}

.chairman-socials{
    display: flex;
    justify-content: start;
    align-items: stretch;
    margin: 1.1rem 0;
    gap: .7rem;
}

.chairman-social{
    height: 2rem;
    width: 2rem;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.chairman-social a{
    text-decoration: none;
    color: var(--white);
}

.fb-bg{
    background: #3b5998;
}

.x-bg{
    background: #14171A;
}

.yt-bg{
    background: #cd201f;
}

.tt-bg{
    background: #69727d;
}

.insta-bg{
    background: #262626;
}

.chairman-profile-content h3{
    text-transform: uppercase;
    font-size: 1.1vw;
    transition: .3s ease-in-out;
}

.chairman-profile-content h3:hover{
    font-size: 1.2vw;
}

.chairman-profile-content h3 a{
    color: var(--black);
}

@media (min-width: 800px) and (max-width: 1024px){
    .chairman-profile-sec{
        padding: 3rem 7%;
    }
    .chairman-prof-pic img{
        height: 42vh;
    }
    .chairman-profile-content h2{
        font-size: 2.3vw;
    }
    .chairman-profile-content h3{
        font-size: 1.4vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .chairman-profile-sec{
        padding: 3rem 5%;
    }
    .chairman-prof-pic img{
        height: 48vh;
    }
    .chairman-profile-content h2{
        font-size: 3vw;
    }
    .chairman-profile-content h3{
        font-size: 1.9vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .chairman-profile-sec{
        padding: 3rem 8%;
    }
    .chairman-profile-con{
        flex-direction: column-reverse;
    }
    .chairman-prof-pic img{
        height: auto;
        width: 100%;
    }
    .chairman-profile-content{
        padding: 2rem 7%;
    }
    .chairman-profile-content h2{
        font-size: 4vw;
    }
    .chairman-profile-content h3{
        font-size: 2.4vw;
    }
}

@media (max-width: 480px){
    .chairman-profile-sec{
        padding: 3rem 10%;
    }
    .chairman-profile-con{
        flex-direction: column-reverse;
    }
    .chairman-prof-pic img{
        height: auto;
        width: 100%;
    }
    .chairman-profile-content{
        padding: 2rem 7%;
    }
    .chairman-profile-content h2{
        font-size: 5.2vw;
    }
    .chairman-profile-content h3{
        font-size: 3vw;
    }
    .chairman-socials{
        gap: .4rem;
    }
    .chairman-social{
        height: 1.5rem;
        width: 1.5rem;
    }
    .chairman-social a{
        font-size: 87%;
    }
}

footer{
    background: var(--dark-yellow);
}

.footerlinks-con{
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 4%;
    padding: 5rem 10%;
}

.footerlink-el{
    flex-basis: 22%;
}

.footerlink-el .logo{
    margin-bottom: 1.5rem;
}

.footerlink-el h2{
    color: var(--white);
    font-size: 1.7vw;
    margin-bottom: .9rem;
}

.footer-l{
    background: var(--yellow);
    height: 3px;
    width: 5vw;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.footerlink-el p{
    color: var(--light-gray);
    font-size: 1.1vw;
}

.footer-ul{
    list-style: none;
}

.footer-ul li{
    margin-top: .5rem;
}

.footer-ul li a{
    text-decoration: none;
    color: var(--light-gray);
    font-size: 1.1vw;
    transition: .3s ease;
}

.footer-ul li a:hover{
    color: var(--white);
}

.socials{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.social{
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-right: .75rem; 
}

.social a{
    text-decoration: none;
    color: var(--light-gray);
    font-size: .95rem;
    transition: 0.5s;
}

.social a:hover{
    color: var(--white);
}

.social a i{
    margin-right: 0;
}

.footer-copyright{
    background: var(--black);
    padding: 1.4rem;
    text-align: center;
}

.footer-copyright p{
    color: var(--white);
    font-size: 1.1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .footerlinks-con{
        gap: 3rem;
        flex-wrap: wrap;
    }
    .footerlink-el{
        flex-basis: 43%;
    }
    .footerlink-el h2{
        font-size: 2.4vw;
    }
    .footer-l{
        width: 8vw;
    }
    .footerlink-el p{
        font-size: 1.35vw;
    }
    .footer-ul li a{
        font-size: 1.35vw;
    }
    .footer-copyright p{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .footerlinks-con{
        gap: 3rem;
        flex-wrap: wrap;
    }
    .footerlink-el{
        flex-basis: 43%;
    }
    .footerlink-el h2{
        font-size: 3vw;
    }
    .footer-l{
        width: 10vw;
    }
    .footerlink-el p{
        font-size: 1.9vw;
    }
    .footer-ul li a{
        font-size: 1.9vw;
    }
    .footer-copyright p{
        font-size: 1.9vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .footerlinks-con{
        gap: 2rem;
        flex-direction: column;
    }
    .footerlink-el h2{
        font-size: 4vw;
    }
    .footer-l{
        width: 10vw;
    }
    .footerlink-el p{
        font-size: 2.4vw;
    }
    .footer-ul li a{
        font-size: 2.4vw;
    }
    .footer-copyright p{
        font-size: 2.4vw;
    }
}

@media (max-width: 480px){
    .footerlinks-con{
        gap: 2rem;
        flex-direction: column;
    }
    .footerlink-el h2{
        font-size: 5vw;
    }
    .footer-l{
        width: 11vw;
    }
    .footerlink-el p{
        font-size: 3.055vw;
    }
    .footer-ul li a{
        font-size: 3.055vw;
    }
    .footer-copyright p{
        font-size: 3.05vw;
    }
}

.sp-hero-sec{
    background: linear-gradient(90deg, #7c662a 0%, #e0c25f 100%);
}

.sp-hero-textbox{
    padding: 5rem 25% 5rem 11%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.sp-hero-heading{
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    font-size: 3.3vw;
    color: var(--white);
}

.sp-hero-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    font-size: 1.3vw;
    color: var(--light-gray);
}

.sp-hero-link a{
    text-decoration: none;
    color: var(--light-gray);
}

@media (min-width: 800px) and (max-width: 1024px){
    .sp-hero-textbox{
        padding: 6rem 21% 6rem 11%;
    }
    .sp-hero-heading{
        font-size: 4.2vw;
    }
    .sp-hero-link{
        font-size: 1.5vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .sp-hero-textbox{
        padding: 5rem 20% 5rem 11%;
    }
    .sp-hero-heading{
        font-size: 5.5vw;
    }
    .sp-hero-link{
        font-size: 2vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .sp-hero-textbox{
        padding: 5rem 17% 5rem 11%;
    }
    .sp-hero-heading{
        font-size: 6.6vw;
    }
    .sp-hero-link{
        font-size: 2.55vw;
    }
}

@media (max-width: 480px){
    .sp-hero-textbox{
        padding: 5rem 15% 5rem 11%;
    }
    .sp-hero-heading{
        font-size: 8.1vw;
    }
    .sp-hero-link{
        font-size: 3.25vw;
    }
}

.about-sep-con{
    padding: 5rem 10% 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}

.about-pic img{
    display: block;
    height: 62vh;
    width: 32vw;
    border-radius: .8rem;
    object-fit: cover;
}

.about-sep-content{
    flex-basis: 43%;
}

.about-sep-content h2{
    margin-bottom: .5rem;
}

.about-sep-sec p{
    text-align: justify;
}

.about-last-con{
    padding: 0 13%;
}

@media (min-width: 800px) and (max-width: 1024px){
    .about-sep-con{
        padding: 5rem 8% 2rem;
        gap: 1.4rem;
    }
    .about-pic img{
        width: 36vw;
        height: 53vh;
    }
    .about-sep-content{
        flex-basis: 52%;
    }
    .about-last-con{
        padding: 0 8%;
    }
}

@media (max-width: 800px){
    .about-sep-con{
        gap: 2rem;
        flex-direction: column;
        text-align: center;
    }
    .about-sep-sec p{
        text-align: center;
    }
    .about-last-con{
        text-align: center;
    }
    .about-sep-sec ul{
        list-style: none;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .about-sep-con{
        padding: 5rem 13% 2rem;
    }
    .about-pic img{
        width: 50vw;
        height: 50vh;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .about-sep-con{
        padding: 5rem 13% 2rem;
    }
    .about-pic img{
        width: 59vw;
        height: 47vh;
    }
}

@media (max-width: 480px){
    .about-sep-con{
        padding: 5rem 10% 2rem;
    }
    .about-pic img{
        width: 66vw;
        height: 43vh;
    }
    .about-last-con{
        padding: 0 10%;
    }
}

.gen-btn button{
    background: var(--dark-yellow);
    border: none;
    padding: 1rem 1.6rem;
    border-radius: 2rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-weight: 600;
    transition: .3s ease;
}

.gen-btn button:hover{
    background: var(--yellow);
}

.contact-sep-sec-second-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 3rem 6%;
}

.contact-second-con-el{
    flex-basis: 26%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.contact-second-con-el a{
    text-decoration: none;
}

.contact-icon{
    font-size: 4vw;
}

.contact-second-con-el h2{
    font-size: 1.6vw;
    margin-top: 1rem;
}

.contact-second-con-el p{
    margin-top: .40rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .contact-sep-sec-second-con{
        gap: .4rem;
    }
    .contact-second-con-el{
        padding: 1.6rem 1rem;
        flex-basis: 29%;
    }
    .contact-second-con-el h2{
        font-size: 2vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .contact-sep-sec-second-con{
        padding: 4rem 16%;
        flex-direction: column;
        gap: 4rem;
    }
    .contact-second-con-el{
        padding: 0;
    }
    .contact-icon{
        font-size: 6vw;
    }
    .contact-second-con-el h2{
        font-size: 2.6vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .contact-sep-sec-second-con{
        padding: 4rem 16%;
        flex-direction: column;
        gap: 4rem;
    }
    .contact-second-con-el{
        padding: 0;
    }
    .contact-icon{
        font-size: 7.2vw;
    }
    .contact-second-con-el h2{
        font-size: 3.3vw;
    }
}

@media (max-width: 480px){
    .contact-sep-sec-second-con{
        padding: 4rem 10%;
        flex-direction: column;
        gap: 4rem;
    }
    .contact-second-con-el{
        padding: 0;
    }
    .contact-icon{
        font-size: 8.4vw;
    }
    .contact-second-con-el h2{
        font-size: 4.5vw;
    }
}

.contact-form-con{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10% 5rem 10%;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70vw;
}

.one-s-con{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-form .form-input input,
.contact-form .form-input textarea, 
.form-input select{
    border: 3px solid var(--dark-gray);
    color: var(--dark-gray);
    padding: .7rem 1rem;
    border-radius: .7rem;
    display: block;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin-top: .5rem;
    background: transparent;
}

.contact-form .form-input textarea{
    height: 8rem;
}

.contact-form .form-input{
    position: relative;
    width: 100%;
}

.contact-form .form-input input:focus {
    outline: 0;
    border-color: #777;
}

.contact-form-btn{
    margin-top: 1rem;
}

.contact-form-btn button{
    background: var(--dark-blue);
    border: none;
    padding: 1rem 4rem;
    border-radius: 1rem;
    width: 100%;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1vw;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
 
.contact-form-btn button:hover {
    background-color: #2456a9;
}

@media (min-width: 750px) and (max-width: 1024px){
    .contact-form{
        width: 73vw;
    }
}

@media (min-width: 600px) and (max-width: 750px){
    .contact-form{
        width: 81vw;
    }
}

@media (min-width: 450px) and (max-width: 600px){
    .contact-form{
        width: 78vw;
    }
    .one-s-con{
        flex-direction: column;
    }
}

@media (max-width: 450px){
    .contact-form{
        width: 78vw;
        gap: .7rem;
    }
    .one-s-con{
        flex-direction: column;
        gap: .7rem;
    }
}

.contact-form-sec{
    background: var(--light-gray);
}

.project-sep-media{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .7rem;
    padding: 0 6% 5rem;
}

.project-sep-med{
    height: 36vh;
    width: 18vw;
}

.project-sep-med img,
.project-sep-med video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: .8rem;
    cursor: pointer;
}

.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.lightbox.active{
    opacity: 1;
    visibility: visible;
}

.lightbox img,
.lightbox video{
    max-width: 90%;
    max-height: 90%;
    border-radius: .8rem;
    display: none;
}

.lightbox img.active,
.lightbox video.active{
    display: block;
}

.close-lightbox{
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    user-select: none;
}

@media (min-width: 800px) and (max-width: 1024px){
    .project-sep-med{
        width: 25vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .project-sep-med{
        height: 40vh;
        width: 36vw;
    }
}

@media (max-width: 600px){
    .project-sep-media{
        flex-direction: column;
    }
    .project-sep-med{
        width: 100%;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .project-sep-media{
        padding: 0 19% 5rem;
    }
    .project-sep-med{
        height: 48vh;
    }
}

@media (max-width: 480px){
    .project-sep-media{
        padding: 0 14% 5rem;
    }
    .project-sep-med{
        height: 48vh;
    }
}

.blogs-sec{
    background: #f0eded;
}

.blogs-con{
    padding: 0 10% 5rem 10%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2%;
}

.blog-el{
    flex-basis: 30%;
    background: var(--white);
    border-radius: 1.5rem;
}

.blog-pic img{
    display: block;
    height: auto;
    width: 100%;
    border-top-right-radius: 1.5rem;
    border-top-left-radius: 1.5rem;
}

.blog-el-textbox{
    padding: 2rem 12%;
}

.blog-el-textbox h3{
    color: var(--dark-blue);
    font-size: 1.5vw;
    transition: .3s ease;
}

.blog-el-textbox a{
    color: var(--dark-yellow);
    font-size: 1.2vw;
    text-decoration: none;
    margin-top: 2rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.2rem;
    transition: .3s ease;
}

.blog-el-textbox a i{
    font-size: 1.6vw;
}

.blog-el:hover a{
    color: var(--yellow);
    gap: 1.6rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .blogs-con{
        padding: 0 9% 5rem 9%;
    }
    .blog-el{
        flex-basis: 31%;
    }
    .blog-el-textbox{
        padding: 2rem 8%;
    }
    .blog-el-textbox h3{
        font-size: 1.9vw;
    }
    .blog-el-textbox a{
        font-size: 1.55vw;
    }
    .blog-el-textbox a i{
        font-size: 1.9vw;
    }
}

@media (max-width: 800px){
    .blogs-con{
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .blogs-con{
        padding: 0 23% 5rem 23%;
    }
    .blog-el-textbox{
        padding: 3rem 8%;
    }
    .blog-el-textbox h3{
        font-size: 2.6vw;
    }
    .blog-el-textbox a{
        font-size: 1.95vw;
    }
    .blog-el-textbox a i{
        font-size: 2.5vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .blogs-con{
        padding: 0 20% 5rem 20%;
    }
    .blog-el-textbox{
        padding: 3rem 8%;
    }
    .blog-el-textbox h3{
        font-size: 3.2vw;
    }
    .blog-el-textbox a{
        font-size: 2.6vw;
    }
    .blog-el-textbox a i{
        font-size: 3.3vw;
    }
}

@media (max-width: 480px){
    .blogs-con{
        padding: 0 15% 5rem 15%;
    }
    .blog-el-textbox{
        padding: 2.3rem 8%;
    }
    .blog-el-textbox h3{
        font-size: 4vw;
    }
    .blog-el-textbox a{
        font-size: 3.4vw;
    }
    .blog-el-textbox a i{
        font-size: 4.3vw;
    }
}

.single-blog-con{
    padding: 5rem 11%;
}

.single-blog-pic img{
    display: block;
    height: 44vh;
    width: 82%;
    border-radius: 1rem;
    margin-bottom: 2.3rem;
    object-fit: cover;
}

.ft-w700{
    font-weight: 700;
}

.single-blog-con ul{
    margin: 1rem 0;
}

@media (max-width: 800px){
    .single-blog-con{
        padding: 5rem 10%;
    }
    .single-blog-pic img{
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px){
    .single-blog-pic img{
        height: 34vh;
        width: 92%;
    }
}