/*============ Google fonts ============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*======= CSS variables =======*/
:root {
    --white-color: #fff;
    --dark-color: #222;
    --body-bg-color: #fff;
    --navigation-item-hover-color: #3b5378;
    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    --scroll-bar-color: #fff;
    --scroll-thumb-color: #282f4e;
    --scroll-thumb-hover-color: #454f6b;
}

/*======= Scroll bar =======*/
::-webkit-scrollbar {
    width: 11px;
    background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
    width: 100%;
    background: var(--scroll-thumb-color);
    border-radius: 2em;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--scroll-thumb-hover-color);
    }

/*======= Main CSS =======*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--body-bg-color);
}

section {
    position: relative;
}

.section {
    color: var(--white-color);
    background: var(--section-bg-color);
    padding: 35px 200px;
    transition: 0.3s ease;
}

/*======= Header =======*/
header {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: calc(5rem + 1rem);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: 0.5s ease;
    transition-property: height, background;
}

    header.sticky {
        background: #f4f4f3;
        padding: 15px 0px;
    }

    header .nav-bar {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 200px;
        transition: 0.3s ease;
    }

.nav-close-btn, .nav-menu-btn {
    display: none;
}

.nav-bar .logo {
    color: var(--white-color);
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}

.navigation .nav-items a {
    color: #16284c;
    font-size: 1em;
    text-decoration: none;
}

   
    
    .navigation .nav-items a:not(:last-child) {
        margin-right: 45px;
    }



.menu-btn {
    background: url(../images/menu.png) no-repeat;
    background-size: 20px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    opacity:0;

}

    .menu-btn.active {
        background: url(../images/close2.png)no-repeat;
        background-size: 20px;
        background-position: center;
        transition: 0.3s ease;
        z-index: 999999999;
    }





/*======= Home =======*/
.home {
    min-height: 100vh;
}

    .home:before {
        z-index: 888;
        content: '';
        position: absolute;
        width: 100%;
        height: 50px;
        bottom: 0;
        left: 0;
        background: linear-gradient(transparent, var(--section-bg-color));
    }





    /*======= Background slider =======*/
    .bg-slider {
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

    .bg-slider .swiper-slide {
        position: relative;
        width: 100%;
        height: 100vh;
    }

        .bg-slider .swiper-slide img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            background-position: center;
            background-size: cover;
            pointer-events: none;
            
        }

.swiper-slide .text-content {
    position: absolute;
    top: 25%;
    color: var(--white-color);
    margin: 0 200px;
    transition: 0.3s ease;
}

    .swiper-slide .text-content .title {
        font-size: 5em;
        font-weight: 800;
        color:#16284c;
        margin-bottom: -25px;
        transform: translateY(-50px);
        opacity: 0;
    }

.swiper-slide-active .text-content .title {
    transform: translateY(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}



.swiper-slide .text-content p {
    max-width: 480px;
    font-weight: 300;
    color: #16284c;
    font-size: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 0;
}

.swiper-slide-active .text-content p {
    transform: translateX(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}

.swiper-slide .text-content a {
    
    background: #f3b41c;
    color:#16284c;
    font-size: 1em;
    font-weight: 500;
    padding: 8px 25px;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    text-decoration:none;
}


    .swiper-slide .text-content a:hover {
        background: #16284c;
        color: #fff;
    }

    .swiper-slide-active .text-content a {
        transform: translateX(0);
        opacity: 1;
        transition: 1s ease;
        transition-delay: 0.3s;
        transition-property: transform, opacity;
    }





.bg-slider-thumbs {
    z-index: 777;
    position: absolute;
    bottom: 7em;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.thumbs-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 3px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
}

    .thumbs-container img {
        width: 50px;
        height: 35px;
        margin: 0 5px;
        border-radius: 5px;
        cursor: pointer;
    }

.swiper-slide-thumb-active {
    border: 1px solid var(--white-color);
}


@media screen and (max-width: 785px) {
    .swiper-slide .text-content {
        margin: 0 70px 0 20px;
        background: #16284c;
        padding: 20px 40px 20px 20px;
    }

        .swiper-slide .text-content .title {
            font-size: 3em;
            color: #fff;
        }

        .swiper-slide .text-content p {
            font-size: 0.9em;
            color: #fff;
        }

}                                    

/*======= Kurumsal =======*/

.kurumsal {
    min-height: 50vh;
}

.hakkimizda-container {
    position: relative;
    text-align: center;
    padding-top: 150px;
}




    .hakkimizda-container img {
        display: inline-block;
        max-width: 80%;
        height: auto;
        vertical-align: middle;
    }




.hakkimizda-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    padding: 20px;
    text-align: center;
}

    .hakkimizda-content h1 {
        position: absolute;
        font-size: 75px;
        padding-top: 110px;
        color: #2a4349;
        font-family: "poppins";
        right: 180px


    }

.hakkimizda-aciklama {
    position: relative;
    text-align: center;
}

    .hakkimizda-aciklama h2 {
        font-size: 1em;
        font-weight: 300;
        color: #2a4349;
        font-family: "poppins";
        text-align: left;
        width: 100%;
        max-width: 67%;
        margin: 0 auto 150px;
        display: inline-block;
    }

/*======= Kurumsal ACIKLAMA YAZI =======*/



.hakkimizda {
    display: flex;
    justify-content: center;
    background:#fbfbfb
}

.parent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:20px;
   padding-top:20px;
}

