body {
  background: #f3f7fd;
  color: #000;
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide:not(.ng-hide-animate) {
  display: none !important;
}

/*Checkbox and Radio*/
.checkbox {
  padding-left: 20px;
}

.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.checkbox input[type="checkbox"]:focus+label::before,
.checkbox input[type="radio"]:focus+label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after,
.checkbox input[type="radio"]:checked+label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled+label,
.checkbox input[type="radio"]:disabled+label {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before,
.checkbox input[type="radio"]:disabled+label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before,
.checkbox-primary input[type="radio"]:checked+label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked+label::after,
.checkbox-primary input[type="radio"]:checked+label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked+label::before,
.checkbox-danger input[type="radio"]:checked+label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after,
.checkbox-danger input[type="radio"]:checked+label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before,
.checkbox-info input[type="radio"]:checked+label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after,
.checkbox-info input[type="radio"]:checked+label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked+label::before,
.checkbox-warning input[type="radio"]:checked+label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked+label::after,
.checkbox-warning input[type="radio"]:checked+label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked+label::before,
.checkbox-success input[type="radio"]:checked+label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after,
.checkbox-success input[type="radio"]:checked+label::after {
  color: #fff;
}

.radio {
  padding-left: 20px;
}

.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.radio input[type="radio"]:focus+label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
  opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
  cursor: not-allowed;
}

.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"]+label::after {
  background-color: #337ab7;
}

.radio-primary input[type="radio"]:checked+label::before {
  border-color: #337ab7;
}

.radio-primary input[type="radio"]:checked+label::after {
  background-color: #337ab7;
}

.radio-danger input[type="radio"]+label::after {
  background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
  border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
  background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
  border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
  background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
  border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
  background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
  border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked+label:after,
input[type="radio"].styled:checked+label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}

input[type="checkbox"] .styled:checked+label::before,
input[type="radio"] .styled:checked+label::before {
  color: #fff;
}

input[type="checkbox"] .styled:checked+label::after,
input[type="radio"] .styled:checked+label::after {
  color: #fff;
}

/*Checkbox and Radio*/

/*Range Slider*/
.ngrs-range-slider {
  position: relative;
  margin: 10px 0 30px;
  padding: 4px;
  border: 0px solid #ccc;
  background: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-tap-highlight-color: transparent;
  /*------------------------------------*\
      RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      JOIN (connects the two handles)
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE SPECIFICS
  \*------------------------------------*/
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
  /*------------------------------------*\
      ATTACHED VALUE RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL SLIDER
  \*------------------------------------*/
  /*------------------------------------*\
      FOCUS STATE
  \*------------------------------------*/
  /*------------------------------------*\
      DISABLED STATE
  \*------------------------------------*/
}


