
/* hero section get in touch button */
.Btn {
    width: 140px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #632027, #632027, #632027, #632027, #632027, #632027);
    background-size: 250%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;

    font-weight: bold;
    /* main text bold */
}

.Btn::before {
    position: absolute;
    content: attr(data-text);
    /* dynamic text */
    color: #632027;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    height: 90%;
    border-radius: 8px;
    transition-duration: 1s;
    background-color: #ffffff;
    background-size: 200%;
    font-weight: bold;
}

.Btn:hover {
    background-position: right;
}

.Btn:hover::before {
    background-position: right;
}

.Btn:active {
    transform: scale(0.95);
}