.fabrika-hakkimizda {
    margin-right: 40px;
}

.h-yazi {
    max-width: 50%;
}
    .h-yazi h1 {
        font-size: 2em;
        font-weight: 700;
        color:#2a4349;
        text-align:center;
    }

    .h-yazi p {
        font-size: 0.9em;
        font-weight: 300;
        color: #2a4349;
        font-family: "poppins";
    }

/*======= Kurumsal REFERANS =======*/



.referanslarslider{
    margin-bottom:50px;
}

.referanslar {
    margin-left: 50px;
    text-align: center;
    margin-top: 100px;
}

    .referanslar h1 {
        font-size: 20px;
        text-align: center;
        padding-bottom: 10px;
        color: #2a4349;
        font-family: "poppins";
    }

    .referanslar p {
        font-size: 13px;
        color: #2a4349;
        padding-bottom: 30px;
        font-family: "poppins";
    }

.ref-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-scroll {
    width: 760px;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .horizontal-scroll .btn-scroll {
        background-color: #16284c;
        color: rgba(255,255,255,255);
        padding: 4px 8px;
        border: 0;
        border-radius: 50%;
        margin: 0 0px;
        z-index: 1;
        cursor: pointer;
    }

.storys-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    left: 0;
    transition: 0.5s all ease-out;
    transition: 1s;
}

.story-circle {
    width: 133px;
    height: 88px;
    margin: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: rotateZ('45deg');
}

    .story-circle img {
        width: 113px;
        height: 68px;
        transform: rotateZ('-45deg');
    }

