.contact-section {
    margin-top: 130px;
}
h1 {
    color: #414141;
    font-size: 32px;
    font-family: "Raleway-SemiBold", sans-serif;
    margin-bottom: 56px;
    text-transform: uppercase;
}
.contact-section img {
    max-width: 144px;
}
.contact-section p {
    font-family: "Raleway-Regular", sans-serif;
    font-size: 22px;
    color: #696969;
    margin-top: 16px;
    margin-bottom: 16px;
    max-width: 320px;
}
.contact-section .social {
    display: flex;
    align-items: center;
}
.contact-section .social a {
    text-decoration: none;
    background: #696969;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-right: 4px;
    transition: all 0.5s ease;
}
.contact-section .social a:hover {
    background-color: #8b8b8b;
}
@media only screen and (max-width: 991px) {
    .h1 {
        font-size: 29px;
    }
    .contact-section p {
        font-size: 16px;
    }
    .contact-section .social {
        margin-bottom: 24px;
    }
}