*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.banner img{
    border-radius: 10px;
    margin-top: 1.5rem;
    transition: 1s all ease;
    width: 100%;
    height: 100%;
}
.banner img:hover{
     -webkit-box-shadow: 13px 13px 37px 1px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 13px 13px 37px 1px rgba(0, 0, 0, 0.55);
  box-shadow: 13px 13px 37px 1px rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  transition: 1s all ease;
}
h1{
    text-align: center;
    margin-top: 3rem;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}
h2{
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-image{
    display: flex;
    width: 70%;
    align-items: center;
    letter-spacing: 0.8px;
    justify-content: center;
    margin-top: 3rem;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    padding: 1rem;
    gap: 5rem;
}
.text-image img{
    width: 30%;
    height: 100%;
    border-radius: 10px;
}
.container-reverse{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}
.text-image-reverse{
    display: flex;
    width: 70%;
    align-items: center;
    letter-spacing: 0.8px;
    justify-content: center;
    margin-top: 3rem;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    padding: 1rem;
    gap: 5rem;
    background: #f6f6f6;
}
.text-image-reverse img{
    width: 30%;
    height: 100%;
    border-radius: 10px;
}
.images{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
    gap: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.card-body img{
    
}
.images-2{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
    gap: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.images-2 img{
    border-radius: 10px;
    transition: 0.5s all ease;
}
.images-2 img:hover{
    transform: scale(1.1);
    transition: 0.5s all ease;
}
.images-2 p{
    margin-top: 2rem;
}
.images img{
    border-radius: 10px;
    transition: 0.5s all ease;
}
.images img:hover{
    transform: scale(1.1);
    transition: 0.5s all ease;
}
.images p{
    margin-top: 2rem;
}
strong
{
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: start;
}
.header-banner{
    margin-top: 3rem;
}
.header-banner p{
    font-family: "Neuzeit Grotesk",sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 1rem;
}
.header-text{
    width: 80%;
}
.header-text p{
    font-family: "Neuzeit Grotesk",sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.5;
}
.header-text strong{
    font-family: "Neuzeit Grotesk",sans-serif;
    font-size: 20px;
    line-height: 1.5;
}
.cardcontainer{
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    gap: 5rem;
    margin-top: 1rem;
}
.card-image{
    width: 40%;
    height: 100%;
}
.card-image img{
    width: 100%;
}
.card-text{
    width: 50%;
    height: 100%;
}
.card-text h1{
    margin-bottom: 4rem;
}
.card-text p{
    font-family: "Neuzeit Grotesk",sans-serif;
    font-weight: lighter;
    font-size: 20px;
    line-height: 1.5;
}
#card-container2{
    background-color: #f6f6f6;
}
.productcontainer{
    display: flex;
    justify-content: space-between; /* Kartlar arasında boşluk bırakır */
}
.product-card{
    width: 100%;
}
.product-card img{
    width: 33%;
}
.product-card span{
    font-size: 18px;
    font-family: "Neuzeit Grotesk",sans-serif;
    line-height: 2;
    text-align: center;
    
}
.iplik-cesitleri{
    text-align: start;
    padding: 4rem;
    font-family: "Neuzeit Grotesk",sans-serif;
    font-size: 28px;
}
hr{
    z-index: 1;
}
nav ul li{
    z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 768px){
    .banner img{
        width: 100%;
    }
    .header-banner img{
        width: 50%;
    }
    .container img{
        width: 100%;
    }
    .container-reverse img{
        width: 100%;
    }
    .product-card img{
        width: 65%;
    }
    .text-image{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 3rem;
    }
    .text-image-reverse{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 2rem;
    }
    .images{
        display: grid;
    }
    .images-2{
        display: grid;
    }
    .images img, .images-2 img{
        width: 80%;
    }
    .productcontainer{
        display: grid;
        justify-content: center;
    }
    .card-text{
        width: 100%;
    }
    .cardcontainer{
        display: grid;
        padding: 0;
        gap: 0;
    }
    .card-image{
        width: 100%;
    }
    .card-image img{
        width: 100%;
        height: 100%;
    }
    #card-image2{
        margin-top: 3rem;
    }
    #card-image3{
        margin-top: 3rem;
    }
    #card-container3{
        display: flex;
        flex-direction: column-reverse;
    }
    .text-image-reverse{
        display: flex;
        flex-direction: column-reverse;
    }
    .banner{
        
    }
    .banner img{
        width: 100%;
        height: 100%;
    }
    #igne-img img{
        width: 70%;
    }
    #igne-img{
        font-size: 16px;
    }
    #card-nakis h2{
        font-size: 1.7rem;
    }
    
}

