/* project items section */
.project-items-section{
padding:40px 0;}
.project-items-section .section-title {
    font-family: 'Eurostile', sans-serif;
    font-size: 62px;
    line-height: 69px;
    text-align: left;
    color: #000;
    margin-bottom: 70px;
}



.project-items-section .projects-wrapper .project-item .project-text {
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #000;
}

.project-items-section .projects-wrapper .project-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 50px;
}
.project-items-section .projects-wrapper .project-item .project-img{
	flex-grow:1;
}
.project-items-section .projects-wrapper .project-item .project-img img {
    max-width: 100%;
    width:100%;
	object-fit: cover;
    object-position: center;
    aspect-ratio: 526 / 355;

}

.project-items-section .projects-wrapper .project-item .project-text img {
    margin-left: 9px;
}

@media screen and (max-width: 991px) {
    .project-items-section .projects-wrapper {
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .project-items-section .projects-wrapper .project-item {
        margin: 0;
    }

    .project-items-section .projects-wrapper .project-item {
        justify-content: center;
        align-items: center;
    }

    .project-items-section .projects-wrapper .project-item .project-img {
        width: 100%;
    }

    .project-items-section .projects-wrapper .project-item .project-img img {
        width: 100%;
    }

}

/* project items section end*/