.contac-section{
    display: flex;
    justify-content: center;
    background-color: #F7F7F7;
    padding: 100PX 0PX;
}
.contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-title{
    text-align: center;
    color: #002C42;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 80vw;
}

.contact-link{
    text-decoration: none;
}

.contact-button{
    background-color:#002C42;
    padding: 10px 100px;
    border-radius: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    font-size:1.2rem;
    margin-top: 30px;   
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    cursor: pointer;
    max-width: 80vw;
    transition: all .2s;
}

        .contact-button:hover{
            background-color:#084462;
        }

    .contact-button-img{
        height: 30px;
    }

    .contact-button-title{
        margin: 0;
    }


@media (max-width: 600px) {
    .contact-button{
        padding: 10px 15px;
        gap: 20px;
    }
}