@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  /* outline: 0; */
}


body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 14px !important;
  color: #000;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  /* text-decoration: none; */
  color: #005aa3;
}

a:hover {
  text-decoration: none;
}


 .inner-text img {
    border-radius: 10px;
    border: 1px solid #e0f4ff;
    width: 100%;
    box-shadow: -3px 6px 10px -5px #8888888f;
}


.inner-text p strong {

    margin-bottom: -9px;
    /* display: block; */
}




th {
    background: #88dbff59 !important;
}



h1 {

    font-weight: 700;
    font-size: 24px;
    color: #033085;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  /* color: #cd5208; */
  font-weight: 700;
}

p,
span {
font-weight:400;
margin-bottom: 0rem;


}



 .inner-text p {
   
    margin-bottom: 1rem;
}



input,
textarea {
  width: 100%;
  padding: 12px 20px;
  /* outline: none; */
  resize: none;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #5e5b5b17;
  border-radius: 30px;
}

input::placeholder,
textarea::placeholder {
  color: #5C728E;
}

button {
  border: none;
  /* outline: none; */
}

button:focus {
  /* outline: none; */
}

:root {
  --colorPrimary: #00A6FB;
  --colorSecondary: #2AC28E;
  --colorDeepblue: #4589F4;
  --paraColor: #5C728E;
  --colorBlack: #031D36;
  --colorWhite: #ffffff;
  --paraFont: 'DM Sans', sans-serif;
  --headingFont: 'Work Sans', sans-serif;
  --boxShadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --gradiantBg: linear-gradient(45deg, #CDFFF1 0%, rgba(203, 245, 246, 0.73) 28.13%, rgba(240, 251, 224, 0.80) 79.75%, #F8FFDA 100%);
}

.common_btn {
  background: var(--colorPrimary);
  text-transform: capitalize;
  color: var(--colorWhite);
  padding: 12px 40px 12px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.common_btn::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 24px;
  background: url(../images/arrow_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 0px;
  opacity: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.common_btn:hover {
  background: var(--colorSecondary);
  padding: 12px 25px 12px 55px;
  color: var(--colorWhite);
}

.common_btn:hover::after {
  opacity: 1;
  left: 17px;
}

.common_heading h5 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--paraFont);
  color: var(--colorPrimary);
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.common_heading h5::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 20px;
  background: var(--colorPrimary);
}

.common_heading h2 {
  text-align: start;
  font-size: 24px;
  font-weight: 700;
  color: #033085;
  text-transform: capitalize;
  margin-top: 4px;
}

.common_heading p {
  text-align: start;
  font-size: 16px;
  margin-top: 22px;
}

.center_heading {
  text-align: center;
}

.center_heading h2 {
  text-align: center;
}

/* .breadcrumb {
  background: url(../images/breadcrumb_bg.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 270px 0px 165px;
  position: relative;
}

.breadcrumb::after {
  position: absolute;
  content: "";
  background: #013c5aa3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.breadcrumb_text {
  position: relative;
  z-index: 2;
}

.breadcrumb_text h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--colorWhite);
}

.breadcrumb_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb_text ul li,
.breadcrumb_text ul li a {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--paraFont);
  color: var(--colorWhite);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.breadcrumb_text ul li a {
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}

.breadcrumb_text ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 12px;
  color: var(--colorWhite);
  top: 6px;
  right: -4px;
}

.breadcrumb_text ul li a:hover {
  color: var(--colorWhite);
}

.breadcrumb_text ul li {
  color: var(--colorWhite);
}

.breadcrumbs::after {
  position: absolute;
  content: "";
  background: url("../images/shape-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 92px;
  height: 92px;
  bottom: 67px;
  right: 8%;
} */

#pagination .page-item.active .page-link {
  color: var(--colorWhite);
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

#pagination .page-link {
  color: var(--paraColor);
  font-size: 16px;
  font-family: var(--paraFont);
  font-weight: 400;
  padding: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin: 0px 5px;
  border: 1px solid #2d343b29;
}

#pagination .page-link:hover,
#pagination .page-link.active {
  z-index: 2;
  color: var(--colorWhite);
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

#pagination .page-link:focus {
  /* outline: 0; */
  box-shadow: none;
}

.play_btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--colorPrimary);
  color: var(--colorWhite) !important;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.play_btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--colorPrimary);
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  animation: play_animate 1.3s infinite;
  -webkit-animation: play_animate 1.3s infinite;
}

@keyframes play_animate {
  from {
    transform: scale(1);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  to {
    transform: scale(1.8);
    opacity: 0;
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
    -o-transform: scale(1.8);
  }
}

@keyframes rotate_animi {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes zoom_animi {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  to {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

@keyframes shake_animi {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  to {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }
}


.inner_image1 {
    width: 100%;
    margin-bottom: 20px;
    height: 180px;
}






#superfish-main-toggle span:before {
    content: "\f0c9";
  font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 16px;
    color: #000;
    font-size: 18px;

    font-weight: 700;
}



#superfish-main-toggle {
    font-size: 0px !important;
    height: 32px;
    display: block;

}




.form-select {
  font-size: 14px;
}



/*==============================
  GLOBAL CSS END
===============================*/

/* ===========================
  HOME PAGE 01 START
=============================*/
/* topbar start */
.topbar {
  width: 100%;
  /* height: 40px; */
  background: #0858a7;
  /* position: fixed; */
  top: 0px;
  left: 0;
  z-index: 99;
  padding: 5px 0px;
}

.topbar_link {
  /* line-height: 40px; */
}

.topbar_link li a,
.topbar_link li p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--paraFont);
  color: var(--colorWhite);
  margin-right: 25px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.topbar_link li a i,
.topbar_link li p i {
  margin-right: 10px;
}

.topbar_link li a:hover {
  text-decoration: underline;
}

.topbar_icon {
  line-height: 40px;
  justify-content: end;
}

.topbar_icon li a {
  font-size: 14px;
  margin-left: 10px;
  color: var(--colorWhite);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
}

.topbar_icon li a:hover {
  background: #ffffff40;
}



.topbar a, .topbar li{
  color: #fff !important;
font-size: 14px !important;
}

.topbar i {
  color: #fff;
  font-size: 12px;
  padding: 5px;
}


a.skip-to-main {
  padding-right: 10px;
}

#block-custom-theme-screenreaderaccess {
  padding-right: 15px;
}

/* topbar end */


/* banner start */
.banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.banner div {
  height: 100%;
}

.banner_text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
}

.banner_text h5 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--paraFont);
  color: var(--colorPrimary);
  border-left: 2px solid var(--colorPrimary);
  padding-left: 20px;
}

.banner_text h1 {
  text-align: start;
  font-size: 56px;
  font-weight: 700;
  color: var(--colorBlack);
  text-transform: capitalize;
  margin-top: 22px;
  margin-bottom: 15px;
}

.banner_text p {
  text-align: start;
  font-size: 18px;
  margin-bottom: 40px;
}

.banner_counter {
  margin-top: 100px;
}

.banner_counter li {
  text-align: left;
  margin-right: 40px;
}

.banner_counter li h3,
.banner_counter li span {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--headingFont);
  color: var(--colorBlack);
}

.banner_counter li p {
  font-size: 18px;
  text-transform: capitalize;
  margin-top: 5px;
  margin: 0;
}

.banner_img {
  display: flex;
  justify-content: end;
  align-items: end;
  position: relative;
  z-index: 1;
}

.banner_img .img {
  height: 739px;
}

