.navbar-brand {
    width: 360px;
    max-width: 100%;
}
.top-header {
    background: var(--accent-color);
    padding: 5px 0;
}
.header-cont {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}
.header-cont li {
    color: var(--white-color);
    font-size: 14px;
}
.header-cont li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}
.social-icon {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: end;
}
.social-icon li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--white-color);
    border-radius: 50%;
    font-size: 14px;
    color: var(--primary-color);
}
.service-entry p strong {
    color: var(--primary-color);
}

.service-slider .swiper-button-next,
.service-slider .swiper-button-prev {
    /* position: relative; */
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 6px;
    transition: all 0.4s ease-in-out;
    font-size: 20px;
    color: #fff;
}
.service-slider .swiper-button-next::after,
.service-slider .swiper-button-prev::after {
    font-size: 20px;
}
.photo-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
}
@media only screen and (max-width: 768px) {
    .header-cont {
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .social-icon {
        justify-content: center;
        padding: 0;
    }
    .navbar-brand {
        width: 270px;
    }
    .service-slider .swiper-button-next,
    .service-slider .swiper-button-prev {
        top: 40%;
    }
}
