@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');


* {
  margin: 0;
  padding: 0;
  /* outline: 0; */
}


body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  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;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #cd5208;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}

p,
span {

  font-weight: 500;

 margin:0;
  
 padding: 0;

}


 .inner-text p {
   
    margin-bottom: 15px;
}


.read-more:hover {
    color: #ffffff;
}



input,
textarea {
  width: 100%;
  padding: 5px 22px;
  /* outline: none; */
  resize: none;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #0c0b0b30;
  border-radius: 1px;
}

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: 25px;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  margin-top: 15px;
}

.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);
  }
}

/*==============================
  GLOBAL CSS END
===============================*/

/* ===========================
  HOME PAGE 01 START
=============================*/
/* topbar start */
.topbar {
  width: 100%;
  /* height: 40px; */
  background: #07294d;
  /* 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 {
    color: #fff;
    font-size: 14px !important;
}

.topbar i {
    color: #fff;
    font-size: 14px;
    /* padding: 5px; */
    padding-right: 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 {

  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;
}

.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;

  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: 3px 0px 0px 14px;
  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: 600;
  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;

}

.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;
 
  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 {

  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;
}





.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: #07294d;
  color: #fff;
}

/* 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: 20px;
  margin-top: 8px;
  padding-bottom: 5px;
  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: #cd5208;
}



.double-line-bottom:after {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 64px;
  background: #cd5208;
}





.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 #cd5208;
  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: 18px !important;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  color: #cd5208;
  transition: all linear .3s;
  font-family: 'Titillium Web';
}

.single_service_2 .heading:hover {
  color: #05234d;
}

.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/work-bg1.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
padding: 15px 0px 25px 0px;
}




.button-text-space {
  background: #fff;
  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;
  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 {
  color: #fff;
}

.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: 15px;
}




.button-text-size {
  background: #fff;
  border-radius: 5px;

  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
}

#toggleSearch {
  background: #fff;
  border-radius: 5px;
  text-align: center;
  width: 22px;
  height: 22px;
  display: block;
}


.button-text-space img {
  width: 15px;
}

.search-box img {
  width: 15px;
}

a.language-link {
  padding-left: 15px;
}

.text-space img {
  width: 15px;
}


#header {
  background: #07294d;
}

#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: #fff;
}



/*--------------------------------------------------------------
# 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;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#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;
}


#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 #b15110 !important;
  background: #cd5208!important;
  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: #07294d;
  border-radius: 5px;
  list-style: none;
  padding: 0px;
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 8px 8px 8px 34px;
  font-size: 14px;
  border-bottom: 1px dashed #55636a;
  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: #000;
}

.accordion li.open i {
  color: #ffa500;
}

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

#accordion .menu-item .link :before {
  content: "\EEAF";
  font-family: remixicon;
  position: absolute;
  left: 15px;
  color: #ffffff;
  font-size: 12px;
  line-height: 2;
  font-weight: 600;
}

#accordion .menu-item--expanded .submenu a:before {
  
    font-family: remixicon;
    position: absolute;
    left: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  content: "\ea6c";
    top: 8px;
}

.inner-page #block-custom-theme-content {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(63, 77, 192, 0.20);
  text-align: justify;
}

.explore-heading {
  color: #b54321!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: 437px;
}

#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-image: url(../images/monthlystatus.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 15px 0px 30px 0px;
}




.item-list li {
  padding-left: 0px;
  position: relative;
  border-bottom: 1px dotted #a09f9f;
  text-align: left;
  margin-left: 5px;
  padding-top: 10px;
  margin-right: 8px;
  padding-bottom: 5px;
  list-style: none;
}



.item-list li:before {
  content: "\F0D8";
  font-family: remixicon !important;
  position: absolute;
  left: -18px;
  color: #cd5208;
  font-size: 12px;
  line-height: 2;
  font-weight: 600;
}

.inner-page .item-list li {
  margin-left: 19px;
}

#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: 34px;
  width: 100%;
  height: 40px;
  transform: translateY(-50%);
  z-index: 1;
  justify-content: start;
  margin-bottom: 13px;
}

.breadcrumb-item {
  height: 100%;
  background-color: #104c8b;
  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: 5px 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;

  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: -8px;
}

.breadcrumb-items li:last-child {
    background: #cd5208;
    color: #fff;
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    /* border: 1px solid; */
    text-overflow: ellipsis;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

