@import url('https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap');
body{
    margin:0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
}
.banner{
    width: 100%;
    height: 100vh;
    background: url(bg2.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.content{
    padding: 50px 100px;
}
.content h2{
    margin: 0 0 20px;
    padding:0;
    font-size: 30px;
}
.content p{
    font-size: 1rem;
}

.sidebar-contact{
    position: fixed;
    top:50%;
    left: -350px;
    transform: translateY(-50%);
    width:350px;
    height: auto;
    padding:40px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: 0.5s;
}
.sidebar-contact.active{
    left: 0px;
}

.sidebar-contact input,
.sidebar-contact textarea
{
    width: 100%;
    height: 36px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border:1px solid rgba(0,0,0,0.5);
    outline: none;
}

.sidebar-contact textarea{
    height: 60px;
    resize: none;
}
.sidebar-contact h2{
    margin:0 0 20px;
    padding: 0;

}
.sidebar-contact input[type="submit"]{
    background: #00bcd4;
    color:#fff;
    cursor: pointer;
    border:none;
    font-style: 18px;
}
.toggle{
    position: absolute;
    top:0;
    right:-48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    background: #e91e63;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
/* f00d */
.toggle::before{
    font-family: 'Font Awesome 5 Free';
    content: "\f0e0";
    font-weight: 900;
    color:#fff;
    font-size: 18px;
}
.toggle.active::before{
    content: "\f00d";
}