.banner_img::after {
  position: absolute;
  content: "";
  background-image: url(../images/banner_img_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 680px;
  height: 680px;
  z-index: -1;
  right: -17px;
  top: 207px;
  animation: rotate_animi linear 30s infinite;
  -webkit-animation: rotate_animi linear 30s infinite;
}

.react {
  position: absolute;
  top: 555px;
  right: -48px;
  width: 70px !important;
  height: 70px !important;
}

.video_call {
  position: absolute;
  top: 212px;
  right: 128px;
  width: 70px !important;
  height: 70px !important;
}

.call {
  position: absolute;
  top: 365px;
  left: -26px;
  width: 70px !important;
  height: 70px !important;
}

.banner .review {
  position: absolute;
  top: 559px;
  left: -147px;
  width: 167px !important;
  height: 90px !important;
  background: none;
}

.banner .review::after,
.banner .review::before {
  display: none;
}

.banner::after {
  position: absolute;
  content: "";
  background: url(../images/shape-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  top: 20%;
  left: 5%;
  animation: zoom_animi linear 2s infinite alternate;
  -webkit-animation: zoom_animi linear 2s infinite alternate;
}


.team .col-xl-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding: 2px;
}


/* banner end */




/* about end */

/* service start */
.service {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
}

.service_overlay {
  background: #ffffff9c;
}

.service_slider .single_service {
  margin: 25px 12px 0px 12px;
}

.single_service {
  margin-top: 25px;
  padding: 20px;
  background: var(--colorWhite);
  transition: all linear .3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all linear .2s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  box-shadow: var(--boxShadow);
}

.service_page .single_service {
  box-shadow: var(--boxShadow);
}

.service_img {
  position: relative;
  /* height: 290px; */
}

.service_img img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.tf_service_icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  background: var(--colorSecondary);
  color: var(--colorWhite);
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.tf_service_icon2 {
  background: var(--colorPrimary);
}

.tf_service_icon3 {
  background: #F7588D;
}

.tf_service_icon4 {
  background: #FFBC42;
}

.service_text {
  margin-top: 25px;
}

.service_heading {
  display: block;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--headingFont);
  color: var(--colorBlack);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.service_heading:hover {
  color: var(--colorPrimary);
}

.service_text p {
  margin: 10px 0px 15px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service_link {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--paraFont);
  color: var(--colorBlack);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.service_link i {
  margin-left: 5px;
}

.service_link:hover {
  color: var(--colorPrimary);
}

.single_service:hover {
  margin-top: 20px;
}

/* service end */


/* principal desk */

.pricipal-message-box {
  background-image: url(../images/principalbg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}


.pricipal-message-box .single_team {
  margin-top: 0;
  overflow: hidden;
  display: flex;
  background: #fff0;
  padding: 10px;
}



.pricipal-text {
  border-top: 2px solid #dedbdb;
  margin-top: 5px;
  padding-top: 5px;
}


/* team start */
.single_team {
  margin-top: 20px;
  /*! border-radius: 10px; */
  overflow: hidden;
  display: flex;
  background: #fff;
  padding: 10px;
}


.team_img {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 2px 7px rgba(25, 35, 43, 0.19);
}

.team_img img {
  /*! border-top-left-radius: 10px; */
  /*! border-top-right-radius: 10px; */
  border-radius: 10px;
  border: 1px solid #dbdbdbed;
}



.team_designation {
  position: relative;
  /*! background: var(--colorPrimary); */
  padding: 7px 0px 0px 12px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.team_designation h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.team_designation p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top: 4px;
}



.team_designation a {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  color: var(--colorPrimary);
  background: var(--colorWhite);
  line-height: 36px;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}


.pricipal-message-box .pricipal-text {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top: 0px;
  margin-bottom: 11px;
}

.read-more {
  /* float: right; */
  /* background: #cd5208; */
  color: #fff;
  /* font-size: 14px; */
  /* padding: 2px 15px; */
  /* margin-top: -25px; */
  /* border-bottom-right-radius: 5px; */
}

.deg-line {
  padding-bottom: 3px;
}


/* team end */


.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.slick-dots li button {
  font-size: 0;
  border-radius: 10px;
  background: rgb(0 166 251 / 30%);
  width: 15px;
  height: 8px;
  margin: 0px 2px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.slick-dots li.slick-active button {
  background: var(--colorPrimary);
  width: 30px;
}

/* review end */


/* blog end */

/* footer start */
.footer {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}

.tf_footer_logo {
  width: 165px;
  margin-bottom: 30px;
}



.footer_mail span,
.tf_footer_icon span {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorBlack);
  display: inline-block;
  min-width: 85px;
}

.footer_mail a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--paraFont);
  color: var(--paraColor);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}


.tf_footer_icon ul li a {
  font-size: 16px;
  margin-right: 10px;
  color: var(--colorPrimary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}

.tf_footer_icon ul li a:hover {
  color: var(--colorWhite);
  background: var(--colorPrimary);
}

.quick_link h5,
.address h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #ffff;
  font-size: 16px;
}

.quick_link ul li a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--paraFont);
  color: var(--colorWhite);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  display: block;
  /* margin-top: 12px; */
}

.quick_link ul li a:hover {
  color: var(--colorPrimary);
  padding-left: 5px;
}

.tf_footer_address {
  margin-top: 15px;
}

.tf_footer_address p,
.tf_footer_address a {
  margin-bottom: 0;
}

.tf_footer_address p,
.tf_footer_address a {
  display: block;
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
  color: var(--paraColor);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.tf_footer_address p i,
.tf_footer_address a i {
  color: var(--colorPrimary);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
}

.tf_footer_address a:hover {
  color: var(--colorPrimary);
}

.copyright {
  padding: 20px 0px;
  border-top: 1px solid #ddd;
}

.copyright ul li a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--paraFont);
  color: var(--paraColor);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  margin-left: 25px;
}

.copyright ul li a:hover {
  color: var(--colorPrimary);
}



/* footer end */