@media only screen and (max-width: 768px) { /* tablet boyutları için */
    .parent {
        flex-direction: column;
        align-items: center;
    }

    .fabrika-hakkimizda {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .fabrika-hakkimizda img{
        width:99%;
    }

    .h-yazi {
        max-width: 100%;
        text-align: center;
    }

        .h-yazi h1 {
            order: 2;
            margin-top: 20px;
        }

        .h-yazi p {
            order: 1;
        }
}

@media only screen and (max-width: 480px) { /* mobil boyutları için */
    .h-yazi h1 {
        font-size: 1.5em;
    }

    .h-yazi p {
        font-size: 0.8em;
    }
}


@media screen and (max-width: 1366px) {
    .hakkimizda-container {
        padding-top: 140px;
    }

    .hakkimizda-content h1 {
        font-size: 4em;
        padding-top: 92px;
        right: 152px;
    }

    .hakkimizda-aciklama h2 {
        font-size: 0.8em;
        max-width: 85%;
        margin-bottom: 100px;
    }

    .kurumsal-resim img {
       
        padding-top: 280px;
    }
   
}












@media screen and (max-width: 1024px) {
    .hakkimizda-container {
        padding-top: 140px;
    }

    .hakkimizda-content h1 {
        font-size: 3em;
        padding-top: 86px;
        right: 121px;
    }

    .hakkimizda-aciklama h2 {
        font-size: 0.8em;
        max-width: 85%;
        margin-bottom: 100px;
    }

    .kurumsal-resim img {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding-top: 224px;
    }

}




@media screen and (max-width: 767px) {
    .hakkimizda-container {
        padding-top: 140px;
    }

    .hakkimizda-content h1 {
        font-size: 2em;
        padding-top: 80px;
        right: 100px;
        
    }

    .hakkimizda-aciklama h2 {
        font-size: 1.2em;
        max-width: 85%;
        margin-bottom: 100px;
    }

   


}

@media screen and (max-width: 480px) {
    .hakkimizda-container {
        padding-top: 128px;
    }

    .hakkimizda-content h1 {
        font-size: 1.5em;
        padding-top: 68px;
        right: 80px;
    }

    .hakkimizda-aciklama h2 {
        font-size: 12px;
        max-width: 90%;
        margin-bottom: 80px;
    }


    .kurumsal-resim {
        flex: 0 auto;
        margin-right: 20px;
        margin-bottom: 20px;
    }

}




/*======= ÜRÜNLERİMİZ =======*/




.plist {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    margin-top: 120px;
    
}

    .plist p {
        font-size: 13px;
        color: #444;
        margin-bottom: 2rem;
        text-align: center;
        font-family: "poppins";
    }
    .plist .title {
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 0.5em;
        font-weight: 300;
        color: #0098ba;
        font-family: "poppins";
    }




.product {
    width: calc((100% / 3) - 20px);
    margin: 10px;
}
    .plist .products-container {
        display: flex;
        flex-wrap: wrap;
    }

        .plist .products-container .product {
            text-align: center;
            padding: 3rem 2rem;
            background: #fff;
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
            outline: .1rem solid #16284c;
            outline-offset: -1.5rem;
            cursor: pointer;
        }

            .plist .products-container .product:hover {
                outline: 1px solid #f3b41c;
                outline-offset: 0;
                
            }

            .plist .products-container .product img {
                height: 15rem;
            }

            .plist .products-container .product:hover img {
                transform: scale(.9);
            }

            .plist .products-container .product h3 {
                padding-top: 10px;
                font-size: 1.2rem;
                margin-bottom: 15px;
                color: #2a4349;
                font-family: "poppins";
               
            }

            .plist .products-container .product:hover h3 {
                color: #0098ba;
                font-family: "poppins";
            }

            .plist .products-container .product .price {
                font-size: 8pt;
                margin-top: 15px;
                color: #444;
                font-family: "poppins";
            }
@media only screen and (max-width: 768px) {
    .products-container {
        display: block;
    }

    .product {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}





/*======= İLETİŞİM=======*/


.iletisim {
    display: flex;
    background: #f4f4f3;
    flex-direction: column;
    padding-bottom: 50px;
    align-items: center;
    text-align: center;
}

.adres {
    margin-top: 120px;
}



    .adres h1 {
        text-align: center;
        
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 500;
        color: #2a4349;
        font-family: "poppins";
    }

    .adres p {
        text-align: center;
        font-size: 10px;
        font-weight: 400;
        margin-top: 10px;
        color: #2a4349;
        font-family: "poppins";
    }

.fabrika {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left:250px;
}

.sol-taraf {
    flex: 1;
    margin-right: 142px;
}

.sag-taraf {
    flex: 1;
    margin-left: -77px;
}

    .sol-taraf h2,
    .sag-taraf h2 {
        font-size: 1em;
        font-weight: 400;
        color: #2a4349;
        font-family: "poppins";
        margin-top: 20px;
        text-align: left;
    }

    .sol-taraf h3,
    .sag-taraf h3 {
        font-size: 1em;
        font-weight: 400;
        color: #2a4349;
        font-family: "poppins";
        margin-top: 20px;
        text-align: left;
    }

    .sol-taraf p,
    .sag-taraf p {
        font-size: 0.8em;
        margin-top: 10px;
        text-align: left;
        color: #2a4349;
        font-family: "poppins";
    }

/*=======ÜRÜNDETAY =======*/


/*-BUTONLAR*/
.urun-buton {
    display: flex;
    flex-direction: column;
    padding: 109px 0;
   
}

.urun-buton-detay {
    width: 100%;
}

.urun-buton-yazi {
    text-align: center;
}

.urun-buton-detay h1 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 300;
    color: #0098ba;
    font-family: "poppins";
}

.urun-buton-yazi h2 {
    font-size: 15px;
    font-weight: 300;
    margin-top: 30px;
    color: #0098ba;
    font-family: "poppins";
}

.urun-buton-yazi hr {
    margin-top: 0.5em;
    border-top: 1px solid #2a4349;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.urun-buton-yazi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    list-style-type: none;
    border-right: 1px solid #2a4349;
    padding-right: 20px;
    font-family: "poppins";
}

.urun-buton-yazi li {
    color: #2a4349;
    margin-top: 20px;
    margin-right: 20px;
    font-family: "poppins";
}

.urun-buton-yazi .urunler-buton a {
    color: #2a4349;
    text-decoration: none;
    font-size: 15px;
    font-family: "poppins";
}

.urun-buton-yazi .urunler-buton a:hover {
    color: #0098ba;
    text-decoration: none;
}

@media (min-width: 768px) {
    .urun-buton {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 100px 0;
    }

    .urun-buton-detay {
        width: 50%;
    }

    .urun-buton-yazi {
        text-align: center;
    }

        .urun-buton-yazi h1 {
            font-size: 60px;
        }

        .urun-buton-yazi h2 {
            font-size: 18px;
        }

        .urun-buton-yazi hr {
            margin-top: 0.5em;
            margin-bottom: 0.5em;
        }

        .urun-buton-yazi ul {
            text-align: left;
            border-right: none;
            margin: 0;
        }
}

@media (min-width: 480px) {

    .urun-buton {
        display: flex;
        flex-direction: column;
        padding-top: 134px;
    }
    
}




        /**-SLIDER-**/

.urundetay{
    margin-top:-80px;
}
.card-wrapper {
    max-width: 1100px;
    margin: 0 auto;   
}




.urundetay img {
    width: 100%;
    display: block;
}

.img-display {
    overflow: hidden;
}

.img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

    .img-showcase img {
        min-width: 100%;
    }

.img-select {
    display: flex;
}

.img-item {
    margin: 0.3rem;
}

    .img-item:nth-child(1),
    .img-item:nth-child(2),
    .img-item:nth-child(3) {
        margin-right: 0;
    }

    .img-item:hover {
        opacity: 0.8;
    }

.product-content {
    padding: 2rem 2rem;
}

.product-title {
    font-size: 2.5rem;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    color: #0098ba;
    margin: 1rem 0;
    font-family: "poppins";
}

    .product-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 80px;
        background: #2f2f2f;
    }