.btn {
  border-radius: 35px;
  -webkit-border-radius: 35px;
  height: 46px;
  line-height: 31px;
  min-width: 145px;
  transition: all 0.1s ease-in-out 0s;
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  box-shadow: 3px 4px 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 4px 6px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 3px 4px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn+.btn {
  margin: 0 10px;
}

.btn-success {
  background-color: #2e8d41;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #035e86;
  border-color: #0579ac;
}

.btn-primary {
  background-color: #022840;
  border-color: #00457c;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #fff;
  border-color: #fff;
  color: #022840;
}




.btn-lg,
.btn-group-lg>.btn {
  font-weight: 700;
  height: 60px;
  line-height: 38px;
  min-width: 215px;
  text-transform: uppercase;
}


/**/
.viewPage {
  overflow: hidden;
}

.section-nav {
  background: #025b94;
  border-radius: 50px;
  left: 17px;
  margin-top: -130px;
  padding: 6px;
  position: fixed;
  top: 50%;
  z-index: 9;
}

.list-nav {
  margin: 0;
}

.list-nav li {
  height: 25px;
  width: 25px;
  border: 2px solid #148fbd;
  margin-bottom: 25px;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.2s ease-in-out 0s;
}

.list-nav li:last-child {
  margin-bottom: 0;
}

.list-nav li:after {
  border-left: 3px dotted #148fbd;
  content: "";
  height: 20px;
  left: 8px;
  margin-top: 5px;
  position: absolute;
  top: 100%;
}

.list-nav li:last-child:after {
  content: none;
}

.list-nav li a {
  color: #98d4eb;
  display: block;
  font-size: 14px;
  padding: 0 5px;
  text-align: center;
}

.list-nav li:hover,
.list-nav li.active {
  border-color: #fff;
}

.list-nav li:hover a,
.list-nav li.active a {
  color: #fff;
}

.list-nav li a:hover,
.list-nav li a:focus {
  background: none;
}

.menu-tooltip .tooltip-inner {
  max-width: 200px;
  padding: 6px 8px;
  color: #fff;
  text-align: center;
  background-color: #6bb642;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
}


.text-white {
  color: #fff;
  text-transform: uppercase;
}


/**/
.contactForm {
  padding-bottom: 50px;
  position: relative;
}

.contactForm .form-control {
  height: 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: none;
  border: 2px solid #2e8d41;
  color: #2e8d41;
  font-size: 14px;
  font-weight: 500;
}

.contactForm textarea.form-control {
  height: 130px;
  resize: none;
  overflow-y: auto;
}

input.form-control, textarea.form-control {
  color: #000 !important;
}

.tooltipBottomLeft .tooltip {
  left: 15px !important;
}

.contactForm .form-group {
  margin-bottom: 30px;
}

.contactForm .form-control::-moz-placeholder {
  color: #2e8d41;
  opacity: 1;
}

.contactForm .form-control:-ms-input-placeholder {
  color: #2e8d41;
}

.contactForm .form-control::-webkit-input-placeholder {
  color: #2e8d41;
}

.contactForm .form-control:focus {
  border-color: #2E8D41;
  box-shadow: none;
  outline: 0 none;
  color: #fff;
}

.contact {
  padding: 40px 0;
}

/**/


.footer {
  /* background: rgb(55, 127, 174); */
  /* background: #3B3B3B; */
  background: #e1e0e0;
  color: rgba(255, 255, 255, 0.5);
  min-height: 340px;
  padding: 50px 0;
  font-size: 12px;
}

.footer h4 {
  /* border-bottom: 2px solid rgba(255, 255, 255, 0.2); */
  /* border-top: 2px solid rgba(255, 255, 255, 0.2); */
  /* font-size: 18px; */
  font-weight: 800;
  margin-bottom: 30px;
  padding-bottom: 7px;
  padding-top: 7px;
  text-transform: uppercase;
  color: #000;
}

.footer ul.list-unstyled>li>a {
  padding: 2px 0;
  display: inline-block;
  font-size: 16px;
}

.footer ul>li>a {
  color: #000;
}

.footer ul>li>a:hover,
.footer ul>li.active>a {
  color: #349a49;
  font-weight: 600;
}

.footer p {
  color: #000;
  font-size: 16px;
}

.footer p a {
  color: #000;
}

.innerPage {
  padding-top: 120px;
}

.embed-responsive-23by5 {
  padding-bottom: 23.25% !important;
}

.chart-legend,
.bar-legend,
.line-legend,
.pie-legend,
.radar-legend,
.polararea-legend,
.doughnut-legend {
  list-style-type: none;
  margin-top: 5px;
  text-align: center;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  padding-left: 0
}

.chart-legend li,
.bar-legend li,
.line-legend li,
.pie-legend li,
.radar-legend li,
.polararea-legend li,
.doughnut-legend li {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  margin-bottom: 4px;
  border-radius: 5px;
  padding: 2px 8px 2px 28px;
  font-size: smaller;
  cursor: default
}

.chart-legend li span,
.bar-legend li span,
.line-legend li span,
.pie-legend li span,
.radar-legend li span,
.polararea-legend li span,
.doughnut-legend li span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px
}

.graphSlider {
  background: #eceeed;
  border-radius: 5px;
  padding: 19px;
}

.graphSlider .carousel {
  background: #fff;
  padding: 15px;
}

.telemedicine-section {
  padding-bottom: 120px;
}

.btn-default {
  background-color: #2e8d41;
  border-color: #2e8d41;
  color: #ffffff;
}


/*----11-08-2017----*/

.mapbox-section {
  position: relative;
}

.map-overlay {
  background: rgb(55, 127, 174);
  bottom: 0;
  color: #ffffff;
  padding: 30px 20px;
  position: absolute;
  right: 0;
  top: 0;
}

