*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
ul, li{
    list-style: none;
}
a{
    text-decoration: none;
}
html{
    font-family: "Poppins", sans-serif;
}
body{
    background-color: #1d1d1d;
}
/*LİGHT THEME*/
body.light{
    background-color: #f2f2f2;
}
body.light #hero-coming-soon a,
body.light #hero-coming-soon p,
body.light #hero-coming-soon footer p,
body.light #hero-coming-soon footer a,
body.light #hero-coming-soon h4,
body.light #hero-coming-soon h3{
    color: #1d1d1d;
}
body.light #hero-coming-soon .content form,
body.light #hero-coming-soon .content form input{
    background-color: #fff;
}

#hero-coming-soon{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:40px 60px;
    position:relative;
}
#hero-coming-soon header{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
#hero-coming-soon header .logo{
    height:150px;
    position:relative;
}
#hero-coming-soon header .logo .slogan{
    position:absolute;
    top:0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    left:-50px;
    color:transparent;
    background: rgb(0,166,81);
    background: linear-gradient(90deg, rgba(0,166,81,1) 0%, rgba(135,69,150,1) 60%, rgba(83,45,108,1) 100%);
    background-size: cover; /* Arka plan resminin boyutu */
    background-position: center; /* Resmi ortalar */
    background-clip: text; /* Arka planı sadece yazı içine kırpar */
    color: transparent; /* Yazıyı şeffaf yapar */
}
#hero-coming-soon header .logo img{
    height: 100%;
}
#hero-coming-soon header .downloads{
    display:flex;
    flex-direction: row;
    align-items: center;
}
#hero-coming-soon header .downloads .item{
    margin-left:10px;
    padding:10px;
    display: flex;
    align-items: center;
    background-color: #2d2d2d;
    border-radius: 10px;
    height: auto;
}

#hero-coming-soon header .downloads .item:hover{
    background-color: #1d1d1d;
    box-shadow: 1px 1px 1px 3px #3d3d3d;
}
#hero-coming-soon header .downloads .item:hover .text h4,
#hero-coming-soon header .downloads .item:hover .text h3{
    color:#fff;
}
#hero-coming-soon header .downloads .item i{
    font-size: 48px;
    margin-right: 5px;
    color:#f0f0f0;
}
#hero-coming-soon header .downloads .item .text{
    display:flex;
    flex-direction:column;
    align-items: center;
}
#hero-coming-soon header .downloads .item .text h4{
    font-size: 16px;
    font-weight: 500;
    color:grey;
}
#hero-coming-soon header .downloads .item .text h3{
    font-size: 14px;
    font-weight: 600;
    color:#9d9d9d;
}
#hero-coming-soon footer{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position:relative;
}
#hero-coming-soon footer .copyright{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
#hero-coming-soon footer .copyright a{
    font-size: 14px;
    font-weight: 700;
    color:#fff;
}
#hero-coming-soon footer .copyright p{
    font-size: 14px;
    font-weight: 300;
    color:#fff;
}
#hero-coming-soon footer .item a{
    font-size: 24px;
    color:#fff;
    opacity: .7;
}
#hero-coming-soon footer .item a:hover{
    opacity: 1;
}
#hero-coming-soon .content{
    position:absolute;
    display: flex;
    flex-direction: column;
    top:50%;
    left: 50%;
    transform:translate(-50%, -50%);
    width: 100%;
    align-items: center;
}
#hero-coming-soon .content h1{
    font-size: 96px;
    color:transparent;
    background: rgb(0,166,81);
    background: linear-gradient(90deg, rgba(0,166,81,1) 0%, rgba(135,69,150,1) 60%, rgba(83,45,108,1) 100%);
    background-size: cover; /* Arka plan resminin boyutu */
    background-position: center; /* Resmi ortalar */
    background-clip: text; /* Arka planı sadece yazı içine kırpar */
    color: transparent; /* Yazıyı şeffaf yapar */
    margin-bottom:20px;
}
#hero-coming-soon .content p{
    font-size: 16px;
    font-weight: 300;
    color:#fff;
    max-width: 900px;
    text-align: center;
    margin-bottom:40px;
}
#hero-coming-soon .content form{
    width: 500px;
    height: 70px;
    padding:10px;
    background-color: #2d2d2d;
    display: flex;
    border-radius: 10px;
}
#hero-coming-soon .content form input{
    width: 100%;
    height: 100%;
    padding-left:10px;
    color:#fff;
    background-color: #2d2d2d;
    outline: 0px;
    border:none;
    font-size: 18px;
}
#hero-coming-soon .content form input::placeholder{
    font-size: 14px;
}
#hero-coming-soon .content form input:focus::placeholder{
    color:transparent;
}
#hero-coming-soon .content form button{
    width: 150px;
    border: none;
    background-color: #fff;
    color:#000;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}
#hero-coming-soon footer .socials{
    display: flex;
    flex-direction: row;
}
#hero-coming-soon footer .socials .item{
    margin-left:10px;
}
@media screen and (max-width:600px) {
    #hero-coming-soon{
        padding:0;
        padding-top:20px;
    }
    #hero-coming-soon header{
        display: flex;
        width: 100%;
        align-items: center;
        flex-direction: column;
        padding:0px;
    }
    #hero-coming-soon header .logo{
        margin-bottom:20px;
    }
    #hero-coming-soon header .downloads{
        width: 100%;
        padding-left:20px;
        padding-right:20px;
    }
    #hero-coming-soon header .downloads .item{
        align-items: center;
        width: 100%;
        margin:0;
    }
    #hero-coming-soon header .downloads .item:first-child{
        margin-right: 10px;
    }
    #hero-coming-soon header .downloads .item i{
        font-size: 28px;
        color:#f0f0f0;
    }
    #hero-coming-soon header .downloads .item .text{
        display:flex;
        flex-direction:column;
        align-items: center;
    }
    #hero-coming-soon header .downloads .item .text h4{
        font-size: 14px;
        font-weight: 500;
        color:grey;
    }
    #hero-coming-soon header .downloads .item .text h3{
        font-size: 12px;
        font-weight: 600;
        color:#9d9d9d;
    }
    #hero-coming-soon .content{
        padding-left:20px;
        padding-right: 20px;
    }
    #hero-coming-soon .content h1{
        font-size: 48px;
        line-height: 50px;
        text-align: center;
    }
    #hero-coming-soon .content p{
        font-size: 14px;
    }
    #hero-coming-soon .content form{
        width: 100%;
        height: 70px;
    }
    #hero-coming-soon footer{
        position:relative;
    }
    #hero-coming-soon footer .copyright{
        width: 100%;
        top:-20px;
    }
    #hero-coming-soon footer .copyright p{
        font-size: 12px;
        text-align: center;
    }
    #hero-coming-soon footer .socials{
        width: 100%;
        position:absolute;
        top:-80px;
        left:50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    #hero-coming-soon footer .socials .item{
        display: flex;
        align-items: center;
    }
}