.product-detail h2 {
    text-transform: capitalize;
    color: #2a4349;
    font-size:1em;
    padding-bottom:1rem;
}

.product-detail p {
    font-size: 0.9rem;
    color: #2f2f2f;
    font-family: "poppins";
}



.product-detail h3 {
    text-transform: capitalize;
    color: #0098ba;
    font-size: 1em;
    padding-bottom: 1rem;
    padding-top: 1rem;
}


.product-detail hr {
    border-top: 2px solid #2f2f2f;
    width: 20%;
    margin-top: 2px;
    margin-bottom: 20px;
}




.product-detail li {
    text-decoration: none;
    font-family: "poppins";
    font-size: 0.9rem;
    color: #2f2f2f;
}

.product-detail ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

    .product-detail ul li:before {
        content: "";
    }







    @media screen and (min-width: 992px) {



        .card {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 1.5rem;
        }

        .card-wrapper {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .product-imgs {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-content {
            padding-top: 0;
        }
    }


    /*---ürünler hizmetlerimiz---*/

    .testimonial {
        padding-top: 100px;
    }

        .testimonial .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .testimonial .col-3 {
            text-align: center;
            padding: 30px 11px;
            cursor: auto;
            transition: transform 0.5s;
            border: 1px solid #f3b41c;
            margin: 10px;
            width: calc((100% - 60px) / 3); /* Toplam genişlik - sütun boşlukları / sütun sayısı */
        }

            .testimonial .col-3 h3 {
                font-size: 20px;
                margin-bottom: 20px;
                color: #262626;
            }

            .testimonial .col-3 p {
                font-size: 15px;
                font-weight: 300;
                height: 120px;
                word-wrap: break-word;
                color: #262626;
            }

            .testimonial .col-3 img {
                width: 70px;
                height: 72px;
                margin-bottom: 10px;
                margin: 0 auto;
            }

            .testimonial .col-3:hover {
                transform: translateY(-10px);
                box-shadow: 0 0 20px 0px rgba(0,0,0,0.5);
                background-color: rgba(255,255,255,255)
            }

    /* Medya sorguları kullanarak kutuların boyutlarını ayarlayalım */
    @media (max-width: 768px) {
        .testimonial .col-3 {
            width: calc((100% - 40px) / 2);
        }
    }

    @media (max-width: 576px) {
        .testimonial .col-3 {
            width: calc(100% - 20px);
        }
    }






    /*======= İLETİŞİM-MAİL=======*/



    .mail {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ecece6;
    }

    .mail-yazi {
        width: 100%;
        align-items: center
    }

        .mail-yazi h1 {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 10px;
            font-size: 20px;
            font-weight: 500;
            color: #2a4349;
            font-family: "poppins";
        }

        .mail-yazi p {
            text-align: center;
            font-size: 10px;
            font-weight: 400;
            margin-top: 10px;
            color: #2a4349;
            font-family: "poppins";
        }

    form {
        margin: 0 auto;
        width: 90%;
        padding-top: 50px;
        max-width: 900px;
    }

    .input-group {
        margin-bottom: 30px;
        margin-left: 10px;
        position: relative;
        font-family: "poppins";
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        outline: 0;
        border: 1px solid #d6d6d6;
        background: transparent;
        font-size: 1em;
        font-family: "poppins";
    }

    label {
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        padding: 10px;
        color: #2a4349;
        cursor: text;
        font-size: 15px;
        transition: 0.2s;
        font-family: "poppins";
    }

    button {
        padding: 10px 40px;
        color: rgba(255,255,255,255);
        background: #2a4349;
        border: none;
        cursor: pointer;
        float: right;
    }

    input:focus ~ label,
    input:valid ~ label,
    textarea:focus ~ label,
    textarea:valid ~ label {
        top: -35px;
        font-size: 14px;
    }

    .row2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .row2 .input-group {
            flex-basis: 48%;
        }

    .row3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .row3 .input-group {
            flex-basis: 48%;
        }

    .iletisim-renk {
        padding-bottom: 100px;
    }


    .google-maps {
        position: relative;
        padding-bottom: 600px;
        overflow: hidden;
    }

        .google-maps iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 600px;
            filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
            -webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
            -webkit-backface-visibility: hidden; /* Fix for transition flickering */
        }



    @media screen and (max-width: 768px) {
        .fabrika {
            display: flex;
            flex-direction: column;
        }

        .sol-taraf {
            width: 100%;
        }

        .sag-taraf {
            width: 100%;
            flex: 1;
            margin-left: -143px;
        }
    }

    @media screen and (max-width: 480px) {

        .fabrika {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-left: 229px;
        }
    }



    /*======= Galeri =======*/


    .galeri {
        display: flex;
        flex-direction: column;
        background: #f4f4f3;
        padding: 130px 0;
    }

    .proje {
        width: 100%;
    }

    .proje-yazi {
        text-align: center;
    }

.proje h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 300;
    color: #0098ba;
    font-family: "poppins";
}

