body {
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

.site-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(105deg, #1c1c1f, #3c3c40);
        
}

.header {
    height: 100vh;
    width: 350px;
    padding-top: 100px;
    padding-left: 50px;
    /*background: linear-gradient(2deg, #c80700, #ff4701);*/
    position: sticky;
    top: 0px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    align-content: flex-start;
}

.header .logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin:10px;
}

.header .logo img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 5px 5px 10px #000;
}

.header .header-info{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header .header-info svg{
    width: 30px;
    margin-right: 5px;
}

.header .header-info > *{
    color:#FFF;
    font-size: 17px;
    font-weight: 600;
    width: 70%;
    padding: 10px;
    text-align: center;
    margin:10px 0px;
    border-radius: 2px;
    transition: all .5s;
    max-height: 50px;
}

.header .header-info .whatsapp{
    background-color: rgb(14,165,44);
}

.header .header-info .whatsapp:hover{
    text-decoration: none;
    background-color: rgb(14, 105, 32);
}

.header .header-info .phone{
    background: rgb(155,155,155);
}

.header .header-info .phone:hover{
    text-decoration: none;
    background-color: #3c3c40;
}

.header .header-info .mail{
    width: 100% !important;
}

.main-container {
    overflow: hidden;
    padding-top: 100px;
    width: calc(100% - 350px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 1000px;
    flex-wrap: wrap;
}

.main-container-left{
    width: 48%;
    padding-left: 100px;
}

.main-container-full{
    width: 100%;
    order:30;
    margin-top:30px;
    color:#fff;
    padding-left: 80px;
}

.mySwiper .swiper {
    overflow: hidden;
}

.mySwiper .swiper-slide {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    width: 100%;
}

.mySwiper .swiper-slide img{
    box-shadow: 10px 10px 10px #000;
    height: 600px;
    object-fit: cover;
}

.main-container-right{
    margin-right: 3%;
    width: 45%;
    padding: 0px 100px;
}

.cardSwiper{
    width: 100%;
}

.cardSwiper .swiper-slide{
    width: 100%;
    height: 600px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sigorta-item{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.sigorta-item > div{
    width: 100%;
    margin-bottom:15px;
}

.sigorta-item-phone{
    background-color: rgb(14,165,44);
    color: #eee;
    font-size: 17px;
    font-weight: 600;
    width: 70%;
    padding: 10px;
    text-align: center;
    margin:10px 0px;
    border-radius: 2px;
    transition: all .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sigorta-item-phone svg{
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.sigorta-item-phone:hover{
    background-color: #999;
    color:#eee;
    text-decoration: none;
}

.sigorta-item-logo img{
    max-width: 300x;
    height: 150px;
    object-fit: cover;
}

@media (max-width: 992px) {
 
    .header{
        width: 100%;
        padding-top: 30px;
        height: auto;
        position: relative;
        padding-left: 0px;
    }
    .header .logo{
        text-align: center;
    }
    .header .logo img{
        width: 50%;
    }

    .header .header-info .whatsapp{
        width: 49%;
    }
    .header .header-info .phone{
        width: 49%;
    }
    .main-container{
        width: 100%;
        flex-wrap: wrap;
        padding-top: 30px;
    }
    .main-container > div{
        width: 100% !important;
    }
    
    .main-container-left{
        padding:0px 30px;
        margin-top:30px;
        order:20;
    }

    .main-container-right{
        padding:0px 30px;
        order:10;
    }

    .main-container-full{
        padding-left: 0px;
    }

    .mySwiper .swiper-slide img{
        height: 250px;
    }

}