.contactPage .heading {
    padding: 24px 24px 0;
}

.contactPage .contactIcons .contactRow {
    display: flex;
    padding: 50px 20px;
}

.contactPage .contactIcons .contactRow .contactBox {
    width: 33%;
    margin: 0 20px;
    border: 1px solid #D6D6D6;
    padding: 24px;
    transition: all .3s;
}

.contactPage .contactIcons .contactRow .contactBox:hover {
    box-shadow: 0.2px 0.2px 10px rgb(0 0 0 / 60%);
    transform: translateY(-5px);
}

.contactPage .contactIcons .contactRow .contactBox .titleBox {
    text-align: center;
}

.contactPage .contactIcons .contactRow .contactBox .titleBox .icon {
    font-size: 2rem;
    color: #fff;
    background-color: #1B3572;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.contactPage .contactIcons .contactRow .contactBox .titleBox .parag {
    text-align: center;
}

.contactPage .contactIcons .contactRow .contactBox .titleBox .parag a {
    font-size: 1.3rem;
    font-weight: 500;
}

.contactPage .contactContainer {
    margin: 40px 80px;
}

.contactPage .contactContainer .map {
    margin: 0 20px;
}

@media (min-width: 500px) and (max-width: 767px) {
    .contactPage .contactIcons .contactRow .contactBox .titleBox .icon {
        font-size: 1.7rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }

    .contactPage .contactIcons .contactRow .contactBox {
        margin: 0 10px;
        padding: 12px;
    }

    .contactPage .contactContainer {
        margin: 16px 12px;
    }
}

@media (max-width: 499px) {
    .contactPage .contactIcons .contactRow {
        flex-direction: column;
    }

    .contactPage .contactIcons .contactRow .contactBox {
        width: 100%;
        padding: 15px;
        margin: 16px 0;
    }

    .contactPage .contactIcons .contactRow .contactBox .titleBox .icon {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .contactPage .contactIcons .contactRow .contactBox .titleBox .title {
        text-align: right;
    }

    .contactPage .contactContainer .formContact .wpcf7 form .contactForm .formRows p {
        width: 100%;
    }

    .contactPage .contactContainer {
        margin: 20px auto;
    }

    .contactPage .contactContainer .map {
        padding-bottom: 15px;
    }
}