@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('app-base.css');
@import url('app-variables.css');

.container-fluid {
    /* padding: 0 !important; */
}

.bg-blue {
    background: var(--primary);
}

.bg-dark-blue {
    background: var(--primary-hover);
}

.bg-grey {
    background: var(--grey);
}

.bg-dark-grey {
    background: var(--primary);
}

.bg-light-grey {
    background: var(--light-grey);
}

.btn.bg-blue:hover {
    background: var(--primary-hover);
    color: #fff;
}

.btn.bg-grey:hover {
    background: #222;
    color: #fff;
}

.text-white {
    color: #fff;
}

.pt-100 {
    padding-top: 100px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-25 {
    padding-bottom: 25px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-25 {
    margin-bottom: 25px;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.w-100 {
    width: 100% !important;
}

.page {
    flex: 1;
}

html.glightbox-open {
    overflow: initial;
}

.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 5 satıra kadar göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 5 satıra kadar göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-products div#rootDiv, .page-contact div#rootDiv {
    background: #f3f3f3;
}

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;
        }

            header .header-container .logo img {
                height: 100%;
            }

        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: 'Montserrat', sans-serif;
                        font-weight: 600;
                        color: #222;
                        height: 120px;
                        align-content: center;
                        transition: .3s;
                    }

                    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;
                            justify-content: space-evenly;
                        }

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

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

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper a {
                                background-color: transparent;
                            }

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

                                header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .image img {
                                    width: 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 .link-button > a {
                width: 130px;
                height: 40px;
                background: var(--orange);
                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(--orange-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;
                    }




section.banner .container-fluid {
    padding: 0;
}

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


@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.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: 1926/745;
    transition: all .4s ease;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        /* padding-top: 95px; */
        /* width: 100%; */
    }
}

.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;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: var(--primary);
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.hero-slider .slide-inner .overlay {
    background: #1818185e;
    position: absolute;
    height: 100%;
    width: 100%;
}

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

    .page-home section.products h2 {
        font-weight: 900;
        font-size: 40px;
        text-align: center;
        line-height: 1.2;
        color: var(--grey);
        padding-bottom: 100px;
    }

        .page-home section.products h2 span {
            font-weight: 900;
            font-size: 60px;
            display: block;
            text-align: center;
            color: var(--primary);
        }

    .page-home section.products .wrapper {
        display: flex;
        gap: 100px;
        flex-wrap: wrap;
    }

        .page-home section.products .wrapper .item {
            position: relative;
            width: calc((100% - 100px)/2);
        }

            .page-home section.products .wrapper .item a {
                display: block;
            }

                .page-home section.products .wrapper .item a .but {
                    padding: 5px 20px;
                    border: 1px solid var(--primary);
                    display: inline-block;
                    margin-top: 20px;
                    font-size: 14px;
                    transition: .3s;
                }


                .page-home section.products .wrapper .item a .image {
                    width: 100%;
                    height: 308px;
                    overflow: hidden;
                }

                    .page-home section.products .wrapper .item a .image img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        transition: .3s;
                    }

                .page-home section.products .wrapper .item a:hover .image img {
                    scale: 1.1;
                    transition: .3s;
                }

                .page-home section.products .wrapper .item a:hover .but {
                    padding: 5px 20px;
                    border: 1px solid var(--primary);
                    background: var(--primary);
                    color: #fff;
                    transition: .3s;
                }

                .page-home section.products .wrapper .item a:hover .text span {
                    background: var(--primary);
                    color: #fff;
                }

                .page-home section.products .wrapper .item a .text-container {
                    margin-top: 20px;
                }

                    .page-home section.products .wrapper .item a .text-container .title {
                        font-size: 24px;
                        font-weight: 700;
                    }

                    .page-home section.products .wrapper .item a .text-container .subtitle {
                        font-size: 18px;
                        font-weight: 700;
                        color:var(--primary);
                    }

                    .page-home section.products .wrapper .item a .text-container .text span {
                        display: block;
                        background: #FFF;
                        color: #222;
                        padding: 10px 10px;
                        font-size: 18px;
                        text-align: center;
                        font-weight: 700;
                        margin-top: 20px;
                    }

    .page-home section.products .wrapper-all {
        display: flex;
        gap: 100px;
        flex-wrap: wrap;
        padding-top: 100px;
    }

        .page-home section.products .wrapper-all .item {
            position: relative;
            width: calc((100% - 100px)/2);
        }

        .page-home section.products .wrapper-all .item a {
          display: block;
          text-align: center;
          background: var(--primary);
          color: #fff;
          padding: 20px;
          font-weight: 700;
        }
            .page-home section.products .wrapper-all .item a:hover {
               background: var(--primary-hover);
            }