.map-text-box h4 {
  font-size: 21px;
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.map-text-box h5 {
  position: relative;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding-left: 30px;
}

.map-text-box h5 i {
  position: absolute;
  left: 0;
  top: 3px;

}

.map-text-box p {
  font-size: 15px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.map-text-box p i {
  position: absolute;
  top: 3px;
  left: 0;
  width: 32px;
}

.map-text-box a {
  color: #fff;
}

.map-text-box p i a:focus,
a:hover {
  color: #fff;
  text-decoration: none;
}


.required-field::after {
  content: "*";
  color: red;
}

.otheBtn .btn-lg {
  margin-bottom: 10px;
}

/* 28-02-2-24 */
.section-footer-nav {
  padding: 6px;
  position: fixed;
  right: 17px;
  bottom: 0;
  z-index: 99;
}

.spaceAround {
  display: block;
}

.callUs {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #fff !important;
  text-align: center;
  background: #025b94;
  border: 8px solid #025b94;
  border-radius: 20%;
  box-shadow: 0 0 0 2px #025b94;
  width: 65px;
  height: 65px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  animation: shadow-pulse 1s infinite;
  transition: all 1s ease-out;
}

.callUs .fa-phone,
.callUs .fa-book,
.callUs .fa-heartbeat {
  font-size: 25px;
  margin-bottom: 2px;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(13, 52, 77, 0.85);
  }

  100% {
    box-shadow: 0 0 0 20px rgba (13, 52, 77, 0.85);
  }
}

.read-more-section {
  display: none;
}

.callUs a .fa-phone,
.callUs a .fa-book,
.callUs a .fa-heartbeat {
  font-size: 26px;
  margin-bottom: 3px;
}

.read-more-btn {
  display: inline-block;
  margin-bottom: 40px;
}

.counter-section {
  padding: 50px 0px 60px;
}

.counter-section h2 {
  font-size: 36px;
  color: #d6d2c3;
  margin-bottom: 80px;
}

.counter-section h2 span {
  color: #2e8d41;
  text-transform: uppercase;
}

.market-status {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-around;
}

.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  vertical-align: middle;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}


/* New design css */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
}

.align-items-center {
  align-items: center;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: .75rem;
}

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, .03);
  border-top: 1px solid rgba(0, 0, 0, .125);
}

.text-center {
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  background: #126d1d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 15%;
}

.owl-carousel .owl-nav button.owl-next {
  right: 15%;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  font-size: 30px;
  line-height: 24px;
}

.owl-dots {
  display: none;
}

/* carousel */
.style-two .carousel-inner .item>img {
  width: 100%;
}

.carousel-indicators {
  bottom: -45px;
  display: none;
}

.carousel-indicators .active {
  background-color: #126d1d;
}

.carousel-indicators li {
  border: 1px solid #84b7d8;
}

#carousel-example-generic .carousel-caption {
  bottom: 50%;
  left: 18%;
  right: 20%;
  text-align: left;
  text-shadow: none;
  width: 25%;
}
#carousel-example-generic .carousel-caption p {
 font-size: 18px;
}
#carousel-example-generic .carousel-inner {
  height: 500px;
}

#carousel-example-generic .carousel-indicators {
  bottom: 70px;
}

#carousel-example-generic .item-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  top: auto;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-control {
  display: block;
}

.carousel-control .glyphicon-menu-left,
.carousel-control .icon-prev,
.carousel-control .glyphicon-menu-right,
.carousel-control .icon-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none !important;
}

/* ...desk-top-view-header... */

.header-top {
  background: #f3f6fc;
  padding: 8px 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #f1f1f1;
}

.stats-heading {
  font-weight: 600;
  color: #000;
}

.info-stats {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blink-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #439a4e;
  margin-right: 8px;
  position: relative;
}

.blink-circle:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #032e08;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: circleRipple;
  animation-name: circleRipple;
}

@keyframes circleRipple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.info-stats .counter {
  font-size: 16px;
  font-weight: 600;
  color: #6d6b6b;
}

.info-stats .plus-sign {
  position: relative;
  font-size: 20px;
  top: 0;
  left: 0;
  color: #6d6b6b;
  margin-right: 3px;
}

.info-stats .counter-title {
  color: #6d6b6b;
}