@media screen and (min-width: 769px) and (max-width: 1365px){
    .banner img{
        width: 100%;
    }
    .header-banner img{
        width: 50%;
    }
    .container img{
        width: 100%;
    }
    .container-reverse img{
        width: 100%;
    }
    .text-image{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 3rem;
    }
    .text-image-reverse{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 2rem;
    }
    .images{
        display: grid;
    }
    .images-2{
        display: grid;
    }
    .images img, .images-2 img{
        width: 80%;
    }
    .productcontainer{
        display: grid;
        justify-content: center;
    }
    .card-text{
        width: 100%;
    }
    .cardcontainer{
        display: grid;
        padding: 0;
        gap: 0;
    }
    .card-image{
        width: 100%;
    }
    .card-image img{
        width: 100%;
        height: 100%;
    }
    #card-image2{
        margin-top: 3rem;
    }
    #card-image3{
        margin-top: 3rem;
    }
    #card-container3{
        display: flex;
        flex-direction: column-reverse;
    }
    .text-image-reverse{
        display: flex;
        flex-direction: column-reverse;
    }
    .banner{
        
    }
    .banner img{
        width: 100%;
        height: 100%;
    }
    #igne-img img{
        width: 70%;
    }
    #igne-img{
        font-size: 16px;
    }
    #card-nakis h2{
        font-size: 1.6rem;
    }
   #nakiscontainer{
    display: flex;
   }
}
@media screen and (min-width: 937px) and (max-width: 1365px){
    .banner img{
        width: 100%;
    }
    .header-banner img{
        width: 50%;
    }
    .container img{
        width: 100%;
    }
    .container-reverse img{
        width: 100%;
    }
    .text-image{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 3rem;
    }
    .text-image-reverse{
        margin: 0;
        padding: 0;
        display: grid;
        margin-top: 2rem;
    }
    .images{
        display: grid;
    }
    .images-2{
        display: grid;
    }
    .images img, .images-2 img{
        width: 80%;
    }
    .productcontainer{
        display: grid;
        justify-content: center;
    }
    .card-text{
        width: 100%;
    }
    .cardcontainer{
        display: grid;
        padding: 0;
        gap: 0;
    }
    .card-image{
        width: 100%;
    }
    .card-image img{
        width: 100%;
        height: 100%;
    }
    #card-image2{
        margin-top: 3rem;
    }
    #card-image3{
        margin-top: 3rem;
    }
    #card-container3{
        display: flex;
        flex-direction: column-reverse;
    }
    .text-image-reverse{
        display: flex;
        flex-direction: column-reverse;
    }
    .banner{
        
    }
    .banner img{
        width: 100%;
        height: 100%;
    }
    #igne-img img{
        width: 70%;
    }
    #igne-img{
        font-size: 16px;
    }
    #card-nakis h2{
        font-size: 1.6rem;
    }
   #nakiscontainer{
    display: flex;
   }
}

@media screen and (min-width:1366px) and (max-width:1800px) {
    #changed-images-1 img{
        width: 70%;
    }
    #changed-images-2 img{
        width: 70%;
    }
    #changed-images-3 img{
        width: 70%;
    }
}
