.infoSplite-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: auto;
    margin-top: 10rem;
    column-gap: 0%;
    transform: translate(-5%);
}

.profile-img {
    width: 70%;
    border-radius:40%;
    transform: translate(25%,0%);
}

.img-content {
    text-align: center;
    margin-top: 2rem;
    color: white;
    margin-bottom: 5rem;
}

.img-wrapper {
    transform: translate(50%);
    padding: 50px 50px 50px;
    background-color: darkred;
    width: 60%;
    height: 90%;
    border-radius: 10%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    margin-top: 1rem;
}

.content-box {
    padding: 20px 20px 20px 20px;
    background-color: #f0f0f0;
    width: 90%;
    height: 90%;
    border-radius: 10%;
    animation: float-up .5s ease-in-out;
    box-shadow: 
        4px 5px rgba(0, 0, 0, 0.5),
        -4px 5px rgba(139, 0, 0, 0.7);
}

.content-box h1 {
    font-size: 2vw;
}
.content-box p {
    font-size: .7vw;
}

.content-box-short {
    padding: 20px 20px 20px 20px;
    background-color: #f0f0f0;
    width: 90%;
    height: 70%;
    border-radius: 10%;
    animation: float-up .5s ease-in-out;
    box-shadow: 
        4px 5px rgba(0, 0, 0, 0.5),
        -4px 5px rgba(139, 0, 0, 0.7);
}

.content-box-short h1 {
    font-size: 2vw;
}
.content-box-short p {
    font-size: .7vw;
}

.divider-wrapper {
    position: relative;
    width: 100%;
}
.divider-line {
    position: relative;
    padding: 10px 10px;
    width: 90%;
    height: 8%;
    background: linear-gradient(to right, orange, red);
    border-radius: 10px/50%;
    margin-bottom: 5rem;
    margin-top: 5rem;
    transform: translateX(5%);
    animation: slide-divider .5s ease-in-out;
}

.councilMembersInfo {
    position: relative;
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 1%;
    margin-bottom: 5vh;
    margin-top: 5vh;
}

.councilMembersInfo::before {
    content: "";
    background-image: url('https://resources.finalsite.net/images/f_auto,q_auto/v1721657189/fultonschoolsorg/i7jod0vejflf31ksudqf/Untitled46.png');
    background-repeat: no-repeat;
    background-size: cover; 
    filter: brightness(30%); 
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-2.5%,-2.5%);
    width: 105%;
    height: 105%;
    z-index: -1; 
    border-radius: 25px;
}

.bottom-Spacing {
    margin-bottom: 2%;
}

.title-spacing {
    height: 100%;
    padding: 20px 20px 20px;
    margin-top: 15vh;
}