.proje-yazi h2 {
    font-size: 15px;
    font-weight: 300;
    margin-top: 30px;
    color: #2a4349;
    font-family: "poppins";
}

    .proje-yazi hr {
        margin-top: 20px;
        border-top: 1px solid #0098ba;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .proje-yazi ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
        list-style-type: none;
        border-right: 1px solid #2a4349;
        padding-right: 20px;
        font-family: "poppins";
    }

    .proje-yazi li {
        color: #2a4349;
        margin-top: 20px;
        margin-right: 20px;
        font-family: "poppins";
    }

    .proje-yazi .proje-urunler a {
        color: #2a4349;
        text-decoration: none;
        font-size: 15px;
        font-family: "poppins";
    }

        .proje-yazi .proje-urunler a:hover {
            color: #0098ba;
            text-decoration: none;
        }

    @media (min-width: 768px) {
        .galeri {
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 100px 0;
        }

        .proje {
            width: 50%;
        }

        .proje-yazi {
            text-align: center;
        }

            .proje-yazi h1 {
                font-size: 60px;
            }

            .proje-yazi h2 {
                font-size: 18px;
            }

            .proje-yazi hr {
                margin-top: 30px;
                margin-bottom: 30px;
            }

            .proje-yazi ul {
                text-align: left;
                border-right: none;
                margin: 0;
            }
    }

    @media (min-width: 480px) {

        .galeri {
            display: flex;
            flex-direction: column;
            background: #f4f4f3;
            padding: 134px 0;
        }
    }




   

    /*---durakyazi---*/


    .galeri-ana {
        background: #f4f4f3;
    }

    .durak {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

   .durak-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .durak-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .durak-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .durak-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .durak-yazi {
            margin-left: 0;
            width: 100%;
        }
    }


    /*---durakgorsel---*/

    .galeri-durak {
        max-width: 1000px;
        background: #f4f4f3;
        margin: 0 auto;
        padding-top: 30px;
    }

    .row-galeri {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .col-galeri {
        flex-basis: calc(25% - 10px);
        margin-bottom: 20px;
    }

        .col-galeri img {
            width: 100%;
            height: auto;
            display: block;
        }

    @media screen and (max-width: 767px) {
        .col-galeri {
            flex-basis: calc(50% - 10px);
        }
    }

    /*---billboardyazi---*/



    .billboard {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

.billboard-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .billboard-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .billboard-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .billboard-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .billboard-yazi {
            margin-left: 0;
            width: 100%;
        }
    }

    /*---clpyazi---*/

    .clp {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

.clp-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .clp-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .clp-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .clp-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .clp-yazi {
            margin-left: 0;
            width: 100%;
        }
    }




    /*---megalightyazi---*/

    .megalight {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

.megalight-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .megalight-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .megalight-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .megalight-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .megalight-yazi {
            margin-left: 0;
            width: 100%;
        }
    }



    /*---silindirkuleyazi---*/

    .silindirkule {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

.silindirkule-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .silindirkule-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .silindirkule-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .silindirkule-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .silindirkule-yazi {
            margin-left: 0;
            width: 100%;
        }
    }



    /*---totemyazi---*/

    .totem {
        display: flex;
        background: #f4f4f3;
        padding-top: 50px;
        flex-wrap: wrap;
    }

.totem-yazi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 182px;
    width: calc(100% - 340px);
}

        .totem-yazi h1 {
            color: #2a4349;
            font-size: 2em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
        }

        .totem-yazi hr {
            border-top: 1px solid #0098ba;
            width: 30%;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .totem-yazi h2 {
            font-size: 0.8em;
            font-weight: 300;
            font-family: "poppins";
            margin: 0;
            width: 100%;
        }

    @media screen and (max-width: 768px) {
        .totem-yazi {
            margin-left: 0;
            width: 100%;
        }
    }













    /*======= Footer =======*/


    .footer {
        display: flex;
        flex-flow: row wrap;
        padding: 30px 30px 20px 30px;
        color: #2f2f2f;
        background-color: #16284c;
        border-top: 4px solid #f3b41c;
    }

        .footer > * {
            flex: 1 100%;
        }

    .footer__addr {
        margin-right: 1.25em;
        margin-bottom: 2em;
    }

    .footer__logo {
        font-family: 'Pacifico', cursive;
        font-weight: 400;
        text-transform: lowercase;
        font-size: 1.5rem;
    }

    .footer__addr h2 {
        margin-top: 1.3em;
        font-size: 15px;
        font-weight: 400;
        color:#fff;
    }

    .nav__title {
        font-weight: 400;
        font-size: 15px;
    }

    .footer address {
        font-style: normal;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 0.9em;
    }

    .footer__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        max-width: max-content;
        background-color: rgb(33, 33, 33, 0.07);
        border-radius: 100px;
        color: #2f2f2f;
        line-height: 0;
        margin: 0.6em 0;
        font-size: 1rem;
        padding: 0 1.3em;
    }

    .footer ul {
        list-style: none;
        padding-left: 0;
    }

    .footer li {
        line-height: 2em;
    }

    .footer a {
        text-decoration: none;
    }

    .footer__nav {
        display: flex;
        flex-flow: row;
    }

        .footer__nav > * {
            flex: 1 50%;
            margin-right: 1.25em;
        }

    .nav__ul a {
        color: #f2f2f2;
    }

        .nav__ul a:hover {
            color: #f3b41c;
        }

    .nav__ul--extra {
        column-count: 2;
        column-gap: 1.25em;
    }

    .legal {
        display: flex;
        flex-wrap: wrap;
        color: #f1f1f1;
        font-size: 0.5em;
    }

    .legal__links {
        display: flex;
        align-items: center;
    }

    .heart {
        color: #2f2f2f;
    }

    @media screen and (min-width: 24.375em) {
        .legal .legal__links {
            margin-left: auto;
        }

        .footer__nav {
            display: flex;
            flex-flow: row;
        }
    }

    @media screen and (min-width: 40.375em) {
        .footer__nav > * {
            flex: 1;
        }

        .nav__item--extra {
            flex-grow: 2;
        }

        .footer__addr {
            flex: 1 0px;
        }

        .footer__nav {
            flex: 2 0px;
        }
    }







    /*======= Media queries (max-width: 1100px) =======*/
    @media screen and (max-width: 1100px) {
        header .nav-bar {
            padding: 0 50px;
        }

        .section {
            padding: 25px 50px;
        }




        .swiper-slide .text-content {
            margin: 0 120px 0 50px;
        }

        .bg-slider-thumbs {
            bottom: 3em;
        }
    }

    /*======= Media queries (max-width: 785px) =======*/
    @media screen and (max-width: 785px) {
        header .nav-bar {
            padding: 25px 20px;
        }

        .section {
            padding: 25px 20px;
        }



        .swiper-slide .text-content {
            margin: 0 70px 0 20px;
        }

            .swiper-slide .text-content .title {
                font-size: 3em;
            }

                .swiper-slide .text-content .title span {
                    font-size: 0.35em;
                }

            .swiper-slide .text-content p {
                font-size: 0.9em;
            }

        /*======= Navigation menu =======*/
        .nav-menu-btn {
            display: block;
            color: var(--white-color);
            font-size: 1.5em;
            cursor: pointer;
        }

        .nav-close-btn {
            display: block;
            color: var(--dark-color);
            position: absolute;
            top: 0;
            right: 0;
            font-size: 1.3em;
            margin: 10px;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .navigation {
            z-index: 999999;
            position: fixed;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: 0.3s ease;
        }

            .navigation.active {
                visibility: visible;
                opacity: 1;
            }

        .menu-btn {
            background: url(../images/menu.png) no-repeat;
            background-size: 20px;
            background-position: center;
            width: 40px;
            height: 40px;
            opacity: 100;
            cursor: pointer;
            transition: 0.3s ease;
            z-index: 99999999;
        }


            .menu-btn.active {
                background: url(../images/close2.png)no-repeat;
                background-size: 20px;
                background-position: center;
                transition: 0.3s ease;
                z-index: 99999999;
            }

        .navigation .nav-items {
            position: relative;
            background: var(--white-color);
            width: 400px;
            max-width: 400px;
            display: grid;
            place-content: center;
            margin: 20px;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            transform: translateY(-200px);
            transition: 0.3s ease;
        }

        .navigation.active .nav-items {
            transform: translateY(0);
        }

        .navigation .nav-items a {
            color: var(--dark-color);
            font-size: 1em;
            margin: 15px 50px;
            transition: 0.3s ease;
        }

            .navigation .nav-items a:hover {
                color: var(--navigation-item-hover-color);
            }

        .navigation .nav-items > a > i {
            display: inline-block;
            font-size: 1.3em;
            margin-right: 5px;
        }

        .swiper-slide .text-content .read-btn {
            font-size: 0.9em;
            padding: 5px 15px;
        }

        /*======= About section =======*/
        .about h2 {
            font-size: 2.5em;
        }

        .about p {
            font-size: 0.9em;
        }
    }
