.site_button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E73C11;
    width: 145px;
    height: 50px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent !important;
    padding: 0;
    color: #fff;
    font-family: var(--font_open_sans);
    font-size: 15px !important;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    transition: 0.5s !important;
    gap: 10px;
}

.site_button:hover {
    background: #222;
    color: #fff;
    border-color: #fff !important;
}

@media all and (min-width: 320px) and (max-width: 767px) {

    .site_button {
        width: 140px;
        height: 35px;
        font-size: 14px !important;
    }

}

@media all and (min-width: 768px) and (max-width: 980px) {

    .site_button {
        width: 140px;
        height: 40px;
        font-size: 14px !important;
    }

}

@media only screen and (min-width: 981px) and (max-width: 1140px) {

    .site_button {
        width: 140px;
        height: 40px;
        font-size: 14px !important;
    }

}

@media all and (min-width: 1141px) and (max-width: 1440px) {

    .site_button {
        width: 140px;
        height: 40px;
        font-size: 14px !important;
    }

}

@media all and (min-width: 1441px) and (max-width: 1880px) {

    .site_button {
        width: 140px;
        height: 40px;
        font-size: 14px !important;
    }

}