.font-light{
    color: #505050;
}

.lineBreak{
    /*max-width:none;*/
}

.dualFlexBox{
    /*margin-left:unset;*/
    /*margin-right:unset;*/
    /*max-width: none;*/
}
.projectHeroDetailsCategoryContainer {
    display: flex;
    gap: 5px;
    align-items: center;

    span {
        color: #505050;
    }

    .category-icon {
        height: 20px;
        width: auto;
    }
}
.projectSectionWrapper{
    padding: 0;
    margin: 0 10% 5% 10%;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    justify-self: center;
}

.projectHeroFlexBox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 500px;
    gap: 30px;
    & h1{
        line-height:1.5;
        margin:0;
    }

    & h4:not(:first-child){
        margin: 0;
    }
}

.projectHeroImageBox{
    background-image: url("../assets/fairmontRoyalYorkFull.png");
    background-size: cover;
    background-position: center;
    height: 100%;
    cursor: pointer;
}

.projectHeroDetailsBox{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    & h4:not(:first-child), h1{
        cursor: pointer;
    }
}

.backToTopContainer{
    width: 100%;
    margin-bottom: 24px;
    && a{
        display:flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 10px;

        text-decoration: none;
        font-size: 1em;
        font-weight: 400;
        color: black;
    }

    .arrowContainer{
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(2px);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .arrow{
        width: 10px;
        height: auto;
    }
}

@media (max-width: 750px) {
    .dualFlexBox {
        & > div {
            width: 100%;
        }
    }
    .projectSectionWrapper{
        margin: unset;
    }
    .projectHeroFlexBox {
        flex-direction: column;
        gap:12px;
        height: unset;
        width: 80%;
        padding-bottom: 0px;

        .projectHeroImageBox {
            height: auto;
            aspect-ratio: 6 / 5;
            margin-bottom: 20px;
        }
        .projectHeroDetailsBox {
            h1{
                font-size: 2em;
            }
            h4:first-child{
                margin:10px 0 5px 0;
            }
        }
    }
    .backToTopContainer{
        width:80%;
    }
}