.info-stats .counter-title span {
  font-size: 18px;
  font-weight: 600;
}

.header-menu {
  text-align: right;
}

.header-menu ul {
  display: inline-block;
}

.header-menu ul li.menu-item-has-children {
  position: relative;
}

.header-menu ul li {
  display: inline-block;
  margin-right: 25px;
}

.header-menu ul li a {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  padding: 5px 0;
  text-transform: capitalize;
  color: #fff;
  transition: all 0.5s ease-out;
}

.style-two .header-menu ul li a {
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #025b94;
  transition: all 0.5s ease-out;
}

.header-menu ul li .sub-menu {
  position: absolute;
  width: 200px;
  padding: 0;
  display: block;
  text-align: left;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  top: 52px;
  z-index: 2;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #126d1d;
  border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-menu ul li .sub-menu li a {
  display: block;
  padding: 8px 19px !important;
  color: #1e1e1e;
  width: 200px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 1;
}

.header-menu ul li .sub-menu li a:hover {
  color: #fff !important;
}

.header-menu ul li .sub-menu li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background: #126d1d;
  z-index: -1;
  transition: all 0.5s ease-out;
}

.header-menu ul li .sub-menu li a:hover:before {
  height: 100%;
  top: 0;
}

.navbar-default .header-menu ul>.active>a {
  font-weight: 600;
  color: #349a49;
  transition: all 0.5s ease-out;
}

.style-two .header-button {
  display: inline-block;
}

.style-two .header-button a {
  background: #126d1d;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #126d1d;
  position: relative;
  z-index: 1;
  transition: .5s;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.5s ease-out;
  color: #fff !important;
}

.style-two .header-button a:hover {
  color: #126d1d !important;
  background: #fff;
}

.stickyFixed {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ...mobile view... */
.mobile-menu-area {
  position: relative;
  display: none;
}

.mobile-menu-area .bars {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 9999;
  color: #022840;
}

.mobile-menu-area .sidenav a:hover .caret {
  color: #126d1d;
}

.mobile-menu-area .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 0.5s ease-out;
  padding-top: 60px;
}

.mobile-menu-area .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  transition: all 0.3s ease-out;
}

.mobile-menu-area .sidenav .active>a {
  color: #126d1d;
}

.mobile-menu-area .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.mobile-menu-area .nav_scroll {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.nav_scroll .clickSlide .sub-menu {
  display: none;
  list-style: none;
}

.nav_scroll .clickSlide .sub-menu {
  background: #f8f8f8;
  padding: 0;
}

.nav_scroll .clickSlide .sub-menu li {
  border-top: 1px solid #ddd;
}

.mobile-menu-area .clickSlide .caret {
  position: absolute;
  right: 8px;
  margin-top: 6px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.mobile-menu-area .nav_scroll li.menu-item-has-children {
  border-top: 1px solid #ddd;
}


/* service */
.style-two.services {
  padding: 22px 0 0;
}

.style-two.services .row.add-marging {
  margin-top: -90px;
}

.style-two .serviceBox {
  text-align: center;
  filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
  background: #fff;
  padding: 35px 20px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
  border: none;
  height: 370px;
}

.style-two .serviceBox .card-body {
  padding: 0;
}

.style-two .serviceBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background: #126d1d;
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
}

.style-two .serviceBox:hover:before {
  height: 100%;
}

.style-two .feature-icon {
  position: relative;
  z-index: 1;
}

.style-two .feature-icon img {
  width: 60px;
}

.style-two .feature-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  left: 0;
  right: 0;
  top: -19px;
  background: url(../images/feature-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;
  z-index: -1;
}

.style-two.services .serviceBox:hover .feature-icon:before {
  background: url(../images/feature-shape-2.png);
  background-repeat: no-repeat;
  background-position: center;
}

.style-two .service-content h3 {
  transition: .5s;
  padding: 12px 0 4px;
  font-size: 16px;
  color: #041424;
  font-weight: 700;
  text-align: center;
}

.style-two .service-content h3 span {
  font-weight: 700;
  display: block;
}

.style-two .service-content p {
  margin: 0 0 20px;
  transition: 0.5s;
  color: #686868;
}

.style-two .card-footer {
  border: none;
  background-color: transparent;
}

.style-two .card-footer a {
  padding: 0 0 0 12px;
  color: #fff;
  display: inline-block;
  margin-top: 0;
  position: relative;
  z-index: 1;
  transition: .5s;
  font-size: 16px;
  font-weight: 400;
}

.style-two .serviceBox:hover .card-footer a {
  color: #fff;
}

.style-two .serviceBox .card-footer a:after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 12px;
  left: 35px;
  width: 30px;
  height: 2px;
  background: #022840 !important;
  transition: .5s;
}

