@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&amp;display=swap");

:root {
    --white: #fff;
    --black: #000;
    --tinted-black: rgba(45, 45, 45, 0.7);
    --dark-main: #6A0406;
    --main: #b4070a;
    --variant-main: #F9DEC9;
    --light-variant-main: #FFF5ED;
    --complementary-main: #56E39F;
    --light-complementary-main: #F9FFFC;
    --light-main: #ddf2ff;
    --logo-grey: #969593;
    --main-opacity: rgba(31, 142, 17, 0.8);
    --mid-opacity: rgba(31, 142, 17, 0.5);
    --light-opacity: rgba(31, 142, 17, 0.2);
    --grey: #b2b2b2;
    --light-grey: #CDCDCD;
    --lighter-grey: #f0f0f0;
    --dark-grey: #242F40;
    --blue: #C7DDFF;
    --card-width: 200px;
    --card-height: 300px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
    --style-font: "Great Vibes", cursive;
}

*::before,
*::after,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

html {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

body {
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 2px var(--dark-main); */
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--dark-main);
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main);
}

/* Main */
a {
    text-decoration: none;
    color: var(--complementary-main);
    transition: all 0.5s ease;
}

a:hover {
    color: var(--main);
}

/* Global Button Styles */
a.animated-button:link,
a.animated-button:visited {
    position: relative;
    display: block;
    margin: 30px auto 0;
    padding: 14px 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: .1em;
    border-radius: 0;
    /* text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2); */
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

a.animated-button:link:after,
a.animated-button:visited:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

a.animated-button:link:hover,
a.animated-button:visited:hover {
    color: #FFF;
    text-shadow: none;
}

a.animated-button:link:hover:after,
a.animated-button:visited:hover:after {
    height: 450%;
}

a.animated-button.thar-three {
    color: var(--white);
    cursor: pointer;
    display: block;
    position: relative;
    border: 2px solid var(--variant-main);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-three:hover {
    color: var(--dark-main) !important;
    background-color: transparent;
    text-shadow: nthree;
}

a.animated-button.thar-three:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

a.animated-button.thar-three:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--complementary-main) !important;
    background: var(--variant-main);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.card {
    border-radius: 0 !important;
}

.btn {
    border-radius: 25px;
    padding: 10px 40px;
    font-size: 15px;
    cursor: pointer;
    background: var(--dark-main);
    color: var(--white);
    border: 1px solid var(--dark-main);
}

.btn:hover {
    background: white;
    border: 1px solid var(--dark-main);
}

.btn-light {
    border-radius: 25px;
    padding: 10px 40px;
    font-size: 15px;
    cursor: pointer;
    color: var(--dark-main);
    background: var(--white);
    border: 1px solid var(--dark-main);
}

.btn-light:hover {
    background: var(--dark-main);
    color: var(--white);
}

button {
    outline: none;
    border: none;
}

button:hover {
    color: var(--dark-main);
}

.main-content {
    min-height: 100vh;
    width: 100%;
    background: white;
    border: 1px solid var(--dark-main);
    position: relative;
    z-index: 1;
}

.main {
    background: var(--main);
}

.light {
    background: var(--light-main);
}

.grey {
    background: var(--grey);
}

.white {
    background: var(--white);
}

.heading-text {
    color: var(--dark-main);
    letter-spacing: 1px;
    position: relative;
    z-index: 10 !important;
}

/* usage {
  font-family: var(--body-fonts);
} */

.decorated-text {
    font-family: var(--style-font);
}

.thin {
    font-weight: 500;
}

.thinner {
    font-weight: 200;
}

.thick {
    font-weight: 700;
}

section {
    padding: 100px;
}

@media screen and (max-width: 768px) {
    section {
        padding: 30px;
    }
}

.linked a {
    color: var(--dark-grey);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked-light a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked a:hover,
.linked-light a:hover {
    color: var(--main);
}

.linked a::after,
.linked-light a::after {
    content: "";
    width: 30px;
    position: absolute;
    margin: 0 auto;
    height: 1px;
    background: var(--main);
    left: 0;
    right: 0;
    bottom: -10px;
}


.top10 {
    margin-top: 10px;
}

.top20 {
    margin-top: 20px;
}

.top30 {
    margin-top: 30px;
}

.top40 {
    margin-top: 40px;
}

.top50 {
    margin-top: 50px;
}

.bottom10 {
    margin-bottom: 10px;
}

.bottom20 {
    margin-bottom: 20px;
}

.bottom30 {
    margin-bottom: 30px;
}

.bottom40 {
    margin-bottom: 40px;
}

.bottom50 {
    margin-bottom: 50px;
}

/* Header */
header {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    height: 60px;
    background: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#nav-toggle {
    position: absolute;
    top: -100px;
}

header .logo {
    float: left;
    height: 100%;
    width: 40%;
}

header .logo img {
    height: 60px;
}

.header .links {
    float: right;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 60%;
}

header ul li {
    display: inline-block;
    padding: 0 10px;
}

header ul li a {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
}

header ul li a:hover,
header ul li a.active {
    color: var(--main);
}

header ul li:last-child {
    padding: 5px 20px;
    margin-left: 50px;
    border: 1px solid var(--variant-main);
    border-radius: 10px;
}

header .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

header .icon-burger .line {
    width: 20px;
    height: 2px;
    background: var(--dark-grey);
    margin: 4px;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    header .logo {
        float: none;
        width: auto;
        justify-content: center;
    }

    header .links {
        float: none;
        position: fixed;
        z-index: 15;
        left: 0;
        right: 0;
        top: 60px;
        bottom: 0;
        width: auto;
        height: auto;
        bottom: 100%;
        overflow: hidden;
        flex-direction: column;
        background: var(--white);
        transition: all ease-in-out 0.5s;
    }    

    header .icon-burger {
        display: block;
    }

    header ul li {
        display: block;
        padding: 20px;
    }

    header ul li:last-child {
        padding: 20px;
        margin-left: 0;
        border: none;
        border-radius: 0;
    }

    header :checked ~ .links {
        bottom: 0;
    }

    header :checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    header :checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    header :checked~.icon-burger .line:nth-child(1) {
        opacity: 0;
    }

}

/* Event */
.banner-image {
    width: 100%;
    height: auto;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.8); */
}

/* ------------------- */
/* General Section Styling (Scoped) */
/* ------------------- */
.register .form,
.register .gallery {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.register h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.register p {
    text-align: center;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #555;
}

.register .container {
    max-width: 800px;
    margin: 0 auto;
}

/* ------------------- */
/* Form Styling (Scoped) */
/* ------------------- */
.register form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register .form-group label {
    font-weight: bold;
    color: #333;
}

.register .form-group input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.register .form-group input:focus {
    border-color: #007BFF;
    outline: none;
}

.register .btn {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register .btn-primary {
    background-color: #007BFF;
    color: white;
}

.register .btn-primary:hover {
    background-color: #0056b3;
}

/* ------------------- */
/* Gallery Styling (Scoped) */
/* ------------------- */
.register .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.register .gallery-grid img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.register .gallery-grid img:hover {
    transform: scale(1.05);
}


/* Banner */
.banner {
    position: relative;
    background: var(--lighter-grey);
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}   

.banner .btns {
    margin-top: 30px
}

.banner .btns .btn {
    margin: 0 10px;
}

.card-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.card-section .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-section .item.left,
.card-section .item.right {
    height: 350px;
    width: 200px;
}

.card-section .item.mid {
    height: 250px;
    width: 180px;
}

.card-section .item.middle {
    height: 150px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-grey);
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 15px;
}

.card-section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-section .item.left .top,
.card-section .item.right .top {
    height: 70%;
}

.card-section .item.left .bottom,
.card-section .item.right .bottom {
    display: flex;
    flex-direction: row;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding: 10px;
}

.card-section .item i {
    font-size: 48px;
    /* margin-bottom: 8px; */
}


/* Slider */
.slider {
    padding: 0 100px;
    /* min-height: calc(100vh - 60px); */
    background: linear-gradient(180deg, rgba(3, 11, 75, 0) 10%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.9)), ;
    margin-top: 60px;
}

.slider .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* padding-top: 10vh; */
}

