
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('app-base.css');
@import url('app-variables.css');
@import url('app-media.css');


body {
}


li.breadcrumb-item {
    font-size: 16px;
}

header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    /* -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
    transition: .3s transform ease-out;
}

    header .header-container {
        display: flex;
        height: 120px;
        align-items: center;
        justify-content: space-between;
    }

        header .header-container .logo {
            height: 80px;
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            header .header-container .logo img {
                height: 100px;
                width: auto;
            }

        header .header-container .menu-container {
            display: flex;
            width: 70%;
            justify-content: flex-end;
            gap: 30px;
            align-items: center;
        }

            header .header-container .menu-container .menu {
                /* margin-right: auto; */
            }

                header .header-container .menu-container .menu ul {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: end;
                    -ms-flex-pack: end;
                    justify-content: flex-end;
                    list-style-type: none;
                    padding: 0;
                    margin: 0;
                    margin-right: 50px;
                    height: 120px;
                }

                    header .header-container .menu-container .menu ul li a.menu-link {
                        display: block;
                        font-size: 19px;
                        line-height: 24px;
                        padding: 0px 25px;
                        -webkit-transition: all 0.45s ease-in-out;
                        transition: all 0.45s ease-in-out;
                        font-family: "Nunito Sans", sans-serif;
                        font-weight: 600;
                        color: #222;
                        height: 120px;
                        align-content: center;
                        transition: .3s;
                        text-align: center;
                    }

                    header .header-container .menu-container .menu ul li.active a.menu-link {
                        background: #f3f3f3;
                        /* color:#FFF; */
                        transition: .3s;
                    }


                    header .header-container .menu-container .menu ul li .menu-araclar {
                        position: absolute;
                        top: 120px;
                        left: 0;
                        width: 90%;
                        display: none;
                        transition: .3s;
                    }

                    header .header-container .menu-container .menu ul li.active .menu-araclar {
                        display: inline-block;
                        -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                        transition: .3s;
                        margin: 0 auto;
                        width: 100%;
                    }

                        header .header-container .menu-container .menu ul li.active .menu-araclar .item-container {
                            display: flex;
                            /* gap: 70px; */
                            padding: 40px 5%;
                            background: #f3f3f3;
                            transition: .3s;
                            flex-wrap: wrap;
                            justify-content: center;
                        }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container.column-6 > div {
                                width: calc(100% / 4);
                                padding: 20px 40px;
                                display: flex;
                                justify-content: center;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper:hover img {
                                transform: scale(1.2);
                                transition: .2s;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper a {
                                background-color: transparent;
                                display: flex;
                                flex-direction: column;
                                align-content: center;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .image {
                                aspect-ratio: 4/3;
                                text-align: center;
                                height: 128px;
                            }

                                header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .image img {
                                    height: 100%;
                                    aspect-ratio: 4/3;
                                    object-fit: contain;
                                    transition: .2s;
                                }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .text {
                                font-weight: 500;
                                text-align: center;
                                padding-top: 30px;
                            }


                    header .header-container .menu-container .menu ul li .menu-full {
                        position: absolute;
                        top: 120px;
                        left: 0;
                        width: 90%;
                        display: none;
                        transition: .3s;
                    }

                    header .header-container .menu-container .menu ul li.active .menu-full {
                        display: inline-block;
                        -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                        transition: .3s;
                        margin: 0 auto;
                        width: 100%;
                    }

                        header .header-container .menu-container .menu ul li.active .menu-full .item-container {
                            display: flex;
                            /* gap: 70px; */
                            padding: 20px 5%;
                            background: var(--primary);
                            transition: .3s;
                            flex-wrap: wrap;
                            gap: 30px;
                            justify-content: center;
                        }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container > div {
                                width: calc((100% - 150px) / 4);
                                padding: 0px 40px 0px 0;
                                border-right: 1px solid #fefefe;
                          
                            }
   header .header-container .menu-container .menu ul li.active .menu-full .item-container > div:nth-child(4n) {
                                width: calc((100% - 150px) / 4);
                                padding: 0px 40px 0px 0;
                                border-right: none;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container.column-3 > div {
                                width: calc((100% - 100px) / 3);
                                padding: 20px 40px 20px 0;
                                border-right: 1px solid #fefefe;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container > div:last-child {
                                border-right: none;
                            }


                            header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a {
                                background-color: #14141400;
                                text-align: center;
                                padding: 30px 0;
                                display: block;
                                transition:0.5s ease;
                            }
                            header .header-container .menu-container .menu ul li.active .menu-full.products .item-container .item-wrapper a {
                                
                                padding: 10px 0;
                            }
header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a:hover {
                                background-color: #1414141f;
    transition:0.5s ease;
                               
                            }

                                header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a i.arrow {
                                    /* transform: rotate(358deg); */
                                    transition: .3s;
                                    font-size: 28px;
                                }


                            header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper .title {
                                font-size: 18px;
                                font-weight: 700;
                                color: #fff;
                                /* display: flex; */
                                justify-content: space-between;
                                align-items: top;
                                /*text-transform: uppercase;*/
                                text-align: center;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a:hover {
                            }

                                header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a:hover i.arrow {
                                    transform: rotate(45deg);
                                    transition: .3s;
                                }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper .text {
                                font-weight: 300;
                                /* text-align: center; */
                                padding-top: 10px;
                                color: #eee;
                            }


            header .header-container .menu-container .link-button > a {
                width: 130px;
                height: 40px;
                background: var(--primary);
                color: #fff;
                border-radius: 8px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-transition: all 0.45s ease-in-out;
                transition: all 0.45s ease-in-out;
                font-size: 16px;
                font-weight: 600;
            }

                header .header-container .menu-container .link-button > a:hover {
                    background: var(--primary-hover);
                    -webkit-transition: all 0.45s ease-in-out;
                    transition: all 0.45s ease-in-out;
                }

            header .header-container .menu-container .language {
                position: relative;
            }

                header .header-container .menu-container .language > a {
                    width: 95px;
                    height: 40px;
                    background-color: #fff;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    color: #707070;
                    font-size: 16px;
                }

                    header .header-container .menu-container .language > a > span {
                        margin-right: 8px;
                    }

                        header .header-container .menu-container .language > a > span img {
                            width: 21px;
                        }

                header .header-container .menu-container .language .language-content {
                    position: absolute;
                    left: 0;
                    top: 100%;
                    width: 100%;
                    z-index: 10;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transform: translateY(15px);
                    transform: translateY(15px);
                    -webkit-transition: all 0.45s ease-in-out;
                    transition: all 0.45s ease-in-out;
                }

                header .header-container .menu-container .language:hover .language-content {
                    opacity: 1;
                    visibility: visible;
                    -webkit-transform: translateY(0);
                    transform: translateY(0);
                }

                header .header-container .menu-container .language .language-content ul {
                    list-style-type: none;
                    padding: 0;
                    margin: 0;
                    background: #fff;
                    padding: 0;
                    border-radius: 0;
                    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                }

                    header .header-container .menu-container .language .language-content ul li a {
                        padding: 8px 8px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        color: #707070;
                        font-size: 16px;
                    }

                    header .header-container .menu-container .language .language-content ul li:nth-child(odd) a {
                        background-color: #F5F5F5;
                    }

                    header .header-container .menu-container .language .language-content ul li img {
                        width: 24px;
                    }

                    header .header-container .menu-container .language .language-content ul li a > span {
                        padding-left: 9px;
                    }




.hero-slider {
    width: 100%;
    /* height: calc(100vh - 300px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    padding: 0 5%;
}



    .hero-slider .swiper-slide {
        overflow: hidden;
        color: #fff;
    }

    .hero-slider .swiper-container {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .hero-slider .slide-inner {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

        .hero-slider .slide-inner img {
            position: absolute;
            width: 100%;
            height: auto;
        }

        .hero-slider .slide-inner video {
            position: absolute;
            width: 101%;
            height: auto;
        }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        background: transparent;
        width: 55px;
        height: 55px;
        line-height: 53px;
        margin-top: -30px;
        text-align: center;
        border: 2px solid #d4d3d3;
        border-radius: 55px;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
    }

    .hero-slider:hover .swiper-button-prev,
    .hero-slider:hover .swiper-button-next {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

    .hero-slider .swiper-button-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

    .hero-slider .swiper-button-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}


@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;
    }
}
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    aspect-ratio: 2.86 /1;
    transition: all .4s ease;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
}


    .hero-style .slide-title,
    .hero-style .slide-text,
    .hero-style .slide-btns {
        max-width: 100%;
    }

        .hero-style .slide-title h2 {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.5;
            color: #ffffff;
            /* margin: 0 0 50px; */
            text-transform: capitalize;
            transition: all .4s ease;
            text-shadow: 0px 1px 11px #000000;
            font-family: 'Oswald',sans-serif;
        }


        .hero-style .slide-text p {
            opacity: 0.8;
            font-family: Rajdhani;
            font-size: 32px;
            font-weight: 500;
            line-height: 1.25;
            letter-spacing: normal;
            color: #ffffff;
            margin: 0 0 40px;
            transition: all .4s ease;
        }

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}

.page-home section.about {
    padding: 100px 0;
}

    .page-home section.about .wrapper {
        display: flex;
        gap: 100px;
        align-items: center;
    }

        .page-home section.about .wrapper .item {
            width: 50%;
        }

            .page-home section.about .wrapper .item figure {
                width: 100%;
                height: 100%;
            }

                .page-home section.about .wrapper .item figure img {
                    width: 100%;
                    height: 100%;
                }

            .page-home section.about .wrapper .item h2 {
                font-weight: 700;
                padding-bottom: 20px;
            }

            .page-home section.about .wrapper .item p {
                padding-bottom: 20px;
            }

.page-home section.products h2.title {
    padding-bottom: 50px;
    text-align:center;
    font-weight: 700;
}
.page-home section.products  .item {
    width: 100%;
    border: 1px solid #e2e2e2;
    padding: 20px;
    border-radius: 7px;
    display: inline-block;
    height: 600px;
}

    .page-home section.products  .item:hover {
        /* box-shadow: 0px 5px 35px 0px rgb(0 0 0 / 15%); */
        border-color: #ffb9b9 !important;
    }


    .page-home section.products  .item figure.product-image {
        width: 90%;
        aspect-ratio: 1;
        overflow: hidden;
    }

        .page-home section.products  .item figure.product-image img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }


    .page-home section.products  .item h2 {
        font-size: 26px;
        font-weight: 500;
        line-height: 1.1;
    }

    .page-home section.products  .item h3 {
        color: var(--primary);
        font-size: 21px;
        font-weight: 400;
        padding-bottom: 20px;
    }

    .page-home section.products  .item .text {
        font-size: 16px;
        font-weight: 300;
    }

        .page-home section.products .wrapper .item .text strong {
            font-weight: 700;
        }


.page-home section.parallax {
    background-image: url('/demo/ercelik-parallax-1.webp');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 100px;
}

    .page-home section.parallax .parallax-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .page-home section.parallax .parallax-overlay h2 {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 900;
            font-family: 'montserrat';
        }

        .page-home section.parallax .parallax-overlay p {
            font-size: 40px;
            font-weight: 900;
            font-family: 'montserrat';
            line-height: 1.5;
        }


.page-home section.news {
    padding: 100px 0;
}

.page-home section.news h2 {
    text-align: center;
    font-weight: 700;
}
.page-home section.news .news-slider {
    padding-top: 50px;
}

    .page-home section.news .news-slider a:hover img {
        transform: scale(1.1);
        transition: .3s;
    }

    .page-home section.news .news-slider .image {
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
    }

        .page-home section.news .news-slider .image img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            transition: .3s;
        }

    .page-home section.news .news-slider .text {
        font-size: 18px;
        font-weight: 700;
        padding: 20px;
    }








.page-product-list {
    padding: 50px 0 100px;
}

    .page-product-list .page-container {
        width: 100%;
        padding: 0 5%;
    }

    .page-product-list section.page-header h1 {
        padding-bottom: 30px;
    }

    .page-product-list .page-content .wrapper {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

        .page-product-list .page-content .wrapper .item {
            width: calc((100% - 150px) / 4);
            border: 1px solid #e2e2e2;
            padding: 20px;
            border-radius: 7px
        }

            .page-product-list .page-content .wrapper .item:hover {
                /* box-shadow: 0px 5px 35px 0px rgb(0 0 0 / 15%); */
                border-color: #ffb9b9 !important;
            }


            .page-product-list .page-content .wrapper .item figure.product-image {
                width: 100%;
                aspect-ratio: 1;
                overflow: hidden;
            }

                .page-product-list .page-content .wrapper .item figure.product-image img {
                    width: 100%;
                    aspect-ratio: 1;
                    object-fit: cover;
                }


            .page-product-list .page-content .wrapper .item h2 {
                font-size: 26px;
                font-weight: 500;
                line-height: 1.1;
            }

            .page-product-list .page-content .wrapper .item h3 {
                color: var(--primary);
                font-size: 21px;
                font-weight: 400;
                padding-bottom: 20px;
            }

            .page-product-list .page-content .wrapper .item .text {
                font-size: 16px;
                font-weight: 300;
            }

                .page-product-list .page-content .wrapper .item .text strong {
                    font-weight: 700;
                }


.page-product-detail {
    padding: 50px 0 100px;
}

    .page-product-detail .page-container {
        width: 100%;
        padding: 0 5%;
    }

    .page-product-detail section.product-info .info-container {
        display: flex;
        gap: 100px;
    }

        .page-product-detail section.product-info .info-container .image {
            width: calc(50% - 50px);
            text-align: center;
        }

            .page-product-detail section.product-info .info-container .image .wrapper {
                position: -webkit-sticky;
                position: sticky;
                top: 200px;
            }

                .page-product-detail section.product-info .info-container .image .wrapper .gallery-container {
                    position: relative;
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    overflow: hidden;
                    flex-direction: column;
                }

                    .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria {
                        width: 100%;
                    }




                        .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria div, .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria-thumbs div {
                            outline: 0;
                        }

                        .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria img {
                            width: 100%;
                            aspect-ratio: 4/3;
                            object-fit: contain;
                        }

                    .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria-thumbs {
                        margin-top: 20px;
                    }

                        .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria-thumbs img {
                            width: 94%;
                            aspect-ratio: 4/3;
                            object-fit: cover;
                            place-self: center;
                        }

        .page-product-detail section.product-info .info-container .description {
            width: calc(50% - 50px);
        }

            .page-product-detail section.product-info .info-container .description .title h1 {
                font-size: 28px;
                font-weight: 900;
                padding-bottom: 10px;
                line-height: 1;
                font-family: "Nunito Sans", sans-serif;
            }


            .page-product-detail section.product-info .info-container .description .subtitle h2 {
                font-size: 22px;
                font-weight: 500;
                padding-bottom: 20px;
                color: var(--primary);
            }

            .page-product-detail section.product-info .info-container .description .shortdesc {
                line-height: 2;
                font-size: 1.2rem;
            }

            .page-product-detail section.product-info .info-container .description .documents {
                padding-top: 50px;
                display: flex;
                gap: 20px;
            }

            .page-product-detail section.product-info .info-container .description .certificates {
                padding-top: 30px;
            }

                .page-product-detail section.product-info .info-container .description .certificates h2 {
                    font-size: 26px;
                    padding-bottom: 20px;
                    font-weight: 700;
                    font-family: "Nunito Sans", sans-serif;
                }



                .page-product-detail section.product-info .info-container .description .certificates .certificates-list {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                }

                    .page-product-detail section.product-info .info-container .description .certificates .certificates-list a {
                        width: calc((100% - 20px) / 2);
                    }

                        .page-product-detail section.product-info .info-container .description .certificates .certificates-list a .item-wrapper {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            /* gap: 30px; */
                            padding: 20px;
                            border: 1px solid #d9d9d9;
                            /* margin-bottom: 20px; */
                            cursor: pointer;
                            transition: .2s;
                        }

                            .page-product-detail section.product-info .info-container .description .certificates .certificates-list a .item-wrapper:hover {
                                border: 1px solid var(--primary);
                                border-left: 6px solid var(--primary);
                                transition: .2s;
                            }

                            .page-product-detail section.product-info .info-container .description .certificates .certificates-list a .item-wrapper .item .title {
                                font-weight: 700;
                                font-size: 18px
                            }

                            .page-product-detail section.product-info .info-container .description .certificates .certificates-list a .item-wrapper .icon i {
                                color: var(--light-blue);
                                font-size: 28px
                            }


    .page-product-detail section.technical-info {
        margin: 100px 0;
        padding: 70px 0;
        background: #f8f8f8;
    }

        .page-product-detail section.technical-info h2 {
            padding-bottom: 50px;
            text-align: center;
            font-family: "Nunito Sans", sans-serif;
            font-weight: 900;
            font-size: 32px;
        }

        .page-product-detail section.technical-info .wrapper {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

            .page-product-detail section.technical-info .wrapper .item {
                width: calc((100% - 120px) /4);
            }

                .page-product-detail section.technical-info .wrapper .item .title {
                    font-weight: 700;
                    font-size: 18px;
                }

    .page-product-detail section.product-materials h2 {
        padding-bottom: 50px;
        text-align: center;
        font-family: "Nunito Sans", sans-serif;
        font-weight: 900;
        font-size: 32px;
    }

    .page-product-detail section.product-materials .wrapper {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

        .page-product-detail section.product-materials .wrapper .item {
            width: calc((100% - 120px) /4);
        }

            .page-product-detail section.product-materials .wrapper .item .title {
                font-weight: 700;
                font-size: 18px;
            }

    .page-product-detail section.video {
        padding: 150px 0;
    }

        .page-product-detail section.video video {
            width: 100%;
            height: auto;
        }


    .page-product-detail section.product-advantages h2 {
        padding-bottom: 50px;
        text-align: center;
        font-family: "Nunito Sans", sans-serif;
        font-weight: 900;
        font-size: 32px;
    }

    .page-product-detail section.product-advantages .feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
        margin: 40px auto;
        padding: 0 20px;
        font-family: "Segoe UI", Arial, sans-serif;
    }


    .page-product-detail section.product-advantages .feature-item {
        background: #f8f8f8;
        border: 1px solid #f9f9f9;
        border-radius: 7px;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .page-product-detail section.product-advantages .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }


        .page-product-detail section.product-advantages .feature-item strong {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            font-size: 18px;
        }


        .page-product-detail section.product-advantages .feature-item p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }


    .page-product-detail section.quote {
        padding: 50px 0;
    }

        .page-product-detail section.quote a {
            width: 100%;
            height: 250px;
            background-image: url('/images/teklif.png');
            display: block;
        }

            .page-product-detail section.quote a .container {
                height: 100%;
            }

                .page-product-detail section.quote a .container .wrapper {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    height: 100%;
                }

                    .page-product-detail section.quote a .container .wrapper .text {
                        color: #fff;
                        font-size: 31px;
                        width: 70%;
                    }



            .page-product-detail section.quote a .link-button {
                background: #fff;
                color: #000;
                padding: 8px 30px;
                border-radius: 7px;
                font-size: 22px;
                font-weight: 500;
                text-align: center;
                width: 200px;
                transition: all 0.5s ease;
            }

            .page-product-detail section.quote a:hover .link-button {
                background: #222;
                color: #fff;
            }

    .page-product-detail section.faq {
        padding: 50px 0;
    }

        .page-product-detail section.faq h2 {
            padding-bottom: 50px;
            text-align: center;
            font-family: "Nunito Sans", sans-serif;
            font-weight: 900;
            font-size: 32px;
        }

        .page-product-detail section.faq .accordion .accordion-item {
            border: none;
            border-bottom: 1px solid #e5e5e5;
        }

            .page-product-detail section.faq .accordion .accordion-item button[aria-expanded='true'] {
                border-bottom: 1px solid var(--primary);
            }

        .page-product-detail section.faq .accordion button {
            position: relative;
            display: block;
            text-align: left;
            width: 100%;
            padding: 1em 0;
            font-size: 1.2rem;
            font-weight: 500;
            border: none;
            background: none;
            outline: none;
        }

            .page-product-detail section.faq .accordion button:hover, .page-product-detail section.faq .accordion button:focus {
                cursor: pointer;
                color: var(--primary);
            }

                .page-product-detail section.faq .accordion button:hover::after, .page-product-detail section.faq .accordion button:focus::after {
                    cursor: pointer;
                    color: var(--primary);
                    border: 1px solid var(--primary);
                }

            .page-product-detail section.faq .accordion button .accordion-title {
                padding: 1em 1.5em 1em 0;
            }

            .page-product-detail section.faq .accordion button .icon {
                display: inline-block;
                position: absolute;
                top: 18px;
                right: 0;
                width: 22px;
                height: 22px;
                border: 1px solid;
                border-radius: 22px;
            }

                .page-product-detail section.faq .accordion button .icon::before {
                    display: block;
                    position: absolute;
                    content: '';
                    top: 9px;
                    left: 5px;
                    width: 10px;
                    height: 2px;
                    background: currentColor;
                }

                .page-product-detail section.faq .accordion button .icon::after {
                    display: block;
                    position: absolute;
                    content: '';
                    top: 5px;
                    left: 9px;
                    width: 2px;
                    height: 10px;
                    background: currentColor;
                }

            .page-product-detail section.faq .accordion button[aria-expanded='true'] {
                color: var(--primary);
            }

                .page-product-detail section.faq .accordion button[aria-expanded='true'] .icon::after {
                    width: 0;
                }

                .page-product-detail section.faq .accordion button[aria-expanded='true'] + .accordion-content {
                    opacity: 1;
                    max-height: 9em;
                    transition: all 200ms linear;
                    will-change: opacity, max-height;
                }

        .page-product-detail section.faq .accordion .accordion-content {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 200ms linear, max-height 200ms linear;
            will-change: opacity, max-height;
        }

            .page-product-detail section.faq .accordion .accordion-content p {
                font-size: 1.1rem;
                margin: 2em 0;
            }

.page-corporate {
    padding: 50px 0 100px;
}
.page-corporate section.page-header {
    padding-bottom: 30px;
}
.page-corporate .page-container {
    width: 100%;
    padding: 0 5%;
}

.page-corporate h1 {
    padding: 30px 0;
}
.page-corporate figure.page-banner {
    width:100%;
}
    .page-corporate figure.page-banner img {
        width: 100%;
        height: 100%;
    }
.page-corporate .page-content ul {
    padding-left: 30px;
}

    .page-corporate .page-content ul li {
        list-style-type: disc;
    }


.page-references {
    padding: 50px 0 100px;
}

    .page-references section.page-header {
        padding-bottom: 30px;
    }

    .page-references .page-container {
        width: 100%;
        padding: 0 5%;
    }


        .page-references .page-content .list .item {
            display: flex;
            gap: 50px;
            border: 1px solid #e2e2e2;
            border-radius: 7px;
            padding: 20px;
            margin-bottom:30px;
        }

            .page-references .page-content .list .item:nth-child(2n) {
                flex-direction: row-reverse;
            }
            .page-references .page-content .list .item .image {
                width: 50%;
                aspect-ratio: 2/1;
            }

                .page-references .page-content .list .item .image img {
                    width:100%;
                    height:100%;
                    object-fit:cover;
                }

            .page-references .page-content .list .item .text {
                width: 50%;
                font-size: 18px;
            }


.page-hr {
    padding: 50px 0 100px;
}

    .page-hr section.page-header {
        padding-bottom: 30px;
    }

    .page-hr .page-container {
        width: 100%;
        padding: 0 5%;
    }

    .page-hr h1 {
        padding: 30px 0;
    }

    .page-hr .page-content h2 {
       
        padding-bottom: 50px;
    }

    .page-hr .hr-wrapper ul.hr-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

        .page-hr .hr-wrapper ul.hr-list li {
            border: 1px solid #e2e2e2;
            padding: 20px;
            width: calc(33.33% - 20px);
            display: flex;
            flex-direction: column;
            transition: .5s;
            border-radius: 20px;
            cursor: pointer;
        }

            .page-hr .hr-wrapper ul.hr-list li .text {
                flex: 1;
                font-size: 18px;
                line-height: 2;
            }

            .page-hr .hr-wrapper ul.hr-list li:hover {
                /* box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 25%); */
                border: 1px solid var(--primary);
            }

            .page-hr .hr-wrapper ul.hr-list li:nth-child(3n+3) {
                margin-right: 0;
            }

            .page-hr .hr-wrapper ul.hr-list li .date {
                margin-top: 10px;
                text-align: right;
            }

            .page-hr .hr-wrapper ul.hr-list li .title {
                font-size: 22px;
                font-weight: 600;
                margin: 10px 0;
                /* Color: var(--dark-blue); */
                font-weight: 500;
            }

            .page-hr .hr-wrapper ul.hr-list li .image {
                width: 100%;
                height: 300px;
            }

                .page-hr .hr-wrapper ul.hr-list li .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .page-hr .hr-wrapper ul.hr-list li .btn-detay {
                background: var(--secondary);
                color: #fff;
                padding: 7px 20px;
                display: inline-block;
                text-align: center;
                border-radius: 20px;
                cursor: pointer;
                width: inherit;
                margin: 30px auto 0;
                font-size: 18px;
                line-height: 1.6;
            }

        .page-career .hr-wrapper ul.hr-list li:hover .btn-detay {
            background: var(--primary);
            color: #fff;
        }

.page-contact {
    padding: 50px 0 100px;
}

    .page-contact section.page-header {
        padding-bottom: 30px;
    }

    .page-contact .page-container {
        width: 100%;
        padding: 0 5%;
    }

.page-contact section.contact-info {
    padding: 70px 5% 70px;
    display: flex;
    gap: 50px;
    background: #f8f8f8;
}

    .page-contact section.contact-info .map {
        height: 100%;
        width: 100%;
    }

    .page-contact section.contact-info .contact-wrapper {
        background: #fff;
        padding: 50px;
        width: 50%;
    }

    .page-contact section.contact-info .text-wrapper {
        padding: 30px 0;
        font-size: 18px;
    }

        .page-contact section.contact-info .text-wrapper .text {
            padding: 20px 0;
        }

            .page-contact section.contact-info .text-wrapper .text.phone-wrapper {
                display: flex;
                gap: 100px;
            }

        .page-contact section.contact-info .text-wrapper .title {
            font-weight: 700;
        }

    .page-contact section.contact-info h2 {
        padding-bottom: 20px;
        font-size: 32px;
        font-weight: 500;
    }


.page-contact section.form {
    padding: 50px 5% 100px;
    /* background: #f3f3f3; */
    margin: 0 auto;
}

    .page-contact section.form .wrapper {
        width: 70%;
        background: #fff;
        margin: 0 auto;
        padding: 50px;
    }

        .page-contact section.form .wrapper .title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            padding-bottom: 40px;
        }

        .page-contact section.form .wrapper .f-row {
            display: flex;
            gap: 50px;
            justify-content: space-between;
        }

            .page-contact section.form .wrapper .f-row div {
                width: 50%;
            }

        .page-contact section.form .wrapper div input, div textarea {
            width: 100%;
            background-color: #f8f8f8;
            padding: 15px 20px;
            border: 1px solid #f3f3f3;
        }

        .page-contact section.form .wrapper span {
            font-size: 18px;
        }

        .page-contact section.form .wrapper input, .page-contact section.form .wrapper textarea {
            margin-top: 10px;
            font-size: 14px;
        }


        .page-contact section.form .wrapper div .but {
            background-color: var(--secondary) !important;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
        }

            .page-contact section.form .wrapper div .but:hover {
                background-color: var(--primary) !important;
                transition: .3s;
            }


footer {
    background: #222;
    /* margin: 0 50px; */
}

    footer .wrapper {
        padding: 50px;
        color: #fff;
        display: flex;
        justify-content: space-around;
    }

        footer .wrapper h2 {
            font-size: 24px;
            font-weight: 700;
            font-family: "Nunito Sans", sans-serif;
            padding-bottom: 10px;
        }

footer .wrapper .item.products ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 s�tun */
    gap: 8px 100px; /* sat�r ve s�tun aral��� */
    list-style: none;
    padding: 0;
    margin: 0;
}

    

        footer .wrapper ul li a {
            font-size: 20px;
            font-weight: 300;
            font-family: "Nunito Sans", sans-serif;
        }

    footer .social-wrapper {
        padding: 50px 0 100px;
    }

        footer .social-wrapper h2 {
            text-align: center;
            padding-bottom: 20px;
            color: #fff;
            font-weight: 300;
            font-size: 28px;
        }

        footer .social-wrapper ul {
            display: flex;
            justify-content: center;
        }

            footer .social-wrapper ul li {
                padding: 0 20px;
            }


                footer .social-wrapper ul li a {
                    transition: .2s;
                    width: 50px;
                    height: 50px;
                    background: #ffffff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    text-decoration: none;
                    font-size: 22px;
                    color: var(--black);
                    padding: 20px;
                }

                    footer .social-wrapper ul li a:hover {
                        transition: .2s;
                        background: var(--primary);
                        color: #fff;
                    }

                footer .social-wrapper ul li i {
                    font-size: 24px
                }

    footer .footer-sub {
        background: #ffffff;
        display: flex;
        padding: 20px 50px;
        justify-content: space-between;
        align-items: center;
    }

        footer .footer-sub .lizbon {
            height: 14px;
            display: inline-block;
        }

            footer .footer-sub .lizbon img {
                height: 100%;
                display: flex;
            }
