/*********************
START: SINGLE
*********************/
.hero {
    padding-block: 170px;
}

.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 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;
}
.single--post {
	    padding-block-end: 170px;

}
/* 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;
    border: 1px solid red;
}

/*********************
END: HERO SINGLE TEAM
*********************/


/*********************
START: HERO SINGLE PORTFOLIO
*********************/
.heroSinglePortfolio--slider{
    background-color: var(--bg-dark);
}

.heroSinglePortfolio--slider .swiper {
    width: 100%;
    height: 100%;
}

.heroSinglePortfolio--slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3.5;
}

.heroSinglePortfolio--slider .swiper-slide-next{
    opacity: 0.5;
}


.heroSinglePortfolio--slider .swiper-nav{
    right: 30%;
    bottom: 190px;
}

.heroSinglePortfolio--slider .swiper-nav i{
    color: var(--gray-scale-1);
}

.heroSinglePortfolio--slider .swiper-button-prev:after, 
.heroSinglePortfolio--slider .swiper-rtl .swiper-button-next:after,
.heroSinglePortfolio--slider .swiper-button-next:after, 
.heroSinglePortfolio--slider .swiper-rtl .swiper-button-prev:after{
    content: unset;
}

.heroSinglePortfolio--slider .swiper-button-next{
    right: -40px;
}

.heroSinglePortfolio--slider .swiper-button-prev{
    left: -40px;
}

/*********************
END: HERO SINGLE PORTFOLIO
*********************/



/*********************
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;
    }

    .heroSinglePortfolio--slider .swiper-nav{
        right: 50%;
        transform: translateX(-50%);
    }
}

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

/*********************
END: MEDIA
*********************/