.site_button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white_color) !important;
    height: 45px;
    width: 162px;
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    transition: 0.5s !important;
    background: #57B1E3;
    font-size: 16px;
    font-weight: var(--font_weight_400) !important;
    text-transform: capitalize;
    cursor: pointer;
}

.btn_col_right .site_button {
    background: transparent !important;
}

.site_button:hover {
    color: black !important;

}

.btn_col_left .site_button {
    background: var(--primary_color);
    width: 165px;
}

.btn_col_right .site_button {
    width: 65px;
}

.btn_col_left .site_button:hover {
    background: transparent;
}

.btn_col_right .site_button:hover {
    background: var(--primary_color);
}

@media all and (min-width: 320px) and (max-width: 767px) {

    .site_button {
        height: 35px;
        font-size: 14px;
    }

    .btn_col_left .site_button {
        width: 140px;
    }

    .btn_col_right .site_button {
        width: 40px;
    }

}

@media all and (min-width: 768px) and (max-width: 980px) {

    .site_button {
        height: 35px;
        font-size: 14px;
    }

    .btn_col_left .site_button {
        width: 140px;
    }

    .btn_col_right .site_button {
        width: 40px;
    }

}

@media only screen and (min-width: 981px) and (max-width: 1140px) {

    .site_button {
        height: 35px;
        font-size: 14px;
    }

    .btn_col_left .site_button {
        width: 140px;
    }

    .btn_col_right .site_button {
        width: 40px;
    }

}

@media all and (min-width: 1141px) and (max-width: 1440px) {

    .site_button {
        height: 35px;
        font-size: 14px;
    }

    .btn_col_left .site_button {
        width: 140px;
    }

    .btn_col_right .site_button {
        width: 40px;
    }

}

@media all and (min-width: 1441px) and (max-width: 1880px) {

    .site_button {
        height: 40px;
        font-size: 15px;
    }

    .btn_col_left .site_button {
        width: 150px;
    }

    .btn_col_right .site_button {
        width: 50px;
    }

}