*{
    margin: 0;
    padding: 0;
}
:focus{
    outline: none;
}
#container{
    width: 1200px;
    margin: 0 auto;
}
input[type="text"] , input[type="email"] , input[type="number"] , input[type="password"] , textarea{
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-family: Poppins , sans-serif;
    font-size: 12px;
    padding: 10px;
}
textarea{
    resize: none;
}

/* Butonlar */
.yesil-buton{
    padding: 10px 20px;
    background: #00ff00;
    color: white;
    font-family: Poppins , sans-serif;
    font-size: 12px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.yesil-buton:hover{
    background: #00b300;
}

header{
    width: 100%;
    background: rgba(0,0,0,.7);
    display: table;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
header.black{
    background: black;
}
header #logo{
    float: left;
}
header #logo img{
    height: 50px;
}
header nav{
    float: left;
    margin-left: 50px;
    margin-top: 15px;
}
header nav ul li{
    display: block;
    float: left;
    list-style: none;
    font-family: Raleway , sans-serif;
    font-size: 14px;
    color: white;
    margin-right: 50px;
    font-weight: bold;
}

/* Slider */
#slider{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#slider #dot{
    width: 100%;
    height: 100vh;
    background: url("../img/dot.png");
    background-size: 3px 3px;
    position: fixed;
    z-index: 2;
    opacity: 0;
}
#slider ul li{
    float: left;
    width: 100vw;
    height: 100vh;
    position: absolute;
    opacity: 0;
    transition: .4s ease-in-out;
    top: 0;
    left: 0;
}
#slider ul li #resim{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}
#slider ul li #resim img{
    width: 100vw;
    height: 100vh;
}
#slider ul li h1{
    z-index: 3;
    left: 0;
    right: 0;
    padding: 0 10px;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: Work Sans , sans-serif;
    text-align: center;
    font-size: 60px;
    opacity: 0;
    transition: .4s ease-in-out;
}

/* İçerik */
#icerik{
    margin-top: 80px;
    min-height: calc(100vh - 130px);
    display: table;
    width: 100%;
    padding-bottom: 50px;
}
#icerik #container > h1{
    font-family: Work Sans , sans-serif;
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}
#icerik #container p{
    font-family: Poppins , sans-serif;
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 10px;
}
#icerik #container > img{
    display: table;
    margin: 0 auto;
}

/* Form */
#form{
    width: 100%;
    display: table;
}
#form #sol{
    float: left;
    width: 50%;
}
#form #sol span{
    display: block;
    margin-bottom: 10px;
    text-align: center;
    color: red;
    font-family: Poppins , sans-serif;
    font-size: 12px;
}
#form #sol span.yesil-yazi{
    color: #1cff26;
}
#form #sol input[type="text"] , #form #sol input[type="email"] , #form #sol textarea{
    width: calc(100% - 22px);
    margin-bottom: 10px;
}
#form #sol button{
    margin-top: 10px;
}
#form #sag{
    float: right;
    width: calc(50% - 20px);
}
#form #sag table tr td{
    padding-bottom: 10px;
    font-family: Poppins , sans-serif;
    font-size: 12px;
    padding-right: 10px;
    vertical-align: top;
}
#form #sag table tr td:last-child{
    padding-right: 0;
}
#form #sag table tr td i{
    padding-top: 4px;
}
#form #sag #bilgi{
    background: black;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    color: white;
    border-radius: 5px;
    display: table;
    margin-bottom: 10px;
}
#form #sag #bilgi i{
    float: left;
}
#form #sag #bilgi span{
    float: left;
    font-family: Poppins , sans-serif;
    font-size: 12px;
    margin-left: 10px;
}

/* Footer */
footer{
    width: 100%;
    padding: 15px 0;
    background: black;
    display: table;
}
footer #copyright{
    float: left;
    font-family: Roboto , sans-serif;
    font-size: 12px;
    color: white;
    line-height: 25px;
}
footer #sosyal{
    float: right;
}
footer #sosyal li{
    float: left;
    margin-left: 10px;
    width: 25px;
    height: 25px;
    background: white;
    list-style: none;
    color: black;
    border-radius: 50%;
    display: block;
    text-align: center;
}
footer #sosyal li i{
    line-height: 25px;
}