/* scroll button start */
.scroll_btn {
  width: 35px;
  height: 70px;
  border-radius: 25px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 111;
  cursor: pointer;
  text-align: center;
  line-height: 70px;
  background: var(--colorPrimary);
  border: 3px solid var(--colorWhite);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.scroll_btn span {
  font-size: 16px;
  color: var(--colorWhite);
  animation: scroll_amini linear 2s infinite alternate;
  -webkit-animation: scroll_amini linear 2s infinite alternate;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.scroll_btn:hover {
  background: var(--colorSecondary);
}

@keyframes scroll_amini {
  from {
    bottom: -20px;
  }

  to {
    bottom: 12px;
  }
}

/* scroll button end */

/* ===========================
  HOME PAGE 01 END
=============================*/





/* appoinment end */

/* about start */
.about_2_img {
  height: 556px;
  margin-right: 80px;
}

.about_2_text h2 span {
  text-align: start;
  font-size: 36px;
  font-weight: 700;
  color: var(--colorDeepblue);
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

.about_2_text h4 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--colorBlack);
  margin-top: 40px;
}

.about_us_signature {
  width: 126px;
  height: 60px;
  margin-top: 18px;
}

/* about end */



/*Service end */



.team {
  background-image: url(../images/footer-bg.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  background-attachment: fixed;
}





.team_2 .home_tow_heading h2 {
  text-align: center;
}

.single_team_2 {
  margin-top: 25px;
}



.team_2_text {
  box-shadow: var(--boxShadow);
  text-align: center;
  padding: 50px 0 25px;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.appoinment_2 .common_heading p {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 50px;
  margin-top: 40px;
}

.team_2_text p {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--paraColor);
  margin-top: 3px;
}

.team_2_text .social_media {
  width: 170px;
  height: auto;
  background: var(--colorSecondary);
  padding: 15px 25px;
  border-radius: 100px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.team_2_text .social_media ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team_2_text .social_media ul li a {
  font-size: 20px;
  color: var(--colorWhite);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.team_2_text .social_media ul li a:hover {
  transform: translateY(-3px)
}

.single_team_2:hover .social_media {
  background: var(--colorDeepblue);
}

.single_team_2 .title {
  color: var(--colorBlack);
  font-size: 24px;
  font-weight: 600;
  display: block;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single_team_2 .title:hover {
  color: var(--colorSecondary);
}

/* team end */



/* brand start */
.company_img {
  width: 185px;
  height: 70px;
}


.footer-left {
  display: flex;
}

.footer-box {
  display: flex;
}

.main-footer {
    background: #0c285b;
    color: #fff;
    padding: 20px 0px;
}

/* footer start*/
.footer_three .tf_footer_icon a:hover {
  color: var(--colorDeepblue);
}

.footer_three .tf_footer_address p i,
.footer_three .tf_footer_address a i {
  color: var(--colorWhite);
}

/* footer end*/


.hospital-title h2 {
  font-size: 20px;

}



.double-line-bottom-theme-colored-2 {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-bottom: 5px;
  position: relative;
}

.double-line-bottom-theme-colored-2:after {
  border-radius: 8px;
  bottom: 1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 64px;
}

.double-line-bottom-theme-colored-2:before {
  border-radius: 8px;
  bottom: -1px;
  content: "";
  height: 6px;
  left: 10px;
  position: absolute;
  width: 24px;
}

.double-line-bottom-centered-theme-colored-2 {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-bottom: 5px;
  position: relative;
}

.double-line-bottom-centered-theme-colored-2:after {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  background: #cd5208;
}

.double-line-bottom-centered-theme-colored-2:before {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 3px;
  bottom: -1px;
  left: -597px;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 38px;
  background: #cd5208;
}






.double-line-bottom {
  margin-bottom: 31px;
  margin-top: 4px;
  padding-bottom: 8px;
  position: relative;
}


.double-line-bottom:before {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 6px;
  bottom: -2px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 24px;
  background: #1098d3;
}



.double-line-bottom:after {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 64px;
  background: #1098d3;
}





.safdarjung-hospital p {
  height: 85px;
}




@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}

.second-facility-item {
  border: 2px solid #ee2405;
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: all .5s;
  transition: all .5s;
  background-color: #001430;
}






.second-facility-item:before {
  content: "";
  position: absolute;
  border-radius: 100px;
  background-image: url(../images/facility-shape-img.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  height: 165px;
  width: 165px;
  top: 0;
  left: 0;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-animation: rotation 30s linear infinite;
  animation: rotation 30s linear infinite;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  z-index: -1;
  opacity: .2;
  -webkit-transition: all .5s;
  transition: all .5s;
}



.second-facility-item img {
  max-width: 70px;
  margin-bottom: 22px;
}

.second-facility-item h3 {
  font-size: 18px;
  color: #fff;
}


/* service start */
.service_3 .single_service_2 {
  text-align: start;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

.service_3 .single_service_2 .item_img {
  position: relative;
}

.service_3 .single_service_2 .item_img .icon {
  left: 235px;
  top: 130px;
  transition: all linear .3s;
}

.service_3 .single_service_2:hover .item_img .icon {
  opacity: 0;
}

.service_3_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
  background: rgb(216 82 8);
  display: BLOCK;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all linear .3s;
  TEXT-ALIGN: CENTER;
  padding: 10px;
  color: #fff;
}

.service_3_overly .overly_icon {
  width: 50px;
  height: 50px;
  background: var(--colorDeepblue);
  border-radius: 10px;
  padding: 10px;
}

.service_3 .single_service_2:hover .service_3_overly {
  opacity: 1 !important;
}






/*Service start */
.service_2 {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.service_2 .common_heading {
  text-align: center;
}

.service_2 .common_heading h2 {
  text-align: center;
}

.single_service_2 {
  background: var(--colorWhite);
  /* border-radius: 10px; */
  /* overflow: hidden; */
  /* text-align: center; */
  transition: all linear .3s;
  /* margin-top: 25px; */
  margin-left: 10px;
  margin-right: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.single_service_2:hover {
  box-shadow: 0px 5px 25px 0px rgba(69, 137, 244, 0.10);
}

.single_service_2 .item_img {
  overflow: hidden;
  position: relative;
  height: 200px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.single_service_2 .item_img .icon {
  width: 50px;
  height: 50px;
  background: var(--colorDeepblue);
  border-radius: 10px;
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 10px;
}

.single_service_2 .item_img .icon img {
  width: 100%;
}

.single_service_2 .item_text {
  padding: 15px 20px 20px 20px;
  text-align: center;
}

.single_service_2 .heading {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  color: var(--colorBlack);
  transition: all linear .3s;
}

.single_service_2 .heading:hover {
  color: var(--colorDeepblue);
}

.single_service_2 p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  margin-top: 15px;
}

.single_service_2 .link {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorWhite);
  background: var(--colorBlack);
  text-transform: capitalize;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 17px;
  transition: all linear .3s;
}

.single_service_2 .link:hover {
  background: var(--colorDeepblue);
}

.medical_service_slider .slick-slide {
  margin: 0px 12px;
}



.service_3 {
   background-image: url(../images/gallery.jpg); 
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}




.button-text-space {

  border-radius: 5px;
  text-align: center;
  width: 22px;
  height: 22px;
  display: block;
  margin-right: 5px;
}

/*==============================
 topbar CSS start-here
===============================*/

#colorpick ul {
  display: inline-flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}



#colorpick .style-default {
  background: #fff;
  border-radius: 5px;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
  padding: 2px;
  display: block;
  color: #000 !important;
  font-size: 14px !important;
}

#colorpick .style-black {
  background: #000;
  border-radius: 5px;
  width: 22px;
  height: 22px;
  border: 1px solid #cccccc;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
  padding: 2px;
  display: block;
  color: #fff;
  font-size: 14px !important;
}

#colorpick .style-gray {
  background: #6d6b6b;
  border-radius: 5px;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
  padding: 2px;
  display: block;
  color: #fff;
  font-size: 14px !important;
}


.top-right {
    justify-content: end;
    display: flex;
}

.topbar_link {

  display: flex;
}




.topbar_link a:hover {
  color: #fff;
}



/* Dropdown styles */
.dropdown {
  position: relative;
  padding: 0;
  margin-right: 1em;
  border: none;
}

.dropdown summary {
  list-style: none;
  list-style-type: none;
}

.dropdown>summary::-webkit-details-marker {
  display: none;
}

.dropdown summary:focus a.button {
  border: 2px solid white;
}

.dropdown ul {
  position: absolute;
  margin: 0px 0 0 0;
  padding: 10px 0;
  width: var(--dropdown-width);
  /* left: 50%; */
  /* margin-left: calc((var(--dropdown-width) / 2)  * -1); */
  box-sizing: border-box;
  z-index: 2;
  background: var(--dropdown-background);
  border-radius: 6px;
  list-style: none;
}

.dropdown ul li {
  margin: 0;
  float: none !important;
  text-align: left;
  width: 100%;
  position: relative;
  height: auto;
  padding: 0px 0px;
  border-left: 0px solid #eeeeee;
  border-top: 1px solid #ffffff;
  /* background: #ffa500; */
  background: #1666a5;
}

.color-theme .texts-box {
  margin-top: -3px;
}

.dropdown ul li a:link,
.dropdown ul li a:visited {
  font-size: 14px !important;
  display: inline-block;
  padding: 10px 0.8rem;
  width: 100%;
  box-sizing: border-box;
  /* color: var(--dropdown-color); */
  text-decoration: none;
  color: #fff;
}

.dropdown ul li a:hover {
  background-color: var(--dropdown-highlight);
  /* color: var(--dropdown-background); */
  color: #fff;
}

/* Dropdown triangle */
/* Close the dropdown with outside clicks */
.dropdown>summary::before {
  display: none;
}

.dropdown[open]>summary::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.button-text-size img {
  width: 24px;
}




.button-text-size {
 
  border-radius: 5px;

  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
}

#toggleSearch {
  
  border-radius: 5px;
  text-align: center;
  width: 22px;
  height: 22px;
  display: block;
}


.button-text-space img {
  width: 24px;
}

.search-box img {
  width: 24px;
}

a.language-link {
  padding-left: 15px;
}

.text-space img {
  width: 24px;
}


#header {
  background: #d6effc;
}

