/* Hero - section */
.services-hero {
    width: 100%;
    height: 50vh;
    margin: auto;
    display: flex;
    background: linear-gradient(to right,
    rgba(0,0,0,0.2), 
    rgba(0,0,0,0.2)), url('../assets/product_dev_1.jpg') no-repeat  center / cover;
    filter: brightness(1.5);
}

.hero-section {
    margin: 0 auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.hero-section h1 {
    color: var(--white-color);
}

/* Hero - section */
.services-hero {
    height: 65vh;
}

.services-section{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Services section */
.services-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.services-items > div{
    width: 100%;
    max-width: 25rem;
}

.reverse{
    flex-direction: column-reverse;
}

.services-items img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.services-items img.interview_prep{
    filter: brightness(1.5);
}

.services{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services h3{
    color: var(--primary-color);
    text-align: center;
}

.services p{
    text-align: justify;
}

.services-img{
    overflow: hidden;
    border-radius: 10px;
    height: fit-content;
}

.services-img:hover img{
    scale: 1.04;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 768px){
    .services-items > div{
        width: 50%;
        max-width: 100%;
    }

    .services-items{
        flex-direction: row;
        gap: 3rem;
    }

    .services h3{
        text-align: left;
    }
}

@media (min-width: 1000px){
    .services-hero{
        height: 85vh;
    }

    .services-items{
        gap: 5rem;
    }

    .services-section{
        margin-bottom: 5rem;
    }
}