.sidebar-contact {
    position: fixed;
    top: 60%;
    right: -585px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 101;
}

.sidebar-contact.active {
    right: 0;
}

.sidebar-contact input,
.sidebar-contact textarea {
    width: 100%;
    height: 36px;
    padding: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .5);
    outline: none;
}

.sidebar-contact h2 {
    margin: 0 0 20px;
    padding: 0;
}

.sidebar-contact textarea {
    height: 60px;
    resize: none;
}

.sidebar-contact input[type="submit"] {
    background: #00bcd4;
    color: #fff;
    cursor: pointer;
    border: none;
    font-size: 18px;
}

.toggle {
    position: absolute;
    height: 50px;
    width: 305px;
    text-align: center;
    cursor: pointer;
    font-size: 30px;
    background: #1D2A4D;
    top: -15px;
    left: -48px;
    color: #ffffff;
    line-height: 48px;
    display: inline-block;
    white-space: nowrap;
    -webkit-transform: translate(1.1em, 0) rotate(90deg);
    -moz-transform: translate(1.1em, 0) rotate(90deg);
    -o-transform: translate(1.1em, 0) rotate(90deg);
    transform: translate(1.1em, 0) rotate(90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -ms-transform: none;
    -ms-transform-origin: none;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

.toggle:before {
    content: '\2192';
    font-family: fontAwesome;
    font-size: 18px;
    color: #fff;
    display: none;
}

.toggle.active:before {
    content: '\2190';
}

@media(max-width:768px) {
    .sidebar-contact {
        width: 100%;
        height: 100%;
        left: -100%;
        display: none;
        z-index: 1000;
    }
    .sidebar-contact .toggle {
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s;
    }
    .sidebar-contact.active .toggle {
        top: 0;
        right: 0;
        transform: translateY(0);
    }
    .scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
    .content {
        padding: 50px 50px;
    }
}

.sidebar-contact img {
    /* width: 600px; */
    height: auto;
    max-width: 600px;
    padding: 0;
    margin: -15px;
}

form {
    padding: 0px;
    margin: 0px;
}

.sidebar-contact .scroll {
    padding: 0px;
    margin: 0px;
    height: 289px;
}