﻿.desktop-header-bottom-right-navigation ul li a.faaliyet-alani-active::before, .desktop-header-bottom-right-navigation .custom-dropdown-link.faaliyet-alani-active::before {
    content: "";
    bottom: -10px;
    left: 0px;
    width: 100%;
    position: absolute;
    height: 2px;
    background: #28b34b;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 0;
}

.service-description {
    font-family: Montserrat;
}

.service-categories {
    background: #F5F5F7;
    padding: 36px 32px;
}

.service-categories ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
}

    .service-categories ul li ul {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        list-style: none;
    }

    .service-categories ul li .service-category-item {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
        color: #040C0C;
        text-decoration: none;
        transition: .4s;
    }

        .service-categories ul li .service-category-item:not(.active):hover {
            color: #25a445;
            transition: .4s;
        }




        .service-categories ul li .service-category-item.active {
            color: #28B34B;
        }

    .service-categories ul li ul li .service-sub-category-item {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #575C5C;
        text-decoration: none;
        position: relative;
        display: flex;
        align-items: center;
        column-gap: 8px;
        transition: .4s;
    }

        .service-categories ul li ul li .service-sub-category-item:hover {
            transform: translate(10px, 0px);
            transition: .4s;
        }

        .service-categories ul li ul li .service-sub-category-item:hover {
            color: #28b34b;
            transition: .4s;
        }
        .service-categories ul li ul li .service-sub-category-item.active {
            color: #040C0C;
        }

            .service-categories ul li ul li .service-sub-category-item.active::before {
                background: #28B34B;
            }

        .service-categories ul li ul li .service-sub-category-item::before {
            content: "";
            width: 16px;
            height: 1px;
            background: #8C8F8F;
        }


.service-image-slider-and-document {
    display: flex;
    flex-direction: column;
    row-gap: 62px;
    margin-top: -163px;
    position: relative;
    z-index: 1;
}

.service-image-slider {
    position: relative;
}

    .service-image-slider, .service-image-slider img {
        aspect-ratio: 2/0.75;
        object-fit: cover;
        width: calc(100% - 130px);
        margin: auto;
    }

.service-image-slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    top: unset !important;
    bottom: 36px !important;
    column-gap: 10px;
}

    .service-image-slider .swiper-pagination .swiper-pagination-bullet {
        margin: 0 !important;
        width: 16px;
        height: 16px;
        background: #f6f5f7;
        opacity: 1;
        border: 1px solid #98989857;
    }

        .service-image-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: #28B34B;
            border: 1px solid #28B34B;
        }

.service-document {
    background: #F5F5F7;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: space-between;
}

.service-document-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #040C0C;
}

.service-document-buttons {
    display: flex;
    align-items: center;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.service-document-inspect-button {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 16px 60px;
    background: #28B34B;
    color: #fff;
    text-decoration: none;
    transition: .4s;
    border: 1px solid #28B34B;
}

    .service-document-inspect-button:hover {
        background: #ffffff4d;
        transition: .4s;
        color: #000;
    }

        .service-document-inspect-button svg path
        {
            transition: .4s;
        }

        .service-document-inspect-button:hover svg path {
            stroke: #000;
            transition: .4s;
        }

.service-document-download-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 16px 20px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #040C0C;
    text-decoration: none;
    border: 1px solid #B1B4B4;
    transition: .4s;
}

    .service-document-download-button:hover {
        transition: .4s;
        background: #000;
        color: #fff;
        border: 1px solid #28B34B;
    }

        .service-document-download-button svg path
        {
            transition: .4s;
        }

        .service-document-download-button:hover svg path {
            stroke: #fff;
            transition: .4s;
        }

.service-category-card {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding: 40px 30px;
    background: #fff;
    transition: .4s;
}

    .service-category-card:hover {
        background: #040C0C;
        transition: .4s;
    }

        .service-category-card:hover .service-category-card-image img {
            filter: grayscale(1) brightness(2);
            transition: .4s;
        }

        .service-category-card .service-category-card-image img {
            filter: grayscale(0) brightness(1);
            transition: .4s;
        }

