@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Open+Sans:wght@300&family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&family=Montserrat:wght@600&display=swap');
:root {
    --green: #0d9979;
    --white: #FFFFFF;
    --red: red;
    --green2: green;
    --green3: rgb(83, 188, 83);
}

* {
    font-family: 'Open Sans', sans-serif;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(.37, 1.14, .26, 1.24);
    scroll-behavior: smooth;
}

*::selection {
    background: var(--green);
    color: #FFFFFF;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}


/*header*/

.heading {
    position: relative;
    padding-top: 400px;
    text-align: center;
    font-size: 4rem;
    color: white;
}

.heading i {
    color: var(--green2);
    font-size: 2rem;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1 rem 5rem;
    height: 80px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

header .logo {
    color: var(--green2);
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
    padding: 0 30px;
}

header .logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

header .navbar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

header .navbar ul li {
    margin: 0 1rem;
}

header .navbar ul li a {
    font-size: 1.5rem;
    color: white;
}

header .navbar ul li a:hover {
    color: var(--green);
}

header .fa-bars {
    font-size: 3rem;
    color: #666;
    cursor: pointer;
    display: none;
}

header .navbar ul li .user {
    font: var(--white);
    font-size: 1.1rem;
    font-family: 'Rubik', sans-serif;
}

header .navbar ul li .user i {
    font-size: 2rem;
}


/*Home*/

.donate-background {
    min-height: calc(120vh - 76px);
    background: linear-gradient(transparent, transparent), url("../images/donate-bg.jpg") center/cover fixed no-repeat;
    position: relative;
    padding-top: 80px;
}

.donate-content {
    color: var(--mainWhite);
    margin-top: -4rem;
}

.home h1 {
    text-align: center;
    font-size: 7rem;
    color: var(--white);
    padding: 1rem;
    padding-top: 7rem;
    font-family: 'Archivo Black', sans-serif;
}


/*form*/

.donate-class {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    min-height: 100vh;
    background: white;
}

.donate-class form {
    padding: 20px;
    width: 700px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
}

.donate-class form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.donate-class form .row .col {
    flex: 1 1 250px;
}

.donate-class form .row .col .title {
    font-size: 20px;
    color: #333;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.donate-class form .row .col .inputBox {
    margin: 15px 0;
}

.donate-class form .row .col .inputBox span {
    margin-bottom: 10px;
    display: block;
}

.donate-class form .row .col .inputBox input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 15px;
    text-transform: none;
}

.donate-class form .row .col .inputBox input:focus {
    border: 1px solid #000;
}

.donate-class form .row .col .flex {
    display: flex;
    gap: 15px;
}

.donate-class form .row .col .flex .inputBox {
    margin-top: 5px;
}

.donate-class form .row .col .inputBox img {
    height: 34px;
    margin-top: 5px;
    filter: drop-shadow(0 0 1px #000);
}

.donate-class form .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 17px;
    background: var(--green3);
    color: #fff;
    margin-top: 5px;
    cursor: pointer;
}

.donate-class form .submit-btn:hover {
    background: var(--green2);
}


/*Footer*/

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: black;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: white;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--white);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}


/*responsive*/

@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}