.pager__item a {
    display: inline-block;
    padding: 5px 14px;
    background: #cd5208;
    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;
}

.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;
}



.facility  {
    
    width: 19.666667%;
    padding-top: 10px;
}



.homepage-tab .ui-tabs .ui-tabs-nav {
     margin: 0!important;
     padding: 0!important;
}



.homepage-tab #ui-id-1:before {
    font-size: 23px;
   content: "\f4a3";
     font-family: bootstrap-icons !important;
    font-weight: 900;
    text-align: center;
    top: 6px;
    left: 44%;
    position: absolute;
    margin: 0 auto;
}


.homepage-tab #ui-id-2:before {
    font-size: 23px;
    content: "\F484";
 font-family: bootstrap-icons !important;
    font-weight: 900;
    text-align: center;
    top: 6px;
    left: 44%;
    position: absolute;
    margin: 0 auto;
}


.homepage-tab #ui-id-3:before {
    font-size: 23px;
    content: "\F227";
 font-family: bootstrap-icons !important;
    font-weight: 900;
    text-align: center;
    top: 6px;
    left: 44%;
    position: absolute;
    margin: 0 auto;
}





.homepage-tab  #ui-id-1 {
    font-family: "Titillium Web", sans-serif !important;
    margin-top: 30px;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}




.homepage-tab  #ui-id-2 {
    font-family: "Titillium Web", sans-serif !important;
    margin-top: 30px;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}



.homepage-tab  #ui-id-3 {
    font-family: "Titillium Web", sans-serif !important;
    margin-top: 30px;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}


.ui-tabs {
  
    padding: 0em!important;

}



.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px;
    border-bottom-width: 0;
    padding: 0;
    white-space: normal;
    width: 33% !important;
    text-align: center;
height: 90px;
}



.homepage-tab .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: .5em .1em!important;
 
}





.about-sch{
    padding: 40px 0px 0px 0px;
}



.second-facility-area {
    padding-bottom: 40px;
}



.explore-heading span {
    font-weight:700 !important;
    color: #07294d;
}



.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default  {
      border: 1px solid #ffc4a0;
    color: #000000;
    background: #fddcd2;
}



/*
 * line-bottom.less
 * -----------------------------------------------
*/

.line-bottom-theme-colored-2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.line-bottom-theme-colored-2:after {
  border-radius: 10px;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
background: #cd5208;
}
.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;
background: #cd5208;
}
.double-line-bottom-theme-colored-2:before {
  border-radius: 8px;
  bottom: -1px;
  content: "";
  height: 6px;
  left: 10px;
  position: absolute;
  width: 24px;
background: #cd5208;
}
.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: 2px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 64px;
background: #cd5208;
}
.double-line-bottom-centered-theme-colored-2:before {
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: 6px;
  bottom: -2px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  position: absolute;
  width: 24px;
background: #cd5208;
}





.double-line-bottom-centered-theme-colored-2-1 {
    margin-bottom:14px;
    margin-top: 8px;
    padding-bottom: 5px;
    position: relative;
}




.double-line-bottom-centered-theme-colored-2-1: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-centered-theme-colored-2-1:after {
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    right: 0px;
    margin: 0 auto;
    position: absolute;
    width: 100%;
    background: #cd5208;
}




#tender-section {
    padding: 40px 0px;
}





 #tender-section h2{
   
    color: #cd5208;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    padding-bottom: 10px;
}




#block-custom-theme-homepagephotogallery img{width:100%;}


.hea-tag{
    text-transform: uppercase;
    font-size: 16px;
}







#block-custom-theme-views-block-events-block-1 {
    border: 1px solid #d5d1d1;
}



 .main-banner .buttons {
margin-bottom: -25px;
}




 .main-banner .buttons button {
 
    border: 1px solid #fff;
    box-shadow: -1px 4px 6px #010306e0;
}



.safdarjung-hospital-1 .hospital-text {
    text-align: justify;
    height: 96px;
}




.safdarjung-hospital .hospital-text {
    text-align: justify;
    height:100px;
}





.service_2 .common_heading h2 {
color: #cd5208!important;
}



 .slick--view--events--block-1 .views-field.views-field-title {
    font-weight: 700;
    padding: 14px;
}


