.site_button {
    width: 190px;
    height: 47px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    transition: 1s;
    position: relative;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 7px;
    font-family: var(--font_Gotham);
    overflow: hidden;
}

.site_button span {
    margin: auto;
    position: relative;
    z-index: 1;
}

.site_button:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #1e9ed8 0%, #00ffff 100%);
    top: 0px;
    left: 0;
    transition: all .4s ease-in-out;
    opacity: 0;
}

.site_button:hover:before {
    background: #1f9cd7;
    opacity: 1;
}

.site_button:hover {
    color: white !important;
}




.translated-ltr .site_button.call_btn {
    width: 250px;
}



@media all and (min-width: 320px) and (max-width: 767px) {
    .site_button {
        width: 162px;
        height: 45px;
        font-size: 14px !important;
    }

    .translated-ltr .site_button.call_btn {
        width: 220px;
    }

}

@media all and (min-width: 481px) and (max-width: 767px) {}


@media all and (min-width: 768px) and (max-width: 980px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }


}

@media only screen and (min-width: 981px) and (max-width: 1024px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }


}

@media all and (min-width: 1025px) and (max-width: 1140px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }


}

@media all and (min-width: 1141px) and (max-width: 1280px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }


}

@media all and (min-width: 1281px) and (max-width: 1440px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }


}

@media all and (min-width: 1441px) and (max-width: 1680px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }

}

@media all and (min-width: 1681px) and (max-width: 1880px) {
    .site_button {
        width: 174px;
        height: 46px;
        font-size: 15px !important;
    }

}