.style-two .serviceBox:hover .card-footer a:after {
  left: -24px;
  background: #fff !important;
}

.style-two .serviceBox:hover .service-content h3 {
  color: #fff;
}

.style-two .serviceBox:hover .service-content p {
  color: #fff;
}

/* service */

/* why-us-section */
.style-two.why-us-section {
  background: #F3F7FD;
  /* padding: 380px 0 126px; */
  /* margin-top: -287px; */
  padding: 80px 0;
}

.style-two .whyUs-shape {
  position: absolute;
  right: 76px;
  bottom: 27px;
  animation: bounceleft 4s linear infinite;
}

@keyframes bounceleft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

.style-two .whyUs-conter-box {
  background: #126d1d;
  display: inline-block;
  text-align: center;
  padding: 3px 18px;
  position: absolute;
  top: 14px;
  left: 49px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.style-two .whyUs-conter-box:before {
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  left: -2px;
  top: -57px;
  background: #0a4b12;
  border-radius: 50%;
  z-index: -1;
}

.style-two .whyUs-conter-title span,
.style-two .whyUs-conter-title h4 {
  font-size: 56px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  padding: 0 0 16px 0;
  display: inline-block;
}

.style-two .whyUs-conter-title h4:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 2px;
  left: 36px;
  bottom: 10px;
  background: #fff;
}

.style-two .whyUs-conter-title p {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 5px 0 0 0;
}

.style-two .whyUs-info {
  position: relative;
}

.style-two.whyUs-content-title {
  margin-bottom: 42px;
}

.inner-header h4 {
  font-size: 25px;
  color: #022840;
  font-weight: 600;
  margin: 0 0 24px;
}

.inner-header .sub-title {
  display: inline-block;
  font-size: 18px;
  color: #0a4b12;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.inner-header .sub-title:before {
  background-color: #0a4b12;
  content: "";
  height: 2px;
  left: 100%;
  margin-left: 10px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 40px;
}

.style-two .header {
  margin-bottom: 40px;
}

.style-two.whyUs-content-title p {
  margin: 19px 0 0;
  font-size: 16px;
  line-height: 26px;
  color: #686868;
  font-weight: 400;
  transition: 0.5s;
}

.style-two .single-whyUs-icon-box {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 29px;
}

.style-two .whyUs-icon {
  line-height: 60px;
  text-align: center;
  width: 80px;
  height: 66px;
  border-radius: 10px;
  transition: 0.5s;
  filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
  background-color: #ffff;
}

.style-two .whyUs-icon-box-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #041424;
}

/* why-us-section */

/* readMore-btn */
.style-one.readMore-btn a {
  background: #126d1d;
  border: 1px solid #126d1d;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  margin-top: 8px;
  transition: 0.5s;
  box-shadow: none;
}

.style-one.readMore-btn a:hover {
  color: #126d1d;
}

.style-one.readMore-btn a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.style-one.readMore-btn a:hover:before {
  width: 100%;
  left: 0;
}

/* readMore-btn */

.style-inner-Page {
  padding: 40px 0;
}



/* products */
.style-two.products {
  background: #ebeef4;
  padding: 80px 0;
}

.style-two .single-products-box {
  padding: 10px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  border-radius: 5px;
  height: 348px;
}

.style-two .single-products-box:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #126d1d;
  transition: .5s;
  z-index: -1;
  border-radius: 5px;
}

.style-two .single-products-box:hover:before {
  left: 0;
  width: 100%;
}

.style-two .single-products-box:hover .card-footer a {
  letter-spacing: 0;
}

.style-two .product-icon-thumb {
  position: relative;
}

.style-two .product-icon-thumb:before {
  position: absolute;
  content: "";
  left: -8px;
  top: -7px;
  width: 40px;
  height: 40px;
  background: #E6EEFB;
  transition: .5s;
  z-index: -1;
  border-radius: 100%;
}

