﻿
/* BUTTON DESIGN START */
.button {
    border: 1px solid rgba(150,8,55,255);
    background: none;
    font-size: 20px;
    font-family: "montserrat";
    cursor: pointer;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 40px;
    width: 180px;
}

.button1, .button2 {
    color: rgba(150,8,55,255);
}

.button3, .button4 {
    color: #fff;
}

.button1:hover, .button2:hover {
    color: #fff;
    background-color:rgba(150,8,55,255);
}

.button3:hover, .button4:hover {
    color: rgba(150,8,55,255);
}



@media screen and (max-width:764px) {
    .button , button1, btn-res {
        margin-left:10px;
        width: 280px;
    }
}