.slick--view--events--block-1 .field-content { font-weight: 700;}

#block-custom-theme-twitter img {
    width: 100%;
}





#block-custom-theme-views-block-events-block-1 .slick__arrow {
    top: 108%;
    bottom: auto;
    left: 309px;
    width: 16%;
    height: 1px;
    margin-top: -7px;
    transform: translateY(-50%);
    pointer-events: none;
}




#block-custom-theme-views-block-events-block-1 .slick-arrow::before {
 font-size: 1.4rem;
}

#block-custom-theme-views-block-events-block-1 {
  background: #cd5208;
}



 #block-custom-theme-views-block-events-block-1 .slick-list {
background: #fff;
}


#block-custom-theme-views-block-events-block-1 .views-field-field-date {
    color: #cd5208;
    padding-left: 15px;
}


 #block-custom-theme-views-block-events-block-1 .buttons {
   
  margin-bottom: -17px;
}


 
#block-custom-theme-views-block-events-block-1 .more-link a {
    color: #fff;
    padding-left: 15px;
    padding-top: 3px;
}






 #block-custom-theme-views-block-events-block-1 .buttons button {
 top: -20px;
  
}




 #block-custom-theme-homepagephotogallery .view-all {
    float: right;
    background: #cd5208;
    color: #fff;
    font-size: 14px;
    padding: 2px 15px;
    margin-top: -65px;
}




.qr-img {
    height: 70px;
}



.footer-left {
border-right: 1px solid;
}
 

.footer-right {
    padding-left: 15px;
} 




.news-title {
    background: #ff0000;
    padding: 10px 37px;
    color: #fff;
}




.news-title h2 {
  
    color: #fff;
    text-transform: uppercase;
}



.content-news {
    background: #d8f9fd;
    border-bottom: 1px solid #e9e9e9;
    line-height: 2.2;
}


.slick-arrow::before {
  font-size: 2rem;
}





  .slick--view slick--view--services .slick__arrow {
   
    margin-top: 8px;
  
}


#accordionpage,
#inner-accordionpage{
background: #fff !important;
}

thead{
text-align: center;
}

.item-list li:last-child {
border-bottom:none;
}

.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);
}

.item-list {
    margin-bottom: 15px
}




.dept-page{display: flow-root;}


.dept-page .col-sm-4.views-row {
    float: left;
    text-align: center;
margin-bottom: 20px;

}


.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 .views-field-title {
    background: #cd5208;
    width: 95%;
    display: block;
    color: #fff;
    padding: 10px 4px;
    box-shadow: -2px 14px 7px -10px rgb(7 41 77 / 45%);
    height: 80px;
}


.dept-page .views-field-title .field-content a {
    
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}



 .content-cls .page-title{
    font-size: 25px;
    padding-bottom: 20px;
    font-weight: 700;
}

/*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%;
}

.treeb {
    overflow: auto;
    height: 450px;
}

.treec {
    overflow: auto;
    height: 500px;
}

.tree {
    /* width: 1650px;  */
	width: 1900px; 
}

.tree1 {
    /* width: 1650px;  */
	width: 1000px; 
}

.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 */


 #accordionpage .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #07294d;
    font-size: 16px !important;
    font-weight: 600;
}



 .menu-item--expanded .ri-arrow-down-s-line:before {
    content: "\ea4e" !important;
}


.menu-item--expanded span {color:#fff;}


 .table th {
    background: #07294d  !important;
    color: #fff;
}

.single_service_2 .item_img img {width:100%;}


 #clients .views-field.views-field-nothing {
    background: #fff;
    margin-right: 5px;
    text-align: center;
    border: 1px solid #7777;
    border-radius: 4px;
}


#search-block-form .form-submit {
    background-size: 19px !important;
    width: 30px;
    height: 31px;
    cursor: pointer;
    border: 1px;
    overflow: hidden;
    text-indent: -200px;
    font-size: 0px;
    /* background: url(../img/site-search.png) no-repeat center center #ff8c00; */
    background: url(../img/site-search-white.png) no-repeat center center #1666a5;
    padding: 5px 20px;
    margin: 0px;
    /* border-radius: 0; */
    /* background-color: #ff8c00; */
    background-color: #1666a5;
    /* border: none; */
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    /* box-shadow: 1px 2px 3px #8e8787bd; */
    border-radius: 0;
    margin-top: -32px;
    right: 1px;
    position: absolute;
}