.style-two .product-content h4 {
  font-size: 18px;
  line-height: 50px;
  color: #041424;
  font-weight: 700;
  transition: 0.5s;
}

.style-two .product-content p {
  margin: 0 0 24px;
  transition: 0.5s;
  color: #686868;
}

.style-two .product-icon-thumb img {
  transition: 0.5s;
}

.style-two .single-products-box .card-footer a {
  color: #0a4b12;
}

.style-two .single-products-box .card-footer a {
  display: inline-block;
  transition: .5s;
  font-size: 15px;
  letter-spacing: -8px;
  color: #fff;
  font-weight: 600;
}

.style-two .single-products-box .card-footer i {
  display: inline-block;
  color: #0a4b12;
  font-size: 20px;
  transition: 0.5s;
}

.style-two .single-products-box:hover .card-footer i {
  opacity: 0;
  transition: 0.5s;
}

.style-two .single-products-box:hover .product-content h4 {
  color: #fff;
}

.style-two .single-products-box:hover .product-content p {
  color: #fff;
}

.style-two .single-products-box:hover .product-icon-thumb img {
  filter: brightness(0) invert(1);
}

.style-two .single-products-box:hover .product-icon-thumb:before {
  background: #007f3a;
}

.style-two .product-number h1 {
  background: #E6EEFB;
  position: absolute;
  right: 0;
  top: 33px;
  transition: 0.5s;
  font-size: 26px;
  line-height: 50px;
  color: #041424;
  font-weight: 600;
  padding: 0 14px 0 28px;
  border-radius: 30px 0 0 30px;
  margin: 0;
}

/* products */

/* solutions */
.style-two.solutions {
  position: relative;
  background-color: #F3F7FD;
  background-image: url(../images/why_bg_2.png);
  padding: 80px 0;
}

.style-two.solutions p {
  margin: 0 0 24px;
  transition: 0.5s;
  font-size: 16px;
  color: #686868;
}

.style-two.solutions .inner-column {
  position: relative;
  z-index: 2;
  margin-bottom: -46px;
  margin-top: -60px;
}

.style-two.solutions .inner-column .count-client {
  position: absolute;
  top: 20px;
  left: 40%;
  background: #0a4b12;
  border: 6px solid #0f661a;
  box-shadow: none;
  height: 155px;
  width: 155px;
  padding: 32px 0;
  border-radius: 50%;
  text-align: center;
}

.style-two.solutions .inner-column .count-client h3 {
  font-size: 35px;
  color: #fff;
  line-height: 50px;
  margin: 0 auto;
  font-weight: 600;
}

.style-two.solutions .inner-column .count-client p {
  margin-bottom: 0;
  font-weight: 400;
  color: #fff;
}

.style-two.solutions .inner-column .count-client:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a4b12;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* solutions */

/* perspective-right */
.perspective-right {
  transform: perspective(1500px) rotateY(-15deg);
  transition: transform 1s ease 0s;
}

.perspective-right:hover {
  transform: perspective(3000px) rotateY(-5deg);
}

.perspective-left {
  transform: perspective(1500px) rotateY(15deg);
  transition: transform 1s ease 0s;
}

.perspective-left:hover {
  transform: perspective(3000px) rotateY(5deg);
}

/* perspective-right */

/* state-counter-section */
.style-two.state-counter-section {
  position: relative;
  background: #ebeef4;
  padding: 80px 0;
}

.style-two.state-counter-section .counter-block {
  position: relative;
  margin-top: 75px;
  margin-bottom: 50px;
}

.style-two.state-counter-section .counter-block .counter-inner {
  position: relative;
  min-height: 200px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 5px 40px 40px;
  transition: all .3s ease;
  background-image: url(../images/counter-pattern.png);
  background-repeat: no-repeat;
  background-position: 50%;
  box-shadow: 0 5px 40px rgba(0, 0, 0, .05);
}

.style-two.state-counter-section .counter-block .counter-inner .img-icon {
  background-color: #e6e8ed;
  height: 115px;
  width: 115px;
  padding: 10px;
  margin: -75px auto 20px;
  position: relative;
  transition: all .3s ease;
  z-index: 1;
}

