.blog{
    position: relative;
    height: 300px;
    width: 100%;
    background-image: url(../img/banner-2.jpg);
    /* background-size: 150% 300%; */
    /* background-repeat: no-repeat;  */
    background-position: left top;
    z-index: 1;
}
.blog::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(20, 44, 75, 0.8);
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-section h2{
    color: white;
    font-weight: 700;
    font-size: 40px;
}
.blog-section a{
    color: white;
    font-size: 22px;
}
.blog-section a:hover{
    text-decoration: underline;
}
.blog-section span{
    color: white;
    font-size: 22px;
    font-weight: 800;
}
.blog-section strong{
    color: rgb(25, 190, 236);
    font-weight: 600;
    font-size: 22px;
}

.center-data{
    position: relative;
    top: 40%;
}
.contact-sec-1 .left h6{
    color: rgb(25, 190, 236);
}
.contact-sec-1 .left h1{
    color: #142b4a;
}
.contact-sec-1 .left p{
    color: #6f6f6f;
    font-size: 16px;
    margin: 0;
}
.contact-sec-1 .right{
    align-self: center;
}
.contact-sec-1 .right img{
    width: 100%;
}

.checkmark{
    position: relative;
    height: 15px;
    width: 15px;
    border: 2px solid rgb(25, 190, 236);
    align-self: center;
    margin-right: 10px;
}
.checkmark::before{
    content: "";
    position: absolute;
    height: 70%;
    width: 45%;
    border: 2px solid rgb(25, 190, 236);
    border-left: none;
    border-top: none;
    transform: rotate(40deg);
    left: 3px;
}

.card-contact{
    padding: 30px;
    background: #f7f7f9;
    margin: 15px;
}
.card-contact i{
    font-size: 25px;
    color: rgb(25, 190, 236);
}
.card-contact .phone-icon i{
    font-size: 50px;
    transform: rotate(-45deg);
}
.card-contact .other-icon i{
    font-size: 50px;
}
.card-contact h5{
    color: #142b4a;
}
.card-contact p{
    color: #6f6f6f;
}

.choice-us{
    background-color: #f7f7f9;

}
.choice-us .left h6{
    color: rgb(25, 190, 236);
}
.choice-us .left h1{
    color: #142b4a;
}
.choice-us .mid p{
    color: #6f6f6f;
}
.choice-us .button{
    text-align: -webkit-right; 
}
.choice-us .button a{
    padding: 15px 35px;
    background-color: #142b4a;
    color: white;
    transition: 0.4s;
}
.choice-us .button a:hover{
    transition: 0.4s;
    background-color: rgb(25, 190, 236);
}

.title p{
    height: 102px;
    overflow: hidden;
} 
.title .height_inc{
    height: max-content;
} 
.title h6{
    cursor: pointer;
} 

.choice-us .card-contact{
    background: white;
    padding: 20px;
    padding-top: 5px;
}

.our-team {}


.our-team  .left h6{
    color: rgb(25, 190, 236);
}
.our-team  .left h1{
    color: #142b4a;
}

.mem-card img{
    width: 100%;
}
.mem-card {
    padding: 20px;
    transition: 0.5s;
}
.member-body{
    position: relative;
    top: -20px;
    background-color: #f7f7f9;
    width: 90%;
    margin: auto;
    text-align: center;
    transition: 0.5s;
    padding: 5px 0;
}
.member-body h4{
    color: #142b4a;
}
.member-body p{
    color: #252525;
}

.mem-card:hover .member-body {
    transition: 0.5s;
    box-shadow: 0px 2px 20px #6f6f6f;
    animation: slide-top 0.25s ease-in forwards ;
    -webkit-animation:slide-top 0.25s ease-in forwards;
    animation-direction:alternate;
    scroll-behavior: initial;

}

@keyframes slide-top {
    100% {
        transform: translate(0,-5px);
    }

  }