.councilInfoBox {
    color: white;
    padding: 15%;
    background-color: darkred;
    margin: 10px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.councilInfoBox h2 {
    font-size: 1.8vw;
}
.councilInfoBox h3 {
    font-size: 1vw;
}

.center {
    display: flex;
    justify-content: center;
}

@keyframes slide-divider {
    0% {
        width: 0%;
    }
    100% {
        width: 90%;
    }
}

@keyframes float-up {
    0% {
        transform: translate(25%, 100%);
        opacity: 0.2;
    }

    100% {
        transform: translate(25%, 0%); 
        opacity: 1;
    }

}

@keyframes float-up-push-up {
    0% {
        transform: translateY(25%, 100%);
        opacity: 0.2;
    }

    100% {
        transform: translateY(25%, -90%); 
        opacity: 1;
    }

}


@keyframes float-up-push-left {
    0% {
        transform: translate(15%, 100%); 
        opacity: 0.2;
    }

    100% {
        transform: translate(15%, 0%);
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .infoSplite-wrapper {
        grid-template-columns:1fr;
        transform: translate(-10%);

    }

    .content-wrapper {
        display: grid;
        grid-template-columns:1fr;
        text-decoration: none;
        margin-top: 1rem;
    }
    
    .content-box {
        padding: 20px 20px 60px 20px;
        background-color: #f0f0f0;
        width: 80%;
        height: 80%;
        border-radius: 10%;
        transform: translate(25%);
    }
    
    .content-box h1 {
        text-align: center;
        margin-top: 1rem;
        font-size: 15px;
    }

    .content-box p {
        font-size: 10px;
    }

    .content-box-short {
        padding: 20px 20px 60px 20px;
        background-color: #f0f0f0;
        width: 80%;
        height: 70%;
        border-radius: 10%;
        transform: translate(25%);
    }
    
    .content-box-short h1 {
        text-align: center;
        margin-top: 1rem;
        font-size: 15px;
    }
    
    .content-box-short p {
        font-size: 10px;
    }
}

@media screen and (min-width:768px) {
    .infoSplite-wrapper {
        grid-template-columns:1fr 1fr;
        transform: translate(-10%);

    }

    .content-wrapper {
        display: grid;
        grid-template-columns:1fr 1fr;
        text-decoration: none;
        margin-top: 1rem;
    }
    
    .content-box {
        padding: 20px 0px 60px 20px;
        background-color: #f0f0f0;
        width: 100%;
        height: 75%;
        border-radius: 10%;
        transform: translate(25%);
    }
    
    .content-box h1 {
        text-align: center;
        margin-top: 1rem;
        font-size: 2vw;
    }

    .content-box p {
        font-size: 8px;
    }
    
    .content-box-short {
        padding: 20px 0px 60px 20px;
        background-color: #f0f0f0;
        width: 100%;
        height: 48%;
        border-radius: 10%;
        transform: translate(25%);
    }
    
    .content-box-short h1 {
        text-align: center;
        margin-top: 1rem;
        font-size: 2vw;
    }

    .content-box-short p {
        font-size: 8px;
    }

    .img-wrapper {
        transform: translate(50%, 20%);
        background-color: darkred;
        width: 60%;
        height: 70%;
        border-radius: 10%;
    }

    .push-left {
        transform: translate(0%);
        animation: float-up-push-left-0 .5s ease-in-out;
    }

    
    .push-up {
        transform: translate(25%,-90%);
        animation: float-up-push-up .5s ease-in-out !important;
    }
}

@keyframes float-up-push-left-0 {
    0% {
        transform: translate(0%, 100%);
        opacity: 0.2;
    }

    100% {
        transform: translate(0%, 0%);
        opacity: 1;
    }
}

@media screen and (max-width: 1000px) {
    .councilMembersInfo {

        grid-template-columns: repeat(3,1fr);    
    }
/* 
    .grid-template-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    } */
}

@media screen and (max-width: 768px) {
    .councilMembersInfo {
        grid-template-columns: repeat(2,1fr);    
    }

    .councilInfoBox {
        padding: 5%;
    }
}

@media screen and (min-width: 900px){
    .infoSplite-wrapper {
        grid-template-columns: 1fr 1fr;
        transform: translate(-10%);
    }
    
    .img-wrapper {
        transform: translate(50%);
        width: 60%;
        height: 90%;
    }
    
    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-decoration: none;
        margin-top: 1rem;
    }
    
    .content-box {
        padding: 20px 20px 60px 25px;
        width: 90%;
        height: 90%;
        border-radius: 10%;
    }
    

    .push-left {
        transform: translate(15%);
        animation: float-up-push-left 0.5s ease-in-out;
    }

    .content-box h1 {
        font-size: 2vw;
    }
    .content-box p {
        font-size: .8vw;
    }

    .content-box-short {
        padding: 20px 20px 60px 25px;
        width: 90%;
        height: 50%;
        border-radius: 10%;
    }
    

    .content-box-short h1 {
        font-size: 2vw;
    }
    .content-box-short p {
        font-size: .8vw;
    }
}
