* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 6px;
}

body {
    font-family: "Lato", "sans-serif";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    font-family: Montserrat;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

section{
    padding-top: 10rem;
    padding-bottom: 10rem;
    text-align: center;
}

.btn-large{
    font-size: 2rem;
    padding: 2.2rem 1.6rem;
}
.btn{
    margin-top: 2rem;
    font-weight: 400;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.5s;
}

.btn-social{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 2rem;
}

.btn-outline{
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn-outline:hover{
    color: #212529;
    background-color: #fff;
}

.btn-primary{
    background-color: #ffa202;
    border-color: #ffa202;
    padding: 1.2rem 1rem;
    color: #fff;
}

.btn-primary:hover{
    background-color: #ffa202;
    border-color: #ffa202;
}

.img-fluid{
    max-width: 256px;
    height: auto;
}


.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.col{
    float: left;
    width: 100%;
    padding: 1rem;
}

@media(max-width:320px){
    header{
        padding-top: 60px ;
    }
    .logo-resim{
        height: 30px;
    }
}
@media(min-width:320px){
    header{
        padding-top: 62px ;
    }
    .logo-resim{
        height: 30px;
    }
}
@media (min-width:576px){
    header{
        padding-top: 70px ;
    }
    .container{
        max-width: 540px;
    }

    html{
        font-size: 7px;
    }

    .col{
        width: 50%;
    }
    .logo-resim{
        height: 34px;
    }
}

@media (min-width:768px){
    header{
        padding-top: 80px ;
    }
    .container{
        max-width: 720px;
    }

    html{
        font-size: 8px;
    }
    .logo-resim{
        height: 38px;
    }
}

@media (min-width:992px){
    header{
        padding-top: 94px ;
    }
    .container{
        max-width: 960px;
    }

    html{
        font-size: 9px;
    }

    .col{
        width: 33.333%;
    }
    .logo-resim{
        height: 42px;
    }
}

@media (min-width:1200px){
    header{
        padding-top: 106px;
    }
    .container{
        max-width: 1140px;
    }

    html{
        font-size: 10px;
    }
    .logo-resim{
        height: 60px;
    }
}

.text-uppercase {
    text-transform: uppercase;
}

/* Navbar */
nav {
    width: 100%;
    font-family: Montserrat;
    background-color: #2C3E4F;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: fixed;
    z-index: 500;
}

#logo-box {
    background-color: #2C3E4F;
    float: left;
    padding-top: 0.5rem;
}

#logo-box .logo {
    color: #fff;
    font-weight: 700;
    font-size: 2.8rem;

}


#nav-links {
    float: right;
}

#nav-links .nav-item {
    float: left;
    margin: 0.5rem;
}

#nav-links .nav-link {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    padding: 1.6rem;
    letter-spacing: 0.1rem;
    transition: color 0.4s;
}
#nav-links .nav-link:hover{
    color: #ffa202;
}

#nav-links .nav-icon{
    display: none;
}

@media (max-width:992px){
    #logo-box{
        float: none;
        text-align: left;
    }

    #nav-links{
        float: none;
    }

    #nav-links .nav-link{
        font-size: 2rem;
        padding-left: 0;
    }

    #nav-links .nav-item{
        float: none;
        text-align: left;
    }

    #nav-links .nav-icon{
        display: block;
        position: absolute;
        top: 10px;
        right: 5px;
        font-size: 3rem;
    }

    #nav-links.responsive li:not(:first-child){
        display: none;
    }
}

/*Slayder*/ 


.kodlayiruk-slider{
    max-width: 100%;
    position: relative;
    margin: auto;
}

.slide-image{
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
/* İleri butonunun pozisyonunu ayarlıyoruz.*/
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    }
    .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
.number {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}

/* Fading animasyonu */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
from {opacity: .4} 
to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    
    .prev, .next,.text {font-size: 11px}

}

/*
#slider{
   position: relative; margin:0 auto;width:100%;height:auto;overflow:hidden;
}
        #slider img{width:100%;height:auto;}
        #slider li{list-style:none;}

        .sliderbutton{position:relative;margin:0 auto;width:120px;margin-top:-25px;}
        .sliderbutton li{list-style: none;padding:5px;background:red;float:left;margin-right:10px;border-radius:10px;}   
*/

/* Header */

header{
    background-color: #fff;
    height: auto;
}


/* hizmetler*/

#hizmetler h2{
    font-size: 4.8rem;
    color: #2d3d4f;
}

.img-fluid-p{
    max-width: 100%;
    height: auto;
}

.hizmetler-item{
    position: relative;
}

.hizmetler-item img{
    display: block;
    border-radius: 13px;
}

.img-overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffa202;
    opacity: 0;
    transition: opacity 0.4s;
}

.img-overlay .icon{
    color: #fff;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hizmetler-item:hover .img-overlay{
    opacity: 0.7;
    border-radius: 13px;
}

/*hakkimizda*/

#hakkimizda{
    background-color: #ffa202;
    color: #fff;
}

#hakkimizda h2{
    font-size: 4.8rem;
}

#hakkimizda-text{
    text-align: left;
}

#hakkimizda-text {
    float: none;
    width: 100%;
    padding-right: 5px;
    padding-left: 25px;
}


#hakkimizda-text .text{
    font-size: 2rem;
}



/* iletisim */

#iletisim h2{
    font-size: 4.8rem;
    color: #2C3E4F;
}

#iletisim-form{
    width: 70%;
    margin: 0 auto;
    text-align: left;
}

.form-group{
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.form-group input, .form-group textarea{
    border: none;
    width: 100%;
    display: block;
    font-size: 2.4rem;
}

.form-group input:focus, .form-group textarea:focus{
    outline: 0;
}

/* Footer */

footer{
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2C3E4F;
    color: #fff;
    text-align: center;
}

footer a{
    color: #fff;
    font-size: 2rem;
    margin-top: 1rem;
}
footer h4{
    font-size: 2.4rem;
}

footer p{
    font-size: 2rem;
    margin-top: 1rem;
}

footer li{
    display: inline-block;
    margin-right: 1rem;
}

.copyright{
    background-color: #19262f;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    color: #fff;
    text-align: center;
}