#search-block-form .form-submit {
    background-size: 19px !important;
    width: 30px;
    height: 32px;
    cursor: pointer;
    border: 1px;
    overflow: hidden;
    text-indent: -200px;
    font-size: 0px;
    background: url(../img/site-search-white.png) no-repeat center center #1666a5;
    padding: 5px 20px;
    margin: 0px;
    background-color: #cd5208;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-top: -33px;
    right: -29px;
    position: absolute;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}







#search-block-form #edit-keys {
  border: 1px solid #dfdfdf;
    height: 28px;
    line-height: 35px;
    padding: 0 42px 0 8px;
    width: 179px;
   
    font-weight: 500;
    border-radius: 0;
font-size: 14px;
border-radius: 6px;
}




#search-block-form {
    position: absolute;
    right: 18%;
    top: 32px;
}






.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../img/darrow.svg")!important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}



.accordion-button {
  
   color:#07294d!important;
    background-color: #ebf5ff!important;

   font-weight: 600!important;
}





#views-exposed-form-faculty-page-1 {
    display: inline-flex;
    margin-bottom: 10px;
}





 #views-exposed-form-faculty-page-1 label {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 10px;
}




 #edit-submit-faculty {
    background: #cd5208;
    color: #ffffff;
    border-radius: 9px;
    padding: 7px 20px;
    margin-left: 10px;
    margin-top: 32px;
    border-bottom: 3px solid #854006;
    font-weight: 600;
}



caption {
    color: #fff;
    text-align: center;
    background: #cd5208;
    font-size: 16px;
    font-weight: 700;
}






 #block-custom-theme-views-block-events-block-1 .buttons button {
    /* color: #fff; */
    border: none;
    border-radius: 63px;
    position: relative;
    padding: 0px 0px;
    min-width: 60px;
    top: -19px;
    height: 50px;
    z-index: 0;
    height: 25px;
    line-height: 1;
    background: #cd5208;
}




  #block-custom-theme-views-block-events-block-1 .buttons {
    display: flex;
    justify-content: end;
}






  #block-custom-theme-views-block-events-block-1 .slick-arrow::before {
    color: #ffffff;
    
}





 .gallery-img img {
    height: 210px;
    margin-bottom: 19px;
}





.footer-view-pager {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 24px;
    color: #104c8b;
    font-weight: 700;
}





.footer-view-pager:hover {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 24px;
    color: #104c8b!important;
    font-weight: 700;
}



.photo-gallery-view {
    float: left;
    margin-right: 10px;
}



.inner-page #block-custom-theme-content {

    display: flow-root;
}



.photogallery-title {
    background: #cd5208;
    padding: 10px;
}



.photogallery-title {
    background: #cd5208;
    padding: 10px;
  text-align: center;
}




.photogallery-title a {color:#fff!important;}


.photogallery-img {
    width: 100%;
    display: grid;
}


.photogallery-img img {
    width:100%;
    height: 202px;
  
}
 



.cboxElement {
    /* float: left; */
    margin-right: 10px;
    display:inline;
}


.inner-photo-gallery-page .cboxElement  img {
    width:100%;
    height: 200px;
    /* border: 1px solid #e7e7e7; */
    /* margin-right: 17px; */
    padding: 0px 5px 10px;
  }




 .inner-photo-gallery-page .col-sm-4 {

float: left;

/* background: #104c8b; */

/* margin-right: 10px; */
}


#superfish-main-toggle span:before {
    content: "\ef3e";
    font-family: remixicon !important;
    position: absolute;
    left: 16px;
    color: #fff;
    font-size: 18px;

    font-weight: 700;
}



#superfish-main-toggle {
    font-size: 0px !important;
    height: 32px;
    display: block;

}


.accibility {
    display: flex;
}


#search-form .form-search {

    padding: 8px 20px;
    /* outline: none; */
    resize: none;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #5e5b5b17;
    border-radius: 10px;
}



 #search-form  .form-type-search .form-item {
    display: inline-flex;
}



 #edit-basic {
    display: flex;
}



 #search-form  .js-form-submit {
    width: 10%;
    margin-left: 5px;
    background: #cd5208;
    color: #fff;
    border-bottom: 2px solid #9f3d03;
    border-radius: 20px;
 }