*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.w-100{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.w-50{
    width: 50%;
    position:relative;
    height: 100%;

}
.resim-bg{
    width: 100%;
    height: 100%;
    position: relative;
}
.resim-bg:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #000;
    opacity: 0.3;
    height: 100%;
}
.resim-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text{
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    z-index: 9;
}
.text-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo img{
    height: 70px;
}
.desc{
    margin: 20px 0;
}
.desc p{
    font-size: 16px;
    color: #fff;
    text-align:center;
}
.link{
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 30px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet-active{
    background-color: #ffffff !important;
}
.swiper-pagination-bullet{
    width: 15px !important;
    z-index: 999;
    border-radius: 5px !important;
}
.swiper-pagination{
    z-index: 999999;
}
@media only screen and (max-width: 768px) {
    .w-100{
        flex-direction: column;
        height: auto;
    }
    .w-50{
        width: 100%;
        height: 50%;
    }
    .text{
        
        bottom: 0px;
        justify-content: center;
    }
}
