.contactUs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
}
.contactUs .contain{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contactUs .text{
    color:#EFEFEE;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25px;
}
.contactUs .text .stad{
    font-weight: bold;
    text-transform: uppercase;
}
.contactUs .text .title{
    text-transform: uppercase;
}
.contactUs .button{
    fill:#EFEFEE;
    background-color: #5C2582;
    background-image: linear-gradient(-154deg, #E6007D, rgba(255,255,255,0) );
    width: 50%;
    padding: 10px;
    transition: background-color 1s;
}
.contactUs .button:hover{
    background-color: #E6007D;
}
.contactUs .button:hover p::after{
    transform: scale(1);
}
.contactUs .button a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 15px 0;
}
.contactUs .button svg{
    width: 36px;
    height: 28px;
}
.contactUs .button p{
    color: #EFEFEE;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-left: 20px;
}
.contactUs .button p::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
    transition: opacity 0.3s, transform 0.4s;
}
@media screen and (max-width:675px) {
    .contactUs .text{
        font-size: 2rem;
    }
    .contactUs{
        margin-bottom: 50px;
    }
    .contactUs .button{
        width: auto;
    }
}
@media screen and (max-width:540px) {
    .contactUs .text{
        font-size: 1.5rem;
    }
}