@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
  font-size: 14px;
  line-height: 1.4;
  color: #363636;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

img{	
	max-width: 100%;
	height: auto;
}
.btn-primary.focus, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus{
  box-shadow: none;
}
a{
  display: inline-block;
  text-decoration: none;
  color: #23527c;
}
a:hover{
  color: #00a5d0;
}
a:focus{
  outline: none;
}
h1, h2, h3, h4, h5, h6{
  /*font-family: 'Raleway', sans-serif;*/
  padding: 0;
  margin: 0 0 20px 0;
}
h1{
      font-size: 43px;
    /* line-height: 47px; */
}
h2{
      font-size: 32px;
    /* line-height: 36px; */
}
h3{
      font-size: 26px;
    /* line-height: 30px; */
}
h4{
      font-size: 20px;
    /* line-height: 24px; */
    margin-bottom: 10px;
}
h5{
      font-size: 16px;
    /* line-height: 20px; */
     margin-bottom: 10px;
}
h6{
      font-size: 12px;
    /* line-height: 16px; */
     margin-bottom: 10px;
}
p{
  margin: 0 0 20px 0;
}
p:last-child{
  margin-bottom: 0;

}
ol{
  padding-left: 20px;

}
ol li{
      margin-bottom: 5px;

}

ul{
  padding: 0;

}
ul li{
  padding: 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
  margin-bottom: 5px;

}

ul li:before{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #49d4ad;
    position: absolute;
    top: 9px;
    left: 0;

}
a{transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;}
.dropdown-toggle:focus{
  outline: none;
}
mark{
  color: #4dbdf4;
  font-weight: 700;
  background: transparent;
  padding: 0;
}
input[type="text"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="number"], 
input[type="tel"], 
input[type="range"], 
input[type="date"], 
input[type="month"], 
input[type="week"], 
input[type="time"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="color"], 
textarea, .form-control{
  padding: 5px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #82bc10;
  border-radius: 0;
}