.page-home section.about {
    padding: 100px 0;
    background: #016aa917;
}

    .page-home section.about .about-container {
        display: flex;
        gap: 99px;
        justify-content: space-between;
        align-items: center;
    }

        .page-home section.about .about-container .about-wrapper:first-child {
            width: 50%;
        }

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

            .page-home section.about .about-container .about-wrapper h2 {
                font-weight: 900;
                font-size: 60px;
                text-align: center;
                line-height: 1.2;
                color: var(--grey);
            }

                .page-home section.about .about-container .about-wrapper h2 span {
                    font-weight: 900;
                    font-size: 45px;
                    display: block;
                    text-align: center;
                    color: var(--primary);
                }

            .page-home section.about .about-container .about-wrapper .text {
                font-size: 18px;
                line-height: 2
            }

            .page-home section.about .about-container .about-wrapper .button {
                padding-top: 25px;
            }

                .page-home section.about .about-container .about-wrapper .button .btn {
                    padding: 10px 30px;
                    font-size: 18px;
                    font-weight: 400;
                    font-family: 'Open Sans', sans-serif;
                }

                    .page-home section.about .about-container .about-wrapper .button .btn:hover {
                        color: #fff;
                        background: var(--grey)
                    }

.page-home section.worldwide{
    background:#040b25;
    /* margin: 100px 0; */
    padding-top: 120px;
}
.page-home section.worldwide  h2 {
                font-weight: 900;
                font-size: 60px;
                text-align: center;
                line-height: 1.2;
                color: #fff;
                padding-bottom: 20px;
            }

.page-home section.worldwide  .subtitle {
                font-weight: 300;
                font-size: 40px;
                text-align: center;
                line-height: 1.2;
                color: #fff;
                padding-bottom: 80px;
            }

.page-home section.worldwide ul {
               display:flex;
               flex-wrap: wrap;
               justify-content: space-between;
               padding: 0 5%;
               z-index:1;
               position: relative;
               flex-direction: row;
            }

.page-home section.worldwide ul li {
              color:#fff;
              width: calc((100% - 120px) /4);
              font-size: 18px;
              line-height: 2;
              text-align: center;
            }

.page-home section.worldwide video {
              margin-top: -400px;
              width: 100%;
            }

.page-home section.blog {
    padding: 200px 10%;
}

    .page-home section.blog h2 {
        font-weight: 900;
        font-size: 62px;
        text-align: center;
        line-height: 1.2;
        color: var(--grey);
    }

        .page-home section.blog h2 span {
            font-weight: 900;
            font-size: 35px;
            display: block;
            text-align: center;
            color: var(--primary);
        }

    .page-home section.blog .blog-slider {
        padding-top: 50px;
    }

        .page-home section.blog .blog-slider a:hover img {
            scale: 1.1;
            transition: .3s;
        }

        .page-home section.blog .blog-slider .image {
            width: 100%;
            aspect-ratio: 4/2;
            overflow: hidden;
        }

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

        .page-home section.blog .blog-slider .text {
            font-size: 18px;
            font-weight: 500;
            padding: 20px;
            text-align: center;
        }

/* URUN DETAY */

