.banner {
    background-color: #001443;
    height: 210px;
    background-size: cover;
     background-position: center; 
    background-repeat: no-repeat;
    background-image: url(../img/images/banner.jpg);
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 65%);
    /* backdrop-filter: blur(2px); */
}


.innercont {
    padding-top: 50px;
    padding-bottom: 4rem;
}

.banner nav {
    display: flex;
    flex-flow: column;
    position: relative;
    z-index: 1;
    text-align: center;
}
.banner h3{
    font-size: 2rem;
}

.breadcrumb {
    font-size: .9rem;
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: .8rem;
    color: #ffffffd1;
    margin: 0 13px;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    color: #ddd;
}

.breadcrumb-item.active {
    opacity: .75;
}

.banner-head {
    color: #f7f7f7;
    position: relative;
    z-index: 1;
    font-size: 2rem;
}


.incontent {
    width: 100%;
    flex: 1 0;
    padding: 0 15px;
}


.inpage .dropbtn{
    color: rgb(255 255 255 / 90%);
}
.inpage header.active .dropbtn{
    color: #333;
}
.inpage header .con-menu .phone {
    color: rgb(255 255 255 / 90%);
}
.inpage header.active .con-menu .phone{
color: black;
}
.inpage header .con-menu .num p {
    color: rgb(255 255 255 / 90%);
}
.inpage header.active .con-menu .num p {
    color: #666;
}
.inpage header .menutop a{
    color: rgb(255 255 255 / 90%);
}
.inpage header.active .menutop a{
color: #333;
}
.inpage header .con-menu .num{
    border-right: 1px solid rgba(255, 255, 255, 0.476);
}
.inpage header.active .con-menu .num{
    border-right: 1px solid #00000021;
}

.in-logo{
    display: none;
}

.inpage .add-sec p{
    color: #666 !important;
}
.inpage .add-sec a{
    color: #666 !important;
}
.inpage .add-in span{
    color: #333 !important;
}
.inpage .add-in h4{
    font-size: 1.2rem !important;
}
.inpage .add-sec a:hover{
color: #5091eb !important;
}

.contact-img{    
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    border-radius: 0.5rem;
}
.innercont iframe{
    border-radius: .5rem;
}


.gallery{
    border-radius: .3rem;
    overflow: hidden;
    position: relative;
}
.gallery::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2bbad98a, #6158e27d);
    opacity: 0;
    inset: 0;
    transition: .3s;
    z-index: 1;
    
}

.gallery:hover:before{
    opacity: 1;
}
.fa-image{
    font-size: 2rem;
    color: white;
    z-index: 2;
}
.gallery .fa-image{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50%);
    transition: .3s;
}
.gallery:hover .fa-image{
    opacity: 1;
}
.gallery:hover img{
    transform: scale(1.1);
}
@media(max-width: 991px){
    .top{
        padding-top: 0 !important;
    }
    .contact-img{
        display: none;
    }
}

   
