

/* About Us  */
.main-section{
    margin-top: 120px;
}
.card-wrapper{
    background-color: var(--section-bg-color);
}
.card{
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 75%;
    margin: auto;
    gap: 1rem;
    box-sizing: border-box;
}
.sub-card-one{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.card-sub-wrapper{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-sub-wrapper p{
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark-theme-color);
}
.card-sub-wrapper img{
    width: 24px;
    height: 24px;
}

.card-main-title{
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--light-theme-color);
}
.card-info p{
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    text-align: justify;
}
.sub-card-two{
    text-align: center;
    align-self: flex-end;
}
.sub-card-two img{
    width: 90%;
    border-radius: 46px;
}

/* Mission  */
.reverse-card-wrapper{
    background-color: var(--white-color);
}
.reverse-card{
    gap: 0;
}
.reverse-card .sub-card-two img{
    width: 50%;
    /* height: 450px; */
    border-radius: 80px;
}
.reverse-card .card-info p{
    text-transform: none;
}

/* List title icon */
.sub-main-title{
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
    color: var(--dark-theme-color);
    display: flex;
    align-items: center;
    margin-left: 5%;
    margin: 1.5rem;
}
.title-list-icon{
    position: relative;
    width: fit-content;
}
.line-left, .line-mid, .line-right{
    border: 1px solid var(--dark-theme-color);
    background-color: var(--dark-theme-color);
    transform: rotate(90deg);
}
.line-left{
    position: absolute;
    right: 36px;
    width: 40px;
}
.line-right{
    position: absolute;
    width: 40px;
    top: 0;
    left: 36px;
}
.line-mid{
    width: 80px;
}

.obj-points{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.obj-points p{
    color: var(--dark-theme-color);
    font-weight: 600;
    text-transform: inherit;
}
/* Media */
@media (max-width:1200px) {
    .sub-card-two{
        align-self: center;
    }
}

@media (max-width:1000px) {
    .card{
        display: flex;
        flex-direction: column-reverse;
    }
    .reverse-card{
        flex-direction: column;
    }
    .reverse-card .sub-card-two img{
        width: 80%;
        height: 300px;
    }
}

@media (max-width:420px) {
    .sub-main-title{
        flex-direction: column-reverse;
        gap: 3rem;
        margin: 0;
    }
    .title-list-icon{
        transform: rotate(90deg);
    }
    .sub-card-two img{
        width: 100%;
    }
    .krishna-img img{
        width: 100%;
        height: 350px;
    }
}


/* Volunteer */

.volunteer-main-container{
    padding: 3rem 0;
}
.main-sub-title{
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--dark-theme-color);
}
.main-sub-title img{
    width: 24px;
    height: 24px;
}
.main-title{
    font-weight: 700;
    font-size: 25px;
    color: var(--light-theme-color);
    text-align: center;
    text-transform: capitalize;
}
.main-title h1{
    margin: 1rem;
}
.want-volunteer-cont{
    width: 75%;
    margin: 2rem auto;
    text-align: justify;
    background-color: var(--white-color);
    box-shadow: 0px 5px 20px rgba(213, 70, 80, 0.6);
    padding: 2rem;
    border-radius: 32px;
    display: none;
}
.volunteer-toggle{
    display: block;
}
.want-volunteer-cont h2,.want-volunteer-cont h4{
    text-align: center;
    margin: 2rem;
}
/*  */
.main{
    width: 100%;
    padding: 0;
}
.container_vertical:hover{
    transform: scale(1.05, 1.05);
    cursor: pointer;
}
.volunteer-title,.volunteer-designation{
    margin: 0;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    align-items: center;
    text-transform: capitalize;
    color: var(--white-color);
}
.bottom-content{
    flex-direction: column;
}
.volunteer-designation{
    color: var(--light-theme-color);
}
.top-icon{
    height: 250px;
}
.top-icon img{
    border-radius: 32px 32px 0px 0px;
    margin: 0;
    width: 100%;
    height: 100%;
}

.volunteer-info{
    width: 300px;
    background-color: var(--dark-theme-color);
    padding: 0.7rem;
    border-radius: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    box-shadow: 1px 1px 4px black;
}
.volunteer-info .info{
    text-align: justify;
    color: var(--white-color);
}
.side-img{
    opacity: 0.7;
}
.side-img:hover{
    transform: none;
}
@media (max-width:920px) {
    .side-img{
        display: none;
    }
}
@media (max-width:768px) {
    .container_vertical{
        width: 80%;
    }
}
