
/*---=====================================================
   <!--Consalt Header Area Css-->
=========================================================---*/
body{
    background-color:#fff;
}
.login-btn a{
    background-color: #063232 !important;
    color: #fff !important;
    padding: 6px 15px !important;
    border-radius: 10px !important;
}

.consalt-header-area {
    position: relative;
    z-index: 3;
    margin-bottom: -140px;
    margin-top: 30px;
}
.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
}
.consalt-header-area  ul {
    display: inline-block;
}
.header-menu ul li {
    display: inline-block;
    margin: 0 10px 0;
    position: relative;
    z-index: 1;
}
.header-menu ul li a {
    display: inline-block;
    padding: 9px 0 21px;
    font-size: 16px;
    color: #063232;
    font-weight: 400;
}
.header-menu ul li span {
    font-size: 13px;
    color: #063232;
    margin-left: 5px;
    position: relative;
    top: -1px;
}


/*** Sub Menu Style ***/
.header-menu ul .sub_menu {
    position: absolute;
    left: 0;
    top: 130%;
    width: 225px;
    text-align: left;
    background: #fff;
    margin: 0;
    z-index: 1;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: .5s;
    visibility: hidden;
    border-top: 2px solid #366B2A;
    opacity: 0;
}

.header-menu ul li:hover>.sub_menu {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

.header-menu ul .sub_menu li {
    position: relative;
    margin: 0;
    display: block;
}
.header-menu ul .sub_menu li a {
    display: block;
    padding: 12px 20px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: normal;
    transition: .1s;
    visibility: inherit !important;
    color: #366B2A !important;
    font-size: 16px;
    font-weight: 500;
}
.header-menu ul .sub_menu li:hover>a {
    background: #366B2A;
    color: #fff !important;
}
/* sub menu style two */
.consalt-header-area.style_two .header-menu ul .sub_menu li a {
    display: block;
    padding: 12px 20px;
}
.sticky .sub_menu li a {
    padding: 12px 20px !important;
}

/* header button */

.header-button {
    display: inline-block;
}
.header-button a {
    display: inline-block;
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

/* dack light */

.dark-light {
    display: inline-block;
    margin-left: 30px;
}
span.bi.bi-sun {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #ffff;
    font-size: 18px;
    height: 35px;
    line-height: 36px;
    width: 35px;
    text-align: center;
    border-radius: 51%;
}
/* sticky */
.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #366B2A!important;
    transition: .5s;
    z-index: 9;
}
.sticky .header-menu ul li a {
    padding: 70px 0 0px;
    color: #fff;
}
.sticky .header-menu ul li a i {
    color: #fff;
}
.sticky .col-lg-2.pt-10 {
    padding-top: 0 !important;
}
.sticky .row.topber_upper {
    display: none !important;
}
/*===========================================
<-- Sater Css Hero Area -->
==============================================*/
section.hero_area {
    background: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 830px;
    position: relative;
    z-index: 1;
}
.hero_content {
    margin-top: 90px;
}
.hero_content h1 {
    font-size: 45px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 600;
}
.hero_content p {
    color: #a3b7b7;
    /* width: 85%; */
    margin: 18px 0 33px;
}

/* hero btn */
.slider_button {
    display: flex;
    align-items: center;
}

.hero_btn a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 17px;
    padding-bottom: 17px;
    border-radius: 30px;
    display: inline-block;
    background-color: #0c6e6d;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
}
.hero_btn span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: #ffff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.hero_btn a:hover, .hero_btn a:focus {
	color: #0c6e6d;
}
.hero_btn a:hover span, .hero_btn a:focus span {
	width: 200%;
	height: 500px;
}
.hero_btn a:before {
    position: absolute;
    content: "";
    left: 40px;
    bottom: 17px;
    background-color: rgba(255,255,255,0.5019607843137255);
    z-index: -1;
    width: 24px;
    height: 2px;
    transition: .5s;
}
.hero_btn a:hover:before {
    width: 120px;
    background: #0c6e6d;
    z-index: 1;
}
.hero_btn {
    margin-right: 30px;
}
.slider_info a {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    margin-left: 20px;
}
.slider_info span {
    color: #fff;
}

