.imgbox{
    width: 100%;
    height: 500px;
    margin:10px 2px;
    border-radius: 10px;
    overflow: hidden;
}
.imgbox {
   width: 100%;
   max-width: 800px; /* Masaüstünde genişlik sınırı */
   height: 500px;     /* Masaüstü yüksekliği */
   margin: 10px auto; /* Ortalar */
   border-radius: 10px;
   overflow: hidden;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
   .imgbox {
       height: 300px; /* Mobilde daha küçük yükseklik */
   }
}

@media (max-width: 480px) {
   .imgbox {
       height: 200px; /* Daha küçük ekranlar için daha da az yükseklik */
   }
}
.slide{
    /* border: 2px solid black; */
    /* background-color: #ffffff4e; */
    margin: 10px auto;
    height: 400px;
    min-height: 200px;
    /* border-radius: 10px; */
    width: 100%;
 }



.ImageStyle1{
}
.ImageStyle1 img{
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
}

.ImageStyle2{
   display: flex;
}
.ImageStyle2 img{
   width: 50%;
   height: 100%;
   object-fit: cover;
}



.ImageStyle3{
   display: flex;
}
.ImageStyle3 img{
   width: 33.333%;
   height: 100%;
   object-fit: cover;
}


.ImageStyle4{
   display: flex;
   align-items: center;
   justify-content: center;
}
.ImageStyle4 img{
    width: 70%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.ImageStyle4 div{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 30%;
   height: 100%;
}
.ImageStyle4 div img{
   width: 100%;
   height: 50%;
    display: block;
    object-fit: cover;
}


.ImageStyle5{
   display: flex;
   align-items: center;
   justify-content: center;
}
.ImageStyle5 img{
   width: 70%;
   height: 100%;
    display: block;
    object-fit: cover;
}
.ImageStyle5 div{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 30%;
   height: 100%;
}
.ImageStyle5 div img{
   width: 100%;
   height: 33.33%;
    display: block;
    object-fit: cover;
}




.ImageStyle6{
   display: flex;
   align-items: center;
   justify-content: center;
}
.ImageStyle6 img{
   width: 60%;
   height: 100%;
    display: block;
    object-fit: cover;
}
.ImageStyle6 div{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 40%;
   height: 100%;
}
.ImageStyle6 div img{
   width: 100%;
   height: 50%;
    display: block;
    object-fit: cover;
}
.ImageStyle6 div div{
   width: 100%;
   height: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: row;
}
.ImageStyle6 div div img{
   width: 50%;
   height: 100%;
    display: block;
    object-fit: cover;
}


.ImageStyle7{
   display: flex;
   align-items: center;
   justify-content: center;
}
.ImageStyle7 img{
   width: 60%;
   height: 100%;
    display: block;
    object-fit: cover;
}
.ImageStyle7 div{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 40%;
   height: 100%;
}
.ImageStyle7 div img{
   width: 100%;
   height: 50%;
    display: block;
    object-fit: cover;
}
.ImageStyle7 div div{
   width: 100%;
   height: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: row;
}
.ImageStyle7 div div img{
   width: 50%;
   height: 100%;
    display: block;
    object-fit: cover;
}
.ImageStyle7 div div div{
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}
.ImageStyle7 div div div img{
   width: 100%;
   height: 50%;
    display: block;
    object-fit: cover;
}



.SlideImage1{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.SlideImage1 img{
    width: 1%;
    height: 100%;
    object-fit: contain;
    flex: 1;
    display: block;
    transition: all .5s linear;
}.SlideImage1 img.activeImg{
   flex: 20;
}



.SlideImage2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Mobil cihazlar için pürüzsüz kaydırma */
    scrollbar-width: none; /* Varsayılan olarak kaydırma çubuğunu gizler */
}
.SlideImage2 img{
    width: 90%;
    height: 100%;
    object-fit: cover;
    margin:2px;
    border-radius: 10px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}





.SlideImage3 {
    overflow: hidden;
    display: flex;
    position: relative;
    margin: auto;
}

.slider3 {
    display: flex;
    transition: all 0.3s ease;
    overflow-y: hidden;
    overflow-x: scroll; /* Yatay kaydırma aktif edildi */
}
.slider3::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}

.slider3 img {
    width: 100%; /* Görsellerin genişliği */
    height: 100%;
    object-fit: cover;
    margin-right: 10px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bolder;
    cursor: pointer;
    border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgb(61, 61, 61);
}
.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}



.SlideImage4 {
    /* margin-bottom: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* overflow: hidden; */
}
.SlideImage4 img{
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    object-fit: cover;
    display: block;
    /* transition: all .3s linear; */
    position: relative;
    top: 45%;
    margin: 0px 5px;
    z-index: 3;
}
.SlideImage4 img.activeImg{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    /* transition: all .3s linear; */
    top: 0%;
    position: absolute;
    z-index: unset;
}