#block-custom-theme-healthministerlogo,
#block-custom-theme-healthministerlogo-2 {
  text-align: right;
}


#block-custom-theme-patientsafetylogo,
#block-custom-theme-patientsafetylogo-2 {
  padding-top: 10px;
}



ul.sf-menu a,
ul.sf-menu span.nolink {
  color: #000000;
  font-weight: 500;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
}

.main-banner {
  position: relative;
}


#hero .container {
  margin-top: -75px;
  padding-bottom: 25px;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;

}

#hero h2 {
    color: #ffffff;
    margin: 10px 0 15px 15px;
    font-size: 24px;
background-color: #073487 !important;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

#hero .btn-get-started:hover {
  background: #3194db;
}

#hero .icon-boxes {
  margin-top: 100px;
}

#hero .icon-box {
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
  background: #fff;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 14px;
  height: 30px;
}

#hero .icon-box .title a {
  color: #b15110;
  transition: 0.3s;
  font-size: 18px !important;
}

#hero .icon-box .description {
  font-size: 1em;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 60px;
  line-height: 1;
  color: #16A59C;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #040404;
}

.color-b1 {
  background: #193471;
}

.color-b2 {
  background: #009ffd;
}

.color-b3 {
  background: #005bfd;
}

.color-b4 {
  background: #19c3e4;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}



#hero {
  width: 100%;
  position: relative;
  background: url("../images/notice-bg.png") top center;
  background-size: cover;
  position: relative;
  padding-bottom: 15px;
}


#block-custom-theme-blocktabshometab {
  padding-top: 100px;
}



.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #0858a7 !important;
    background: #0858a7;
    font-weight: normal;
    color: #ffffff;
}





#sidebar ul li {
  list-style: none;
}

.sidebar-list-item1 ul li:before {
  content: "\F0D8" !important;
}

.link a {
  color: #fff;
}

.accordion {
  width: 100%;
  margin: 0px auto 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background: #0858a7;
  border-radius: 5px;
  list-style: none;
  padding: 0px;
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 8px 15px 45px;
  font-size: 14px;
  border-bottom: 1px dashed #d6effc61;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li i {
  position: absolute;
  top: 9px;
  left: 255px;
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.accordion li.open .link {
    color: #ffffff;
}

.accordion li.open i {
  color: #a4e9ff;
}

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}




#accordion .submenu a:before 
{font-family: remixicon;position: absolute;left: 25px;color: #fff;font-size: 12px;font-weight: 600;content: "\ea6c" !important;}

#accordion .menu-item .link a:before {
content: "\EEAF"; 
  font-family: remixicon;
  position: absolute;
  left: 25px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
 
}




.inner-page #block-custom-theme-content {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(63, 77, 192, 0.20);
  text-align: justify;
}

.explore-heading {
  color: #000 !important;
  text-transform: Uppercase !important;
}

a.view-more {
  color: #fff;
}


.hospital-text {
  text-align: justify;
}


.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 70%;
  right: 0%;
  width: 195px;
  display: flex;
  flex-direction: column;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 1px;
  text-decoration: none;
  text-transform: capitalize;
  padding: 5px;
  font-size: 12px !Important;
  /* font-family:'Oswald', sans-serif; */
  transition: all 0.8s;
  font-weight: 600;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
  background-color: #0058a6;
  /*background-color:#2C80D3;*/
  color: #FFF;
}

.Youtube {
  background-color: #b50000;
  /*background-color:#fa0910;*/
  color: #FFF;

}

.Twitter {
  background-color: #000000;
  color: #FFF;
}

.Instagram {
  background-color: #00635b;
  /*background-color: #098c83;*/
  color: #FFF;
}

.Insta {
  background-color: #9436a4;
  color: #FFF;
}

.sticky-icon a i {
  background-color: #FFF;
  height: 25px;
  width: 25px;
  color: #098c83;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.5s;
  display: inline-block;
  font-size: 14px;
}

.sticky-icon a i.ri-facebook-fill {
  background-color: #FFF;
  color: #2C80D3;
}

.sticky-icon a i.bi-instagram {
  background-color: #FFF;
  color: #9436a4;
  ;
}

.sticky-icon a i .bi-envelope-at-fill {
  background-color: #FFF;
  color: #FD1D1D;
}

.sticky-icon a i.bi-youtube {
  background-color: #FFF;
  color: #fa0910;
}

.sticky-icon a i.bi-twitter-x {
  background-color: #FFF;
  color: #010101;
}

.ui-widget.ui-widget-content {
  height:380px;
}

#accordionDept {
  background: #fff !important;
}


