
.page-header {
    background-color: #B2AFAB;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('/static/pics/work_6_resized.jpg');
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header .filter::after {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.page-header .content-center {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

.moving-clouds {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 250.625em;
    height: 43.75em;
    -webkit-animation: cloudLoop 80s linear infinite;
    animation: cloudLoop 80s linear infinite;
}

@keyframes cloudLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.presentation-title {
    font-size: 6em;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    background: -webkit-linear-gradient(top, #FFFFFF 10%, #3CB371 100%);
    background: linear-gradient(to bottom, #FFFFFF 10%, #3CB371 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.presentation-subtitle {
    font-size: 2.1em;
    color: #FFFFFF;
    margin-top: 40px;
    text-align: center;
}

.features .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
    z-index: 2;
}

.features .box-container .box{
    padding: 3rem 2rem;
    background: #fff;
    outline: var(--light-green);
    outline-offset: -1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.features .box-container .box:hover{
    outline: var(--outline-hover);
    outline-offset: 0rem; 
}

.features .box-container .box img{
    margin: 1rem 0;
    height: 15rem;
}

.features .box-container .box h3{
    font-size: 2.5rem;
    line-height: 1.8rem;
    color: var(--black);
}

.features .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--light-color);
    padding: 1rem 0;
}


@media (max-width: 992px) {
    .presentation-title {
        font-size: 4em;
        margin-top: 30%;
    }
}

@media (max-width: 768px) {
    .presentation-title {
        font-size: 3em;
        margin-top: 30%;
    }
}

@media (max-width: 576px) {
    .presentation-title {
        font-size: 2em;
        margin-top: 30%;
    }
}

@media (orientation: landscape) and (max-width: 768px) {
    .presentation-title {
        font-size: 2.5em;
        margin-top: 30%;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    /* Styles for laptops */
    .presentation-title {
        font-size: 3em;
        margin-top: 10%;
    }

    section{
        padding: 5rem 0;
    }
}

