:root{
    --white-color: #f6f6f6;
    --shade-of-black: rgb(26, 26, 26);
    --deep-dark: #121212;
    --orange: #ff9933;
    --red: #e5062f;
    /* fonts */
    --poppins: "Poppins", sans-serif;
    --roboto: "Roboto", sans-serif;
}

/* placement hero */

.placement_hero {
    min-height: 100vh;
    background-image: url("../images/placements.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.placement_hero::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--shade-of-black);
    opacity: 0.2;
    z-index: 1;
}

.placement-hero-inner{
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 7rem;  /* move hero down*/
}

.placement_hero h1,
.placement_hero h2{
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: white;
    width: 100%;
    max-width: 25rem;
    text-align: center;
    font-family: var(--poppins);
    text-transform: capitalize;
}

.placement-hero-inner button{
    background-color: var(--red);
    color: var(--white-color);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    text-transform: capitalize;
    border: 1px solid rgba(246, 246, 246, 0.1);
    font-weight: bold;
    cursor: pointer;
}

/* placement section */
.placementCard{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.placementCard > div{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.placementCard > div > div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.placementCard h3,h4,p,li{
    color: var(--white-color);
}

.placementCard h4{
    font-weight: 500;
}

.placementCard p,li{
    font-weight: 300;
    font-family: var(--roboto);
}

.placementCard li{
    list-style-position: inside;
}

.placementCard figure{
    overflow: hidden;
    border-radius: 10px;
}

.placementCard img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (min-width: 430px){
    .placement_hero h1,
    .placement_hero h2{
        font-size: 1.7rem;
        line-height: 3rem;
    }
}

@media (min-width: 600px){
    

}

@media (min-width: 768px){
    .placement_hero h1{
        font-size: 2rem;
        max-width: 30rem;
    }

}

@media (min-width: 960px){
    .placement_hero h1,
    .placement_hero h2{
        font-size: 3.5rem;
        max-width: 90%;
        line-height: 4.5rem;
    }

    .placementCard {
        grid-template-columns: repeat(3, 1fr);
    }

    .placement_hero{
        background-position: center top;
    }
        
}