.page-product-detail section.product-info {
    padding: 100px 5% 0;
}

    .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: 6/4;
                            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: 70%;
                            aspect-ratio: 6/4;
                            object-fit: contain;
                            place-self: center;
                        }

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

            .page-product-detail section.product-info .info-container .description .title h1 {
                font-size: 28px;
                font-weight: 900;
                padding-bottom: 10px;
                line-height: 1;
            }


            .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 .documents .btn {
                    padding: 15px 40px;
                    display: inline-flex;
                    align-items: center;
                    font-size: 16px;
                    width: 50%;
                }


                    .page-product-detail section.product-info .info-container .description .documents .btn i {
                        margin-right: 20px;
                        font-size: 24px;
                    }

    .page-product-detail section.product-info .content {
        font-size: 20px;
    }

 .page-product-detail section.product-info .content ul{
       padding-left:20px;
    }
 .page-product-detail section.product-info .content ul li{
       list-style-type:disc;
    }
        .page-product-detail section.product-info .content h3 {
            font-size: 40px;
            text-align: center;
            font-weight: 900;
        }

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

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

    .page-product-detail section.product-info .specs {
        padding: 100px 0;
    }

        .page-product-detail section.product-info .specs h2 {
            font-size: 40px;
            font-weight: 900;
            padding-bottom: 30px;
            text-align: center;
        }

        .page-product-detail section.product-info .specs table {
            width: 100%;
            overflow: hidden;
            /* border: 1px solid #eee; */
            margin: 0 auto;
        }

            .page-product-detail section.product-info .specs table thead tr {
                background: var(--grey);
                color: #FFF;
            }

            .page-product-detail section.product-info .specs table tr th {
                font-size: 26px;
                text-align: center;
                font-weight: 700;
            }

            .page-product-detail section.product-info .specs table tr td, .specs table tr th {
                padding: 20px;
            }

            .page-product-detail section.product-info .specs table tbody tr:nth-child(odd) {
                background: #f2f2f2;
            }

            .page-product-detail section.product-info .specs table tbody tr td:first-child {
                font-weight: 700;
            }

    .page-product-detail section.product-info .feats {
        padding: 100px 5%;
    }


        .page-product-detail section.product-info .feats .feat-container {
            display: flex;
            /* gap: 100px; */
            align-items: center;
            justify-content: center;
            flex-direction: row;
            /* padding: 50px 0; */
        }

            .page-product-detail section.product-info .feats .feat-container:nth-of-type(odd) {
                flex-direction: row-reverse;
            }

            .page-product-detail section.product-info .feats .feat-container .image {
                width: 50%;
            }

                .page-product-detail section.product-info .feats .feat-container .image img {
                    width: 100%;
                }

            .page-product-detail section.product-info .feats .feat-container .text-wrapper {
                width: 50%;
                padding: 0 5%;
            }

                .page-product-detail section.product-info .feats .feat-container .text-wrapper h3 {
                    font-size: 40px;
                }

                .page-product-detail section.product-info .feats .feat-container .text-wrapper .text {
                    font-size: 18px;
                }



    .page-product-detail section.product-info .faq h2 {
        text-align: center;
        padding-bottom: 30px;
        font-size: 40px;
        font-weight: 900;
    }

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

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

    .page-product-detail section.product-info .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.product-info .faq .accordion button:hover, .page-product-detail section.product-info .faq .accordion button:focus {
            cursor: pointer;
            color: var(--primary);
        }

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

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

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

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

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

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

            .page-product-detail section.product-info .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.product-info .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.product-info .faq .accordion .accordion-content p {
            font-size: 1.1rem;
            margin: 2em 0;
        }

    .page-product-detail section.product-info .contact {
        z-index: 10;
        position: relative;
    }


.page-corporate h1 {
    font-weight: 900;
}

.page-corporate h2 {
    font-weight: 700;
    padding: 50px 0 30px;
}

