body{
    font-family: "poppins";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    width: 100vh;
    display: flex;
}

/* HEADER */
.header{
    display: flex;
    justify-content: space-around;
    width: 100vh;
    margin: 0 auto;
    background-color: antiquewhite;
}

img{
    width: 125px;
}

.nav{
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 1440px;
}

.nav ul{
    display: flex;
    justify-content: center;
    padding: 0;
}

.nav ul li{
    list-style: none;
    box-sizing: border-box;
    margin-left: 30px;
}

.nav ul li:first-child{
    margin-left: 0;
}

.nav ul li a{
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    color: #9e2064;
    background-color: #f9b7ba;
    width: 180px;
    height: 40px;
    border: 2px solid #9e2064;
    border-radius: 6px;
    padding-top: 10px;
    font-size: 0.8em;
    transition: background-color 0.5s ease ;
}

.nav ul li:first-child a{
    color: #f9b7ba;
    background-color: #9e2064;
}

.nav ul li a:hover{
    background-color: #9e2064;
    color: #f9b7ba;
}

h1{
    font-size: 1.5em;
    margin-top: 30px;
    color: #9e2064;
}

.dil{
    display: block;
    width: 125px;
    text-align: center;
}

h3{
    font-size: 1em;
    color: yellow;
    background-color: red;
    margin-bottom: 5px;
}

.dil img{
    width: 60px;
}

/* SECTION */
.container{
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    background-image: url(../images/background.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

.kalpler{
    position: absolute;
    margin: 150px 0;
}

.kalpSol{
    left: 150px;
}

.kalpSag{
    right: 150px;
}

.container .kalpler img{
    width: 150px;
}

.slider-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 40%;
    max-width: 600px;
    overflow: hidden;
    margin-top: 125px;
}

.slider{
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img{
    width: 100%;
    margin: 0;
    padding: 0;
}

.prev, .next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    color: #9e2064;
    cursor: pointer;
    /* opacity: 0.7; */
    transition: opacity 0.2s ease-in-out;
    background: none;
    border: none;
}

.prev:hover, .next:hover{
    opacity: 1;
}

.prev{
    left: 1px;
}

.next{
    right: 1px;
}

.sosyalMedyalar{
    position: absolute;
    bottom: 100px;
}

.sosyalMedyalar img{
    width: 250px;
}


/* FOOTER */
.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: antiquewhite;
    margin: 0 auto;
}

footer h2{
    color: #9e2064;
}

@media only screen and (max-width:576px){
    
}