.main_img_wrapper {
    width: 100%;
    object-fit: cover;
}
.main_img_wrapper img {
    max-width: 100%;
}

.parallax-overview-sec {
    position: relative;
    /*height: 650px;*/
    display: flex;
    align-items: center;
    background: linear-gradient(#425A6E, #425A6E), var(--ser-para-img) center/cover no-repeat fixed;
    background-blend-mode: multiply;
    /*background: var(--ser-para-img) center/cover no-repeat fixed;*/
}

.associated-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: flex-start;
}
.associated-item {
    display: flex;
    align-items: center;
    gap: 35px;
}
.associated-icon {
    width: 145px;
    height: 145px;
    min-width: 145px;
    border-radius: 50%;
    background: #80949E;
    color: #FF0180;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}
.associated-icon img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all .35s ease;
}
.associated-item .associated-title {
    color: #FFF;
    font-family: var(--h4FontFamily);
    font-size: var(--h4DeskFont);
    font-style: var(--h4FontStyle);
    font-weight: var(--h4FontWt);
    line-height: var(--h4DeskLineHt);
}
.associated-item .associated-content {
    color: #FFF;
    font-family: var(--defaultFontFamily);
    font-size: var(--defaultDeskFont);
    font-style: var(--defaultFontStyle);
    font-weight: var(--defaultFontWt);
    line-height: var(--defaultDeskLineHt);
}

/* Specific styles for iOS devices */
@supports (-webkit-touch-callout: none) {
    .parallax-overview-sec {
        background-attachment: scroll !important; /* Fallback for better performance on iOS */
    }
}

.service_contact_block.bg_color {
    background: var(--sec-contact-bg-color);
    position: relative;
}


.project-swiper {
    width: 100%;
    overflow: hidden;
}
.project-swiper .swiper-wrapper {
    align-items: stretch;
}
.project-swiper .swiper-slide {
    height: auto;
}
.project-card {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.project-img {
    width: 100%;
    height: 670px; /*700px*/
    overflow: hidden;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-card .project-title {
    color: #80949E;
    text-align: center;
    font-family: var(--h3FontFamily);
    font-size: var(--h3DeskFont);
    line-height: var(--h3DeskLineHt);
    font-style: var(--h3FontStyle);
    font-weight: var(--h3FontWt);

    /*display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(var(--h3DeskLineHt) * 2);*/
}
.project-card .project-content {
    color: #80949E;
    text-align: center;
    font-family: var(--defaultFontFamily);
    font-size: var(--defaultDeskFont);
    font-style: var(--defaultFontStyle);
    font-weight: var(--defaultFontWt);
    line-height: var(--defaultDeskLineHt);

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    /* overflow: hidden; */
}

.project-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}
.project-prev,
.project-next {
    position: relative;
    width: 60px;
    height: 60px;
    border: 2.812px solid #425A6E;
    background: #fff;
    color: #425A6E;
    cursor: pointer;
    transition: all .3s ease;
}
.project-prev i,
.project-next i {
    font-size: 30px;
}
.project-prev:hover,
.project-next:hover {
    background: #425A6E;
    color: #fff;
}
.ser_desk_hide {
    display: none;
}


@media (max-width: 1200px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .associated-icon {
        display: none;
    }
}
@media (max-width: 767px) {
    .parallax_wrapper {
        text-align: center;
    }
    .associated-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .project-img {
        height: auto; /*300px*/
    }
    .ser_mob_hide {
        display: none;
    }
    .ser_desk_hide {
        display: block;
    }
    .service_main_block .main_img_wrapper {
        display: flex;
        justify-content: center;
    }
}