.page-corporate section.section-1 {
    padding: 0 5%;
}

    .page-corporate section.section-1 .image {
        width: 100%;
    }

        .page-corporate section.section-1 .image img {
            width: 100%;
        }

    .page-corporate section.section-1 .text {
        width: 70%;
        margin: 0 auto;
        line-height: 2;
        padding: 50px 0;
        text-align: center;
        font-size: 18px;
    }

        .page-corporate section.section-1 .text p {
            padding: 20px 0;
        }

.page-corporate section.section-2 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 100px 5%;
    font-size: 18px;
    line-height: 2;
}

    .page-corporate section.section-2 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-2 .right {
        width: calc(50% - 50px);
    }

        .page-corporate section.section-2 .right video {
            width: 100%;
        }

.page-corporate section.section-3 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 0px 5% 60px 5%;
}

    .page-corporate section.section-3 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-3 .right {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-3 .left img {
        width: 100%;
    }

    .page-corporate section.section-3 h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }


.page-corporate section.section-4 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 0px 5% 100px;
}

    .page-corporate section.section-4 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-4 .right {
        width: calc(50% - 50px);
    }

        .page-corporate section.section-4 .right img {
            width: 100%;
        }

    .page-corporate section.section-4 h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .page-corporate section.section-3 ul, .page-corporate section.section-4 ul {
        padding-left: 20px;
        line-height: 2;
        font-size: 18px;
    }

        .page-corporate section.section-3 ul li, .page-corporate section.section-4 ul li {
            list-style-type: disc;
        }


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

    .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: 900;
    }


.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: 900;
            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: #f3f3f3;
            padding: 20px 20px;
        }


        .page-contact section.form .wrapper div .but {
            background-color: var(--grey) !important;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: block;
            text-align: center;
            padding: 10px;
        }
 .page-contact section.form .wrapper div .but:hover {
            background-color: var(--primary) !important;
            color: #fff;
            
        }

.page-products .list {
    padding: 100px 5%;
    background: #f3f3f3;
}