select{
  /* background: url(images/down-arrow.svg) right 10px center no-repeat; */
  background-size: 20px;
}
select[multiple]{
  background: transparent;
      min-height: 85px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
:-moz-placeholder { /* Firefox 18- */
  color: pink;
}
button, input[type="button"], input[type="submit"]{
  text-align: center;
    padding: 8px 20px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #fff;
    background: #82bc10;
    border: 2px solid #82bc10;
    transition: 0.3s all ease-in-out 0s;
    -webkit-transition: 0.3s all ease-in-out 0s;
    -moz-transition: 0.3s all ease-in-out 0s;
    cursor: pointer;
    display: inline-block;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none; 
}
button:hover, 
input[type="button"]:hover, 

input[type="submit"]:hover {
   background: #fff;
    color: #82bc10;
    outline: none;
    text-decoration: none;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


/*checkbox open*/

.check-pro {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-pro input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-pro:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-pro input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-pro input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-pro .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom radio button */
/*checkbox end*/

/*radio open*/
.radio-pro {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-pro input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio-pro .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-pro:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-pro input:checked ~ .checkmark {
    background-color: #2196F3;
}



/* Show the indicator (dot/circle) when checked */
.radio-pro input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-pro .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/*radio end*/
.navbar-nav li:before{
  display: none;
}

/*file upload open*/
.customfile_input{
  height:31px;
  position:relative;
  z-index:2;
  width:100%;
  margin:0;}
.customfile_label{
  position:absolute;
  top:0;
  right:0;
  left:0;z-index:1;
  height:100%;
  padding-left:215px;
  line-height:25px;
}
.customfile_label::after{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  z-index:3;
  width:197px;
  background:none;
  border:2px solid #e9c04a;
  display:block;content:'Choose File';
  height:100%;
  text-align:center;
  line-height:27px;
  cursor:pointer;
  font-family:'CenturyGothic';
  font-size:16px;color:#e9c04a;text-transform:uppercase;
}
.customfile_inputin:hover + .customfile_label::after{
  background:#e9c04a;
  color:#2a597f;
}
.customfile_inputin{
  position:relative;
  z-index:2;
  width:auto;
  margin:0;
  opacity:0;
  height:100%;
  cursor:pointer;
}
.imageupload_inp{
  padding-top:10px;
  width:100%;
}
/*file upload end*/




/*images-check box open*/
.support_forminptradio{
  position:relative;
}

.support_forminptradio label{
  margin:0;position:relative; display: inline-block;;
}
.support_forminptradio_label{
  padding-left:34px;
}
.support_forminptradio input[type="checkbox"]{
  visibility:hidden; display: none;
}
.support_forminptradio input[type="checkbox"] + .support_forminptradio_label::before

{
  content:'';position:absolute;left:0;top:3px;width:15px;height:15px;background:url(images/chk2.png) no-repeat center center;cursor:pointer;
}
.support_forminptradio input[type="checkbox"]:checked + .support_forminptradio_label::before{
  background-image:url(images/chk1.png);
}
/*images-check box end*/


/*images-radio box open*/


.support_forminptradio input[type="radio"]{
  visibility:hidden; display: none;
}
.support_forminptradio input[type="radio"] + .support_forminptradio_label::before

{
  content:'';position:absolute;left:0;top:3px;width:15px;height:15px;background:url(images/red1.png) no-repeat center center;cursor:pointer;
}
.support_forminptradio input[type="radio"]:checked + .support_forminptradio_label::before{
  background-image:url(images/red2.png);
}
/*images-radio box end*/



/*back to top open*/
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: url(images/up-arrow.png) center no-repeat #588752;
    background-size: 25px;
    width: 52px;
    height: 52px;
    display: block;
    text-decoration: none;
    z-index: 999;
    border-radius: 0;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background:url(images/up-arrow.png) center no-repeat #000;
    background-size: 25px;
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/*back to top end*/


/*wordpress menu open*/
.clickD { 
    vertical-align: middle;
    border-top: 5px dashed #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
        position: relative;
    right: 15px;
    top: 48%;
    transform: translateY(-48%);
    width: 10px;
    height: 5px;
    cursor: pointer;
    display: block;
    float: right;
    
}

.navbar-nav > li{position: relative;}
.navbar-nav > li .sub-menu{
  position: absolute;
  left: 0; top: 100%;
  display: none;
  z-index: 999;
  width: 180px;
  background: #fff;
  border: solid 1px #337ab7;
}

.navbar-nav > li .sub-menu > li > a{font-size: 16px; display: block; width: 100%; padding: 5px 24px; text-decoration: none;
color: #303030;}
.navbar-nav > li .sub-menu > li > a:hover{ background: #99d016; color: #fff; }
.navbar-nav > li .sub-menu > li{padding: 0; margin: 0 !important;}
.navbar-nav > li:last-child .sub-menu{left: inherit; right: 0;}

@media(min-width:1025px){
.navbar-nav > li:hover > .sub-menu{ display: block; }
}

@media(max-width:1024px)
{
/*.navbar-nav .clickD { position: relative;right: 0;top: 0;width: 20px;height:20px;background: url(images/sort-down.svg)center center no-repeat red; 
  cursor: pointer; display: block;background-size: 10px; float: right; margin-top: 5px;}*/
 ul.navbar-nav li .clickD.toggled + .sub-menu{display:block;}
}
/*wordpress menu end*/

.navbar{
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


.vdo_sec video::-webkit-media-controls-enclosure {
  -webkit-appearance: none;
  display:none !important;
}
.vdo_sec video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

 .vdo_sec video::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

.vdo_sec video::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

.vdo_sec video::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

.navbar-toggler-icon{
      width: auto;
    border: none;
    outline: none;
    padding: 0;
}
.navbar-toggler:hover{
	border: none;
}
.navbar-toggler:focus{
	box-shadow: none;
}
figure{
  margin-bottom: 0;
}

/* homepage */
.hindi{
  display: none;
}
.top-hdr{
  display: flex;
  justify-content: space-between;
}
.top-hdr ul{
  display: flex;
  align-items: center;
}
.top-hdr ul li::before{
  display: none;
}
.top-rt{
  display: flex;
}
.top-menu1 li{
  padding: 0 13px;
  border-right: 1px solid #999;
  margin: 0;
}
.top-menu1{
  margin: 0 -13px;
}

.top-menu1 li:last-child{
  border: none;
}
.top-hdr-wrap{
      background: #394b71;
    border-bottom: 1px solid #ebebeb;
    padding: 5px 0;
}
.top-menu1 li a{
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.top-menu1 li a:hover{
  color: rgb(255, 152, 0);
}
.langchng select{
  background: url(images/down-arrow-white.svg) right 5px center no-repeat #394b71;
    background-size: 10px;
      /* background: #394b71; */
    color: #fff;
    border: 1px solid #fff;
    padding: 0px 10px;
    padding-right: 20px;
    height: 25px;
    font-size: 13px;
    font-style: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

}
.langchng select option{
  color: #000;
  background: #fff;

}
.langchng select:focus{
  outline: none;
}
.forzoominoutFonts{
  margin: 0;

}
.forzoominoutFonts li a{
      display: inline-block;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    margin: 0 1px 0px;
    padding: 0px 5px;
    background: transparent;
    width: 25px;
    height: 24px;
    text-align: center;
    border-radius: 16px;
}
.forzoominoutFonts li{
  padding: 0;
  margin: 0;
}
.langchng{
  padding-left: 30px;
}
.lgo-txt{
  font-size: 14px;
}
.lgo-txt h2{
        margin: 0 0 5px;
    font-size: 22px;
    font-weight: 500;
    color: #132aac;
    text-transform: uppercase;
}
.lgo-txt span{
      color: #000;
    font-weight: 500;
    margin-bottom: 0px;
}
.logo-area{
  display: flex;
  align-items: center;
}
.mid-menu ul{
  display: flex;
  margin: 0 -14px;
  align-items: center;
}
.mid-menu ul li a{
      color: #000;
    
    padding: 0;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}
.mid-menu ul li a i{
      width: 50px;
    color: #fff ;
    background: rgb(196, 196, 196);
    height: 50px;
    margin: 0px auto 5px auto;
    padding-top: 5px;
    border: 6px solid #2b74c1;
    /* border-radius: 50%; */
    padding: 8px 6px 10px 8px;
    transition: background 0.7s ease 0s;
    font-size: 20px;
    display: block;
}
.mid-menu ul li{
    padding: 0px 14px;
    position: relative;
    margin: 0;
}
.mid-menu ul li::before{
  display: none;
}
.mid-hdr{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.navbar-toggle span:nth-child(2){
  top: 4px;
}
.navbar-toggle span:nth-child(1){
  top: 0;
}
.navbar-toggle span:nth-child(3){
  top: 12px;
}
.mid-menu ul li:nth-child(1) a i{
      background: rgba(3, 146, 206, 0.5);
    border-color: darkblue;
}
.mid-menu ul li:nth-child(2) a i{
        background: rgba(255, 152, 0, 0.5);
    border-color: #FF9800;
}
.mid-menu ul li:nth-child(3) a i{
        background: rgba(76, 175, 80, 0.5);
    border-color: #4CAF50;
}
.mid-menu ul li:nth-child(4) a i{
        background: rgba(0, 150, 136, 0.54);
    border-color: #009688;
}
.mid-menu ul li:nth-child(5) a i{
        background: rgba(33, 150, 243, 0.61);
    border-color: #03A9F4;
}
.mid-menu ul li:nth-child(6) a i{
        background: rgba(201, 0, 68, 0.46);
    border-color: #c90044;
}
.mid-menu ul li:nth-child(1) a:hover{
  color: rgba(3, 146, 206, 0.5);
}
.mid-menu ul li:nth-child(2) a:hover{
  color: rgba(255, 152, 0, 0.5);
}
.mid-menu ul li:nth-child(3) a:hover{
  color: rgba(76, 175, 80, 0.5);
}
.mid-menu ul li:nth-child(4) a:hover{
  color: rgba(0, 150, 136, 0.54);
}
.mid-menu ul li:nth-child(5) a:hover{
  color: rgba(33, 150, 243, 0.61);
}
.mid-menu ul li:nth-child(6) a:hover{
  color: rgba(201, 0, 68, 0.46);
}

.mid-menu ul li.active a{
  color: darkblue;
}
.mid-menu ul li.active a:hover{
  color: darkblue;
}
.navbar-nav{
  width: 100%;
}

.navbar-nav li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    padding: 12px 5px;

    text-align: center;
}
.bot-hdr{
  background: #2b74c1;
}
.navbar-nav li{
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 20%;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;
}

.navbar{
  padding: 0;
    border-top: 2px solid #2377a0;
    border-bottom: 2px solid #2377a0;
    
    
}
.navbar-nav li:hover{
  background: #fff;
  cursor: pointer;
}
.navbar-nav li:hover a{
  color: #116738;
}
.navbar-nav li:hover .clickD{
  border-color: #116738;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.navbar-nav li .sub-menu{
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  
}
.navbar-nav li .sub-menu ul li{
  width: 100%;
  text-align: left;
  border-bottom: solid 1px #337ab7;
}
.navbar-nav li .sub-menu ul li:last-child{
  border-bottom: none;
  
}
.navbar-nav li .sub-menu ul li a{
  text-transform: capitalize;
  width: 100%;
  padding: 8px 0;
  padding-left: 10px;
  text-align: left;
}
.navbar-nav li .sub-menu ul li a:hover{
  background-color: #337ab7;
  color: #fff;
}

.navbar-nav li .sub-menu .sub-menu{
  right: -100%;
  left: inherit;
  top: 0;
}
.navbar-nav li .sub-menu ul li:hover .sub-menu{
  display: block;
}
.sub-menu .clickD{
  margin-top: -18px;
}
.gandhi{
  margin-bottom: 8px;
  background: #e2e3dd;
  padding: 0 5px;
}

.gandhi figure{
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.gandhi-quote{
      font-size: 13px;
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
}
.gandhi-name{
    font-size: 15px;
    font-style: italic;
    text-align: right;
    padding: 0 5px;
}

.home-sec{
  background: rgba(5, 143, 208, 0.1);
  padding-top: 8px;
}
.home-lt-cntnt{
  display: flex;
  justify-content: center;
  background: #fff;
  margin-bottom: 8px;
  padding: 5px;
  border-radius: 5px;
}
.current-event ul{
  margin-bottom: 0;
}
.current-event ul li::before{
  display: none;
}
.current-event ul li{
  padding-left: 0;
}
.current-event a{
  font-weight: 700;
  width: 100%;
}
.current-event a:hover{
  text-decoration: underline;
  color: #23527c;
}
.current-event{
  padding: 12px 10px;
  background: #fff;
  border-radius: 5px;
}
.current-event a img{
  width: 100%;
}
.mid-notification{
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 8px;

}
.main-head h2{
  font-size: 20px;
  text-transform: capitalize;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 0;
  
}
.main-head{
  background: rgb(13, 63, 29);
  padding: 8px 12px;
}
.scroll-noti ul li::before{
  display: none;
}
.scroll-noti ul li{
  padding-left: 0;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}
.scroll-noti ul{
  margin-bottom: 0;
}
.each-noti{
  display: flex;
  align-items: center;
  overflow: hidden;
  
}
.date span{
  display: block;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    display: block;
    margin-top: -1px;
    margin-bottom: -1px;
}
.scroll-noti{
  padding: 10px;
  height: 700px;
  overflow-y: auto;
  
}
.date{
    color: darkblue;
    font-size: 11px;
    padding-right:9px;
    float: left;
    width: 46px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
}
.each-txt a{
  color: #222;
  font-weight: 500;
  position: relative;
  /* padding-left: 37px; */
  display: contents;
}

.each-txt a:hover{
  color: #fe6601;
}
.each-txt{
  flex-basis: calc(100% - 46px);
  
}

#pagination-container{
  display: flex;
  justify-content: center;
}
#pagination-container ul li::before{
  display: none;
}
#pagination-container ul li{
  padding-left: 0;
}
#pagination-container ul{
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}
.simple-pagination li {
	display: inline-block;
	margin: 0;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	background-color: #FFF;
	border: 1px solid #ddd;
  margin: 0;
  display: block;
}
.simple-pagination li:first-child a,
.simple-pagination li:first-child span{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.simple-pagination li:last-child a,
.simple-pagination li:last-child span{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.simple-pagination .current {
	color: #FFF;
    
    background-color: #337ab7;
    border-color: #337ab7;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #FFF;
  color: #23527c;
}

#forScrollNews::-webkit-scrollbar{
    width: 8px;
    background-color: #F5F5F5;
}
#forScrollNews::-webkit-scrollbar-thumb{
      border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}
#forScrollNews::-webkit-scrollbar-track{
      -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.current-calander-list{
  height: 94px;
  overflow-y: auto;

}
.each-calander-item{
      padding: 10px 15px;
    
}
.each-calander-item ul li::before{
  display: none;
}
.each-calander-item ul{
  margin-bottom: 0;
}
.each-calander-item ul li{
  padding-left: 0;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.each-calander-item p{
  
  /* font-size: 13px; */
}
.each-txt .click-sm{
  display: block;
  width: 100%;
  font-size: 14px;
}
.small-head h3{
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}
.small-head{
  background: #026796;
  padding: 8px 12px;
}
.current-event-calendar{
      background: #fff;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
}
#forScrollCalendar::-webkit-scrollbar{
      width: 8px;
    background-color: #F5F5F5;
}
#forScrollCalendar::-webkit-scrollbar-thumb{
      border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}
#forScrollCalendar::-webkit-scrollbar-track{
      -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}


.home-slider .slick-prev::before {
    position: absolute;
    content: "";
    background: url(images/chevron-left-solid.svg) no-repeat center center;
    background-size: 8px; 
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    
}  
.home-slider .slick-next::before {
  position: absolute;
  content:  "";
  background: url(images/chevron-right-solid.svg) no-repeat center center;   
  background-size: 8px;
  width: 20px;
    height: 20px; 
  right: 0;
    top: 0;
} 
.home-slider{
  background: #fff;
  padding: 0 28px;
}
.home-slider .slick-prev{
  left: 8px;
}
.home-slider .slick-next{
  right: 8px;
}
.home-slider .slick-slide{
  padding: 0 10px;
}
.hmslider-contnt a{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.hmslider-contnt a img{
  height: 131px;
  object-fit: cover;
}
.home-rw{
  margin-bottom: 8px;
}
.top-footer{
  background: #4c4c4c;
  text-align: center;
  padding: 16px 0;
  
}
.bot-footer{
  background: #131313;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}
.footer-menu{
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
.footer-menu li{
  margin: 0;
  padding: 0px 10px;
  font-size: 14px;
}
.footer-menu li::before{
  display: none;
}
.top-footer p{
  margin-bottom: 5px;
  font-size: 14px;
}
.top-footer p:last-child{
  margin-bottom: 0;
}
.ftr-date span{
  font-weight: 700;
}
.footer{
  color: #fff;
}
.footer a{
  color: #fff;
}
.footer a:hover{
  font-weight: 500;
}
.cmn-navbtn .icon-bar{
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #333;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.cmn-navbtn span:nth-child(1){
  top: 0;
}
.cmn-navbtn span:nth-child(2){
  margin-top: 4px;
}
.cmn-navbtn span:nth-child(3){
  margin-top: 4px;
}
.cmn-navbtn{
      width: auto;
    height: auto;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
    display: none;
}
.demo{
  overflow-y: hidden;
}
.cus-nav{
  width: 100%;
}
.top-slider .slick-prev::before {
    position: absolute;
    content: "";
    background: url(images/chevron-left-solid.svg) no-repeat center center;
    background-size: 8px; 
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    
}  
.top-slider .slick-next::before {
  position: absolute;
  content:  "";
  background: url(images/chevron-right-solid.svg) no-repeat center center;   
  background-size: 8px;
  width: 20px;
    height: 20px; 
  right: 0;
    top: 0;
} 
.top-slider .slick-prev{
  left: 8px;
  z-index: 1;
}
.top-slider .slick-next{
  right: 8px;
  z-index: 1;
}

.home-sec .slick-slider{
  font-size: 0;
  line-height: 0;
}
.top-slider{
  margin-bottom: 8px;
}
.top-slider-inr figure img{
    width: 100%;
  }
  .menu-head{
    position: fixed;
    max-width: 320px;
    width: 100%;
  
    top: 0;
    padding:14px 0 7px;
    background: #fff;
    z-index: 9;

  }
  #btn_click3{
    margin-left: auto;
    margin-right: 20px;
    width: 22px;
    height: 22px;
  }
  #btn_click4{
    margin-right: auto;
    margin-left: 20px;
    width: 22px;
    height: 22px;
  }
  
  .inner-page-wrap{
    background: rgba(200, 226, 244, 1);
    padding: 10px 0 15px;
    min-height: 70vh;
  }
  .inner-page-content{
    background: #fff;
    padding: 20px 10px 20px;
    border-radius: 5px;
    
  }
  .responsive-table{
    overflow: auto;

  }
  table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

 td, th {
  border: 1px solid #ddd;
  text-align: left;
  padding: 8px;
}
 table td{
  padding: 12px;
  font-size: 13px;
}
 table tr th{
  background: rgb(2, 180, 250);
  color: #fff;
  padding: 12px;
}

 tr:nth-child(even) {
  background-color: rgba(87, 181, 227, 0.1);
}
.inner-page-head h2{
  font-size: 22px;
  color: #132aac;
  border-bottom: 2px solid #02b4fa;
  display: inline-flex;
  margin-bottom: 30px;
}
.resp-tabs-container{
  position: relative;
  margin-top: -10px;
}
.application_text p{
  /* font-size: 15px; */
  margin-bottom: 10px;
}
.application_text .application_status{
  font-size: 13px;
}
.application_text ul li:before{
  display: none;
}
.application_text ul li{
  margin-bottom: 20px;
}
.application_text ul li:last-child{
  margin-bottom: 0;
}
.answer-wrap ul li i{
  padding-right: 15px;
}
.answer-wrap ul li::before{
  display: none;
}
.answer-wrap ul li{
  padding-left: 0;
  margin-bottom: 25px;
}
.answer-wrap ul li:last-child{
  margin-bottom: 0;
}
.answer-wrap ul li a{
  text-decoration: underline;
  color: #000;
}
.answer-wrap ul li a:hover{
  color: #02b4fa;
}
.answer-wrap ul{
  margin-bottom: 0;
}
#SitemapBlock ul{
  padding-left: 2em;
   
}
#SitemapBlock ul li::before{
  display: none;
}
#SitemapBlock ul li{
  padding-left: 8px;
  list-style-type:circle;
}
#SitemapBlock ul li a{
  color: #2b74c1;
  cursor: pointer;
}
#SitemapBlock ul li a:hover{
  text-decoration: underline;
}
.answer-wrap .each-noti{
  flex-wrap: wrap;
}
.menu-head{
  display: none;

}
/* responsive */
@media(max-width:1399px){
  .footer-menu li{
    padding: 0 5px;
  }
}
@media(max-width:1199px){
  .footer-menu{
    flex-wrap: wrap;
  }
  .footer-menu li{
    margin-bottom: 5px;
  }
  .mid-menu ul{
    margin: 0 -5px;
  }
  .mid-menu ul li{
    padding: 0px 5px;
  }
}
@media(max-width:991px){
  .logo-area{
    max-width: 255px;
    padding-right: 10px;
  }
  .navbar-brand{
    margin-right: 10px;
  }
  .lgo-txt h2{
    font-size: 20px;
  }
  .navbar-nav li{
    width: 33%;
  }
  .navbar-nav{
    flex-wrap: wrap;
  }
  .ftr-clm{
    margin-bottom: 8px;
  }
  .ftr-clm:last-child{
    margin-bottom: 0;
  }
  .top-slider-inr figure img{
    height: 250px;
    object-fit: cover;
  }
  .mid-menu{
    position: fixed;
    width: 320px;
    top: 0;
    background: #fff;
    height: 100%;
    z-index: 100;
    left: -100%;
    transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;
    padding-top: 0;
    overflow: auto;
    padding: 50px 0 20px;
  }
  .cmn-nav-selected  span:nth-child(1){
        top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .cmn-nav-selected  span:nth-child(2){
    opacity: 0;
  }
  .cmn-nav-selected  span:nth-child(3){
        top: 14px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .cmn-nav-selected .icon-bar + .icon-bar{
    margin-top: -2px;
  }
  .demo .mid-menu{
    left: 0;
  }
  .mid-menu ul{
    display: initial;
    margin: 0;
  }
  .mid-menu ul li{
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
  }
  .mid-menu ul li a i{
    display: none;
  }
  .mid-menu ul li a{
    color: #333;
    font-weight: 500;
    text-align: left;
  }
  .menu-head{
    display: block;
  }
  .bot-hdr{
    position: fixed;
    width: 320px;
    top: 0;
    background: #fff;
    height: 100%;
    z-index: 100;
    right: -100%;
    transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;
    overflow: auto;
    padding: 50px 0 20px;
  }
  .bot-hdr .container{
    padding-left: 0;
    padding-right: 0;
     
  }
  .demo2 .bot-hdr{
    right: 0;
  }
  .navbar-nav li{
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    padding-left: 20px;

  }
  .navbar-nav li a{
    color: #333;
    padding: 0;
    text-align: left;
  }
  .navbar{
    border: none;
  }
  .demo2{
    overflow-y: hidden;
  }
  .clickD{
    border-color: #116738;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-top: 10px;
    right: 4px;
    top: inherit;
  }
  .menu-item-has-children  .menu-item-has-children .clickD{
    border-color: #fff !important;
    border-right: 5px solid transparent !important;
    border-left: 5px solid transparent !important;
    margin-top: -8px;
  }
  .navbar-nav li .sub-menu .sub-menu li{
    /* padding-left: 10px;
    padding-right: 10px; */
    border-left: 0;
    border-right: 0;

  }
  .logo-area{
    max-width: inherit;
    padding: 0 15px;
  }
  .home-clm{
    margin-bottom: 15px;
  }
  .cmn-navbtn{
    display: block;
  }
  .cus-nav{
    padding-top: 20px;
  }
  .navbar-nav li .sub-menu{
    position: static;
    border: none;
    box-shadow: none;
  }
  .navbar-nav li .sub-menu ul li{
    /* padding: 5px; */
    background: #337ab7;
    border-color: #fff;
  }
  .navbar-nav li .sub-menu ul li a{
    color: #fff;
    padding: 0;
  }
 
  .responsive-table{
    max-width: 874px;
    width: 100%;
    overflow-x: auto;
  }
  .responsive-table table{
    width: 900px;

  }
}

/* @media(max-width:767px){
  

  
} */

@media(max-width:480px){
  .top-hdr{
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-menu1{
    margin-bottom: 8px;
  }
  .bot-hdr{
    width: 100%;
  }
  .mid-menu{
    width: 100%;
  }
  #SitemapBlock ul{
  padding-left: 1em; 
  }
  .menu-head{
    max-width: 100%;
  }
}

/* faq opne   */
.eachFaq{
  margin-bottom: 20px;

}


.faq-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #000000;
  text-align: left;
  background: #02b4fa;
  padding: 10px 70px;
  padding-left: 20px;
  /* border-radius: 90px; */
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  color: #fff;
}

.eachFaq.open .accordion-content {
  display: block !important;
}
.eachFaq.open .accordion-content {
  display: block !important;
}
.faq-title::before {
  position: absolute;
  content: '';
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: url(images/accordian-icon.png) no-repeat center center;
  background-size: 10px;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.eachFaq.open .faq-title::before {
  transform: translateY(-50%) rotate(0deg);
}
.accordion-content{
  border:1px solid #999 ;
  padding: 20px;
}
/* faq end   */


/* responsive */
@media(max-width:1399px){
  .footer-menu li{
    padding: 0 5px;
  }
}
@media(max-width:1199px){
  .footer-menu{
    flex-wrap: wrap;
  }
  .footer-menu li{
    margin-bottom: 5px;
  }
  .mid-menu ul{
    margin: 0 -5px;
  }
  .mid-menu ul li{
    padding: 0px 5px;
  }
}
@media(max-width:991px){
  .logo-area{
    max-width: 255px;
    padding-right: 10px;
  }
  .navbar-brand{
    margin-right: 10px;
  }
  .lgo-txt h2{
    font-size: 20px;
  }
  .navbar-nav li{
    width: 33%;
  }
  .navbar-nav{
    flex-wrap: wrap;
  }
  .ftr-clm{
    margin-bottom: 8px;
  }
  .ftr-clm:last-child{
    margin-bottom: 0;
  }
  .top-slider-inr figure img{
    height: 250px;
    object-fit: cover;
  }
  .mid-menu{
    position: fixed;
    width: 320px;
    top: 0;
    background: #fff;
    height: 100%;
    z-index: 100;
    left: -100%;
    transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;
    padding-top: 0;
    overflow: auto;
    padding: 50px 0 20px;
  }
  .cmn-nav-selected  span:nth-child(1){
        top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .cmn-nav-selected  span:nth-child(2){
    opacity: 0;
  }
  .cmn-nav-selected  span:nth-child(3){
        top: 14px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .cmn-nav-selected .icon-bar + .icon-bar{
    margin-top: -2px;
  }
  .demo .mid-menu{
    left: 0;
  }
  .mid-menu ul{
    display: initial;
    margin: 0;
  }
  .mid-menu ul li{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
  }
  .mid-menu ul li a i{
    display: none;
  }
  .mid-menu ul li a{
    color: #333;
    font-weight: 500;
    text-align: left;
  }
  .menu-head{
    display: block;
  }
  .bot-hdr{
    position: fixed;
    width: 320px;
    top: 0;
    background: #fff;
    height: 100%;
    z-index: 100;
    right: -100%;
    transition: 0.3s all ease-in-out 0s;-webkit-transition: 0.3s all ease-in-out 0s;-moz-transition: 0.3s all ease-in-out 0s;
    overflow: auto;
    padding: 50px 0 20px;
  }
  .bot-hdr .container{
    padding-left: 0;
    padding-right: 0;
     
  }
  .demo2 .bot-hdr{
    right: 0;
  }
  .navbar-nav li{
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
    padding-left: 20px;

  }
  .navbar-nav li a{
    color: #333;
    padding: 0;
    text-align: left;
  }
  .navbar{
    border: none;
  }
  .demo2{
    overflow-y: hidden;
  }
  .clickD{
    border-color: #116738;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-top: 10px;
  }
  .logo-area{
    max-width: inherit;
    padding: 0 15px;
  }
  .home-clm{
    margin-bottom: 15px;
  }
  .cmn-navbtn{
    display: block;
  }
  .cus-nav{
    padding-top: 20px;
  }
  .navbar-nav li .sub-menu{
    position: relative;
    border: none;
    box-shadow: none;
  }
  .navbar-nav li .sub-menu ul li{
    padding: 5px;
    background: #337ab7;
    border-color: #fff;
  }
  .navbar-nav li .sub-menu ul li a{
    color: #fff;
    padding: 0;
  }
  .responsive-table{
    max-width: 874px;
    width: 100%;
    overflow-x: auto;
  }
  
}

/* @media(max-width:767px){  
  
} */

@media(max-width:480px){
  .top-hdr{
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-menu1{
    margin-bottom: 8px;
  }
  .bot-hdr{
    width: 100%;
  }
  .mid-menu{
    width: 100%;
  }
  #SitemapBlock ul{
  padding-left: 1em; 
  }
}


/* gallery specific CSS */

.-fx-image-gal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%; /* arbitrary valye */
  margin: 0px auto;
}
.-fx-gal-item {
  width: 22%; /* for 4 columns */
  margin: 10px;
  overflow: hidden;
  border-radius: 15px;
}

.-fx-gal-image-thumb img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  -webkit-filter: grayscale(80%);
  -moz-filter: grayscale(80%);
  filter: grayscale(80%);
  transition: all 0.3s ease;
}

.-fx-gal-image-thumb:hover img {
  width: 100%;
  cursor: pointer;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);

  transform: scale(1.2);
  transition: all 0.5s ease;
}

.-fx-gal-image-thumb:focus + .-fx-gal-image-big {
  display: block;
}

.-fx-gal-image-big {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(5, 10, 15, 0.8);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  transition: all 0.3s ease;
}

.-fx-gal-image-big img {
  max-width: 90vw;
  position: absolute;
  box-shadow: 0px 0px 800px 40px rgba(0, 0, 0, 0.9);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* gallery specific CSS */