.slider .details h1 {
    font-size: 35px;
    line-height: 60px;
    font-weight: 600;
}

.slider .details h1 span {
    font-weight: 800;
    color: var(--complementary-main);
}

.slider .details p {
    width: 70%;
}

.slider .collage {
    position: relative;
}

.slider .collage img.map {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(0);
    opacity: 0.1;
}

.slider .collage img.top {
    position: absolute;
    height: 300px;
    width: 300px;
    z-index: 10;
    border-radius: 50%;
    top: 30px;
    left: 100px;
    object-fit: cover;
}

.slider .collage img.left {
    position: absolute;
    height: 150px;
    width: 150px;
    z-index: 10;
    border-radius: 50%;
    left: 70px;
    bottom: 100px;
    object-fit: cover;
}

.pulsating-circle {
    position: absolute;
    bottom: 130px;
    left: 200px;
    width: 30px;
    height: 30px;
    z-index: 13;
}

.pulsating-circle:before {
    content: "";
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: var(--dark-main);
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--complementary-main);
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.achievements {
    padding-top: 30px;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.achievements .item {
    background: var(--white);
    /* height: 120px; */
    width: 150px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
}

.achievements .item p {
    font-size: 14px;
    margin-bottom: auto; /* Work on this */
} 

.achievements .item .meter {
    height: 4px;
    background: var(--main);
    border-radius: 2px;
    width: 100%;
    position: relative;
}

.achievements .item .meter1 {
    background: var(--complementary-main);
}

.achievements .item .meter2 {
    background: var(--dark-main);
}

@media screen and (max-width: 768px) {
    .slider {
        padding: 50px 30px;
    }

    .slider .content {
        grid-template-columns: 1fr;
    }

    .slider .details h1 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 20px;
    }

    .slider .details p {
        width: 100%;
    }

    .slider .collage {
        padding-top: 30px;
    }

    .achievements {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .slider .collage img.top {
        height: 150px;
        width: 150px;
        top: 0;
        left: 30px;
    }

    .slider .collage img.left {
        height: 80px;
        width: 80px;
        top: 90px;
        left: 0;
    }

    .pulsating-circle {
        position: absolute;
        top: 135px;
        left: 65px;
        width: 30px;
        height: 30px;
        z-index: 13;
    }
}

/* Causes */
.causes {
    padding: 100px;
    background: rgba(86, 227, 159, 0.1);
}

.causes .title {
    text-align: center;
    padding-bottom: 30px;
}

.causes .title p {
    text-transform: uppercase;
    color: var(--dark-main);
}

.causes .title h3 {
    font-weight: 400;
    width: 70%;
    margin: 10px auto;
}

.causes .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 20px;
}

