@import url(../resources/resource.css);







/* Our Goals */
.main-goals {
    height: 880px;
}

#goals {
    max-height: 740px;
    background: var(--bglight-color);
    margin: 2rem 0px;
}

.goals-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.goal-main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 4rem 0px;
}

.goal-icon {
    position: absolute;
    left: 2%;
}

.goal-content {
    display: flex;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1rem;
}

.goal-heading {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.goal-heading h2:nth-child(1) {
    background: var(--bglight-color);
    width: fit-content;
    color: var(--primary-color);
    padding: 4px 18px;
    border-radius: 3px;
    font-size: clamp(15px, 2vw, 14px);
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.goal-content {
    margin-top: 3rem;

}

.goal-item {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: fit-content;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    border-radius: 2px;

}

.goal-item-img img {
    width: 100%;
}

.goal-item-img {
    position: relative;
}

.goal-item-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bglight-color);
}

.goal-item-btn {
    width: 100%;
    text-align: center;
    background: var(--background-color);
    color: var(--white);
    padding: 5px 10px;
    cursor: pointer;
}

.goal-item-content .goal-item-head {
    max-height: 40px;
}

.goal-item-content .goal-content {
    min-height: 70px;

}

.goal-item-content {
    padding: 2rem;
    text-align: center;
}

.goal-item-head h2 {
    font-weight: 700;
}

.goal-content p {
    color: var(--white-text);
}




@media screen and (max-width:768px) {

    .about-main {
        flex-direction: column;
        padding: 1rem;
    }

    .goal-content {
        flex-direction: column;
    }

    .about-main-img .image-1 {
        position: relative;
    }

    .about-main-img .image-1 img {
        width: 280px;
        height: 240px;
    }

    .about-main-img .image-2 {
        top: 30%;
        left: 22%;
    }

    .about-main-img .image-2 img {
        width: 280px;
        height: 240px;

    }

    .about-main-img .site-icon img {
        width: 80px;
    }

    .about-main-img .site-icon {
        top: -4%;
    }

    .about-main-img .img-content {
        display: none;
    }

    .about-main-content {
        margin-left: 0rem;
        margin-top: 5rem;
        padding: 1rem;
    }

    .goal-icon {
        top: 3.4%;
        left: 25%;
    }

    .goal-icon img {
        width: 50px;
    }

    .goal-item-head h2 {
        font-weight: 700;
    }

    #goals {
        max-height: 980px;
    }

    .main-goals {
        height: 120rem;
    }

    /* team members */
    .team-info-members {
        grid-template-columns: repeat(1, 1fr);

    }

}