.contact-us-header {
    position: relative;
    height: 35vh;
}
.contact-us-header .back-ground-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(/assets/img/contact-us/bg2.png);
}
.contact-us-header .bred-crub-section {
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.contact-us-header .bred-crub-section .page-title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
}
.contact-us-header .bred-crub-section .bred-crub p {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
}
.our-services .one-service {
    margin-bottom: 40px;
    margin-top: 40px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: all 1s;
}
.our-services .one-service .services-icon {
    text-align: center;
}
.our-services .one-service .services-icon img {
    width: 50px;
}
.our-services .one-service .services-icon .icon-hover {
    display: none;
}
.our-services .one-service .service-content h4 {
    color: #53c0ff;
    font-weight: 600;
    text-align: center;
}

.our-services .one-service .service-content a:hover{
    color: #fff;
}

.our-services .one-service .service-content p {
    color: #6e6e6e;
    line-height: 28px;
    text-align: center;
    font-size: 17px;
}
.our-services .one-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top: 1px solid #6e6e6e;
    border-left: 1px solid #6e6e6e;
}
.our-services .one-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border-right: 1px solid #6e6e6e;
    border-bottom: 1px solid #6e6e6e;
}
.our-services .one-service:hover {
    background: #53c0ff;
}
.our-services .one-service:hover .icon-hover {
    display: inline !important;
}
.our-services .one-service:hover .main-main {
    display: none;
}
.our-services .one-service:hover .service-content h4, .our-services .one-service:hover .service-content p {
    color: #fff;
}
