.bottomcard {
    position: fixed;
    bottom: 15px;
    right: 10%;
    width: 300px;
    z-index: 99999;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cardheader {
    border-radius: 5px 5px 0px 0px;
    background-color: #ff5a5f;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.card-form {
    display: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
}
.card-form input.form-control {
    height: 30px;
}
/* .card-form textarea.form-control {
    height: 80px;
} */
.card-form.open {
    display: block;
}
@media (max-width: 768px) {
    .bottomcard {
        left: 8%;
        width: 80%;
    }
    a.scrollToHome.home8 {
        right: 1%;
    }
}
