*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header h2{
    color: rgb(199, 145, 206);
    font-size: 40px;
    font-family: 'Niconne', cursive;
}

ul,nav{
    list-style: none;
}
a{
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}


header{
    background-color: rgba(255, 255, 255, 0.248);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
    padding: 35px 100px 0;
    

}

header nav{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    
}
header nav li{
    margin: 0 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: large;
    
}

header nav li :first-child{
    margin-left:0 ;
}
header nav li:last-child{
    margin-right: 0;
}
@media(max-width:1000px){
    header{
        padding: 20px 50px;
    }
}
@media(max-width:700px){
    header{
        flex-direction: column;
    }
    header h2{
        margin-bottom: 15px;
    }
    header nav li{
        margin:0 7;
    }
}

/*banner area*/

section{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 100px;
    font-family: 'Courier New', Courier, monospace;
}
@media(max-width:1000px){
    section{
        padding: 100px 50px;
    }
}
@media (max-width:600px){
    section{
        padding: 125px 30px;
    }
}
section p{
    max-width: 800px;
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 2;
}
.banner-area{
    position: relative;
    justify-content: center;
    min-height: 100vh;
    color: rgb(28, 27, 27);
    text-align: center;
}

/*
.banner-area .banner-img{
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
    display: flex;
}
*/
body{
    background-image: url("img2/pencere.jpg");
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    
    display: flex;
    
}
/*
.banner-area .banner-img::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;

}
*/

.banner-area h1{
    margin-bottom: 15px;
    font-size: 65px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.banner-area h3{
    margin-bottom: 20px;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.banner-area a.banner-btn{
    padding: 15px;
    background: rgba(220, 220, 220, 0.893);
    border-radius: 50px;

    font-family: Georgia, 'Times New Roman', Times, serif;
}
.banner-area a.banner-btn:hover{
    background: rgba(102, 108, 103, 0.2);

}
@media (max-width:800px) {
    .banner-area{
        min-height: 600px;
    }
    .banner-area h1{
        font-size: 32px;
    }
    .banner-area h3{
        font-size: 20px;
    }
    .banner-area a.banner-btn{
        padding: 15px;
    }
}
.previous {
    background-color: #151414;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    
  display: inline-block;
  padding: 16px 32px;
  }
 
  .banner-area .banner-hakkimizda{
    background-color: rgba(255, 255, 255, 0.248);
    border-radius: 25px;
    
  }
  .mapsrc{
    padding-top: 20px;
  }

.container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 100px;

}
.container .title{
    font-size: 3.5rem;
    color: black;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
}
.container .product-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}
.container .product-container .product{
    text-align: center;
    padding: 3rem 2rem;
    background-color: rgba(24, 24, 24, 0.477);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.container .product-container .product img{
    height: 25rem;
}
.banner-area .banner-urunler img{
    width: 52%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
    display: flex;
    margin-top: 20px;
    
}
.banner-area .banner-urunler .previous{
    margin-top: 20px;
    
}


@media (max-width:800px) {
    .banner-area .banner-urunler img{
        width: 100%;
    }
    
}