/* hero thumb */
.hero-thumb {
    position: relative;
    z-index: 1;
    top: 42px;
}
.video-icon {
    position: absolute;
    left: -6%;
    top: 46%;
}
.video-icon a {
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background-color: #0c6e6d;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 90px;
    font-size: 35px;
}
.hero_shape {
    position: absolute;
    top: 19%;
    right: 0;
    left: -7%;
    margin: auto;
    text-align: center;
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-position: center center;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*===========================================
<-- Sater Css  boxed -->
==============================================*/
.boxed {
    position: relative;
    width: calc(100% - 40px);
    margin: 20px;
    height: 100%;
    left: 0;
    z-index: 5
}


/*===========================================
<-- Sater Css Brand Area -->
==============================================*/
section.brand_area {
    padding: 30px 0 30px;
}
h2.brand_title {
    font-size: 18px;
    color: #063232;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 1;
}
h2.brand_title:before {
    position: absolute;
    z-index: -1;
    content: "";
    height: 2px;
    width: 50px;
    background: #006666;
    top: 29%;
    left: 0;
    right: 0;
    margin: auto;
}
.single-brand-item {
    text-align: center;
}
.brand-thumb img {
    width: inherit !important;
}
.owl-carousel .owl-item img {
    display: inline-block !important;
}
section.brand_area.style_two {
    background: #0B204A;
    padding: 65px 0 65px;
    z-index: 1;
}
/*===========================================
<-- Sater Css Section Title  -->
==============================================*/
.section_title.text-center {
    margin-bottom: 53px;
}
.section_title h4 {
    font-size: 16px;
    color: #0c6e6d;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.section_title h1 {
    font-size: 42px;
    line-height: 42px;
    color: #063232;
    font-weight: 600;
}
.section_title.style_two h1 {
    color: #ffff;
}
.section_title.style_two h4 {
    color: #e0f1df;
}
.section_title.text-center p {
    width: 49%;
    text-align: center;
    margin: 23px auto 0;
}
.section_title p {
    width: 89%;
    margin: 28px 0 34px;
}
.section_title.left {
    margin-bottom: 50px;
}
.section_title.style_three {
    position: relative;
    z-index: 1;
}
.section_title.style_three:before {
    position: absolute;
    left: 0;
    bottom: 33%;
    background: url(../images/home_3/hero_border.png);
    height: 15px;
    width: 100%;
    content: "";
    z-index: -1;
    background-repeat: no-repeat;
}
.section_title.style_four:before {
    left: 0;
    bottom: -32%;
    height: 15px;
    width: 11%;
    right: 0;
    margin: auto;
    text-align: center;
}
.section_title.style_three p {
    margin: 48px 0 20px;
}
.section_title.style_four {
    margin-bottom: 82px;
}
/* consalt right */
.conslat_right p {
    width: 75%;
    margin-bottom: 0;
}
/*===========================================
<-- Sater Css Feature Area -->
==============================================*/
section.feature_area {
    padding: 100px 0 163px;
    background: url(../images/home_one/service-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.feature_area.boxed {
    margin: 20px 20px 0px 20px;
}
.feature_item {
    background: url(../images/home_one/feature_shape.png);
    background-repeat: round;
    background-size: cover;
    padding: 40px 25px 30px 36px;
    position: relative;
    z-index: 1;
    transition: .5s;
    margin-bottom: 30px;
}
.feature_item.upper {
    margin-top: 30px;
}
.feature_item:hover {
    background: url(../images/home_one/feature_itm.png);
    background-repeat: round;
    background-size: inherit;
}
.feature_item:before {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #0c6e6d;
    position: absolute;
    content: "";
    left: 0;
    bottom: 5px;
    right: 0;
    margin: auto;
    transition: .5s;
    opacity: 0;
}
.feature_item:after {
    width: 1px;
    height: 25px;
    background-color: #0c6e6d;
    position: absolute;
    content: "";
    left: 1px;
    bottom: -12px;
    right: 0;
    margin: auto;
    transition: .5s;
    opacity: 0;
}
.feature_item:hover:before, .feature_item:hover:after {
    opacity: 1;
}
.feature_content h3 {
    font-size: 18px;
    line-height: 30px;
    color: #063232;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 20px;
}
.feature_number {
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transition: .5s;
}
h6.feature_no {
    font-size: 17px;
    line-height: 26px;
    color: #0c6e6d;
    font-weight: 400;
}
.feature_item:hover .feature_number {
    bottom: -38px;
}

.feature_shape {
    position: absolute;
    top: 12%;
    right: 21%;
}
/*===========================================
<-- Sater Css Service Area -->
==============================================*/
section.service_area {
    background: #063232;
    padding: 179px 0 89px;
    position: relative;
    top: -75px;
    z-index: 1;
}
section.service_area.boxed {
    margin: 0 20px 20px 20px;
}
.service_single_item {
    position: relative;
    transition: .5s;
    display: inline-block;
    padding: 40px 0 0 40px;
    margin-bottom: 30px;
    z-index: 1;
}
.service_single_item:before {
    position: absolute;
    top: 0;
    background: #0a4b4b;
    width: 100%;
    content: "";
    height: 316px;
    z-index: -1;
    left: 0;
    border-radius: 20px;
    transition: .5s;
}
.service_single_item:hover:before {
    background: #0c6e6d;
}
.service_thumb img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}
.service_content {
    border-radius: 0 0 20px 20px;
    background-color: #0a4b4b;
    transition: .5s;
    text-align: left;
    padding: 34px 40px 27px;
    position: relative;
    z-index: 1;
}
.service_content:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(../images/home_one/ser_shape.png);
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: .5s;
    border-radius: 0 0 20px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0;
}
.service_single_item:hover .service_content:before{
    width: 100%;
    opacity: 1;
}
.service_content h3 {
    font-size: 23px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 0;
}
.service_single_item:hover .service_content h3 {
    color: #063232;
}
/* ====Service Button====== */
.service_btn {
    margin-top: 15px;
}
.service_btn a {
    transition: .5s;
    display: inline-block;
    letter-spacing: -6px;
    font-size: 14px;
    line-height: 32px;
    text-transform: uppercase;
    color: #0a4b4b;
    font-weight: 500;
}
.service_btn a i {
    margin-left: -8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
/* all hover */
.service_single_item:hover .service_btn a {
    letter-spacing: 0;
}
.service_single_item:hover .service_btn a i {
    margin-left: 8px;
    color: #0a4b4b;
}
.service_shape {
    position: absolute;
    bottom: -3%;
    left: 0;
    margin: 0;
}
.service_shape img {
    width: 100%;
}
.service_fuor {
    position: absolute;
    top: 2%;
    left: 3px;
    width: 97px;
    height: 97px;
    border-radius: 49px;
    background-color: #0c6e6d;
    line-height: 97px;
    text-align: center;
    right: 0;
    margin: auto;
}
/*===========================================
<-- Sater Css Marquee Area -->
==============================================*/
.marquee_area {
    background: #fff;
    padding: 15px 0 75px;
}
.marquee {
    position: relative;
    --duration: 40s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap:0;
}
.marquee-block h3 {
    margin: 0;
}
.marquee-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap:0px;
    min-width: 100%;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-100% - var(--gap)));
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-100% - var(--gap)));
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  .marquee.style2 .marquee-block h3 {
    font-size: 120px;
    font-weight: 700;
    margin: 0 50px 0 50px;
    -webkit-background-clip: text;
    letter-spacing: 0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #0c6e6d;
    color: transparent;
    -webkit-mask-image: linear-gradient(-75deg, #0c6e6d 50%, #0c6e6d 50%, #0c6e6d);
    -webkit-mask-size: 200%;
    animation: shine 3s infinite;
    transition: .5s;
}
.marquee.style2 .marquee-block span {
    color: #0c6e6d;
    font-size: 120px;
    font-weight: 700;
}

/*===========================================
<-- Sater Css About Area -->
==============================================*/
section.about_area {
    padding: 105px 0 120px;
    border-radius: 20px;
    background: #f0f7ef;
    position: relative;
    z-index: 1;
}
.about_thumb {
    position: relative;
}
.about_play {
    position: absolute;
    top: 0%;
    right: 13%;
}
/*animation circle*/
.text-inner {
    animation: circle 15s linear infinite;
    animation: circle 15s linear infinite;
    position: relative;
    z-index: 22;
    fill: transparent;
}
.text-inner svg {
width: 100px;
max-width: 100%;
height: auto;
overflow: visible;
word-spacing: 10px;
transform: rotate(0) scaleX(1) scaleY(1);
position: relative;
}
.text-inner:before {
    position: absolute;
    content: "";
    top: 44%;
    left: 0%;
    height: 16px;
    width: 16px;
    background: #fff!important;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 50%;
}
.text-inner text {
fill: #ffffff;
direction: ltr;
transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
font-size: 30px;
font-weight: 500;
position: relative;
z-index: 2;
}
a.banner-play-btn {
width: 142px;
height: 142px;
border-radius: 71px;
background-color: #0c6e6d!important;
overflow: hidden;
line-height: 142px;
text-align: center;
position: relative;
display: inline-block;
}
.like {
position: absolute;
top: 52%;
transform: translate(-50%, -50%);
left: 50%;
}
@keyframes circle {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  .circle {
      animation: circle 15s linear infinite;
  }
  .right {
    animation: right 15s linear infinite;
  }
  .spin2 {
    animation: spin2 15s linear infinite;
  }
  @keyframes right {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-positive {
    0% {
      width: 0;
    }
  }

.about_content {
    position: relative;
    z-index: 1;
}
.about_content h3 {
    font-size: 16px;
    color: #0c6e6d;
    font-weight: 500;
    margin-bottom: 3px;
    display: inline-block;
}
.about_content h1 {
    font-size: 28px;
    line-height: 38px;
    color: #063232;
    font-weight: 500;
    margin-bottom: 20px;
}
/* ====== About List====== */

.about_list ul li {
    font-size: 18px;
    line-height: 38px;
    color: #063232;
    font-weight: 500;
}
.about_list ul li i {
    font-size: 22px;
    top: 3px;
    position: relative;
    margin-right: 15px;
}

/* ======= Hero button ========== */

.about_button {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.about_btn a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 30px;
    display: inline-block;
    background-color: #0c6e6d;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
}
.about_btn span {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    display: block;
    border-radius: 30px;
    background-color: #063232;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.about_btn a:hover, .about_btn a:focus {
	color: #ffff;
}
.about_btn a:hover span, .about_btn a:focus span {
	width: 200%;
	height: 500px;
}
.about_btn a:before {
    position: absolute;
    content: "";
    left: 40px;
    bottom: 17px;
    background-color: #ffffffa1;
    z-index: -1;
    width: 12%;
    height: 2px;
    transition: .5s;
}
.about_btn a:hover:before {
    width: 105px;
    background-color: #ffff;
    z-index: 1;
}
.about_btn {
    margin-right: 30px;
}
.about_info a {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
    color: #0c6e6d;
    font-weight: 500;
}
.about_info span {
    color: #0c6e6d;
    position: relative;
    top: -5px;
}
/* about shape */
.about_shape {
    position: absolute;
    bottom: -20%;
    right: -5%;
}
.stakeholder-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #f0f7ef;
}


.stakeholder-box{
  display: inline-block;       /* containers inline/flow पर हों तभी अच्छा दिखेगा */
  transform: translateY(0);
  transition: transform 240ms cubic-bezier(.2,.9,.3,1), 
              box-shadow 240ms cubic-bezier(.2,.9,.3,1);
  will-change: transform, box-shadow;
  cursor: pointer;
  border-radius: 8px;          /* optional: मुलायम कोने */
  /* background/overflow optional */
  background: transparent;
}

.stakeholder-box img{
  display: block;              /* image के पास extra gaps न रहें */
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* Hover / focus (accessibility) */
.stakeholder-box:hover,
.stakeholder-box:focus{
  transform: translateY(-8px); /* ऊपर उठने की distance — जरूरत अनुसार -6px या -10px कर लो */
  box-shadow: 0 12px 24px rgba(10,20,30,0.12), 0 4px 8px rgba(10,20,30,0.06);
  outline: none;               /* अगर आप focus-visible का उपयोग नहीं कर रहे हों */
}

/* बेहतर accessibility: कीबोर्ड पर भी दिखने के लिए */
.stakeholder-box:focus-visible{
  box-shadow: 0 12px 28px rgba(10,20,30,0.16);
  transform: translateY(-8px);
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .stakeholder-box,
  .stakeholder-box:hover,
  .stakeholder-box:focus,
  .stakeholder-box:focus-visible{
    transition: none;
    transform: none;
  }
}
/* =================================
  <--- start consalt button css --->
=============================== */
.consalt_btn {
    text-align: right;
}
.consalt_btn a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 30px;
    display: inline-block;
    background-color: #0c6e6d;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
}
.consalt_btn span {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    display: block;
    border-radius: 30px;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.consalt_btn a:hover, .consalt_btn a:focus {
	color: #0c6e6d;
}
.consalt_btn a:hover span, .consalt_btn a:focus span {
	width: 200%;
	height: 500px;
}
.consalt_btn a:before {
    position: absolute;
    content: "";
    left: 40px;
    bottom: 17px;
    background-color: #ffffffa1;
    z-index: -1;
    width: 12%;
    height: 2px;
    transition: .5s;
}
.consalt_btn a:hover:before {
    width: 105px;
    background-color: #0c6e6d;
    z-index: 1;
}

/* =====================================
  <--- Start consalt Counter Area CSS --->
========================================= */
section.counter_area {
    background: #063232;
    border-radius: 30px;
    padding: 67px 0 42px;
}
.counter_upper {
    border-bottom: 2px solid rgba(12,110,109,0.4);
    padding-bottom: 34px;
    margin-bottom: 27px;
}
.counter-single-item {
    margin-bottom: 30px;
}
.counter-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.counter-content:before {
    position: absolute;
    content: "";
    top: 20px;
    left: -86px;
    height: 100%;
    width: 100%;
    background: url(../images/home_one/star_icon.png);
    z-index: -1;
    background-repeat: no-repeat;
}
.counter-content.none:before {
    display: none;
}
.counter-_number h1 {
    display: inline-block;
    font-size: 60px;
    line-height: 52px;
    color: #e0f1df;
    font-weight: 600;
}
.counter-_number span {
    display: inline-block;
    font-size: 60px;
    line-height: 52px;
    color: #e0f1df;
    font-weight: 600;
}
.counter_title {
    margin-left: 40px;
    position: relative;
}
.counter_title:before {
    position: absolute;
    content: "";
    left: -22px;
    top: 20px;
    width: 1px;
    height: 30px;
    background-color: rgba(255,255,255,0.30196078431372547);
}
.counter_title h5 {
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    color: #a3b7b7;
    font-weight: 400;
}


/* =========================================================
  <--- Start consalt Case study Area CSS --->
============================================================ */

section.case-study-area {
    padding: 85px 0 35px;
}

.case-study-thumb {
    position: relative;
    overflow: hidden;
}
.case-study-thumb {
    position: relative;
    overflow: hidden;
    background: #0c6e6d;
    padding: 0;
    border-radius: 10px;
    transition: all 500ms linear;
    height: 520px;
}
.case-study-thumb:hover {
    padding: 20px;
}
.case-study-thumb::before {
    background: rgba(12,109,109, 0.6);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
    z-index: 1;
}
.service_thumb:hover:before {
    left: 10%;
    right: 10%;
    opacity: 0;
    transition: all 500ms linear;
}
.case-study-content {
    width: 75%;
    background: #0c6e6d;
    padding: 30px 30px 10px;
    position: absolute;
    bottom: -16%;
    border-radius: 0 5px 5px 5px;
    z-index: 1;
    transition: .5s;
    opacity: 0;
}
.case-study-thumb:hover .case-study-content {
    bottom: 0%;
    opacity: 1;
}
.case-study-thumb img {
    width: 100% !important;
    transition: .5s;
    border-radius: 10px;
}
.case-study-content h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}
.case-study-content p {
    font-size: 15px;
    color: #e0f1df;
    font-weight: 400;
    margin-top: 5px;
}

.single_portfolio_icon {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: .5s;
}
.case-study-single-box:hover .single_portfolio_icon {
    opacity: 1;
    top: 50%;
}
.single_portfolio_icon a {
    background: #e0f1df;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    color: #095a59;
    transform: rotate(-45deg);
}
/* =========================================================
  <--- Start consalt Team Area CSS --->
============================================================ */

section.team_area {
    padding: 50px 0 90px;
}
.single-team_item {
    transform: translateY(0px);
    transition: .5s;
    margin-bottom: 30px;
}
.single-team_item:hover {
    transform: translateY(30px);
}
.single-team_item.style_upper {
    transform: translateY(30px);
}
.team-content {
    text-align: center;
    padding: 9px 0 0;
    margin: 0 15px 30px 15px;
}
.team-content h3 a {
    font-size: 24px;
    color: #063232;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

/* =========================================================
  <--- Start consalt Footer Area CSS --->
============================================================ */
.footer_area {
    background: #063232;
    padding: 120px 0 30px;
    border-radius: 30px;
}
p.footer_desc {
    font-size: 15px;
    line-height: 24px;
    color: #a3b7b7;
    font-weight: 400;
    margin: 37px 0 34px;
    width: 81%;
}
.subscribe_form {
    border-bottom: 1px solid rgba(255,255,255,0.30196078431372547);
    position: relative;
}
.subscribe_form input {
    background: transparent;
    border: none;
    width: 100%;
    outline: 0;
    height: 50px;
    color: #fff !important;
}
.subscribe_form input::placeholder {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}
.subscribe_form input:focus {
    outline: 0;
    background: transparent;
    box-shadow: none;
}
button.btn {
    width: 119px;
    height: 36px;
    border-radius: 18px;
    background-color: #0c6e6d;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
}
button.btn:hover {
    background: #fff;
    color: #063232;
}
.footer-widget-title h4 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 34px;
}
.footer-widget-menu ul li a {
    font-size: 15px;
    color: #a3b7b7;
    font-weight: 400;
    display: inline-block;
    margin-left: -15px;
    margin-bottom: 9px;
}
.footer-widget-menu ul li a:hover{
    margin-left: .0;
    color: #ffff;
}

.footer-widget-menu ul li a i {
    font-size: 12px;
    opacity: 0;
    transition: .5s;
}
.footer-widget-menu ul li a:hover i {
    opacity: 1;
}
.footer-widget-address.style_two {
    border-bottom: 1px dashed #ffffff78;
    padding-bottom: 12px;
}
.footer-widget-address {
    margin-bottom: 20px;
}
.footer_widget_icon.style_upper {
    top: 7px;
    position: relative;
}
.footer_widget_icon i {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background-color: #0c6e6d;
    font-size: 9px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    float: left;
    margin-right: 10px;
}
.footer-widget-address_text {
    overflow: hidden;
}
.footer-widget-address_text p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}
.footer-widget-address_text span {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff99;
    font-weight: 400;
}
/* footer bottom */
.row.add-border {
    position: relative;
    padding-top: 30px;
    margin-top: 71px;
}
.row.add-border:before {
    position: absolute;
    top: 0;
    left: 12px;
    height: 1px;
    width: 98%;
    background: rgba(255,255,255,0.30196078431372547);
    content: "";
}
.footer-bottom-content-copy p {
    font-size: 15px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}
.footer-bottom-content.right {
    text-align: right;
}
.footer-bottom-menu {
    text-align: right;
}
.footer-bottom-menu ul li {
    display: inline-block;
    margin-right: 20px;
}
.footer-bottom-menu ul li a {
    display: inline-block;
    font-size: 15px;
    color: #bdd3d3;
    font-weight: 400;
}
.footer-bottom-menu ul li a:hover {
    color: #fff;
}




/* ==============================================================
    <-- Start Consalt Home Five Css-->
=================================================================*/
.consalt-header-area.style_five .row.style_bg {
    background: #fff;
    padding: 3px 6px 3px 56px;
    border-radius: 0 0 80px 80px;
}
.consalt-header-area.style_five .header-menu {
    justify-content: space-evenly;
    display: flex;
    align-items: center;
}
.consalt-header-area.style_five .header-menu ul li a {
    display: inline-block;
    padding: 28px 0 28px;
    color: #063232 ;
}
.consalt-header-area.style_five .header-menu ul li a span {
    color: #063232 ;
}
.consalt_header-right.style_two .header-search-button.search-box-outer {
    padding: 0px 16px 0 0;
    display: inline-block;
}
.consalt_header-right.style_two .header-button a {
    border-radius: 0;
    padding: 0;
    border-left: 0;
    border-right: 0;
    font-size: 16px;
    color: #0c6e6d;
    font-weight: 500;
    display: inline-block;
    position: relative;
}
.consalt_header-right.style_two .header-button a:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #0c6e6d;
    bottom: 0px;
    display: inline-block;
    transition: .5s;
}
.consalt_header-right.style_two .header-button a:hover:before {
    width: 107px;
}
.consalt_header-right.style_two .header-search-button.search-box-outer a {
    color: #0c6e6d;
    display: inline-block;
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgba(6,50,50,0.14901960784313725);
    line-height: 40px;
    text-align: center;
}
.sticky.consalt-header-area.style_five {
    background: transparent !important;
    border: none;
    box-shadow: none;
}
.sticky.consalt-header-area.style_five .row.style_bg {
    background: #fff;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}
.sticky.consalt-header-area.style_five .header-menu ul li a i {
    color: #063232 ;
}

/*
<!-- =======================================-->
 <!--start consalt slider area css-->
<!-- ======================================= -->*/
.consalt-slider-height {
    height: 935px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.consalt-slider-height-2 {
    height: 950px;
}
  
  .consalt-slider-bg {
    background: url(../images/home-five/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

.consalt-slider-bg2 {
    background: url(../images/home-five/banner3.png);
}

.consalt-slider-bg3 {
    background: url(../images/home-five/slider2.png);
  }

  .consalt-slider-bg,
  .consalt-slider-bg2,
  .consalt-slider-bg3 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in,
      -webkit-transform 9000ms ease;
  }
  
.consalt-slider-content {
    padding-top: 0;
    text-align: left;
}
h1.consalt-slider-title {
    margin-top: 15px;
    font-size: 56px;
    line-height: 70px;
    color: #063232;
    font-weight: 600;
}
p.consalt-slider-des {
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateX(91px);
    font-size: 16px;
    line-height: 26px;
    color: #6b7a7a;
    font-weight: 400;
    width: 41%;
    transition: all 2500ms ease;
    margin: 0 0 30px;
}
.consalt-slider-height .slider_info a {
    color: #063232;
}
.consalt-slider-height .slider_info span {
    color: #063232;
}
  .consalt-slider-title-box {
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(-150px);
  }
  .consalt-slider-btn {
    transform: translateY(150px);
    opacity: 0;
  }
  .consalt-slider-wrapper .swiper-slide.swiper-slide-active .consalt-slider-bg {
    -webkit-transform: scale(1.2);
    transform: scale(1.1);
  }
  .consalt-slider-wrapper
    .swiper-slide.swiper-slide-active
    .consalt-slider-bg2 {
    -webkit-transform: scale(1.2);
    transform: scale(1);
  }
.consalt-slider-wrapper .swiper-slide.swiper-slide-active .consalt-slider-title-box {
    opacity: 1;
    transform: translatey(-17px);
    transition: all 2500ms ease;
}
  .consalt-slider-wrapper
    .swiper-slide.swiper-slide-active
    .consalt-slider-btn {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2500ms ease;
  }
  
.consalt-slider-wrapper
.swiper-slide.swiper-slide-active
p.consalt-slider-des {
    opacity: 1;
    z-index: 3;
    position: relative;
    transform: translateX(-0px);
 }
  .slider-dots .swiper-pagination-bullet {
    display: flex;
    border-radius: 50%;
    opacity: 1;
    margin: 0px 6px;
    transition: 0.3s;
    margin-bottom: 13px;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid #4a4e56;
}
.consalt-slider-wrapper .swiper-pagination-bullet-active {
    background: #078588!important;
    border: 2px solid #078588!important;
}
.slider-dots {
    position: absolute;
    top: 37%;
    z-index: 1;
    right: 0;
}

/* cibsakt header right */

.consalt_header-right {
    text-align: right;
}
.consalt_header-right .header-button a {
    border-radius: 0;
    padding: 28px 33px;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.sidebar-btn {
    display: inline-block;
}
.nav-btn span i {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transform: rotate(180deg);
}
.header-search-button.search-box-outer {
    padding: 0px 28px 0 0;
    display: inline-block;
}
.header-search-button.search-box-outer a {
    color: #fff;
    display: inline-block;
    font-size: 15px;
}
.sticky.consalt-header-area.style_two .row.style_bg {
    background: transparent;
}
.consalt-header-area.inner_page {
    background: #F4F8F9;
    padding: 8px 56px 8px;
}

/*
<!-- ================================================-->
 <!--start consalt Feature Area Style Four css-->
<!-- ============================================== -->*/

section.feature_area.style_four {
    padding: 0;
    background: transparent;
    margin-top: -187px;
}
.feature_item.style_four {
    border: none !important;
    transform: translateY(0px) !important;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(145,161,161,0.15)) !important;
    padding: 40px 50px 39px 35px !important;
}
.feature_item.style_four::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #006E6D;
    content: "";
    display: block !important;
    z-index: -1;
    border-radius: 10px;
}
.feature_item.style_four:hover:before{
    width: 100%;
    left: 0;
}
.feature_icon img {
    transition: .5s;
}
.feature_item.style_four:hover .feature_icon img {
    filter: brightness(0)  invert(1);
}
.feature_item.style_four .feature_content h3 {
    transition: .5s;
    font-size: 22px;
    color: #063232 !important;
    font-weight: 600;
    margin: 20px 0 13px;
}
.feature_content p {
    transition: .5s;
}
.feature_item.style_four:hover .feature_content h3 {
    color: #fff !important;
}
.feature_item.style_four:hover .feature_content p {
    color: #bdd3d3 !important;
}
.feature_btns {
    margin-top: 27px;
}
.feature_btns a {
    font-size: 16px;
    color: #ffff;
    font-weight: 500;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #078588;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    overflow: hidden;
}
.feature_item.style_four:hover .feature_btns a {
    width: 132px;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #078588;
}
.feature_btns span {
    opacity: 0;
    margin-left: -86px;
    transition: .5s;
}
.feature_item.style_four:hover .feature_btns span {
    opacity: 1;
    margin-left: 0;
}
h4.feature_numbers {
    color: transparent;
    -webkit-text-stroke: #078588;
    -webkit-text-stroke-width: 1px;
    font-size: 55px;
    position: absolute;
    top: 17px;
    right: 35px;
}
section.about_area.style_five {
    padding: 80px 0 0;
}
.about_play.style_four {
    top: inherit;
    bottom: -2%;
    right: 5%;
}
.about_play.style_four a.banner-play-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: url(../images/home-five/frend-shep.png);
    line-height: 180px;
}
.about_play.style_two .text-inner svg {
    width: 76%;
}
.about_play.style_four .text-inner text {
    fill: #282f3c;
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 700;
}
.about_box p {
    margin: 15px 0 0;
}
.about-icon_box.style_three {
    padding: 0;
}
.about-icon_box.style_three .about_icon {
    margin-right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-color: #EAF5F7;
    line-height: 70px;
    text-align: center;
    top: 0;
}
.about-icon_box.style_three .about_icon:before {
    display: none;
}
.about-icon_box.style_three .about_content.style_two h3 {
    font-size: 24px;
    color: #063232;
    font-weight: 500;
    margin: 0;
}
p.about_qute {
    border-top: 1px solid #0785882e;
    margin-top: 30px;
    padding-top: 25px;
    position: relative;
}
p.about_qute::before {
    position: absolute;
    content: "";
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #007678;
    top: -1px;
    -webkit-animation: moveLeftBounces-two 15s linear infinite;
    animation: moveLeftBounces-two 15s linear infinite;
}
@keyframes moveLeftBounces-two {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(530px);
        transform: translateX(530px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* section title home five  */
.section_title.home_five h4 {
    position: relative;
    z-index: 1;
    display: inline-block;
}
.section_title.home_five h4:before {
    position: absolute;
    content: "";
    right: -59px;
    top: 7px;
    height: 4px;
    width: 50px;
    background: url(../images/home-five/sub_title-shpe.png);
    background-repeat: no-repeat;
    display: inline-block;
}

/* ========================================================
    <-- Start Consalt  Service Area Style Five -->
===========================================================*/

section.service_area.styel_five {
    background: url(../images/home-five/service_bg.png);
    padding: 238px 0 90px 0;
    top: 0;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: -23px;
}
section.service_area.styel_five .section_title.text-center {
    margin-bottom: 153px;
}
.service_single_item.style_five {
    display: block;
    transition: .5s;
    margin-bottom: 30px;
}
.service_single_item.style_five:hover {
    transform: translateY(-30px);
}
.service_icons {
    position: absolute;
    right: 0;
    left: 0;
    top: -11%;
    text-align: center;
    transition: .5s;
    width: 90px;
    height: 83px;
    line-height: 90px;
    border-radius: 50%;
    background: #e9eaec;
    margin: auto;
}
.service_icon2 {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background-color: #ffffff;
    line-height: 72px;
    text-align: center;
    margin-left: 9px;
    transition: .5s;
}
.service_single_item.style_five:hover .service_icon2 img {
    filter: brightness(0) invert(1);
}
.service_single_item.style_five:hover .service_icon2 {
    background: #0c6e6d;
}
.service_single_item.style_five .service_content {
    background: #fff;
    padding: 72px 20px 29px;
    border-radius: 15px;
    text-align: center;
}
.service_single_item.style_five .service_content h3 {
    color: #203535;
    font-size: 20px;
    margin: 0 0 32px;
    position: relative;
    display: inline-block;
    transition: .5s;
}
.service_single_item.style_five .service_content h3:hover {
    color: #006E6D;
}
.service_single_item.style_five .service_content h3:before {
    position: absolute;
    content: "";
    left: -26%;
    bottom: -5px;
    width: 20px;
    border-bottom: 2px solid #203535;
    border-left: 2px solid #203535;
    height: 20px;
    border-radius: 0 0 0 5px;
    transition: .5s;
}
.service_single_item.style_five .service_content h3::after {
    position: absolute;
    content: "";
    right: -26%;
    top: -5px;
    width: 20px;
    border-top: 2px solid #203535;
    border-right: 2px solid #203535;
    height: 20px;
    border-radius: 0 5px 0 0;
    transition: .5s;
}
.service_single_item.style_five .service_content h3:hover:before {
    border-bottom: 2px solid #0c6e6d;
    border-left: 2px solid #0c6e6d;
} 
.service_single_item.style_five .service_content h3:hover:after {
    border-top: 2px solid #0c6e6d;
    border-right: 2px solid #0c6e6d;
} 
.service_single_item.style_five .service_content:before {
    display: none !important;
}
.service_btns {
    margin-top: 37px;
}
.service_btns a {
    display: inline-block;
    background: #F1F9F9;
    padding: 7px 20px;
    font-size: 16px;
    color: #0c6e6d;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service_btns span {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    display: block;
    border-radius: 30px;
    background-color: #063232;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.service_btns a:hover, .service_btns a:focus {
	color: #ffff;
}
.service_btns a:hover span, .service_btns a:focus span {
	width: 300%;
	height: 500px;
}
.servoce_shape {
    transition: .5s;
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0;
}
.service_single_item.style_five:hover .servoce_shape {
    bottom: -40px;
    opacity: 1;
}

/* ========================================================
    <-- Start Consalt  Counter Area Style Sixs -->
===========================================================*/

section.counter_area.style_sixs {
    background: #002E30;
    border-radius: 0;
    padding: 67px 0 53px;
}
section.counter_area.style_sixs .counter_upper {
    border-bottom: 1px solid rgba(12,110,109,0.4);
    margin-bottom: 39px;
}
section.counter_area.style_sixs .consalt_btn a {
    color: #0D4847;
    background-color: #DFF1DF;
}
section.counter_area.style_sixs .consalt_btn a:before {
    background-color: #0D4847;
}
.counter-single-item.style_sixs {
    display: flex;
    align-items: center;
}
.counter-single-item.style_sixs .counter-content {
    display: inline-block;
    background: #003939;
    padding: 16px 84px 33px;
    margin-left: -25px;
    width: 85%;
}
.counter-single-item.style_sixs .counter_icon {
    width: 90px;
    height: 90px;
    border-radius: 5px;
    background-color: #0d4847;
    text-align: center;
    line-height: 90px;
    z-index: 2;
}
.counter-single-item.style_sixs .counter-_number h1 {
    font-size: 55px;
    color: #e4f1df;
    font-weight: 600;
}
.counter-single-item.style_sixs .counter-_number span {
    font-size: 55px;
    color: #e4f1df;
    font-weight: 600;
}
.counter-single-item.style_sixs .counter_title {
    margin-left: 0;
}
.counter-single-item.style_sixs .counter_title:before {
    display: none;
}
.counter-single-item.style_sixs .counter_title h5 {
    font-size: 16px;
    color: #bdd3d3;
    font-weight: 400;
    text-transform: capitalize;
}

/* ========================================================
    <-- Start Consalt  Case Study Area Style Three -->
===========================================================*/

section.case-study-area.style_three {
    background: #E9EBED;
    padding: 105px 0 0;
}
.case-study-single-box.style_two .case-study-thumb {
    height: 400px;
    border-radius: 10px 10px 0 0;
}
.case-study-single-box.style_two .case-study-thumb img {
    border-radius: 0;
}
.case-study-single-box.style_two:hover .single_portfolio_icon {
    opacity: 1;
    top: 38%;
}

/* ========================================================
    <-- Start Consalt  Call Area Style Four -->
===========================================================*/

section.call_area.style_four {
    background: #002E30;
}
section.call_area.style_four .call-do-action-info {
    border-left: 1px solid #226C6B;
    border-right: 1px solid #226C6B;
    padding: 0 88px 0;
}
section.call_area.style_four .call-do-social_icon {
    margin-right: 20px;
}
section.call_area.style_four .call_info p {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 26px;
    color: #bdd3d3;
    font-weight: 400;
}
section.call_area.style_four .call_info h3 {
    margin: 0;
}

/* ========================================================
    <-- Start Consalt  Testimonal Style Five -->
===========================================================*/

section.testimonial_area.style_five {
    background: url(../images/home-five/testi_bg.png);
    border-radius: 0;
    padding: 120px 0 254px 291px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
.testimonial_item.style_five {
    background: transparent;
    padding: 0;
}
.testimonial_item.style_five .testimonial-content {
    background: #fff;
    padding: 40px 2px 71px 30px;
    position: relative;
    border-radius: 10px;
}

.testimonial_item.style_five .testimonial-content p {
    font-size: 16px;
    line-height: 26px;
    color: #6b7a7a;
    font-weight: 400;
}
.testimonial_item.style_five .testimonial-content:before {
    content: "";
    position: absolute;
    right: 12%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 20px solid #fff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    transition: .5s;
}
.testimonial_item.style_five:hover .testimonial-content:before {
    border-top: 20px solid #0D6E6C;
}
.testimonial_item.style_five .testimonial-content::after {
    position: absolute;
    content: "";
    right: 22px;
    background: url(../images/home-five/arrow.png);
    height: 50px;
    width: 62px;
    background-repeat: no-repeat;
}
.testimonial_item.style_five .testi-star {
    background-color: #0D6E6C;
    display: inline-block;
    padding: 12px 95px  10px 40px;
    position: absolute;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
    border-radius: 0 0 0 10px;
    bottom: 0;
    left: 0;
}
.testimonial_item.style_five .testi-star i {
    font-size: 14px;
    color: #E1F2E1;
    margin: 0;
}
.testimonial_item.style_five .tesit-auothor {
    margin-top: 35px;
    margin-left: 30px;
}
.testimonial_item.style_five .tesit-auothor .bio h4.name {
    margin: 0;
    font-size: 20px;
    color: #063232;
    font-weight: 500;
}
.testimonial_item.style_five .tesit-auothor .bio h5.designation {
    font-size: 16px;
    color: #6b7a7a;
    font-weight: 400;
}
section.testimonial_area.style_five .section_title p {
    width: 85%;
}
.consalt_btn.home_five {
    text-align: left;
}
.consalt_btn.home_five a:hover:before {
    width: 129px;
}
section.blog_area.style_five {
    background: #fff;
    padding: 0 0 0;
    margin-top: -32px;
}
section.blog_area.style_five .single-blog-box {
    margin-bottom: 30px;
    filter: drop-shadow(0px 10px 40px rgba(168,185,184,0.25));
    padding: 30px 30px 0;
    background: #fff;
    border-radius: 10px;
}
section.contact_form {
    padding-top: 90px;
}
.row.form_bg {
    background: #e9eaec;
    margin: 0;
    padding: 28px 70px 32px;
    border-radius: 20px;
}
.form_content h3 {
    font-size: 30px;
    color: #203535;
    font-weight: 600;
}
.form_content h5 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #203535;
    font-weight: 500;
    margin: 25px 0 24px;
}
section.contact_form .consalt_btn.home_five {
    text-align: right;
}
section.contact_form .consalt_btn a:before {
    display: none;
}
section.footer_area.style_five {
    background: url(../images/home-five/footer_bg.png);
    border-radius: 0;
    padding: 245px 0 27px 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -15px;
}


/* ===============================
   Start Slider Area Style Sixs
==================================*/
section.hero_slider.style_sixs {
    background: url(../images/home-six/hero_bg.png);
    background-size: cover;
    background-position: center center;
    z-index: 0;
    border-radius: 0 0 20px 20px;
    margin: 0 20px 20px 20px;
    overflow: hidden;
}
.main_hero {
    height: 830px;
}
.main_hero .hero_btn a {
    border-radius: 5px;
}

/* Hero Slider Common Style */

.hero_slide_content h1 {
    font-size: 56px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(-150px);
}
.hero_slide_content p {
    color: #a3b7b7;
    width: 85%;
    margin: 18px 0 33px;
}

.hero_slide_content>* {
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
}

.hero_slide_content>*:nth-child(1) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.hero_slide_content>*:nth-child(2) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.hero_slide_content>*:nth-child(3) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.hero_slide_content>*:nth-child(4) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
.hero-thumbs {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
}
.hero-thumbs .video-icon {
    position: absolute;
    left: 1%;
    top: 0%;
}
.hero-thumbs .video-icon a {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #0c6e6d;
    line-height: 120px;
    font-size: 18px;
    font-style: italic;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
} 
@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.3), 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.3), 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.3), 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3), 0 0 0 30px rgba(255,255,255, 0);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0.3), 0 0 0 20px rgba(255,255,255, 0.3), 0 0 0 30px rgba(255,255,255, 0)
    }
}