.counter {
  font-family: 'Nunito Sans', sans-serif;
  background: #fff;
  text-align: center;
  width: 200px;
  min-height: 215px;
  padding: 10px 15px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

.counter:before {
  content: '';
  background-color: #9DD662;
  height: 105px;
  width: 100%;
  border-radius: 30px 30px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

.counter .counter-icon {
  color: #fff;
  background: #7CA936;
  font-size: 50px;
  line-height: 90px;
  width: 120px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 10px 10px 0 0;
  transform: translateY(-20px);
  position: relative;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter .counter-icon:before {
  content: "";
  background: #8AC248;
  width: 120px;
  height: 90px;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter:hover .counter-icon i {
  transform: rotate(360deg);
  transition: all 0.3s ease;
}

.counter h3 {
  color: #333;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}

.counter .counter-value {
  color: #7CA936;
  font-size: 30px;
  font-weight: 600;
  display: block;
}

.counter.blue:before {
  background-color: #5A9BEF;
}

.counter.blue .counter-icon {
  background-color: #2A70B5;
}

.counter.blue .counter-icon:before {
  background-color: #367DCB;
}

.counter.blue .counter-value {
  color: #367DCB;
}

.counter.red:before {
  background-color: #FD6D4B;
}

.counter.red .counter-icon {
  background-color: #D14026;
}

.counter.red .counter-icon:before {
  background-color: #EA5736;
}

.counter.red .counter-value {
  color: #EA5736;
}

.counter.gray:before {
  background-color: #777;
}

.counter.gray .counter-icon {
  background-color: #444;
}

.counter.gray .counter-icon:before {
  background-color: #666;
}

.counter.gray .counter-value {
  color: #666;
}

@media screen and (max-width:990px) {
  .counter {
    margin-bottom: 40px;
  }
}


.monthly-status {
  background: #0A172A;
}

.item-list li {
  padding-left: 0px;
  position: relative;
  text-align: left;
  margin-left: 31px;
  padding-top: 7px;
  margin-right: 9px;
  padding-bottom: 16px;
  list-style: none;
  border-bottom: 1px dashed#6666;
}

.item-list li:before {
     content: "\f4a3";
font-family: bootstrap-icons !important;
  position: absolute;
  left: -28px;
  color: #0858a7;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}





.inner-page .item-list li {
    margin-left: 28px;
    padding-bottom: 10px;
}

#superfish-main a {
  text-decoration: none;
}

.page-updated ul {
  list-style: none;
  display: inline-flex;
  padding: 10px;
  margin-top: 10px;
}


.breadcrumb {
  display: flex;
  border-radius: 10px;
  margin: auto;
  text-align: center;
  margin-top: 0px;
  width: 100%;
  height: 35px;
  transform: translateY(-50%);
  z-index: 1;
  justify-content: start;
  margin-left: 44px;
  margin-bottom: 30px;
  padding-top: 26px;
}

.breadcrumb-item {
  height: 100%;
  background-color: #1098d3;
  color: #ffffff;
  /* border-radius: 9px; */
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: skew(-21deg);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
  margin: 4px 0px;
  padding: 0 10px;
  cursor: pointer;
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb__inner {
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transform: skew(21deg);
}

.breadcrumb-item a {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transform: skew(21deg);

}

.breadcrumb-item a:hover {
  color: #fff;
}

.none-link {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transform: skew(21deg);

}

.breadcrumb-items {
  margin-top: 3px;
  margin-left: -44px;
}

.breadcrumb-items li:last-child {
  background: #033085;
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

.pager__item a {
    display: inline-block;
    padding: 5px 14px;
    background: #033085;
    border: 1px solid #ddd;
    border-radius: 15px;
    margin: 0 5px;
    color: white;
    text-decoration: underline;
}

.pagination {
    display: inline-flex;
}

li.pager__item {
    display: inline-flex;
}

.pager ul {
    text-align: center;
margin-bottom: 40px;
}

.pager {
    margin-top: 10px;
}





.flt {
  
    text-transform: uppercase;
}

.qr-code {
    display: inline-flex;
}


.footer-logo-text {
    padding-left: 10px;
    padding-top: 4px;
}

.qr-img-logo {
    padding-left: 5px;
}


.cssvalid{
    padding: 10px 0px;
}

.cssvalid a{
    color: #fff;
}



.facility  {
    
    width: 19.666667%;
}










.about-bottom {
  display: flex;
  align-items: center; }
  .about-bottom .about-btm-btn {
    padding-right: 1rem;
    margin-right: 3rem;
    border-right: 1px solid #BBBBBB; }
  .about-bottom .about-btm-user {
    display: flex;
    align-items: center;
    gap: 15px; }
    .about-bottom .about-btm-user .about-btm-bio h6 {
      line-height: 1;
      margin-bottom: 10px;
      font-size: 1.8rem; }
    .about-bottom .about-btm-user .about-btm-bio span {
      line-height: 1;
      font-size: 1.6rem;
      display: block; }

.about-opt {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 150px 1fr;
  margin-bottom: 4rem; }
  .about-opt .about-yr .about-yr-element {
    height: 150px;
    width: 150px;
    background-color: #202942;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px; }
    .about-opt .about-yr .about-yr-element::before {
      position: absolute;
      content: '';
      height: 20px;
      width: 20px;
      z-index: -1;
      background: #202942;
      opacity: 1;
      top: 0;
      right: -16px;
      clip-path: polygon(100% 0, 0 0, 0 100%); }
    .about-opt .about-yr .about-yr-element .about-value {
      font-size: 60px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--clr-white);
      font-weight: 900; }
  .about-opt .about-yr-text h4 {
    font-size: 25px;
    text-transform: capitalize; }
  .about-opt .about-yr-text p {
    margin: 0; }

.about-jahaj-2 {
  position: absolute;
  bottom: 0;
  right: -38rem;
  z-index: -1; }

.about-left-img {
  position: relative;
  z-index: 1; }
  .about-left-img .about-left-img-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; }

.about-opt-2 {
  display: grid;
  gap: 5rem;
  grid-template-columns: 250px 1fr; }

.about-opt-left-2 {
  padding: 50px 30px;
  border: 2px solid;
  border-radius: 8px; }
  .about-opt-left-2 p {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--clr-heading);
    line-height: 1.6; }

.about-opt-right-box-2 {
  display: flex;
  align-items: center;
  gap: 2rem;
  }
  .about-opt-right-box-2 .about-opt-icon-2 i {
    height: 5rem;
    width: 7rem;
    line-height: 80px;
    background-color: #1098d3;
    text-align: center;
    display: block;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    }
  .about-opt-right-box-2 .about-opt-desc-2 h2 {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1;
    }
  .about-opt-right-box-2 .about-opt-desc-2 h5 {
    font-size: 18px;
    font-weight: 600; }

.about-opt-right-pd {
  margin-bottom: 0.8rem;
  /* padding-bottom: 1rem; */
  /* border-bottom: 1px solid #E7E7E7; */
  background: #ffffff;
  box-shadow: 0 2px 4px rgb(42 143 189 / 48%);
  border-radius: 15px;
  }
/*
.feature-box {
  box-shadow: 0 2px 35px rgba(0, 0, 0, 0.15);
}
*/
  .about-opt-right-pd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }





.logo-section {
    height: 100%;
    display: flex;
    position: relative;
}

.top-logo::before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    left: -172px;
    height: 100%;
    width: 20%;
    background-color: #033085;
}



.top-logo {

background: url(../images/bg-nav.png);

background-repeat: no-repeat;

position: absolute;

width: 100%;

height: 114px;

left: 9%;
}











.top-logo img {
    height: 114px;
    left: 24px;
    margin-left: 273px;
    position: absolute;
}


.logo-section .container {
    position: relative;
    top: -3px;
}



.ready-logo {
    text-align: center;
}



.ministry-logo {
    text-align: right;
}






.about-opt-desc-2 .read-more a {
color: #033085!important;
text-decoration: underline;
font-weight: 600;
}




.directormsg h1 {
    background: #0858a7;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}





.directormsg {
    background: #ffffff;
    border: 1px solid #edebeb;
    text-align:center;
}





.directorimg {
    width: 30%;
    margin: 16px auto;
}

.directorimg  img {
width:100%;
    border-radius: 15px;
    box-shadow: 0 4px 4px rgb(108 110 111 / 29%);
}




#block-custom-theme-blocktabshometabs {
    align-self: baseline!important;
    margin-top: 116px;
}



.directorname {
    font-weight: 600;
    font-size: 16px;
  
}



.designation {
    border-bottom: 1px solid #8b8b8b;
    padding-bottom: 6px;
    margin: 6px 20px;
}




.directortext {
    margin: 5px 20px;
    padding-bottom: 10px;
}





.directorlink a {

    background: #0858a7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
}




.readmore{
     
    background: #0858a7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    float: right;
}





#block-custom-theme-aboutus h1 {
    padding-bottom: 10px;
}




#block-custom-theme-aboutus {
    padding: 0 10px;
}





#block-custom-theme-aboutus p {
    text-align: justify;
}



ul.sf-menu .sf-sub-indicator:after {
    content: "+" !important;
    left: 3px;
    line-height: 1;
    position: absolute;
    text-indent: 0;
    top: -2px;
    font-weight: 500;
    font-size: 16px;
}


ul.sf-menu .sf-sub-indicator {
    height: 1em;
    line-height: 9999px;
    opacity: 0.80;
    overflow: hidden;
    position: absolute;
    speak: none;
    text-indent: -9999px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5em;
}



.buttons button {
    /* color: #fff; */
    border: none;
    border-radius: 63px;
    position: relative;
    padding: 0px 0px;
    min-width: 60px;
    top: -13px;
    height: 50px;
    z-index: 99;
    height: 25px;
    line-height: 1;
    background: #1098d3;
}


.buttons {
    display: flex;
    justify-content: center;
}
.buttons button .ri-pause-circle-fill, .buttons button .ri-play-circle-fill {
    font-size: 22px;
    color: #fff;
}



.footer-content p {
    padding: 0;
    margin: 0;
    font-weight: 300;
}






#clients {
    background: #d6effc;
    padding-top: 20px;
}