.style-two.state-counter-section .count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}

.style-two.state-counter-section .count-box h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1em;
  color: #000;
}

.style-two.state-counter-section .count-box .plus-sign {
  position: relative;
  top: 30px;
  right: 0;
  color: #000;
}

.style-two.state-counter-section .counter-block .counter-title {
  display: block;
  padding: 10px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  background-color: #0a4b12;
  letter-spacing: .1em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}

.style-two.state-counter-section .count-box span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.plus-sign sup,
.plus-second sup,
.plus-third sup,
.plus-four sup {
  font-size: 40px;
}

.style-two.state-counter-section .counter-inner:hover {
  transform: translateY(-5px);
}

.style-two.state-counter-section .counter-block .counter-inner:hover .img-icon {
  border-radius: 50%;
  background: #0a4b12;
}

.style-two.state-counter-section .counter-inner:hover img {
  filter: brightness(0) invert(1);
}

/* state-counter-section */

/* contact */
.layout.contact-section-two.pull-up {
  z-index: 1;
}

.style-two.contact-section {
  background: #fff;
  padding: 120px 0 70px;
}

.style-two.contact-section.pull-up {
  padding-top: 0;
  margin-top: -60px;
}

.style-two.contact-section .form-column {
  position: relative;
  margin-bottom: 50px;
}

.style-two.contact-section .contact-form.light {
  padding: 45px 20px 20px;
  background-color: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, .07);
}

.style-two.contact-section .contact-form {
  position: relative;
  background-color: #2c2e33;
  padding: 55px;
  border-top: 5px solid #0a4b12;
}

.style-two.contact-section .contact-form.light:before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 223px;
  height: 264px;
  background-image: url(../images/shape-5.png);
  content: "";
}

.style-two.contact-section .contactForm label {
  color: #686868;
}

.style-two.contact-section .contactForm .required-field::after {
  content: "*";
  color: red;
}

.style-two.contact-section .contactForm .btn-success {
  text-transform: uppercase;
}

.style-two.contact-section .contactForm .btn-success,
#contact .contactForm .btn-success {
  background: #126d1d;
  border: 1px solid #126d1d;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  margin-top: 8px;
  transition: 0.5s;
  box-shadow: none;
}

.style-two.contact-section .contactForm .btn-success:before,
#contact .contactForm .btn-success:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.style-two.contact-section .contactForm .btn-success:hover:before,
#contact .contactForm .btn-success:hover:before {
  width: 100%;
  left: 0;
}

.style-two.contact-section .contactForm .btn-success:hover,
#contact .contactForm .btn-success:hover {
  color: #126d1d;
}

.style-two.contact-section .contactForm h4 {
  font-size: 18px;
}

.style-two.contact-section .contactForm .form-control {
  font-weight: 500;
}

.style-two.contact-section .info-column {
  position: relative;
  margin-bottom: 60px;
}

.style-two.contact-section .info-column .inner-column {
  position: relative;
  padding-left: 300px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.style-two.contact-section .info-column:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  width: 1000%;
  content: "";
}

.style-two.contact-section .info-column .overlay-img {
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: 0;
  max-width: 200px;
}

.style-two.contact-section .info-column .info-box {
  position: relative;
  padding-top: 12px;
  padding-left: 75px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e6e8ed;
}

.style-two.contact-section .info-column .info-box:last-child {
  border-bottom: none;
}

.style-two.contact-section .info-column .info-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #126d1d;
  border-radius: 50%;
  color: #fff;
  height: 58px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease;
  width: 58px;
}

.style-two.contact-section .info-column h4 {
  position: relative;
  z-index: 1;
}

.style-two.contact-section .info-box h4 {
  font-size: 16px;
  margin: 0 0 10px;
}

.style-two.contact-section .info-column .inner-column .overlay-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.acc-container {
  max-width: 700px;
  width: 100%;
}

.acc {
  position: relative;
  background-color: #fff;
  box-shadow: 0 5px 40px rgba(0, 0, 0, .05);
  margin-bottom: 10px;
}

.acc-head.active {
  background-color: #008000;
  color: #fff;
  padding: 10px;
  position: relative;
  cursor: pointer;
}

.acc-head.active:before,
.acc-head.active:after {
  background-color: #fff;
}

