@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* MENU CSS KODLARİ */
nav{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 70px;
    background: rgba(1, 238, 235, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
nav .navbar{
    height: 100%;
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
        
}
nav .navbar .logo a{
    color:rgba(1, 202, 238, 0.9);
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}
nav .navbar .logo a img{
    width: 71%;
    position: relative;
    padding: 5px 35px;
    left:15%;
    margin-top: 5%;
}
nav .navbar .nav-links  .sidebar-logo img{
    max-width: 81%; 
    position: absolute; 
    bottom: 55px;}
nav .navbar .nav-links{
   
    height: 100%;
    line-height: 70px;
}
nav .navbar .nav-links .links{
    display: flex;
}
nav .navbar .nav-links .links li{
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0 14px;
    
}
nav .navbar .nav-links .links li a{
    height: 100%;
    color: rgba(1, 202, 238, 0.9);
    text-decoration: none; 
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    
}
nav .navbar .nav-links .links li a:hover{color: black;}
nav .navbar .nav-links .links li .arrow{
    height: 100%;
    width: 22px;
    text-align: center;
    color: rgba(1, 202, 238, 0.9);
    line-height: 70px;
    transition: all 0.3s ease;
}
.navbar .nav-links .links li:hover .urunler-arrow,
.navbar .nav-links .links li:hover .bolgeler-arrow, 
.navbar .nav-links .links li:hover .hizmetler-arrow{
    transform: rotate(180deg)
}
.navbar .nav-links .links .sub-menu{
    position: absolute;
    top:70px;
    left:0;
    background: rgba(1, 238, 235, 0.1);
    line-height: 40px;
    border-radius: 0 0 3px 3px;
  /* Burada opacity:0; olabilir*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display:none;
}
.navbar .nav-links .links .sub-menu li{
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .nav-links .links .sub-menu li a{
    font-size: 15px;
    font:500;
}
.navbar .nav-links .links .sub-menu li .rustik-arrow{
    line-height: 40px;
}
.navbar .nav-links .links li:hover .urunler-sub-menu,
.navbar .nav-links .links li:hover .bolgeler-sub-menu, 
.navbar .nav-links .links li:hover .hizmetler-sub-menu{
    display: block;
}
.navbar .nav-links .links .rustik .rustik-sub-menu{
    position:absolute;
    top:0;
    left:100%;
    border-radius: 0 3px 3px 3px;
    display: none;
}

.navbar .nav-links .links .rustik:hover .rustik-sub-menu{
    display:block;
}
.navbar .search-box{
    position: relative;
    height: 40px;
    width: 40px;
}
.navbar .search-box .bx-search{
    color: white;
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    
}
.navbar .search-box .input-box{
    height: 60px;
    width: 300px;
    background: rgba(1, 238, 235, 0.1);
    position: absolute;
    top:80px;
    right: calc(100% - 40px);
    border-radius: 7px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.9s ease;
    
}
.navbar.showInput .search-box .input-box{
    opacity: 1;
    pointer-events: auto;
    top:65px;
}
.navbar .search-box .input-box::before{
    content:'';
    position: absolute;
    height: 20px;
    width: 20px;
    background: rgba(1, 238, 235, 0.1);
    right: 10px;
    top:-6px;
    transform: rotate(45deg);
}
.navbar .search-box .input-box input{
    position: absolute;
    height: 35px;
    width: 280px;
    z-index: 98;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    outline: none;
    border:none;
    border-radius: 3px;
    padding: 0 16px;
    font-size: 16px; 
}
.navbar .bx-menu,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .bx-x{
    display: none;
    }
@media (max-width:955px) {
nav .navbar{
    max-width: 100%;
    padding: 0 25px;
}
nav .navbar .logo a{

    font-size: 25px;

}
nav .navbar .nav-links .links li{
        padding: 0 10px;
    }
nav .navbar .nav-links .links li a{
        font-size: 15px;
    }

}

@media (max-width:800px){
nav .navbar .logo a img{
        width: 71%;
        position: relative;
        padding: 5px 35px;
        left:15%;
        margin-top: 5%;
    } 
nav .navbar .nav-links{
        display: block;
        position: fixed;  
        top:0;
        left:-100%;
        max-width: 270px;
        width: 100%;
        background:white;
        padding: 20px;
        line-height: 40px;
        transition: all 0.5s ease;
        z-index: 100;
    }
nav .navbar .nav-links .sidebar-logo{
        display: flex; 
        align-items: center;
        justify-content: space-between;
    }

.navbar .bx-menu,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .bx-x{
        display: block;
        color: rgba(1, 202, 238, 0.9);
        font-size: 25px;
        font-weight: 500;
    }
.navbar .bx-menu{
        position: absolute;
        right: 9%;
    }
.navbar .search-box{
    position: absolute;
    right: 25%;
}
nav .navbar .nav-links .links{
        display: block;
        margin-top:20px;
    }
nav .navbar .nav-links .links li{
    display: block;
      
    }
    .navbar .nav-links .links .sub-menu{
        display: none;
        position: relative;
        top:0px;
        left: 0px;
        box-shadow: none;
    }
    .navbar .nav-links .links .sub-menu li{
        border-bottom: none; 
    }
    .navbar .nav-links .links li:hover .urunler-sub-menu,
    .navbar .nav-links .links li:hover .bolgeler-sub-menu, 
    .navbar .nav-links .links li:hover .hizmetler-sub-menu{
    display: none;
    }
    .navbar .nav-links .links .rustik:hover .rustik-sub-menu{
    display:none;
    }
nav .navbar .nav-links .links li .arrow{
    line-height: 40px;
    }
    .navbar .nav-links .links li:hover .urunler-arrow,
    .navbar .nav-links .links li:hover .bolgeler-arrow, 
    .navbar .nav-links .links li:hover .hizmetler-arrow{
    transform: rotate(0deg)
    }
    .navbar .nav-links.show1 .links .sub-menu.urunler-sub-menu{
        display: block;
    }
    .navbar .nav-links.show2 .links .rustik .rustik-sub-menu{
        display: block;
    }
    .navbar .nav-links.show2 .links .sub-menu .rustik-arrow{
    transform: rotate(90deg)
    }
    .navbar .nav-links.show3 .links .sub-menu.hizmetler-sub-menu{
        display: block;
    }

    .navbar .nav-links.show4 .links .sub-menu.bolgeler-sub-menu{
        display: block;
    }
    .navbar .nav-links.show1 .links li .urunler-arrow,
    .navbar .nav-links.show4 .links li .bolgeler-arrow,                                                
    .navbar .nav-links.show3 .links li .hizmetler-arrow{
    transform: rotate(180deg)
    }
}
@media (max-width:370px){
    nav .navbar .nav-links{
        max-width: 100%;
    }
}

/* Java Scripte Bağlı GALERİ - SLİDE CSS KODLARI */
button:focus{outline: 0;}
.slider{
    position: relative;
    width: 98vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 15px;
}
.slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .4s linear;
}
.active{
    opacity: 1;
}
.slide .inner{
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: rgba(88, 223, 233, 0.301);
    color:white;
    padding: 1px 25PX;
    opacity: 0;
}
.slide.active .inner{
    opacity: 1;
}

.slide:nth-child(1){background: url(duzenlenmisresimler/1.jpg) no-repeat center/cover;}
.slide:nth-child(2){background: url(duzenlenmisresimler/2.jpg) no-repeat center/cover;}
.slide:nth-child(3){background: url(duzenlenmisresimler/3.jpg) no-repeat center/cover;}
.slide:nth-child(4){background: url(duzenlenmisresimler/4.jpg) no-repeat center/cover;}
.slide:nth-child(5){background: url(duzenlenmisresimler/5.jpg) no-repeat center/cover;}
.slide:nth-child(6){background: url(duzenlenmisresimler/6.jpg) no-repeat center/cover;}
.slide:nth-child(7){background: url(duzenlenmisresimler/7.jpg) no-repeat center/cover;}
.slide:nth-child(8){background: url(duzenlenmisresimler/8.png) no-repeat center/cover;}
.slide:nth-child(9){background: url(duzenlenmisresimler/9.png) no-repeat center/cover;}


.indicators{
    position: relative;
    float: right;
    bottom: 45px;
    right: 50%;
    cursor: default;
}
.indicators button{
    padding: 0px 25px;
    font-size: 25px;
    background-color: white;
    color: red;
    border:0;
}
/* css'e bağlı GALERİ SLİDE CSS KODLARI */ 
/* Genel slide css kodlarımız */
#genelslide{display: flex; flex-direction: column; width: 100%; height: auto;}
/* *********galerislayt css Kodları ************ */
#bodyslayt{max-width: 100%; margin: 0; padding: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; 
    height: auto;}
.cerceve{width: 99%; overflow: hidden; border:solid 1px rgba(88, 223, 233, 0.301); box-sizing: border-box; border-radius: 7px;}
.galerislayt{z-index: -1; position: relative; width: 400%; left: 0; animation: 33s slayt infinite;}
.galerislayt img{width: 25%; height: 100vh; float: right;}
@keyframes slayt{
    0%{left:0%;}
    20%{left:0%;}
    25%{left:-100%;}
    45%{left:-100%;}
    50%{left:-200%;}
    70%{left:-200%;}
    75%{left:-300%;}
    90%{left:-300%;}
}
/* Kutulu Metin CSS kodları */
.kutulumetin{
    width: 90%;
    position: sticky;
    left: 5%;
    margin-top: 15px;
    display: flex;
    text-align: justify;
    align-items: center;
    background-color:rgba(1, 202, 238, 0.03);
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.7);
    border-radius: 27px;   
}
.kutulumetin img{width: 45%; max-height: 75%; position: absolute; right: 5px; border-radius: 7px;}
/* İçerik Bölümü CSS Kodları */
.icerik{
    display: flex;
    flex-direction: column;
    height: auto;
}
.icerik img{margin-top: 85px; max-width: 419px; padding-left: 1%; padding-right: 1%;}
.icerik p{
    margin-top: 15px;
    padding-left: 1%;
    padding-right: 1%;
    height: auto;
    font-size: 11pt;
    line-height: normal;
    text-align: justify;
    text-indent: 35px;
    color: rgba(0, 0, 0, 0.7);
}
.icerik a{text-decoration: none; color: rgba(0, 0, 0, 0.7);}