@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@100;300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    direction: ltr;
}
body{
    background-color: #efefef;
    font-size: 81.25%;
    font-family: "Roboto", sans-serif;
    background-image: url(../../img1/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.text-left{text-align: left;}
.text-center{text-align: center;}
.text-right{text-align: right;}
.text-justify{text-align: justify;}
a{
    text-decoration: none;
}
/*
*    Nav Style
*
*
*
*
*
*
*/
nav{
    padding: 0px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
}
nav .nav-logo img {        
    
    height: 90px;
    
}
nav .nav-list a{
    font-size: 16px;
    color: #efefef;
    transition: .4s;
}
nav .nav-list a:hover{
    transform: scale(1.1);
}
.nav-close{
    display: none;
}
.registerBtn{
    background-color: #007aff;
    border-radius: 3px;
    color: #fff!important;
}
.nav-social,.info{
    display: none;
}
#hero,.heroSpec{
    padding: 0px 5%;
    min-height: 100vh;
}
#nedir{
    padding:0px 5%;
}
.hero{
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    color: #fff;
}
.hero p{
    font-size: 16px;
}
.white-text h1{
    color: #111;
}
.white-text p{
    color: #333;
    font-size: 16px;
}
.contactBtn{
    background-color: #007aff;
    padding: 16px 24px;
    display: inline-block;
    color: #fff;
    border-radius: 50px;
}
/* ================== Tablet ================== */
@media (min-width:896px){
    nav .nav-list{
        display: block!important;
    }
    nav .nav-list a{
        display: inline-block;
        padding: 8px 16px;
    }
    .heroSpec{
        padding: 0px 15%!important;
    }
    .heroSpec h1{
        font-size: 36px;
    }
    .heroSpec p{
        color: #333;
        font-size: 16px;
    }
}
/* ================== PC ================== */
@media (min-width:1024px){
    nav .nav-list{
        display: block!important;
    }
    nav .nav-list a{
        display: inline-block;
        padding: 12px 24px;
    }
    .hero{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-info{
        width: 50%
    }
    .hero-img{
        width: 50%;
    }
}
/* ================== Mobil ================== */
@media (max-width:896px){
    .space{
        min-height: 320px;
    }
    nav{
        position: relative;
    }
    nav .nav-list{
        position: fixed;
        top:0;
        left: 0%;
        width: 100%;
        height: 100vh;
        z-index: 2;
        background-color: #efefef;
        display: none;
        justify-content: center;
        align-items: center;
        animation: navListEffect 1s;
    }
    nav .nav-list .list a{
        display: block;
        text-align: center;
        color: #555;
        padding: 12px 0px;
        transition: .4s;
    }
    nav .nav-list .list a:hover{
        color: #111;
    }
    .nav-social{
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
    }
    .nav-social a{
        margin: 1px 0px;
        display: block;
        background-color: #007aff!important;
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        font-size: 16px!important;
    }
    .burger{
        cursor: pointer;
        padding: 0px 12px;
    }
    .burger div{
        margin: 6px 0px;
        background-color: #efefef;
        width: 30px;
        border-radius: 50px;
        height: 3px;
    }
    .nav-close{
        display: block;
        cursor: pointer;
        position: absolute;
        font-size: 32px;
        top: 19.5px;
        right: 12px;
    }
    .nav-close span{
        animation: closeEffect 1.5s;
        display: block;
        height: 50px;
        width: 50px;
        line-height: 50px;
        text-align: center;
        color: #333;
    }
    .info{
        display: block;
        text-align: center;
        position: absolute;
        bottom: 15px;
        left: 50%;
        color: #555;
        transform: translateX(-50%);
    }
    .hero{
        padding: 35px 5%;
    }
    .hero-img{
        padding: 30px 0px;
    }
    @keyframes closeEffect{
        from{
            transform:rotateZ(0deg);
        }
        to{
            transform:rotateZ(360deg);
        }
    }
    @keyframes navListEffect{
        from{
            left: -100%;
        }
        to{
            left: 0%;
        }
    }
}
/*
*    Container Style
*
*
*
*
*
*
*/
#container{
    padding-bottom: 116px;
}

/*
*    Footer Style
*
*
*
*
*
*
*/
#footer{
    background-color: rgba(239, 239, 239, 1);
    padding: 24px 5% 12px 5%;
    color: #111;
    text-align: center;
}
#footer a{
    display: inline-block;
    height: 50px;
    color: #111;
    line-height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
}
#footer a:hover{
    background-color: #dedede
}
.heroSpec h1{
    margin-top: 180px;
}