.contact{
    width: 100%;
    height: 72px;
    background-color: black;
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
}
.textContact{
    margin-left: 78px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}
.btnContact{
    margin-left: auto;
    margin-right: 78px;
}
.btnContact button{
    width: 192px;
    height: 42px;
    border-radius: 22px;
    background-image: linear-gradient(to right, #E5C069, #825A18);
    border: 0px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
.btnContact a{
    color: black;
    text-decoration: none;
}

@media screen and (max-width: 980px) {
    .contact{
        height: 198px;
        flex-direction: column;
        justify-content: center;
    }
    .textContact{
        font-size: 36px;
        margin: 0px;
        margin-bottom: 24px;
    }
    .btnContact{
        margin: 0px;
    }
    .btnContact button{
        width: 460px;
        height: 80px;
        font-size: 36px;
        border-radius: 40px;
    }
}