.causes .content img.left {
    width: 100%;
    height: auto;
}

.causes .content .details {
    display: grid;
    gap: 20px;
}

.causes .content .item {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.causes .content .item img {
    height: 32px;
}

.causes .content .item h3 {
    font-weight: 500;
    color: var(--dark-main);
}
/* .causes .content .item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.causes .content .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

 */
.counter .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.counter .text p {
    font-size: 12px;
}

.counter .count {
    position: relative;
    background: var(--variant-main);
    height: 6px;
    width: 100%;
    border-radius: 3px;
    margin-top: 5px;
}

.counter .count::before {
    position: absolute;
    content: '';
    background: var(--dark-main);
    height: 6px;
    width: 100px;
    top: 0;
    left: 0;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .causes {
        padding: 30px;
    }

    .causes .title h3 {
        width: 90%;
    }
    
    .causes .content {
        grid-template-columns: 1fr;
    }
}

/* Featured */
.featured {
    padding: 100px;
    padding-bottom: 200px;
}

.featured .content {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 30px;
}

.featured .content img {
    width: 100%;
    height: auto;
}

.featured .content .details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured .content .details .title p {
    color: var(--main);
    text-transform: uppercase;
}

.featured .content .details p {
    margin: 10px 0;
}

@media screen and (max-width: 768px) {
    .featured {
        padding: 30px;
    }

    .featured .content {
        grid-template-columns: 1fr;
    }
}

/* What */
.what {
    background: linear-gradient(180deg, rgba(36, 47, 64, 0.9) 10%, rgba(36, 47, 64, 0.9) 30%, rgba(36,47,64, 0.9)), url('../images/students.jpg') ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.what .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
}

.what .content h3 {
    font-weight: 400;
    padding-bottom: 10px;
}

.what .content p.title {
    color: var(--variant-main);
}

@media screen and (max-width: 768px) {
    .what {
        padding: 30px;
    }

    .what .content {
        width: 100%;
    }
}

/* About Breadcrumb */
.about-breadcrumb {
    padding: 0 100px;
    background: linear-gradient(-90deg, rgba(36, 47, 64, 0) 10%, rgba(36, 47, 64, 0.3) 20%, rgba(36, 47, 64, 1)), url('../images/learning.jpg');
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
    margin-top: 60px;
    color: var(--white);
}

.about-breadcrumb .content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding-top: 20vh;
}

