.swiper.reviewsSlider{
    padding: 0 10px;
}

.review-slide {
    background-color: #fff !important;
    border: 1px solid #f2f2f2;
    box-shadow: 0 10px 15px -3px #0000001a;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/quotes.svg);
    background-size: 96px;
    background-repeat: no-repeat;
    background-position: 96% bottom;
}

.review-slide > * {
    margin: 0 !important;
}

p.review-text{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px !important;
}

.client-name {
    color: #0e5580;
    margin-top: 10px !important;
    font-weight: 500;
    font-size: 16px !important;
}

span.desig {
    color: #0087be;
}

span.company-name{
    color: #888;
}

.reviews-swiper-pagination{
    width: 100% !important;
    display: flex;
    justify-content: center;
    transform: unset !important;
    margin-top: 28px;
    gap: 4px;
}

.reviews-swiper-pagination span{
    margin: 0 !important;
    height: 12px;
    width: 12px;
    transform: unset !important;
    left: unset !important;
}

.reviews-swiper-pagination span.swiper-pagination-bullet-active{
    background-color: #0e5580;
}

/* OTHER CUSTOM SECTIONS CSS */
/* Related Services Boxes */
.related-services-container{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.related-services-container .related-service-item {
    color: #0f547e;
    background-color: #f3f6f8;
    padding: 9px;
    border-radius: 8px;
    font-size: 14px;
    margin: 0 !important;
    transition: all 0.3s;
    border: 1px solid #1D8ACB;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-services-container .related-service-item:hover {
    background-color: #ddecf6;
}

.related-service-item .service-icon {
    height: 18px;
    width: 18px;
}

.related-service-item .service-icon svg{
    width: 100%;
}

.related-service-item h3.service-title {
    font-size: inherit !important;
    margin: inherit !important;
    line-height: inherit;
    font-weight: inherit;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 1.5em;
    padding: 0 10px;
    margin-top: 1.5em;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 1.25em 1.5em;
    transition: all 0.25s;
    border-left-width: 4px;
}

.industry-card:hover{
	box-shadow: 0 10px 15px -3px #0000001a;
    transform: translateY(-3px);
    border-color: #becbd8;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 24px;
    color: #0e5580;
}

.card-top h3 {
    margin: 0 !important;
    font-weight: 500;
    font-size: 16px !important;
}

.industry-icon {
    height: 24px;
    width: 24px;
}

p.industry-description {
    margin: 0 !important;
    font-size: 15px !important;
}

.industry-cta {
    display: flex;
    color: #1D8ACB !important;
    fill: #1D8ACB;
    gap: 4px;
    align-items: center;
}

.industry-cta span{
	margin-bottom: 2px !important;
}

.industry-cta svg {
    height: 18px;
    width: 18px;
    transform: translate(0px, 0px);
    transition: 0.3s;
}

.industry-cta:hover svg{
	transform: translate(6px, 0px);
}

.related-blogs-section{
	padding: 40px 0;
}

.related-blogs-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    transition: 0.3s;
    gap: 1.5em;
    margin-top: 1.5em;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 1.5em;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.blog-card:hover {
    box-shadow: 0 10px 15px -3px #0000001a;
    transform: translateY(-3px);
    border-color: #becbd8;
}

.blog-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid #c3c3c3;
}

span.publish-date {
    color: #888;
}

.blog-card h3 {
    margin: 0;
    color: #0e5580;
    line-height: 1.4;
    font-weight: 500;
    font-size: 15px !important;
}

.blog-card h3 a {
    color: inherit;
    font-weight: inherit;
    transition: 0.3s;
}

p.blog-excerpt {
    margin: 0;
    font-size: 14px !important;
}

a.cta-read-blog {
    display: flex;
    color: #d81022;
    fill: #d81022;
    gap: 4px;
    align-items: center;
    margin-top: 6px;
}

a.cta-read-blog svg {
    height: 18px;
    width: 18px;
    transform: translate(0px, 0px);
    transition: 0.3s;
}

a.cta-read-blog:hover svg {
    transform: translate(6px, 0px);
}

/* TEAM CSS */

.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 20px;
}
.team-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px 16px;
    border: 2px solid #e6e6e6;
    transition: 0.5s;
    border-radius: 10px;
}
.team-card:hover{
    border-color: #1D8ACB;
}
.team-card img{
    width: 60%;
    border-radius: 8px;
}
.team-card .card-title{
    font-size: 16px !important;
    font-weight: 400;
    color: #0f547e;
    line-height: 1;
    margin-bottom: 0 !important;
    margin-top: 16px !important;
}
.team-card .card-role{
    color: #465454;
    font-size: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;
}
.card-link{
    display: flex;
    color: #1D8ACB !important;
    font-size: 14px;
    gap: 4px;
    align-items: center;
    margin-top: 6px;
}
.card-link span{
    margin: 0 !important;
}
.card-link svg{
    height: 18px;
    width: 18px;
    transform: translate(0px, 0px);
    transition: 0.3s;
}
.card-link:hover svg{
    transform: translate(6px, 0px);
}

@media screen and (max-width:768px){
    
    .related-services-container{
    	grid-template-columns: repeat(2, 1fr);
    }
    .related-services-container .related-service-item{
    	padding: 7px;
    }
    .related-blogs-wrapper,
    .industries-container{
    	grid-template-columns: 1fr;
        gap: 0.75em;
    }

}