.contact-page-info {
    position: relative;
    display: block;
    padding: 0 0px 40px;
    z-index: 1;
}

.contact-page-info__single {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 3px solid rgb(0, 74, 148, 0.15);
    padding: 0px 30px 37px;
    margin-bottom: 30px;
}

.contact-page-info__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 80px;
    background: rgb(0, 74, 148, 0.1);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin: 0 auto 23px;
    z-index: 1;
}

.contact-page-info__single-text {
    position: relative;
    display: block;
}

.contact-page-info__single-icon span {
    position: relative;
    display: block;
    line-height: 0px;
}

.contact-page-info__single-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #004a94;
    transition-delay: 0.5s;
    transition: .5s;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -ms-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

.contact-page-info__single-text h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.contact-page-info__single-text p {
    margin: 0;
}

.contact-page-info__single:hover .contact-page-info__single-icon:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}


.contact-page-info__single-icon span::before {
    position: relative;
    display: inline-block;
    color: #004a94;
    font-size: 25px;
    line-height: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page-info__single:hover .contact-page-info__single-icon span::before {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .contact-page__google-map {
        margin-right: 0 !important;
        margin-top: 30px;
    }
    

}