
.button__arrow {
    fill: rgb(220, 207, 236) ;
}

.custom-icon {
    font-size: 50px;

}

.custom-logo{
    display: none;
}



@media screen and (max-width:57.5rem) {
   
.custom-logo {
    display: block;
    }
}

@keyframes slide {
    from{
transform: translateX(0);
    }

    to{
        transform: translateX(-100%);
    }
    
}

.logos{
    overflow: hidden;
    padding: 25px 0;
    background-color:  rgb(220, 207, 236) ;
    white-space: nowrap;
    position: relative;
}

.logos::before,
.logos::after{
    position: absolute;
    top: 0;
    width: 250px;
height: 100%;
content: " ";
z-index: 2;
}

.logos::before{
    left: 0;
background: linear-gradient(to left, rgba(255,255,255,0), rgb(220, 207, 236));


}

.logos::after{
    right: 0;
background: linear-gradient(to right, rgba(255,255,255,0), rgb(220, 207, 236));


}


.logos:hover .logosSlide {
    animation-play-state: paused;
}

.logosSlide{
   animation: 20s slide infinite linear;
   display: inline-block;
}

.logosSlide img{
    height: 125px;
    margin: 0 30px;
}


.hero-image{
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/img/png/ofis.webp);

}

.buttonT{
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;

}

.contentTab{
    display: none;
}

.contentTab.active{
    display: block;
}




#carousel-body{
  
    background-color: #da1467;
    overflow: hidden;
    width: 100%; /* Yüzde cinsinden genişlik */
    margin: 0 auto; /* Merkezlemek için kullanılabilir */
}
.ccontainer{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%; /* Yüzde olarak genişlik */
    max-width: 1000px;
    height: 60%;
    padding: 20px;
    background-color: antiquewhite;
    box-shadow: 0 30px 50px #da1467;
    text-align: center;
}
#sslide{
    width: 100%; /* Yüzde olarak genişlik */
    margin-top: 50px;
    
}

.iitem{
    width: 200px;
    height: 300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    border: solid 1px white;
   

    


}

.iitem:nth-child(1),
.iitem:nth-child(2){
    left: 0;
    top: 0;
    transform: translate(0,0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
}
.iitem:nth-child(3){
    left: 50%;
}
.iitem:nth-child(4){
    left: calc(50% + 220px);
}
.iitem:nth-child(5){
    left: calc(50% + 440px);
}

.iitem:nth-child(n+6){
    left: calc(50% + 660px);
}

.iitem .ccontent{
    position: absolute;
    top: 50%;
    left: 8%;
    width: 35%;
    text-align: left;
    padding: 0;
    color: white;
    transform: translate(0,-50%);
    display: none;

    


}


.iitem:nth-child(2) .ccontent{
    display:inline-block;
    z-index: 11111;
}
.iitem .name{
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    animation: showcontent 0.3s ease-in-out 1 forwards;
 
   

}

.iitem .des{
    font-size: 20px;
    padding:20px 0;
    opacity: 0;
    text-transform:uppercase;
    animation: showcontent 1s ease-in-out 1 forwards;
    
}

@keyframes showcontent{

    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter: blur(0);
    }
}

.bbuttons{
    position: absolute;
    bottom: 30px;
    z-index: 222222;
    text-align: center;
    width: 100%;
}

.bbuttons button{
width: 60px;
height: 60px;
border-radius: 50%;
border: 1px;
background-color:  #da1467;
}

.bbuttons button:hover{
   background-color: palevioletred;
    }

    @media screen and (max-width: 600px) {
        .ccontainer {
            width: 90%; 
            padding: 10px; 
        }
    
        #sslide {
            width: 100%; 
        }
    
        .iitem {
            width: 90%; 
            max-width: none; 
        }

        .iitem:nth-child(3){
           display: none;
        }
        .iitem .ccontent {
            width: 80%;
            max-width: none;
            text-align: center;
        }
        #carousel-body {
            padding: 0px; /* Küçük ekranlarda daha küçük bir padding */
        }
       
    }