.about-breadcrumb .content  p.title {
    color: var(--variant-main);
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .about-breadcrumb {
        padding: 0 30px;
    }

    .about-breadcrumb .content {
        width: 100%;
    }
}

/* MVC */
.mvc-main {
    padding: 50px;
    /* width: 70%; */
    margin: auto;
}

.mvc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 100px;
    margin: auto;
}

.mvc .item {
    background: var(--white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mvc .item .icon {
    background: var(--complementary-main);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvc .item img {
    width: auto;
    height: 32px;
}

.mvc .item h3 {
    font-weight: 400;
    /* padding: 10px 0; */
    color: var(--dark-main);
}

@media screen and (max-width: 768px) {
    .mvc {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }
}

/* About */
.about {
    padding: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: var(--light-complementary-main);
    gap: 20px;
}

.about .details {
    flex-basis: 60%;
} 

.about .collage {
    flex-basis: 40%;
}

.about .collage img {
    width: 100%;
    height: auto;
}

/* .about .collage::after {
    position: absolute;
    content: 'Integrated approach to the total well-being of the child';
    height: 120px;
    width: 300px;
    bottom: -60px;
    right: -100px;
    background: var(--dark-grey);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
} */

.about .title h3 {
    padding: 10px 0;
    font-weight: 600;
    font-size: 24px;
}

.about .title p {
    color: var(--main);
    text-transform: uppercase;
}

.about .details p {
    padding: 5px 0;
}

.about .content h3 {
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 30px;
        flex-direction: column;
        gap: 30px;
    }

    .about .collage {
        margin-bottom: 150px;
    }

    .about .collage::after {
        bottom: -120px;
        left: 0;
        border-radius: 0;
        width: 100%;
    }
}

/* Our Cause */
.our-cause {
    padding: 100px;
}

.our-cause .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 100px;
}

.our-cause .item img {
    width: 100%;
    height: 380px;
    margin-top: -30px;
    object-fit: cover;
    border-radius: 10px;

}

.our-cause .item .details {
    height: 320px;
    padding: 20px 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.our-cause .item:last-child .details {
    padding: 20px 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media screen and (max-width: 768px) {
    .our-cause {
        padding: 100px 30px;
    }

    .our-cause .item {
        grid-template-columns: 1fr;
    }

    .our-cause .item:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }

    .our-cause .item .details {
        height: auto;
    }
}

/* Team */
.team {
    padding: 100px;
}

.team .content .title {
    text-align: center;
}

.team .content .title h3 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 50px
}

.team .content .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.team .content .grid .item {
    background: var(--light-variant-main);
    border-radius: 10px;
}

.team .content .grid .item h3 {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
}

.team .content .grid .item h3 small {
    font-size: 13px;
}

.team .content .grid .item p {
    padding: 0 20px;
    padding-bottom: 20px;
    font-size: 14px;
}

.team .content .grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .team {
        padding: 30px;
    }
    
    .team .content .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Board */
.board {
    padding: 100px;
    background: var(--light-variant-main);
}

.board .title {
    text-align: center;
    padding-bottom: 20px;
}

.board .title h3 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 50px
}

.board .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.board .grid .item {
    border-radius: 10px;
    text-align: center;
}

.board .grid .item h3 {
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
}

.board .grid .item h3 span {
    font-size: 15px;
}

.board .grid .item p {
    padding: 0 20px;
    padding-bottom: 20px;
    font-size: 15px;
}

.board .grid .item p i {
    font-size: 20px;
}

.board .grid img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .board {
        padding: 30px;
    }

    .board .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* contact */
.contact-breadcrumb {
    padding: 0 100px;
    background: linear-gradient(-90deg, rgba(36, 47, 64, 0) 10%, rgba(36, 47, 64, 0.3) 20%, rgba(36, 47, 64, 1)), url('../images/contact.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
    margin-top: 60px;
    color: var(--white);
}

.contact-breadcrumb .content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding-top: 20vh;
}

.contact-breadcrumb .content p.title {
    color: var(--variant-main);
    text-transform: uppercase;
}

