/*********************
START: SINGLE
*********************/
.hero{
    padding-block: 170px;
}
.heroSingleTeam--image.container-fluid.container-xxl {
    width: 75%;
    background-color: white;
    border-radius: 25px;
}
.lightTheme .hero--title, 
.lightTheme .hero--text, 
.lightTheme .single--post p{
    color: var(--gray-scale-1);
}

.darkTheme .hero--title, 
.darkTheme .hero--text, 
.darkTheme .single--post p{
    color: var(--white-color);
}

.hero--title{
    font-size: 60px;
}
.single--post{
	    padding-block-end: 170px;

}
.single--post p{
    font-size: 24px;
    line-height: var(--line-height-2);
}

/* image of single */
.content img {
    width: initial;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;

    /*  */
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    border-radius: 1rem;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
    border-radius: 1rem;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
    border-radius: 1rem;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* image of single */
/*********************
END: SINGLE
*********************/



/*********************
START: HERO SINGLE SERVICE
*********************/
.heroSingleService {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-block: 170px;
    position: relative;
    overflow-x: hidden;
    height: 100vh;
}

.heroSingleService::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(var(--linear-black));
}

.heroSingleService--content{
    bottom: 80px;
}


.heroSingleService--img > img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(1);
    aspect-ratio: 4/4;
    object-fit: cover;
}
/*********************
END: HERO SINGLE SERVICE
*********************/


/*********************
START: HERO SINGLE TEAM
*********************/
.heroSingleTeam--image > img{
    aspect-ratio: 4/2;
    object-fit: cover;
    border-radius: 12px;
}
/*********************
END: HERO SINGLE TEAM
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (max-width: 1200px) {
    .hero--title {
        font-size: 50px;
    }
}

@media screen and (max-width: 576px) {
    .hero--title{
        font-size: 45px;
    }
}

@media screen and (max-width: 425px) {
    .hero--title{
        font-size: 40px;
    }
}

@media screen and (max-width: 375px) {
    .hero--title{
        font-size: 35px;
    }
}
/*********************
END: MEDIA
*********************/