.acc-head {
  background-color: #fff;
  border-bottom: 1px solid #008000;
  padding: 10px;
  font-size: 18px;
  line-height: 25px;
  position: relative;
  cursor: pointer;
  color: #000;
}

.acc-head::before,
.acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #000;
  transition: all .3s;
}

.acc-head::before {
  right: 27px;
  width: 3px;
  height: 15px;
  margin-top: -8px;
}

.acc-head::after {
  right: 21px;
  width: 15px;
  height: 3px;
  margin-top: -2px;
}

.acc-head p {
  font-weight: bold;
}

.acc-head i {
  margin-right: 5px;
}

.acc-content {
  padding: 15px 30px;
  display: none;
}

.acc-head.active::before {
  transform: rotate(90deg);
}

.acc-content-body {
  font-size: 16px;
  line-height: 30px;
  color: #808287;
  padding: 0 3px;
  margin-bottom: 0;
}


.style-two.productDetails .productDetails-sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.productDetails-sidebar-single li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.productDetails-sidebar-single li a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  background-color: #fff;
  padding: 17px 20px 17px 50px;
  box-shadow: 20px 5px 20px 0 rgba(0, 0, 0, .05);
}

.productDetails-sidebar-single li a:hover {
  color: #fff;
  background-color: green;
  padding-left: 80px;
}

.productDetails-sidebar-single li i {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background-color: #f6f4ec;
  text-align: center;
  font-size: 16px;
  color: #707582;
  transition: all .5s ease;
}

.productDetails-sidebar-single li a:hover i {
  width: 60px;
  color: #fff;
  background-color: #205320;
}

.style-two.productDetails .contactForm {
  position: relative;
  background: #fff;
  padding: 40px;
  box-shadow: 20px 5px 20px 0 rgba(0, 0, 0, .05);
}

.style-two.service-info .row.add-marging {
  margin-top: 0;
}

#contact .others-page {
  display: block;
}

.accordion .panel-default>.panel-heading {
  color: #fff;
  background: #007f3a;
  border: 0
}

.style-two.chart-section {
  padding: 80px 0;
  background: #ebeef4;
}

.style-two.hospital-management {
  padding: 80px 0;
  background: #F3F7FD;
}

.style-two.real-time-monitoring {
  padding: 80px 0;
  background: #ebeef4;
}

.style-two.health-group-section {
  padding: 80px 0;
  background: #ebeef4;
}

.style-two.large-group-section {
  padding: 80px 0;
  background: #F3F7FD;
}

.style-two.health-analytics-section {
  padding: 80px 0;
}

.style-two.solution-inner-section .carousel-indicators {
  bottom: -50px;
}

.style-two.solution-inner-section .carousel-indicators .active {
  background-color: #126d1d;
}

.style-two.solution-inner-section .carousel-indicators li {
  border: 1px solid #126d1d;
}

.style-two.thelife-hms-presentation,
.style-two.thelife-opd-ressentation {
  padding: 80px 0;
}
.form-section .btn-success {
  text-transform: uppercase;
}

.form-section .btn-success {
  background: #126d1d;
  border: 1px solid #126d1d;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  margin-top: 8px;
  transition: 0.5s;
  box-shadow: none;
}

.form-section .btn-success:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.form-section .btn-success:hover:before {
  width: 100%;
  left: 0;
}

.form-section .btn-success:hover {
  color: #126d1d;
}

.form-section {
  background: #fff;
  padding: 30px;
}

.panel-title>a:hover {
  color: #126d1d !important;
}

.panel-body h5 {
  font-weight: 600;
}

a:focus {
  outline: none;
}

.hms-link {
  display: none;
}

.panel.panel-default.ng-isolate-scope.active .panel-heading {
  background: #008000;
  color: #fff;
}

.panel.panel-default.ng-isolate-scope.active .panel-heading .panel-title {
  font-weight: 600;
  font-size: 16px;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-default>.panel-heading {
  background-color: #fff;
  border-bottom: 1px solid #008000;
  padding: 18px;
  line-height: 25px;
  position: relative;
  cursor: pointer;
  color: #000;
}

.panel.panel-default.ng-isolate-scope.active .panel-heading .panel-title>a:hover {
  color: #fff !important;
}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
  font-size: 24px !important;
}