#clients .field-content a {
    border: 1px solid #e6e6e6;
    background: #fff;
    width: 90%;
    /* margin-right: 7px; */
    /* display: flex; */
    /* justify-content: center; */
}

#clients .field-content img {width:100%;}






.photo_gallery .item_text {
    background: #0858a7;
    padding: 10px;
    text-align: center;
}



.photo_gallery {
    /* margin: 0px 15px; */
    margin-right: 20px;
}




.photo_gallery .item_text a {
  font-size:16px;
color:#fff;
}




.photo_gallery img {width:100%; height:196px;}

.home-events {
    margin-top: 8%;
}



.slick-arrow::before {
    color: #1098d3;
}




ul.sf-menu ul {
    left: 0;
    position: absolute;
    top: -9999px;
    width: 12em;
    background: #d6effc;
}



ul.sf-menu li:hover > ul, ul.sf-menu li.sfHover > ul {
    left: 0;
    /* top: 3em;
   transition: all 500ms ease; */
}




ul.sf-menu.sf-horizontal.sf-shadow ul, ul.sf-menu.sf-vertical.sf-shadow ul, ul.sf-menu.sf-navbar.sf-shadow ul ul {
  -webkit-box-shadow:none;
    -moz-box-shadow:none;
    box-shadow:none; 
}

.news-btns .toggle::before {
  content: "\F4F4";
 font-family: bootstrap-icons !important;
  position: relative;
  left: 0px;
  color: #fff;
  font-size: 14px;
}

.news-btns .et-run::before {
    content: "\F4C3";
 font-family: bootstrap-icons !important;
    position: relative;
    left: 0px;
    color: #fff;
    font-size: 14px;
    /* line-height: 1.5; */
}


.event-item {
    background: #fff;
    margin-right: 15px;
    margin-left: 15px;
    width: 95%;
    /* padding-right: 16px; */
 
}

.event-title {
    text-align: left;
    padding: 15px 15px 15px 15px;
    font-weight: 700;
    color: #0858a7;
    min-height: 72px;
}



.event-text {
    text-align: left;
    padding: 0px 15px 0px 15px;
    min-height: 72px;
}


.event-readmore   {text-align:right;}

.event-readmore a {
    font-size: 14px;
    background: #0858a7;
    padding: 5px 12px;
    font-weight: 300;
color:#fff;
}









.event-date {
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    color: #1098d3;
}

 #block-custom-theme-views-block-cg-events-block-1 .views-field.views-field-nothing {
    margin-right: 15px;
}





.home-events h2 {
    color: #ffffff;
    margin: 10px 0 15px 11px;
    font-size: 24px;
}

#ui-id-1 {font-size: 16px;font-weight: 600; }
#ui-id-2 {font-size: 16px;font-weight: 600;  color: #000;}
#ui-id-3 {font-size: 16px;font-weight: 600;  color: #000;}

.ui-state-default a {
    color: #000000;
    text-decoration: none;
}


.ui-widget-content a {
    color: #000000 /*{fcContent}*/;
}




 #blocktabs-home_tabs  {
    position: relative;
    padding: 0;
}




#block-custom-theme-blocktabshometabs .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 0px solid #003eff00 !important;
    background: #0858a7 /*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/ !important;
    font-weight: normal
    /*{fwDefault}*/;
    color: #ffffff
    /*{fcActive}*/
    !important;
    border-radius: 5px !important;
}







#block-custom-theme-blocktabshometabs .ui-tabs .ui-tabs-nav li {
    margin: 0px .2em 6px 0 !important;
}



#block-custom-theme-blocktabshometab .ui-tabs .ui-tabs-nav li {
    margin: 0px .2em 6px 0 !important;
}




.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0px solid #ffffff !important;
    background: #e9f5fe
    /*{bgColorDefault}*/
    /*{bgImgUrlDefault}*/
    /*{bgDefaultXPos}*/
    /*{bgDefaultYPos}*/
    /*{bgDefaultRepeat}*/
    !important;
    font-weight: normal
    /*{fwDefault}*/;
    color: #000000
    /*{fcDefault}*/
    !important;
    border-radius: 5px !important;
}



.ui-tabs .ui-tabs-nav {
    margin: 0!important;
    padding: 0.3em .2em 0!important;
    background: #1098d3!important;
}



.news-btns {
    float: right;
}



.news-btns .down {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0px;
    width: 30px;
    height: 30px;
    margin-right: -3px;
}


 .news-btns .up {
  background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0px;
    width: 30px;
    height: 30px;
    margin-left: -3px;
}



.news-btns .toggle {
    background: #0858a7;
    color: #fff;
    padding: 3px 3px 4px 5px;
    width: 30px;
    height: 30px;
}



.latest-news {
    background: #0858a7;
    height: 50px;
}


 .main-banner .buttons {
    display: flex;
    justify-content: center;
    margin-bottom: -26px;
}






.newslider .bn-controls button {
    width: 25px;
    float: left;
    /* height: 19px; */
    cursor: pointer;
    border: none;
    /* border-left: solid 1px #EEE; */
    text-align: center;
    background-color: #03308500;
    margin-right: 1px;
}








.newslider .bn-controls { right: 1px;top: -39px;}



.newslider .bn-news ul li a {

    color: #fffefe;
 
}




.news-title {
    float: left;
    background: #033085;
    height: 50px;
}



.news-title h2 {
    font-size: 16px;
    color: #ffff;
    padding-left: 80px;
    padding-top: 15px;
}




 .main-banner .buttons button {
  
    background: #033085;
}





.newslider .bn-controls {
    right: 40px;
    top: -30px;
    background: #033085;
    border-radius: 23px;
    height: 27px;
}



.newslider .bn-controls button:hover {
    background-color: #eee0;
}


.bn-controls button:hover {
    background-color: #eee0;
}






 .newslider .bn-arrow {
    margin: 0;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
    top: -6px;
}



.newslider .bn-pause {
    position: relative;
    width: 0px;
    height: 11px;
    display: inline-block;
    top: -5px;
    left: 0px;
}


