/* =================BREADCRUMB SECTION==================== */
.breadcrumb-section {
    padding: 30px 0;
    background: #cecdcd4d;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
}

.breadcrumb-option a {
    display: inline-block;
    color: rgb(179, 179, 179);
    margin-right: 24px;
    position: relative;
}

.breadcrumb-option a::after {
    position: absolute;
    right: -15px;
    top: 12px;
    width: 6px;
    height: 6px;
    content: "";
    background: rgb(92, 92, 92);
    border-radius: 50%;
}

.breadcrumb-option a span {
    color: rgb(179, 179, 179);
}

/* =================SERVICE SECTION==================== */
.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 50px 0;
}

.service__inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 60px;
}

.service__inner hr {
    border: 1px slolid #cecdcd4d;
    width: 100%;
}

.service__description {
    padding: 0 20px;
}

.service__title {
    font-size: 35px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.service__list {
    display: flex;
    flex-direction: column;
    justify-items: start;
    gap: 10px;
    width: 100%;
}

.service__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    max-height: 350px;

    padding: 10px;
}

.service__item--bg {
    background: #cecdcd4d;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 70%;
}

.item-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 20%;
    min-width: 150px;
}

.item-title iconify-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-light);
}

.item-title h3{
    text-align: center;
}

.item-right {
    width: 250px;
    height: 250px;
    overflow: hidden;

    position: relative;
}

.item-right img {
    display: block;
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.service__item p {
    text-align: center;
    max-width: 550px;
    max-height: 450px;
    height: 100%;
}

.service__btn {
    display: flex;
    align-self: center;

    text-decoration: underline;
    text-underline-offset: 4px;

    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

/*======================RESPONSIVE============================*/
@media (max-width: 1200px) {
    .service__title {
        font-size: 25px;
    }

    .service__item {
        max-height: 450px;
    }

    .service__item p {
        max-width: 450px;
    }
}

@media (max-width: 1000px) {
    .service .container {
        padding: 20px 0;
    }

    .service__item {
        padding: 5px;
    }

    .service__item p {
        max-width: 350px;
    }
}

@media (max-width: 800px) {
    .breadcrumb-wrapper {
        gap: 10px;
    }

    .breadcrumb-text h1 {
        font-size: 27px;
        text-align: right;
    }

    /*------------SERVICE-------------*/
    .item-title {
        min-width: 110px;
    }

    .item-title h3 {
        font-size: 16px;
    }

    .service__item p {
        max-width: 250px;
    }
}

@media (max-width: 700px) {
    .service__item p {
        max-width: 210px;
    }
}

@media (max-width: 600px) {
    .service__item {
        display: flex;
        flex-direction: column;

        max-height: 500px;
    }

    .service__item p {
        text-align: center;
        max-width: unset;
        width: 100%;
    }
}