/*  Home Page  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #FFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}
ul {
    margin: 0;
    padding: 0;
}
.donation-bg {
    background-image: url(https://www.beingchildcare.com/wp-content/uploads/2024/06/Frame-163.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}
.donation-bg:before {
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    z-index: -1;
}
.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
}
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.st-hd-flex ul {
    display: flex;
    list-style: none;
    column-gap: 50px;
}
.st-hd-flex ul i {
    margin-right: 7px;
}

.st-hd-flex ul li {
    color: #EA7C26;
    
}
.st-hd-flex ul a {
    color: #000;
    text-decoration: none;
}
.st-hd-flex ul a:hover {
    color: #EA7C26;
}
.donate-form {
    max-width: 500px;
    width: 100%;
    padding: 15px 30px;
    background: #000c;
    border-radius: 12px;
}

.donate-form h2 {
    text-align: center;
    color: #FFF;
}
.form-group {
    margin-bottom: 10px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #FFF;

}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
button[type=submit] {
    cursor: pointer;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 3px;
    background: #EA7C26;
    color: white;
    font-size: 1em;
}
.form-group button:hover {
    background: #000;
}

/*  Thank-you  */
.transaction-details ul {
    list-style-position: inside;
}
.transaction-details {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    margin: 50px auto 10px;
    background: #EEE;
}

@media only screen and (max-width: 768px) {
    .d-flex {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .st-hd-flex ul {
        column-gap: 10px;
    }
    .st-hd-flex ul a {
        font-size: 14px;
    }
    
    
}