.contact {
    padding: 100px;
    overflow-x: hidden;
}

.contact .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact .content .right {
    background: url("../images/girl.jpg");
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact .left h3 {
    color: var(--main);
    padding-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

form .form-group {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

form .form-group .col {
    width: 100%;
    display: flex;
    flex-direction: column;
}

form .form-group .col label {
    color: var(--dark-main);
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 10px;
}

form input,
form select,
form textarea {
    border: 0;
    border-radius: 0;
    padding: 15px;
    background: var(--light-variant-main);
    border-radius: 10px;
}

form .form-group:last-child {
    margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .contact-breadcrumb {
        padding: 0 30px;
    }

    .contact-breadcrumb .content {
        width: 100%;
    }
    
    .contact {
        padding: 30px;
    }

    .contact .content {
        grid-template-columns: 1fr;
    }

    form .form-group {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.contact .contact-info .col {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.contact .contact-info {
    padding-top: 100px;
    border-top: 1px solid var(--black);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 50px;
}

.contact .contact-info .icon {
    height: 80px;
    width: 80px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    border-radius: 50%;
}

@media screen and (max-width: 970px) {
    .contact .contact-info {
        grid-template-columns: 1fr;
        gap: 50px 0;
    }
}

.contact .contact-info .icon img {
    height: 50px;
}

/* Partner Breadcrumb */
.partner-breadcrumb {
    padding: 0 100px;
    background: linear-gradient(-90deg, rgba(36, 47, 64, 0) 10%, rgba(36, 47, 64, 0.3) 20%, rgba(36, 47, 64, 1)), url('../images/students.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
    margin-top: 60px;
    color: var(--white);
}

.partner-breadcrumb .content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding-top: 20vh;
}

.partner-breadcrumb .content p.title {
    color: var(--variant-main);
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .partner-breadcrumb {
        padding: 0 30px;
    }

    .partner-breadcrumb .content {
        width: 100%;
    }
}

/* Partnership */
.partnership {
    padding: 100px;
    /* background: var(--light-complementary-main); */
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.partnership form {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 20px;
    border-radius: 10px;
}

.partnership .title h3 {
    font-weight: 400;
    padding-bottom: 30px;
}

.partnership .items {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    padding-bottom: 40px;
}

.partnership .items .details {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.partnership .items .details h3 {
    font-weight: 400;
    padding-bottom: 10px;
}

.partnership .items .details p {
    padding-bottom: 20px;
    font-size: 17px;
}

.partnership .items img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.partnership .donate {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    margin-bottom: 30px;
}

.partnership .donate .icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    background: var(--complementary-main);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.partnership .donate .icon img {
    height: 20px;
    line-height: 40px;
}

.partnership .donate h3 {
    padding: 10px 0;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .partnership {
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .partnership .items {
        grid-template-columns: 1fr;
    }
}

/* footer */
footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 100px;
    padding-top: 200px;
    padding-bottom: 50px;
    position: relative;
}

footer .fixed {
    position: absolute;
    padding: 0 100px;
    background: var(--dark-main);
    height: 150px;
    width: calc(100% - 200px);
    border-radius: 10px;
    top: -75px;
    right: 100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .fixed .details {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

footer .fixed .details .fixed-btn {
    background: var(--white);
    color: var(--dark-main);
}

footer .fixed .details .fixed-btn:hover {
    background: var(--light-complementary-main);
}

footer .fixed .details h3 {
    font-weight: 400;
    padding-bottom: 10px;
}

footer .fixed .grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

footer .fixed .grid img {
    height: 80px; 
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

footer .logo img {
    height: 50px;
    border-radius: 5px;
}

footer .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    padding-bottom: 20px;
}

footer ul li {
    display: inline-block;
    padding: 0 10px;
}

footer ul li a {
    color: var(--white);
    font-size: 16px;
}

footer ul li a:hover {
    color: var(--variant-main);
}

footer .bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--white);
}

@media screen and (max-width: 768px) {
    footer {
        padding: 0;
    }

    footer .fixed {
        position: relative;
        height: auto;
        width: 100%;
        border-radius: 0;
        top: -150px;
        margin-top: 150px;
        left: 0;
        padding: 30px;
    }

    footer .fixed .details {
        grid-template-columns: 1fr;
    }

    footer .content {
        flex-direction: column;
        margin: auto;
    }

    footer .fixed .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}