/** Single Service **/
.intro-single-service {
    height: clamp(580px, 43vw, 650px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: end;
    padding-bottom: clamp(24px, 3vw, 40px);
    color: white;
}
.intro-single-service:before {
    content: "";
    background: linear-gradient(-45deg, #0C3471, rgb(12 52 113 / 80%), rgb(12 52 113 / 50%), transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.intro-single-service .container {
    z-index: 1;
    position: relative;
}
.thumbnail-service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.thumbnail-service-img img{
    height: 100%;
    object-fit: cover;
}
.intro-service {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
}
.img-box {
    width: 230px;
    height: 230px;
    flex: 0 0 230px;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-single-service .editor-content {
    color: var(--gray);
    margin-top: 1rem;
}
/** gallery **/
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item .for-lightgallery {
    width: 100%;
    display: flex;
    height: clamp(162px, 15vw, 232px);
	background: var(--color3);
}
.gallery-item .for-lightgallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.gallery-item .for-lightgallery:hover img {
	opacity: .5;
}
@media only screen and (max-width: 1200px) {
    .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
/** Archive Service **/
.services-list {
    row-gap: clamp(24px, 3vw, 40px);
}
.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.4s;
}
.service-item .service-image {
    width: 100%;
}
.service-item a {
    display: flex;
}
.service-item img {
    width: 100%;
}
.service-item .meta {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-inline: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(8px, 2vw, 12px);
    background: var(--gray);
    padding-block: 12px 20px;
    transition: 0.4s;
}
.service-item .meta .service-title a {
    font-size: clamp(16px, 2vw, 18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
	font-variation-settings: "wght" 500;
}
.service-item .meta .see-more {
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color3);
}
.service-item .meta .see-more i {
    font-size: 10px;
}
.service-item .meta:before {
    content: "";
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: white;
    z-index: 2;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.service-item .meta:after {
    content: "";
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    position: absolute;
    bottom: -1px;
    left: -1px;
    background: white;
    z-index: 2;
    clip-path: polygon(100% 100%, 0 0, 0 100%);
}
.service-item:hover .meta {
    background: var(--color1);
    transition: 0.4s;
}
.service-item:hover .meta .see-more {
    color: white;
}