*{
    margin:0;
    padding: 0;
    font-family:sans-serif;
    overflow: hidden;
    color:whitesmoke;
    box-sizing: border-box;
    border: none;

}

body{
    /* height: 50vh; */
    background-image: url(./images/phone3.jpg);
    width: 100%;
    height:70vh;
    background-repeat: none;
    background-size: cover;
    background-position:center;
}

#nav{
    position: fixed;
    z-index: 100;
    top:0;
    left: 0;
    width:100%;
    height: 80px;
    padding: 10px 90px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
}
#nav .logo{
    padding:22px 20px;
    height: 80px;
    float:left;
    font-size: 28px;
    /* font-weight: bold; */
    color:skyblue;
    font-family:orpheus;
    font-style: italic;

}
#nav ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}
#nav ul li a{
    line-height: 80px;
    color: #e2472f;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    font-family: optima;
}
#nav ul li a:hover{
    background: rgba(0,0,0,0.7);
    border-radius:6px;
}
#nav ul li a.active{
    background: #e2472f;
    color:#fff;
    border-radius: 6px;

}
header{
    position:absolute;
    width: 75%;
    text-align: center;
    left:12%;
    top: 80px;

}
header h1{
    font-size:30px;
}
.empty{
    width:100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
}
.content {
    display: flex;
    min-height: 110vh;

}
.content section{
    /* position:relative; */
    margin-top: 30px;
    margin-left: 5vh;
}
.content-form{
    margin-top: 7rem;
}
section i{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.8);
    color:#000;
    text-align: center;
}
.form{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 50%;
    justify-content: center;
    align-items: center;
    min-height:110vh;

}
.form .contact-form input{
    width:30rem;
    background-color: transparent;
    border:0px;
    border:transparent;
    margin:20px;
    padding: 20px;
    font-size: 19px;
    border-bottom: 2px solid #fff;
    }
    .form .contact-form input ~ span{
        position: absolute;
        left: 20px;
        transition: 0.9s ease-in-out;
        margin-top: 10px;

    }
    .form .contact-form input:focus ~ span{
        transform: translateY(-20px);
        pointer-events: none;


    }
    .form .contact-form textarea{
    width: 29rem;
    border:0;
    /* color:#000; */
    background-color: transparent;
    margin: 20px;
    font-size: 20px;
    border-bottom: 2px solid #fff;
    }
    .form .contact-form textarea ~ span{
        position: absolute;
        left: 20px;
        margin-top: 10px;
        transition: 0.9s ease-in-out;
    }
    .form .contact-form textarea:focus ~ span{
        transform: translateY(-20px);
        pointer-events: none;
    }
    .form .contact-form input[type=submit]{
        background-color: #e2472f;
        border: 2px solid #e2472f;
        /* border-radius:100px; */
        font-size:20px;
        font-weight: bold;
        width:30%;
        height: 30px;
        margin-top: -5px;
        color:#fff;

    }
    .form .contact-form input[type=submit]:hover{
        background-color: transparent;
        color:#fff;
    }
    .socials{
        position: absolute;
        top:85vh;
        right:20vh;
        display: flex;
        list-style:none;
        
    }
    .socials li{
       margin: 20px 30px; 
    }
      @socials screen and (max-width:900px){
        body{
            background-repeat:repeat-y;
            overflow:auto;
            
        }
        header{
            position:absolute;
            top:20%;
            left:0;
            width:100%
        }
        .empty{
            height:190vh;

        }
        .form{
            position:absolute;
            top:100vh;
            margin-left:10%;
        }
        .content-form{
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            grid-gap:0;
            margin-top:53vh;
            margin-left:10vh;
        }
    }

    
