/*
Theme Name: Skape
Version: 2.0
Author: Alexe Vlad
Author URI: http://squid40.com
Description: Website developed by Alexe Vlad
*/


/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    background:none repeat scroll 0 0 transparent;
    border:0 none;
    margin:0;
    outline:0 none;
    padding:0;
    font-family:Arial;
    font-weight:normal;
    font-size: 12px;
    margin-top: 0px;
}
* {margin:0;padding:0; outline: 0 none;}
html{
    font-size: 10px;  /*Meaning that 0.1rem = 1px*/
    scroll-behavior: smooth;
}
.cf:before,
.cf:after ,
.clear:before,
.clear:after{
    content:"";
    display:table;
}
.clear,
.clear:after,
.cf:after {
    clear:both;
}
body{
    text-rendering: optimizeLegibility;
}

a{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
a:hover{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

input{
    -webkit-border-radius:0; 
    -webkit-appearance: none;
    border-radius:0;
}
.home-section{
    height: 100vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.content-box{
    width: 500px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content-box h1{
    color: #fff;
    font-size: 50px;
    margin-bottom: 30px;
}
.content-box p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.show-form{
    display: none;
}
.show-form input{
    display: block;
    width: 100%;
    margin-bottom: 15px;
    background: rgb(1,245,161);
    background: linear-gradient(90deg, rgba(1,245,161,1) 0%, rgba(1,232,201,1) 50%, rgba(1,217,244,1) 100%);
    color: #000;
    border: none;
    min-width: 200px;
    padding: 0px 10px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.submit{
    background: rgb(181,14,212);
    background: linear-gradient(90deg, rgba(181,14,212,1) 0%, rgba(129,106,239,1) 50%, rgba(1,218,222,1) 100%); 
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-transform: uppercase;
    color: #000;
    border: none;
    min-width: 260px;
    box-sizing: border-box;
    padding: 0px 20px;
    height: 54px;
    line-height: 54px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-bottom: 0px;
}
.submit:hover{
    background: rgb(1,218,222);
    background: linear-gradient(90deg, rgba(1,218,222,1) 0%, rgba(129,106,239,1) 50%, rgba(181,14,212,1) 100%);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
/*### RESPONSIVE ###*/

@media only screen and (max-width: 720px) {
    .content-box{
        width: 100%;
    }
}



/*### END RESPONSIVE ###*/