html{
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body{
    font-family: "Montserrat", sans-serif;
}

img{
    width: 100;
}

section{
    padding: 100px 0;
    background: #122e44;
}

.section_title{
    margin-bottom: 30px;
}

.section_title h2{
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .5s ease-in-out;
}
.section_title h2:hover{
    background-color: #24CAAC;
}

/* ------------------------------HEADER------------------------------ */

header{
    background-color: #000;
    border-bottom: 1px solid rgba(238, 238, 238, 0.801);
    position: fixed;
    width: 100%;
    z-index: 5;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    padding: 10px 0;
}
.nav_links{
    display: flex;
}
.nav_links li a{
    margin-left: 15px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.nav_links li a:hover{
    background: #24CAAC;
}

.logo h2 a{
    color: #fff;
    text-transform: uppercase;
}



/* ANASAYFA */

.inner_anasayfa{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
    color: #fff;
}
.child_anasayfa{
    flex-basis: 45%;
}
.child_anasayfa h1{
    font-size: 50px;
    color: #24CAAC;
}
.span_child{
    color: #a6094d;
}
.child_anasayfa p{
    font-size: 25px;
    margin-bottom: 12px;
}
.btn{
    background: #24CAAC;
    padding: 12px 28px;
    border-radius: 20px;
    color: #fff;
    border: 1px solid #24CAAC;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}
.btn:hover{
    background: transparent;
    letter-spacing: 2px;
}

/* HAKKIMDA */

.innersoftware{
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
}
.innersoftware_child{
    flex-basis: 31%;
    color: #fff;
    padding: 20px 20px;
    background: rgba(55, 60, 80, 0.281);
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .5s ease-in-out;
}
.innersoftware_child:hover{
    border: 1px solid #24CAAC;
}

.innersoftware_child .icon{
    font-size: 35px;
    color: #24CAAC;
}
.innersoftware_child h3{
    font-size: 30px;
    margin: 5px 0;
}
.innersoftware_child p{
    font-size: 15px;
}

/* PROJELERİM */

.inner_courses{
    display: flex;
    flex-wrap: wrap;
    
}

/* İLETİŞİM */
.inner_contect{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0% auto;
    width: 80%;
}
.child_contact{
    flex-basis: 45%;
}

.child_contact form{
    padding: 50px 40px;
    background: #2f363e;
    border-radius: 5px;
}
.child_contact form input,textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background: #24292d;
    border: none;
    resize: none;
    border-radius: 25px;
    transition: .3s ease-in;
}

.child_contact form input,textarea:focus{
    color: #fff;

}
.child_contact form input:focus{
    letter-spacing: 1px;

}
.child_contact form textarea:focus{
    letter-spacing: 1px;

}

.child_contact form input:last-child{
    margin-bottom: 0;
    background: #24CAAC;
    border: 1px solid #24CAAC;
    transition: .3s;


}
 
.child_contact form input:last-child:hover{
    background: transparent;
    color: #fff;
}