.newslider .bn-pause::after {background-color: #fff;}
.newslider .bn-pause::before {background-color: #fff;}




.newslider .bn-arrow::after {

    border-color: #fff;
}





.newslider .bn-play::after {
    left: 100%;
    top: 55%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #ffffff;
    border-width: 6px;
    margin-top: -10px;
}


.newslider .bn-news ul {margin-left: 0!important; }


 .gallery-image-item img {
    width: 100%;
    height: 300px;
}


.gallery-image-item {margin-bottom:15px;}
element.style {
    display: flex;
    /* justify-content: end; */
}




.accibility {
    display: flex;
}



#block-custom-theme-views-block-home-page-banner-block-1 .slick img {
    width: 100% !Important;
}



.dept-page{display: flow-root;}


.dept-page .col-sm-4.views-row {
    float: left;
    text-align: center;

}


.dept-page .views-field-field-photo {
    border: 1px dashed #c3c3c3;
    margin-right: 15px;
    margin-bottom: 0px;
    padding: 10px 0px;
 border-top-left-radius: 6px;
  border-top-right-radius: 5px;
}




.dept-page .field-content {
    background: #cd5208;
    width: 97%;
    display: block;
    color: #fff;
    padding: 10px 4px;
    box-shadow: -2px 14px 7px -10px rgb(7 41 77 / 45%);
}



.inner-page {
    width: 100%;
   background: url("../images/ICG-NEW2.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
background-attachment: fixed;
    min-height: 100vh;
}




.inner-text {
    background: #d6effc;
    padding: 12px;
    border-radius: 5px;

    margin-bottom: 15px;
}



#block-custom-theme-pagetitle h1{
    padding-bottom: 15px;
    font-weight: 800;
    text-align: center;
}



#block-custom-theme-pagetitle span{font-weight: 600;}





.inner-text .item-list li:before {
  content: "\ea2f";
  font-family: 'remixicon' !important;
  position: absolute;
  left: -28px;
  color:#0858a7;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}




.inner-text .item-list li:last-child{ border-bottom:0px dashed #6666;}


.aircraft {
    margin-bottom: 20px;
}


 .aircraft h6 {
    font-size: 16px;
    margin-bottom: 10px;
}



.aircraft-image img {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgb(204 235 249 / 91%);
}









/*org chart css start */
.chart-bg {
    overflow: auto;
    width: 100%;
}

.chart-bgin {
    width: max-content;
    height: 170px;
}

.chart-bg-in {
    width: max-content;
    height: 510px;
}

.tree ul {
    margin: 0;
    padding: 0;
}

.list-one {
    margin-top: 250px;
}

.treea {
    overflow: auto;
    width: 100%;
    margin-bottom: 30px;
}

.treeb {
    overflow: auto;
    height: 1100px;
}

.tree {
    width: 2900px;
}

.tree ul {
    padding-top: 20px;
    position: relative;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 0px 0 5px;
}

/*We will use ::before and ::after to draw the connectors*/
.tree li::before,.tree li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid #ccc;
    width: 50%;
    height: 20px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid #ccc;
}

/*We need to remove left-right connectors from elements withoutany siblings*/
.tree li:only-child::after,.tree li:only-child::before {
    display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
    padding-top: 0;
}

/*Remove left connector from first child andright connector from last child*/
.tree li:first-child::before,.tree li:last-child::after {
    border: 0 none;
}

/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
    border-right: 2px solid #ccc;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid #ccc;
    width: 0;
    height: 20px;
}

.tree li a {
    padding: 5px 4px;
    text-decoration: none;
    color: #666;
    /* font-family: arial, verdana, tahoma;font-size: 11px; */
    display: inline-block;
    border: 1px solid #63b2d2;
    -webkit-border-radius: 5px;
    /*-moz-border-radius: 5px;*/
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover,.tree li a:hover + ul li a {
    background: #c8e4f8;
    color: #000;
}

/*Connector styles on hover*/
.tree li a:hover + ul li::after,.tree li a:hover + ul li::before,.tree li a:hover + ul::before,.tree li a:hover + ul ul::before {
    border-color: #94a0b4;
}

/*org chart css end */



a.footer-view {
    color: #fff;
    background: #033085;
    padding: 0px 15px 0px 15px;
    float: right;
    cursor: pointer;
    margin: -25px 0px 0px 0px;
    line-height: 30px;
    border-radius: 15px;
}


.view_header {
    background: #033085;
    line-height: 35px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}





#main-standardfront-page a {
    font-size: 14px;
    padding-right: 4px;
}






.about-sch  {
    width: 100%;
    position: relative;
    background: url("../images/icg-about-bg1.jpg") top center;
    background-size: cover;
    position: relative;
    padding-bottom: 15px;
}






 .cregion .single_service {
  
    background: rgb(2,0,36);
    background: linear-gradient(2deg, rgb(3 48 133) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}




 .cregion .service_text {
text-align:center;
}





 .cregion .service_text a {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}


.file {
    display: inline-block;
    min-height: 16px;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
}

.PDF {
    background-image: url(../images/application-pdf.png);
}
.DOCX {
    background-image: url(../images/word.png);
}
/*cghq-------------------------------------------*/

#block-custom-theme-cghqmenu li, #block-custom-theme-cghqmenu li {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}


#block-custom-theme-cghqmenu li:after, #block-custom-theme-cghqmenu li:after  {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

#block-custom-theme-cghqmenu li:before, #block-custom-theme-cghqmenu li:before  {
    content: "\F1C0";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
#block-custom-theme-cghqmenu li a, #block-custom-theme-cghqmenu li a{font-size: 14px;color: #fff;}



/* cghq menu-----------------------------------------*/
/*west menu------------------------------------css*/

#block-custom-theme-westhqmenu li, #block-custom-theme-northwestmenu li {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}


#block-custom-theme-westhqmenu li:after, #block-custom-theme-northwestmenu li:after  {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

#block-custom-theme-westhqmenu li:before, #block-custom-theme-northwestmenu li:before  {
    content: "\f13d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
#block-custom-theme-westhqmenu li a, #block-custom-theme-northwestmenu li a{font-size: 14px;color: #fff;}


/*west menu------------------------------------css-----------------------------------------------end*/




/*hqcgcwsmenu menu------------------------------------css*/

#block-custom-theme-hqcgcwsmenu li, #block-custom-theme-hqcgcesmenu li, #block-custom-theme-anmenu li  {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}


#block-custom-theme-hqcgcwsmenu li:after, #block-custom-theme-hqcgcesmenu li:after, #block-custom-theme-anmenu li:after   {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

#block-custom-theme-hqcgcwsmenu li:before, #block-custom-theme-hqcgcesmenu li:before, #block-custom-theme-anmenu li:before  {
    content: "\f13d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
#block-custom-theme-hqcgcwsmenu li a, #block-custom-theme-hqcgcesmenu li a, #block-custom-theme-anmenu li a {font-size: 14px;color: #fff;}


/*block-custom-theme-hqcgcwsmenu menu------------------------------------css-----------------------------------------------end*/





/*block-custom-theme-northeastmenu menu------------------------------------css*/

#block-custom-theme-northeastmenu li  {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}

 #block-custom-theme-northeastmenu li:after   {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

 #block-custom-theme-northeastmenu li:before  {
    content: "\f13d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
 #block-custom-theme-northeastmenu li a {font-size: 14px;color: #fff;}


/*block-custom-theme-northeastmenu menu------------------------------------css-----------------------------------------------end*/









/*block-custom-theme-easthqmenu------------------------------------css*/

#block-custom-theme-easthqmenu li  {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}

 #block-custom-theme-easthqmenu li:after   {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

 #block-custom-theme-easthqmenu li:before  {
    content: "\f13d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
 #block-custom-theme-easthqmenu li a {font-size: 14px;color: #fff;}


/*block-custom-theme-northeastmenu menu------------------------------------css-----------------------------------------------end*/







/* veterans menu css */
#block-custom-theme-icgveterans li  {
padding: 8px 10px 10px 34px;
margin-bottom: 6px;
position: relative;
width: 269px;
height: 40px;
color: #fff;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(15 136 189) 100%);
box-shadow: 0 2px 3px rgb(0 0 0 / 24%);
}

 #block-custom-theme-icgveterans li:after   {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0f88bd;
}

 #block-custom-theme-icgveterans li:before  {
    content: "\f13d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 11px;
    color: #ffffff;
    font-size: 11px;
    line-height: 2;
    font-weight: 700;
}
 #block-custom-theme-icgveterans li a {font-size: 14px;color: #fff;}

/* veterans menu css end */

#views-exposed-form-west-activities-page-1 {
  display: inline-flex;
}



.readmore:hover {
    background: #0858a7;
    color:#fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    float: right;
}




#edit-submit-west-activities {

background: #0858a7;
     
color: #fff;
     
padding: 5px 20px;
     
border-radius: 19px;
     
font-weight: 300;
     
border-bottom: 2px solid #062765;
     
margin-bottom: 15px;
    margin-left:10px
}