.service-category-card-image {
    width: max-content;
    max-width: 100%;
}

.service-category-card-text {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
}

.service-category-card-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #17012C;
    transition: .4s;
}

.service-category-card:hover .service-category-card-title {
    color: #FFFFFF;
    transition: .4s;
}

.service-category-card-description {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #504E4E;
    transition: .4s;
}

.service-category-card:hover .service-category-card-description {
    color: #FFFFFF;
    transition: .4s;
}

.service-document-and-slider {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.pattern-card {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.pattern-card-image, .pattern-card-image img {
    aspect-ratio: 2/1.35;
    object-fit: cover;
}

.pattern-card-image {
    border: 5px solid #FFFFFF;
}

.pattern-card-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #363D3D;
}

.color-chart {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 12px;
}

    .color-chart .color-box {
        width: 100%;
        aspect-ratio: 1/1;
        border: 4px solid #fff;
        box-shadow: 0px 3.92px 9.8px 0px #0000000F;
        position: relative;
    }

        .color-chart .color-box:nth-child(15n-3) .color-box-inspect,
        .color-chart .color-box:nth-child(15n-2) .color-box-inspect,
        .color-chart .color-box:nth-child(15n-1) .color-box-inspect,
        .color-chart .color-box:nth-child(15n) .color-box-inspect {
            /* Buraya istediğin stilleri yaz */
            left: unset;
            right: 45px;
        }

        .color-chart .color-box .color-box-inspect {
            position: absolute;
            bottom: 44px;
            width: 170px;
            height: 170px;
            left: 44px;
            box-shadow: 0px 9.8px 24.5px 0px #0000000F;
            border: 4px solid #fff;
            display: flex;
            flex-direction: column;
            justify-content: end;
            padding: 12px;
            visibility: hidden;
            opacity: 0;
            transition: .4s;
            z-index: 1;
        }

        .color-chart .color-box:hover .color-box-inspect {
            transition: .4s;
            opacity: 1;
            visibility: visible;
        }

        .color-chart .color-box .color-box-inspect .color-title {
            font-family: 'Montserrat';
            font-weight: 600;
            font-size: 14px;
            line-height: 22px;
            text-transform: capitalize;
            color: #FFFFFF;
        }

        .color-chart .color-box .color-box-inspect .color-code {
            font-family: 'Montserrat';
            font-weight: 600;
            font-size: 13px;
            line-height: 21px;
            text-transform: uppercase;
            color: #ffffffde;
        }

        .color-chart .color-box .color-box-inspect .copy-color-code {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            background: none;
            outline: none;
            box-shadow: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            cursor: pointer;
        }

.custom-swiper-buttons {
    position: absolute;
    top: 50%;
    left: -65px;
    width: calc(100% + 130px);
    transform: translate(0, -50%);
    z-index: 1;
}

    .custom-swiper-buttons .swiper-button-prev, .custom-swiper-buttons .swiper-button-next {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #28b34b;
        border-radius: 50px;
        user-select: none;
        transition: .4s;
        border: 1px solid #28b34b;
    }

        .custom-swiper-buttons .swiper-button-prev:hover, .custom-swiper-buttons .swiper-button-next:hover {
            background: #fff;
            transition: .4s;
        }


        .custom-swiper-buttons .swiper-button-next:after {
            content: "\f054" !important;
            color: #fff;
            font-family: 'Font Awesome 6 Free';
            font-size: 16px;
            line-height: 24px;
            font-weight: 900;
            transition: .4s;
        }

        .custom-swiper-buttons .swiper-button-next:hover:after {
            color: #28b34b;
            transition: .4s;
        }

    .custom-swiper-buttons .swiper-button-prev:after {
        content: "\f053" !important;
        color: #fff;
        font-family: 'Font Awesome 6 Free';
        font-size: 16px;
        line-height: 24px;
        font-weight: 900;
        transition: .4s;
    }

        .custom-swiper-buttons .swiper-button-prev:hover:after {
            color: #28b34b;
            transition: .4s;
        }

        @media only screen and (max-width: 1540px)
        {
            .color-chart {
                grid-template-columns: repeat(12, 1fr);
            }

                .color-chart .color-box:nth-child(15n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(15n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(15n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(15n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: 45px;
                    right: unset;
                }

                .color-chart .color-box:nth-child(12n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(12n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(12n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(12n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: unset;
                    right: 45px;
                }

        }

        @media only screen and (max-width: 1199px)
        {

            .color-chart {
                grid-template-columns: repeat(10, 1fr);
            }

            .color-chart .color-box:nth-child(12n-3) .color-box-inspect,
            .color-chart .color-box:nth-child(12n-2) .color-box-inspect,
            .color-chart .color-box:nth-child(12n-1) .color-box-inspect,
            .color-chart .color-box:nth-child(12n) .color-box-inspect {
                /* Buraya istediğin stilleri yaz */
                left: 45px;
                right: unset;
            }

                .color-chart .color-box:nth-child(10n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(10n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(10n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(10n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: unset;
                    right: 45px;
                }
        }

        @media only screen and (max-width: 991px)
        {
            .color-chart {
                grid-template-columns: repeat(8, 1fr);
            }

                .color-chart .color-box:nth-child(10n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(10n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(10n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(10n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: 45px;
                    right: unset;
                }

            .color-chart .color-box:nth-child(8n-3) .color-box-inspect,
            .color-chart .color-box:nth-child(8n-2) .color-box-inspect,
            .color-chart .color-box:nth-child(8n-1) .color-box-inspect,
            .color-chart .color-box:nth-child(8n) .color-box-inspect {
                /* Buraya istediğin stilleri yaz */
                left: unset;
                right: 45px;
            }

            .service-image-slider, .service-image-slider img {
                width: 100%;
            }

            .custom-swiper-buttons {
                left: 0;
                width: 100%;
            }

        }

        @media only screen and (max-width: 767px)
        {
            .service-document {
                flex-direction: column;
                align-items: start;
                row-gap: 24px;
            }

            .categories-carousel .owl-stage
            {
                padding-left: 0!important;
            }


            .color-chart {
                grid-template-columns: repeat(6, 1fr);
            }

                .color-chart .color-box:nth-child(8n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(8n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(8n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(8n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: 45px;
                    right: unset;
                }

                .color-chart .color-box:nth-child(6n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(6n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(6n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: unset;
                    right: 45px;
                }


            .service-document-buttons {
                flex-wrap: nowrap;
                width: 100%;
            }

            .service-document-title {
                width: 100%;
            }

            .service-document-inspect-button {
                width: 100%;
                justify-content: center;
                padding: 12px 4px;
            }

            .service-document-download-button {
                width: 100%;
                justify-content: center;
                padding: 12px 4px;
            }

        }

        @media only screen and (max-width: 575px)
        {
            .service-description {
                font-family: Montserrat;
                font-size: 15px;
                line-height: 23px;
            }

            .service-document-buttons {
                flex-direction: column;
            }
        }

        @media only screen and (max-width: 475px)
        {
            .service-image-slider, .service-image-slider img {
                aspect-ratio: 2/1.25;
                object-fit: cover;
            }

            .color-chart {
                grid-template-columns: repeat(4, 1fr);
            }

                .color-chart .color-box:nth-child(6n-3) .color-box-inspect,
                .color-chart .color-box:nth-child(6n-2) .color-box-inspect,
                .color-chart .color-box:nth-child(6n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(6n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: 45px;
                    right: unset;
                }

                .color-chart .color-box:nth-child(4n-1) .color-box-inspect,
                .color-chart .color-box:nth-child(4n) .color-box-inspect {
                    /* Buraya istediğin stilleri yaz */
                    left: unset;
                    right: 45px;
                }

                .color-chart .color-box .color-box-inspect {
                    width: 120px;
                    height: 120px;
                }


            .service-document {
                padding: 28px 24px;
            }

        }