body{
    box-sizing: border-box;
    background-color: #fff;
}
:root{
    --main-color: #0057ff;
    --color: #Ffca00;
    --bg-color: #4928b3;
    --black: #111111;
}
a{
    text-decoration: none !important;
}
/******************************
   header top css starts
******************************/
.header-top-div{
    background-image: linear-gradient(to left, #4928b3, #8579af);
}
.header-top-div span a,
 .header-top-div span,
  .header-top-div i{
    color: #fff !important;
}
/****************************
     navbar css starts
****************************/
/* .navbar{
    padding: 0rem 8rem !important;
    border-bottom: 1px solid black;
}
.navbar .navbar-brand img{
    border-right: 3px solid #000;
    padding-right: 1rem;
    margin-right: 1rem;
    width: 60px;
}
.navbar-brand span{
    font-weight: 700;
    color: red;
}
.navbar-nav{
    margin-left: auto;
}
.navbar-nav .nav-item .nav-link{
    font-size: 1.3rem;
    font-weight: 600;
    color: gray !important;
    border-right: 0.1px solid gainsboro;
}
.navbar-nav .nav-item .nav-link:hover{
    background-image: linear-gradient(to left, #4928b3, #8579af);
    color: #fff !important;
}
.navbar-nav .nav-item .active{
    background-image: linear-gradient(to left, #4928b3, #8579af);
    color: #fff !important;
}
@media (max-width: 1040px){
    .navbar{
        padding: 0 1rem !important;
    }
} */
/*******************************
    carousel css starts
*******************************/
.carousel img{
    object-fit: cover;
    object-position: center;
}
.carousel-item img{
    height: 80vh !important;
}
.carousel-caption{
   margin-bottom: 10vh;
}
.carousel-caption .welcome-img img{
    width: 150px;
    height: 140px !important;
    display: inline !important;
}
.carousel-caption h1{
    font-size: 4rem;
    font-weight: 900;
    background: -webkit-linear-gradient(rgb(14, 14, 122), rgba(1, 1, 77, 0.641));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.carousel{
    position: relative;
}
.carousel .marquee-bottom{
    position: absolute;
    bottom: 0 !important;
    left:0 !important;
    right: 0 !important;
    z-index: 99 !important;
}
.carousel .marquee-bottom marquee p{
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}
.carousel .marquee-bottom marquee p span{
    margin: 0 1rem !important;
}
.carousel .marquee-bottom marquee p .line{
    margin-right: 2rem !important;
    color: var(--bg-color);
    font-size: 1.4rem;
    font-weight: 800;
}
@media (max-width: 1040px){
    .carousel-caption h1{
        font-size: 2rem;
    }
}
/********************
   for all heading
*********************/
.heading{
    position: relative;
}
.heading::after{
    content: '';
    height: 5px;
    width: 9rem;
    background-color: var(--color);
    position: absolute;
    left: 1rem;
    top: 4rem;
}
@media (max-width: 1040px){
    h2{
        font-size: 1rem !important;
    }
    h3{
        font-size: 1rem !important;
    }
    .heading::after{
        left: 0rem;
    }
}
/*********************
   notification css
*********************/
.notification-div{
    margin-top: 3rem !important;
}
.notification-div h3{
    background-image: linear-gradient(to left, #4928b3, #8579af);
   font-size: 1rem;
   font-weight: 600;
   padding: 0.5rem;
}
.notification-div h3 a i{
    margin-left: 1rem;
}
.notification-div span{
   margin-right: 1rem;
   font-size: 1rem;
   color: green;
}
.notification-div ul li{
    list-style-type: none;
    margin: 2rem auto;
    color: red;
}
.marquee-top marquee{
    transform: scaleY(1);
    transform-origin: top;
    transition: 0.5s;
}
.marquee-main marquee{
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.5s;
}
.marquee-main marquee{
    box-shadow: 0 0 5px 1px gainsboro;
    margin-top: -2rem !important;
}
.hide-top-marquee marquee{
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.5s;
}
.show-main-marquee marquee{
    transform: scaleY(1);
    transform-origin: top;
    transition: 0.5s;
}
.fa-minus{
    display: none !important;
}
.new-fa-minus{
    display: block !important;
}
.new-fa-plus{
    display: none !important;
}
/**********************************
   about div css starts here
**********************************/
.about-div{
    margin-top: 0rem !important;
    transition: 0.5s;
}
.about-up-down{
    margin-top: 7rem !important;
    transition: 0.5s;
}
.about-div h2{
    line-height: 75%;
    font-weight: 800;
    color: var(--bg-color);
}
.about-div .about-h2{
    position: relative;
}
.about-div .about-h2::after{
    content: '';
    width: 10rem;
    height: 0.2rem;
    background: var(--color);
    position: absolute;
    left: 0;
    top: 2.3rem;
}
.about-div p{
    font-weight: 600;
    color: gray;
}
.about-div a{
    text-decoration: none;
    background-color: var(--color);
    border-radius: 40px;
    padding: 0.5rem 2rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 20px 5px rgba(218, 165, 32, 0.24);
}
.about-div a:hover{
    background-color: var(--bg-color);
    color: #fff;
}

/* .about-div img{
    width: 100% !important;
    clip-path: ellipse(34% 49% at 50% 50%);
    animation: rotate 6s ease-in-out infinite;
    animation-duration: 5s !important;
    float: right !important;
}
@keyframes rotate{
    0%{
        transform:rotateY(180deg);
    }
    50%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(180deg);
    }
} */
.about-div .about-right-div .image-container {
    perspective: 1000px !important;
}

.about-div .about-right-div .image-container .image-3d {
    width: 300px !important;
    transition: transform 0.5s !important;
    transform-style: preserve-3d !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

.about-div .about-right-div .image-container:hover .image-3d {
    transform: rotateY(20deg) rotateX(10deg) !important;
}
@media (max-width: 1040px){
    .about-div iframe{
        width: 100%;
    }
}
/****************************
   historical css stars
*****************************/
.historical-place-div{
    background-image: linear-gradient(to left, #4928b3, #8579af);
    padding: 5rem 7.5rem !important;
}
.historical-place-sub-div{
    background-color: rgba(220, 220, 220, 0.595);
    padding: 1rem;
    border-radius: 10px;
}
.historical-img{
    height: 30vh !important;
    
}
.historical-img img{
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.historical-text p{
    color: #fff;
    font-weight: 600;
}
.historical-place-div a{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--color);
    padding: 0.5rem 2rem;
    border-radius: 40px; 
    box-shadow: 0 0 15px 3px rgba(218, 165, 32, 0.699);
}
.historical-place-div a:hover{
    background-color: var(--bg-color);
    color: #fff;
}
@media (max-width: 1040px){
    .historical-place-div{
        padding: 1rem !important;
    }
    .historical-place-div h2{
        margin: 0 1rem;
    }
}
/******************************
   administrative div css
******************************/

.heading h2{
    font-weight: 900;
    color: var(--bg-color);
    padding: 1rem 0rem;
}
.administrative-div h3{
    display: inline;
    background-color: var(--bg-color);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem;
    border-top-left-radius: 10px;
    position: relative;
}
.administrative-div h3::after{
    content: '';
    position: absolute;
    top: -0.3px;
    right: -4.9rem;
    width: 5rem;
    height: 53.9px;
    background-color: var(--bg-color);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.administrative-div .table .table-top{
    background-color: var(--color);
    color: #fff;
    font-weight: 900;
}
.administrative-div .table thead tr{
    background-color: rgba(245, 238, 238, 0.389);   
}
.administrative-div .table th, .administrative-div .table td{
    font-weight: 700;
    padding: 1rem 0.5rem;  
    color: var(--bg-color);
}
.bankipur-bottom{
    margin-top: 3rem;
}
.about-bankipur{
    display: flex;
    padding: 0.5rem;
}
.about-bankipur p{
    font-size: 1.4rem;
    font-weight: 600;
    color: gray;
    line-height: 1.5;
    margin: auto 1rem;
}
.about-bankipur span{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color);
}
.municipal-div p{
    font-size: 1.2rem;
}
.municipal-div p b{
    font-weight: 400 !important;
}
@media (max-width: 1040px){
    .administrative-sub-div{
        overflow-x:scroll;
    }
    .administrative-div h3::after{
        top: -0.3px;
        right: -4.9rem;
        width: 5rem;
        height: 38.3px;
    }
   
}
@media (max-width: 740px){
    .administrative-div h3::after{
        top: -0.3px;
        right: -4.9rem;
        width: 5rem;
        height: 32.9px;
    }
    .administrative-sub-div h3{
        font-size: 12px !important;
    }
}
/*******************************
   profile div css starts
*******************************/
.profile-div{
    padding: 5rem 0rem !important;
    background-image: linear-gradient(to top, #4928b3, #8579af);
}
.profile-div .col-lg-10 .profile-text{
    background-color: rgba(242, 235, 235, 0.448) !important;
    padding: 5rem 2rem !important;
}
.profile-text p{
    margin: 0rem 0;
    font-weight: 700;
    font-size: 1.2rem;
}
.profile-img{
    height: 500px;
}
.profile-img img{
    height: 100%;
}
.profile-div h2{
    margin: 0 8.5rem;
}
.profile-div .heading{
    position: relative;
}
.profile-div .heading::after{
    content: '';
    height: 5px;
    width: 9rem;
    background-color: var(--color);
    position: absolute;
    left: 8.5rem;
    top: 4rem;
}

@media (max-width: 1040px){
    .profile-div h2{
        margin: 0rem;
    }
    .profile-div .heading::after{
        left:2rem;
        top: 4rem;
    }
    .profile-div{
        padding: 0 !important;
    }
    .profile-div h2{
        padding: 0 2rem !important;
    }
    .profile-div .profile-text{
        padding: 1rem !important;
    }
}
/*********************************
    counter css start
********************************/
.counter-div .counter-inner-div{
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    box-shadow: 0 0 15px 1px gainsboro;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.counter-div i{
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-color);
    display: block;
}
.counter-div span{
    color: gray;
    font-size: 4rem;
    font-weight: 900;
}
.counter-div h3{
    color: gray;
    font-size: 1.5rem;
    font-weight: 700;
}
@media (max-width: 940px){
    .counter-div .counter-inner-div{
       width: 100%;
       height: 700px;
       margin: 1rem auto !important;
    }
}
@media (max-width: 740px){
    .counter-div .counter-inner-div{
       width: 100%;
       height: 350px;
       margin: 1rem auto !important;
    }
}
@media (max-width: 360px){
    .counter-div .counter-inner-div{
        width: 100%;
        height: 300px !important;
        margin: 2rem auto;
    }
}

/********************
  grieve div css
********************/
.grieve-div .grieve-left-div, .grieve-right-div{
    padding: 1rem 1rem;
    box-shadow: 0 0 10px 5px gainsboro;
}
.grieve-div i{
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 20px;
   color: #fff;
   width: 65px;
   height: 65px;
   border-radius: 50%;
   background-image: linear-gradient(to left, #4928b3, #8579af);
   border: 10px solid #a79fbf;
}
.grieve-div span{
    font-size: 15px;
    background-image: linear-gradient(to left, #4928b3, #8579af);
    color: #fff;
    padding: 5px 2rem;
}
.grieve-div p{
    font-size: 12px;
    margin: 10px 0;
    margin-left: 15px !important;
}
.grieve-div span:hover{
    box-shadow: 0 0 20px 0 gainsboro;
}
@media (max-width: 1040px){
    .grieve-left-div, .grieve-right-div{
        margin-top: 1rem;
    }
}
@media (max-width: 740px){
	   .grieve-div span{
        font-size: 13px;
    }
}