#views-exposed-form-west-activities-page-1 .form-no-label {
    margin-right: 8px;
}





ul.sf-menu .sf-sub-indicator:after {
    content: "+" !important;
   /*  left: 53px; */ 
    line-height: 1;
    position: absolute;
    text-indent: 0;
    top: -2px;
    font-weight: 500;
    font-size: 16px;
}


#superfish-main-toggle {
  display: none;
  font-size: 20px;
  font-weight: bold;
  
  color: #000;
  padding: 10px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
 #superfish-main-toggle{
    display: block;
  }
}

.accordion a.is-active {
    color: #ffc107;
    font-weight: 700;
}

.img-high-text {
    font-size: 14px !important;
    text-align: center;
    background: #033085;
    margin-top: -31px;
    color: #fff;
    padding: 11px;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 25px;
}







.former-director .views-field-field-image img {
    border-radius: 10px;
    border: 1px solid #e0f4ff;
    width: 80px;
    box-shadow: -3px 6px 10px -5px #8888888f;
    height: 80px;
}


.former-director .views-field-field-image {text-align:center;}

.eseva .single_service {
padding: 15px;    
margin-top: 0px;
transition: transform 0.3s ease-in-out;


}

.eseva  .single_service:hover {

  transform: scale(1.1);
}


.eseva  .service_text p {color: #ffff;}
.eseva {
    justify-content: center;
}

.eseva .service_text a {
  font-size: 16px!important;

}

#block-custom-theme-defenseministrylogo {padding-top:5px;}



.clients .slick-prev {left: -18px;}


.service_3  .slick-prev {left: -18px;}
 .home-events .slick-next {right: -21px;}




.scroll_btn {

    background: #0983b8;
    border: 3px solid var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}


.scroll_btn:hover {
    background: #061f4e;
}




#accordion .menu-item .link span:before {
    content: "\EEAF";
    font-family: remixicon;
    position: absolute;
    left: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}


.surface-unit h5 {
    padding-bottom: 15px;
    font-size: 16px !important;
}




.surface-unit .table-responsive {
  
    margin-top: 5px;
}

.form-submit {font-size:14px;}


#views-exposed-form-north-west-activities-page-1 {
    display: inline-flex;
}


#edit-submit-north-west-activities {
    background: #0858a7;
    color: #fff;
    padding: 6px 20px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    margin-left: 10px;
    font-size: 14px;
}


#views-exposed-form-north-west-activities-page-1 .form-no-label {
    margin-right: 8px;
    font-size: 14px;
}






#views-exposed-form-hqcgc-ws-activities-page-1 {
    display: inline-flex;
}


#edit-submit-hqcgc-ws-activities {
    background: #0858a7;
    color: #fff;
    padding: 6px 20px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    margin-left: 10px;
    font-size: 14px;
}


#views-exposed-form-hqcgc-ws-activities-page-1 .form-no-label {
    margin-right: 8px;
    font-size: 14px;
}



#views-exposed-form-hqcgc-ws-activities-page-1 .form-actions{
    margin-right: 15px;
}


p.activity-title {
    color: #fff;
    text-align: center;
    background: #0858a7;
    padding: 7px 5px 16px 5px;
    margin-top: -22px;
}



.activity-image img {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 0px;
}



.activity-image {
    margin-bottom: 15px;
}



#search-block-form .form-search {
    width: 100%;
    padding: 6px 15px;
    /* outline: none; */
    resize: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #5e5b5b17;
    border-radius: 7px;
    font-size: 14px;
    background: #d8f3ff;
    box-shadow: 2px 2px 2px #e7e7e7b8;
}

.search-block-form .form-submit {
    background-size: 19px !important;
    width: 34px;
    height: 35px;
    cursor: pointer;
    border: 1px;
    overflow: hidden;
    text-indent: -201px;
    font-size: 0px;
background: url(../images/site-search-white.png) no-repeat center center #033085;
    padding: 6px 21px;
    margin: 0;
    background-color: #033085;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 156px;
    margin-top: -35px;
    position: absolute;
}

#block-custom-theme-searchform {
    margin-top: 6px;
    position: absolute;
    z-index: 99;
    right: 334px
}

.search-form #edit-basic {
    display: flex
}


#views-exposed-form-andaman-nicobar-activities-page-1 {
	display: inline-flex;
}



#edit-submit-andaman-nicobar-activities {
	background: #0858a7;
	color: #fff;
	padding: 5px 20px;
	border-radius: 19px;
	font-weight: 300;
	border-bottom: 2px solid #062765;
	margin-bottom: 15px;
	margin-left: 10px;
}







#views-exposed-form-andaman-nicobar-activities-page-1 .form-no-label {
	margin-right: 8px;
}



#views-exposed-form-andaman-nicobar-activities-page-1 .form-actions{
margin-right: 10px;
}



#views-exposed-form-west-activities-page-1  .form-actions
 {
	margin-right: 10px;
}


#views-exposed-form-north-east-activities-page-1 {display: inline-flex;}





#views-exposed-form-north-east-activities-page-1 .form-no-label {
	margin-right: 8px;
}



#views-exposed-form-north-east-activities-page-1 .form-actions{
margin-right: 10px;
}



#edit-submit-north-east-activities

{
	background: #0858a7;
	color: #fff;
	padding: 5px 20px;
	border-radius: 19px;
	font-weight: 300;
	border-bottom: 2px solid #062765;
	margin-bottom: 15px;
	margin-left: 10px;
}

        .scrollContainer {
            height: 50px;
            overflow: hidden;
            position: relative;
            white-space: nowrap;
            width: 100%;
        }

        .textItems {
            display: inline-block;
            position: absolute;
            white-space: nowrap;
            left: 0;
            top: 0;
        }

        .textItem {
            display: inline-block;
            padding: 0 20px;
            font-size: 18px;
            line-height: 50px;
        }

        #controls {
            margin-top: 10px;
        }

        #controls button {
            /* margin-right: 5px; */
        }


.textItem a {
  color: #fff;
}


#controls {

float: right;
}





#controls #prev {
    background: #033085;
    color: #fff;
    padding: 5px 3px 5px 0px;
    width: 30px;
    height: 30px;
    margin-right: -3px;
}







#controls .next {
    background: #033085;
    color: #fff;
    padding: 5px 3px 5px 0px;
    width: 30px;
    height: 30px;
    margin-left: -3px;
}


#controls .playPause {
    background: #033085;
    color: #fff;
    /* padding: 5px 3px 5px 5px; */
    width: 30px;
    height: 30px;
}

span.file.file--mime-application-pdf.file--application-pdf {
    background-image: url(/icg/themes/custom/custom_theme/assets/css/../images/xls_icon.png);
margin-left: 3px;
}


#views-exposed-form-cghq-activities-page-1 {
    display: inline-flex;
}



#edit-submit-cghq-activities {
    background: #0858a7;
    color: #fff;
    padding: 6px 20px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    margin-left: 10px;
    font-size: 14px;
}





#views-exposed-form-cghq-activities-page-1 .form-no-label {
    margin-right: 8px;
    font-size: 14px;
}




.social-links i{font-size: 25px;}

.no-result {
    height: 60px;
}





#views-exposed-form-hqcgc-es-activities-page-1 {
    display: inline-flex;
}




#edit-submit-hqcgc-es-activities {
    background: #0858a7;
    color: #fff;
    padding: 5px 20px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    margin-left: 10px;
}






#views-exposed-form-hqcgc-es-activities-page-1  .form-no-label {
    margin-right: 8px;
}

.events-table table {
    margin-bottom: 30px;
}






.slick-arrow::before {
    font-size: 35px;
}