.page-products .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .page-products .wrapper .item {
        width: calc((100% - 80px) / 3);
        padding: 20px;
        background: #fff;
    }

        .page-products .wrapper .item .title {
            font-size: 18px;
            font-weight: 700;
            padding: 10px 0;
            text-align: center;
        }

    .page-products .wrapper figure {
        aspect-ratio: 4/3;
        color: #fff;
        position: relative;
        overflow: hidden;
        margin: 10px;
        background: #000000;
        text-align: center;
    }

    .page-products .wrapper figure {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }


        .page-products .wrapper figure img {
            opacity: 1;
            width: 100%;
            -webkit-transition: opacity 0.35s;
            transition: opacity 0.35s;
            height: 100%;
            object-fit: cover;
        }

        .page-products .wrapper figure figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 3em 3em;
            width: 100%;
            height: 100%;
        }

            .page-products .wrapper figure figcaption::before {
                position: absolute;
                top: 50%;
                right: 30px;
                bottom: 50%;
                left: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.8);
                border-bottom: 1px solid rgba(255, 255, 255, 0.8);
                content: '';
                opacity: 0;
                background-color: #ffffff;
                -webkit-transition: all 0.4s;
                transition: all 0.4s;
                -webkit-transition-delay: 0.6s;
                transition-delay: 0.6s;
            }

        .page-products .wrapper figure h2,
        .page-products .wrapper figure p {
            margin: 0 0 5px;
            opacity: 0;
            -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
            transition: opacity 0.35s,-webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
        }

        .page-products .wrapper figure h2 {
            font-weight: 800;
            -webkit-transform: translate3d(0%, 50%, 0);
            transform: translate3d(0%, 50%, 0);
            -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
            line-height: 1.5;
        }

            .page-products .wrapper figure h2 span {
                font-weight: 500;
                display: block;
                font-size: 20px;
                padding-bottom: 20px;
            }

        .page-products .wrapper figure p {
            font-weight: 200;
            -webkit-transition-delay: 0s;
            transition-delay: 0s;
        }

        .page-products .wrapper figure a {
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            position: absolute;
            color: #ffffff;
        }

    .page-products .wrapper a:hover img {
        opacity: 0.35;
    }

    .page-products .wrapper a:hover figcaption h2 {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .page-products .wrapper a:hover figcaption p {
        opacity: 0.9;
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    .page-products .wrapper a:hover figcaption::before {
        background: rgba(255, 255, 255, 0);
        top: 30px;
        bottom: 30px;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }


.page-gallery .list {
    padding: 100px 5%;
    background: #f3f3f3;
}

.page-gallery .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .page-gallery .wrapper .item {
        width: calc((100% - 80px) / 3);
        padding: 20px;
        background: #fff;
    }

        .page-gallery .wrapper .item .title {
            font-size: 18px;
            font-weight: 700;
            padding: 10px 0;
            text-align: center;
        }

    .page-gallery .wrapper img {
        opacity: 1;
        width: 100%;
        -webkit-transition: opacity 0.35s;
        /* transition: opacity 0.35s; */
        object-fit: cover;
        aspect-ratio: 1.52/1;
    }



.page-certificates h1 {
   font-weight:900;
   padding-bottom:50px;
   text-align:center;
}


.page-certificates .list {
    padding: 100px 5%;
}
.page-certificates .certificates-list {
    /* padding: 100px 5%; */
    /* background: #f3f3f3; */
    display: flex;
    flex-wrap: wrap;
    gap:20px;
}

.page-certificates .certificates-list a{
        width:calc((100% - 40px) / 3)
}

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

        .page-certificates .certificates-list .item-wrapper:hover {
            border: 1px solid var(--primary);
            border-left: 6px solid var(--primary);
            transition: .2s;
        }

        .page-certificates .certificates-list .item-wrapper .item .title {
            font-weight: 700;
            font-size: 18px
        }

        .page-certificates .certificates-list .item-wrapper .icon i {
            color: var(--light-blue);
            font-size: 28px
        }

.footer-contact {
    background: var(--primary);
    width: 80%;
    margin: 0 auto;
    /* top: -90px; */
    /* left: 10%; */
    display: flex;
    align-items: center;
    padding: 50px;
    justify-content: space-around;
    /* margin-top: -150px; */
    z-index: 10;
    position: relative;
}

    .footer-contact h3 {
        color: #fff;
        font-size: 40px;
        font-weight: 900;
    }

    .footer-contact span {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
    }

    .footer-contact .button a {
        padding: 15px 40px;
        font-size: 21px;
        font-weight: 500;
    }

        .footer-contact .button a:hover {
            color: #FFF;
            text-decoration: none;
            background-color: transparent;
            border: 1px solid #fff;
        }

footer {
    padding: 50px 0 0;
    background: #222;
    position: relative;
    margin-top: -100px;
    /* z-index: 10; */
}



    footer .menu-container {
        margin-top: 100px;
        display: flex;
        justify-content: center;
        gap: 120px;
        padding: 0 5% 50px;
        color: #fff;
    }

        footer .menu-container .menu-wrapper h3 {
            font-size: 1.3rem;
        }

        footer .menu-container .menu-wrapper:first-child {
            /* width: 30%; */
        }

            footer .menu-container .menu-wrapper:first-child h3 {
                padding-bottom: 20px;
            }

            footer .menu-container .menu-wrapper:first-child .address {
                list-style: none; /* default ul i�aretlerini kald�r�yoruz */
                padding: 0;
                margin: 0;
            }

                footer .menu-container .menu-wrapper:first-child .address li {
                    position: relative;
                    padding-left: 40px;
                    margin-bottom: 10px;
                }

                    footer .menu-container .menu-wrapper:first-child .address li i {
                        position: absolute;
                        left: 0;
                        top: 0;
                        margin-right: 20px;
                        color: var(--primary-hover);
                    }

    footer .footer-sub {
        background: #ffffff;
        display: flex;
        padding: 20px 5%;
        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;
            }