/* Active Slide Animation */
.swiper-slide-active .hero_slide_content>* {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.swiper-slide-active .hero-thumbs {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.banner_list {
    margin-top: 35px;
}
.banner_list ul li {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffffde;
}
.banner_list ul li i {
    color: #0c6e6d;
    background-color: #fff;
    font-size: 18px;
    padding: 1px 4px;
    margin-right: 10px;
}
.banner_list ul li span {
    margin-right: 12px;
}

/* Swiper Pagination */
.slider-dotss .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    margin: 0px 6px;
    transition: 0.3s;
    margin-bottom: 13px;
    width: 12px;
    height: 12px;
    background: #D1DFDF;
    position: relative;
}
section.hero_slider.style_sixs .swiper-pagination-bullet-active {
    background: #078588!important;
    height: 14px;
    width: 14px;
}
.slider-dotss .swiper-pagination-bullet:after {
    position: absolute;
    content: "";
    left: -3px;
    top: -3px;
    border: 1px dashed #078588;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    transform: scale(0);
    transition: .5s;
}
.slider-dotss .swiper-pagination-bullet-active.swiper-pagination-bullet:after {
    transform: scale(1);
}
.slider-dotss {
    position: absolute;
    bottom: -13px;
    z-index: 1;
    right: 0;
    left: 0;
    text-align: center;
}








/* ================ All Animation CSS ===================*/

.rotate {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-position: center center;
}
@keyframes rotateme {
from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

.bounce-animate {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate2 {
    animation-name: float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate3 {
    animation-name: float-bob3;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob3;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob3;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob3;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate4 {
    animation-name: float-bob4;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob4;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob4;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob4;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate5 {
    animation-name: float-bob5;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate-slow {
    animation-name: float-bob5;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate-3 {
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob6;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob6;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob6;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}
@keyframes float-bob3 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob4 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob5 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob6 {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}
@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/*--==============================================->
  <!-- Consen Animation Dance -->
 ==================================================-*/
 .dance3 {
    -webkit-animation: dance3 8s alternate infinite;
    animation: dance3 8s alternate infinite;
}

@keyframes dance3 {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

.dance {
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

.dance2 {
    -webkit-animation: dance2 4s alternate infinite;
    animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(25px, -25px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -25px, 25px);
    }
}

.watermark-animate {
    -webkit-animation: watermark-animate 8s infinite;
    animation: watermark-animate 8s infinite;
    animation-direction: alternate-reverse;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes watermark-animate {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}



/*=====================================
<-- Constre Search Box Css -->
=======================================*/
/*nav button*/
.search-box-btn.search-box-outer {
    display: inline-block;
}

.nav-btn.navSidebar-button {
    display: inline-block;
    position: relative;
    top: 2px;
    margin: 0 12px;
    cursor: pointer;
}

.nav-btn.navSidebar-button a i {
    font-size: 15px;
    width: 32px;
    line-height: 35px;
    height: 32px;
    border-radius: 50px;
    text-align: center;
    background: #efefef;
    display: inline-block;
    color: #232323;
    position: relative;
    z-index: 1;
    margin-left: 15px;
    transition: .5s;
    cursor: pointer;
}

.nav-btn.navSidebar-button a i:after {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #006666;
    border-radius: 50%;
    transition: .5s;
    transform: scale(0);
}

.nav-btn.navSidebar-button a i:hover:after {
    transform: scale(1);
}

.nav-btn.navSidebar-button a i:hover {
    color: #fff;
}

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 23px;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #272727;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color: #006666;
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}

.xs-bg-black {
    background-color: #006666;
}

/*html css*/
.nav-logo {
    margin: 0 0 50px;
}
.content-thumb-box {
    margin-bottom: 20px;
}
.content-thumb-box img {
    width: 100%;
    border-radius: 10px;
}

.content-box h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.content-box p {
    display: inline-block;
    color: #fff;
    padding: 15px 0 0;
}

a.theme-btn.btn-style-two span {
    color: #fff;
    font-size: 20px;
}

a.theme-btn.btn-style-two i {
    color: #006666;
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

ul.list-style-one li {
    display: block;
    list-style: none;
    color: #fff;
    padding: 16px 0 0;
    overflow: hidden;
}

ul.list-style-one li i {
    margin-right: 10px;
}

ul.list-style-one li span {
    font-size: 20px;
    font-weight: 600;
    color: #006666;
    margin: 0 10px 0 0px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #006666;
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background: #006666;
    color: #fff;
}

.flaticon-multiply:before {
    content: inherit;
}

button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}
@media screen and (max-width: 767px) {
    .loading-screen .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    .loading-screen .animation-preloader .txt-loading {
        font: bold 3.5em "Montserrat", sans-serif;
    }
}

@media screen and (max-width: 500px) {
    .loading-screen .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .loading-screen .animation-preloader .txt-loading {
        font: bold 2em "Montserrat", sans-serif;
    }
}
.service_text{
    font-size: 14px;
    color: #DFDFDF;
    margin-bottom: 0px;
    margin-top: 10px;
}
.service_single_item:hover .service_text{
    color: #063232;
}
.team_thumb img{
    border-radius: 15px;
}



.viewport{
    position:relative;

    border-radius:12px;
    padding:18px;
  }

  /* track and items */
  .track{
    display:flex;
    gap:var(--gap);
    align-items:stretch;
    will-change:transform;
    user-select:none;
    gap: 15px;
  }

  .item{
    min-width:260px;
    flex:0 0 auto;
    background:linear-gradient(180deg,var(--card), #061224);
    padding:16px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
    border: 1px solid #e7e7e7;
  }
  .item:hover{
    background-color: #063232;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
    .item:hover h3{
        color: #fff;
    }
  .item .date{font-size:12px;color:var(--accent);font-weight:600;margin-bottom:6px}
  .item h3{margin:0 0 8px;font-size:15px}
  .item p{margin:0;color:var(--muted);font-size:13px;line-height:1.35}

  /* controls */
  .controls{
    position:absolute;
    right:14px;
    top:14px;
    display:flex;
    gap:8px;
  }
  .btn{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.03);
    color:inherit;
    padding:8px 10px;
    border-radius:8px;
    font-size:13px;
    cursor:pointer;
    backdrop-filter: blur(4px);
  }
  .btn:hover{transform:translateY(-2px)}
  .legend{position:absolute;left:14px;top:14px;color:var(--muted);font-size:13px;padding:6px 8px;border-radius:8px;background:rgba(0,0,0,0.12)}

  /* smaller screens */
  @media (max-width:640px){
    .item{min-width:220px}
    :root{--gap:18px}
  }





  /* ====================================================
<-- Start Consalt Inner page Breadcumb Area -->
========================================================*/

.consalt-header-area.inner_page {
    background: #F4F8F9;
    padding: 8px 56px 8px;
}
.consalt-header-area.inner_page .header-button.style_two a {
    background: #0c6e6d;
    padding: 15px 35px;
    border: 1px solid transparent;
    border-radius: 30px;
}
.consalt-header-area.inner_page .nav-btn span i {
    color: #0c6e6d;
    width: inherit;
    height: inherit;
    border-radius: 0;
    background-color: transparent;
    line-height: inherit;
}
.sticky.consalt-header-area.inner_page .header-button.style_two a {
    border: 1px solid #fff;
}
.sticky.consalt-header-area.inner_page .nav-btn span i {
    color: #fff;
}

.breadcumb-area {
    background: url(../images/breadcrumb_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 182px 0 202px;
    position: relative;
}

.breadcumb-area.style_two {
    background: url(../images/inner-img/breadcumb2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 172px 0 192px;
    position: relative;
}
.breadcumb-area:before {
    position: absolute;
    content: "'";
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
    background: #F4F8F9;
    z-index: -1;
}

.breadcumb-title h4 {
    padding-bottom: 20px;
    font-size: 48px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.breadcumb-title h4:before {
    position: absolute;
    z-index: -1;
    content: "";
    left: 0;
    bottom: 11px;
    height: 12px;
    width: 66%;
    background: url(../images/inner-img/line_shape.png);
    background-repeat: no-repeat;
    margin: auto;
    text-align: center;
    right: 0;
}
.breadcumb-content.style_two span.category {
    background-color: #0c6e6d;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    border-radius: 0 30px 30px 0;
    padding: 3px 18px;
    margin-bottom: 12px;
}
.breadcumb_meta-blog p span {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    margin-right: 31px;
    position: relative;
}
.breadcumb_meta-blog p span:before {
    position: absolute;
    content: "";
    left: -21px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #0c6e6d;
}
.breadcumb-content ul li {
    display: inline-block;
    margin-right: 0;
    color: #fff;
}

.breadcumb-content ul li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    position: relative;
}
.breadcumb-content ul li a i {
    margin-right: 4px;
}
.breadcumb-content ul li.rotates i {
    transform: rotate(-27deg);
    margin-right: 2px;
    display: inline-block;
    font-size: 14px;
}

/* =================================
   Start Inner Page Marquee Area
==================================== */
.about_area.style_two{
    background: #ffff;
    position: relative;
    padding: 80px 0 80px;
}
.marquee_area.inner_page {
    margin: 0;
}
.marquee_area.style_two.inner_page:before {
    display: none;
}
 
.style_two .section_title h1{
    line-height: 60px;
}
.style_two .section_title.text-center p{
    width: 100%;
}

/* =========================================================
  <--- Start consalt Consalt Header Area Style Three CSS --->
============================================================ */

.consalt-header-area.style_three {
    margin-bottom: 0;
    margin-top: 0;
    /* padding: 8px 0 8px; */
}
.consalt-header-area.style_three .header-menu {
   margin-top: 0px; 
}

.consalt-header-area.style_three .header-menu ul li a {
    color: #063232;
    padding: 28px 0 28px;
}
.consalt-header-area.style_three .header-menu ul li {
    margin: 0 20px 0;
}
.consalt-header-area.style_three .header-menu ul li span {
    color: #063232;
}
.consalt-header-area.style_three  .header-search-button.search-box-outer {
    padding: 0px 35px 0 0;
}
.consalt-header-area.style_three .header-search-button a {
    color: #063232;
    display: inline-block;
    font-size: 15px;
}
.header-button.style_two a {
    background: #0c6e6d;
    padding: 15px 31px;
    border-radius: 5px;
    border: 1px solid transparent;
}
.header-button.style_two a i {
    margin-left: 5px;
}
.consalt-header-area.style_three  .nav-btn.navSidebar-button {
    top: 6px;
    margin: 0 0 0 16px;
}
.consalt-header-area.style_three .nav-btn span i {
    color: #0c6e6d;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background-color: #f0f4f5;
    line-height: 60px;
}

/* Sticky */

.sticky.consalt-header-area.style_three {
    background: url(../images/counter_bg.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}
.sticky.consalt-header-area.style_three .header-menu ul li a {
    color: #ffff !important;
}
.sticky.consalt-header-area.style_three .header-menu ul.sub_menu li a {
    color: #006666!important;
}
.sticky.consalt-header-area.style_three .header-menu ul.sub_menu li a:hover {
    color: #ffff!important;
}


.sticky.consalt-header-area.style_three .header-search-button a {
    color: #fff !important;
}
.sticky .header-button.style_two a {
    border: 1px solid #fff !important;
}
a.active_sticky {
    display: none;
}
.sticky a.active_sticky {
    display: block;
}
.sticky a.active_header {
    display: none;
}
