.site_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 45px;
    background: #FBD30D;
    font-size: 14px;
    font-weight: var(--font_weight_500);
    color: var(--black_color) !important;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 22px;
    border: none;
    border: 1px solid transparent;
}

.site_button:hover {
    background: #003f4e;
    color: var(--white_color) !important;
    border: 1px solid #FBD30D;
}

@media all and (min-width: 320px) and (max-width: 767px) {

    .site_button {
        font-size: 13px;
        width: 138px;
        height: 35px;
    }

}

@media all and (min-width: 768px) and (max-width: 980px) {

    .site_button {
        width: 150px;
        height: 35px;
    }

}

@media only screen and (min-width: 981px) and (max-width: 1140px) {

    .site_button {
        width: 150px;
        height: 35px;
    }

}

@media all and (min-width: 1141px) and (max-width: 1440px) {

    .site_button {
        width: 150px;
        height: 35px;
    }

}

@media all and (min-width: 1441px) and (max-width: 1880px) {

    .site_button {
        height: 40px;
    }

}