/*-- Google Font --*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

/*-- Common Style --*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: poppins;
  src: url(assets/css/poppins-yw64Z.ttf);
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-poppins);
  font-size: var(--fs-base);
  letter-spacing: 1px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-secondary);
}

/* a:hover {
  color: #f67366;
} */

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---Custom Container--- */
@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}

:root {
  --fs-xl: 2.5rem; /* 40px */
  --fs-lg: 2rem;   /* 32px */
  --fs-md: 1.75rem; /* 28px */
  --fs-sm: 1.5rem; /* 24px */
  --fs-xs: 1.25rem; /* 20px */
  --fs-base: 0.9rem;   /* 16px */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-regular: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-dark: 900;
  --ff-poppins: 'Poppins', sans-serif;
  --ff-bella: 'bella';
  --color-red: #F8AC9E; 
  --color-red-dark: #e18d7e;
  --color-red-light: #ffe5e0;
  --color-blue: #045396;  
  --color-blue-dark: #4774AF;
  --color-blue-light: #e5edf7; 
  --body-color: #555;
  --border-color: #ffffff1f;
  --dark: #0a1938;
}

.ffpoppins {
  font-family: var(--ff-poppins);
}
.ffbella {
  font-family: var(--ff-bella);
}

/* color shade */
.text-red {
    color: var(--color-red);
}
.text-red-dark {
    color: var(--color-red-dark);
}
.text-red-light {
    color: var(--color-red-light);
}
.bg-red {
  background: var(--color-red);
}
.bg-red-dark {
  background: var(--color-red-dark);
}
.bg-red-light {
  background: var(--color-red-light);
}
.text-blue {
    color: var(--color-blue);
}
.text-blue-dark {
    color: var(--color-blue-dark);
}
.text-blue-light {
    color: var(--color-blue-light);
}
.bg-blue {
    background: var(--color-blue);
}
.bg-blue-dark {
    background: var(--color-blue-dark);
}
.bg-blue-light {
    background: var(--color-blue-light);
}

.border-red {
  border: 1px solid var(--color-red);
}

.text-grey {
  color: var(--body-color);
}

.btn-red {
  background: var(--color-red-dark);
  color: #fff;
  border: 1px solid var(--color-red-dark);
}
.btn-red:hover {
  background: transparent;
  color: var(--color-red-dark);
  border: 1px solid var(--color-red-dark);
}



/* size */

.heading-xl {
    font-size: var(--fs-xl);
    font-weight: var(--font-weight-bold);
    font-family: var(--ff-poppins);
}
.heading-lg {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-bold);
    font-family: var(--ff-poppins);
}
.heading-md {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-semibold);
    font-family: var(--ff-poppins);
}
.heading-sm {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-normal);
    font-family: var(--ff-poppins);
}
.heading-xs {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-normal);
    font-family: var(--ff-poppins);
}
.base {
  font-size: var(--fs-base);
  font-weight: var(--font-weight-regular);
  color: #fff;
  background: #1a6e72;
}

.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}
.fs18 {
  font-size: 18px;
}

.fwl {
    font-weight: var(--font-weight-light);
}
.fwn {
    font-weight: var(--font-weight-normal);
}
.fwr {
    font-weight: var(--font-weight-normal);
}
.fws {
    font-weight: var(--font-weight-semibold);
}
.fwb {
    font-weight: var(--font-weight-bold);
}
.fwd {
    font-weight: var(--font-weight-dark);
}


/*----- Header----*/

.header_top .infoicon  {
  color: #fff;
  font-weight: 600;
}
/* .header_top {
  border-radius: 5px;
} */

body .header_right .social-link i {
  background: transparent !important;
  width: 20px;
  height: 20px;
  color: #fff;
}

body .header_right .social-link ul {
  gap: 20px;
}

.header-area {
  padding: 10px 0;
  border-bottom: 3px solid #f78282b8;
  position: relative;
}

.sticky {
  -webkit-animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background: var(--bs-primary);
}


.header-logo img {
  width: 160px;
  object-fit: cover;
  /* filter: invert(1); */
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  justify-content: end;
  padding-left: 100px;
}


.main-nav>ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}



.main-nav>ul>li {
  display: inline-block;
}
.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  color: var(--bs-white);
  padding: 21px 0;
  letter-spacing: 1px;
  
}

.main-nav > ul > li > a:before {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: var(--bs-primary);
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
}

.main-nav > ul > li:hover > a:before {
    width: 100%;
}

.main-nav>ul>li:hover>a {
  color: var(--bs-primary);
}


.arrow {
  font-size: 24px;
}

.main-nav>ul>li:hover>.drop-menu, .main-nav>ul>li:hover>.mega_drop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* ---Mega Drop Menu--- */
/* .drop-holder, .mega_holder {
  position: relative;
} */


.mega_inner > li > a {
  padding: 10px 25px;
  display: inline-block;
  width: 23%;
  font-size: 14px;
  background: #ffefeccf;
  border-bottom: 1px solid #f6736621;
  clip-path: polygon(93% 0%, 100% 50%, 93% 100%, 0% 100%, 0 46%, 0% 0%);
}

.mega_inner > li.open > a {
  background: #f8ac9e;
  display: inline-block;
}

.mega_inner .mega_data {
  display: none;
  z-index: 99;
}
.mega_inner > li.open .mega_data {
  display: block;
}

.mega_data {
  position: absolute;
  top: 27px;
  left: 31%;
  width: 60%;
  height: 100%;
}

.mega_title {
  color: #045396;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 20px;
}

.megabtn {
  margin-top: 100px;
}


.mega_drop {
  width: 100% !important;
  border-radius: 0 !important;
}

.mega_drop > .mega-row {
  max-width: 1140px;
  margin: auto;
}

.mega_inner_card:hover {
  background: var(--color-red-light) !important;
  cursor: pointer;
}

.drop-menu, .mega_drop {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 330px;
  padding-left: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: left;
  z-index: 2;
  transform-origin: 0 0 0;
  transform: scaleY(0);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.drop-menu>li>a {
    transition: all 0.2s linear;
    font-weight: 300;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
}

.drop-menu>li>a:before {
    content: '\f35b';
    font-family: remixicon !important;
    position: absolute;
    left: 0;
    transition: all 0.5s;
    opacity: 0;
}

.drop-menu>li>a:hover:before {
    left: 15px;
    transition: all 0.5s;
    opacity: 1;
}

.drop-menu>li>a:hover {
  padding-left: 10px;
  color: var(--bs-primary);
  transition: all 0.2s linear;
}


.header-btns {
  display: flex;
  gap: 30px;
}
.space-y{
  padding-block: 40px;
}

.space-y-index {
  padding-block: 30px;
  padding-top: 0;
  padding-bottom: 100px;
  background: #1a6e72;
}

.yrs{
  animation: av 4s 3s infinite both !important;
  transform: scale(.5); 
  opacity: 0;
}

@-webkit-keyframes av {

  50% {
        opacity: 1;
        transform: scale(1); 
  }
  100% {
    opacity: 1;
    transform: scale(.5); 
}
}



/* ---Main Slider--- */
.slide-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-inner.style-1 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 550px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}





.hero_left {
  margin-top: 200px;
}
/*----------------------------------------*/
/*  02. Animation
/*----------------------------------------*/
.swiper-slide .slide-inner .slide-content {
  opacity: 0;
}

.swiper-slide.swiper-slide-active .slide-inner .slide-content {
  opacity: 1;
}

/* ---Slider Animation--- */
.animation-style-01.swiper-slide-active .slide-content .badges {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (max-width: 991px) {
  .animation-style-01.swiper-slide-active .slide-content .badges {
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}

.animation-style-01.swiper-slide-active .slide-content .title {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (max-width: 991px) {
  .animation-style-01.swiper-slide-active .slide-content .title {
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}

.animation-style-01.swiper-slide-active .slide-content p {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (max-width: 991px) {
  .animation-style-01.swiper-slide-active .slide-content p {
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}

.animation-style-01.swiper-slide-active .slide-content .hero_btn {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (max-width: 991px) {
  .animation-style-01.swiper-slide-active .slide-content .hero_btn {
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}

.animation-style-01.swiper-slide-active .inner-img {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (max-width: 991px) {
  .animation-style-01.swiper-slide-active .inner-img {
    -webkit-animation-name: zoomIn;
            animation-name: zoomIn;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
}

.title {
  font-size: 60px;
  line-height: 65px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #fff;
  color: #fff0;
}

.titles {
  font-size: 27px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: yellow;
}


.titless {
  font-size: 30px;
  line-height: 50px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #fff;
  color: #fff0;
}










/*----------------------------------------*/
/*  05. Navigation
/*----------------------------------------*/
/* ---Swiper Arrow--- */
.swiper-button-next, .swiper-button-prev {
  background-color: #525252;
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 16px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--bs-info);
  color: #ffffff;
}
.swiper-arrow:hover .swiper-button-next, .swiper-arrow:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.swiper-arrow-sm-size .swiper-button-next, .swiper-arrow-sm-size .swiper-button-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.swiper-arrow-sm-size .swiper-button-next:after, .swiper-arrow-sm-size .swiper-button-prev:after {
  font-size: 12px;
}
.swiper-arrow.with-radius .swiper-button-next, .swiper-arrow.with-radius .swiper-button-prev {
  color: #abd373;
  border-radius: 100%;
}
.swiper-arrow.with-radius .swiper-button-next:hover, .swiper-arrow.with-radius .swiper-button-prev:hover {
  background-color: #abd373;
  border-color: #abd373;
  color: #ffffff;
}


/* ---Custom Button--- */
.btn-custom-size {
  line-height: 27.8px;
  font-size: 15px;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 10px;
  padding: 5px 24px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid white;
  color: #ffff00;
}

section.service-area.space-y {
  background: #1a6e72;
  padding-top: 80px;
  padding-bottom: 60px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.callimg img {
  width: 30px;
  filter: invert(1);
}


/* ---Global Overlay--- */
.global-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  visibility: hidden;
}

.global-overlay.overlay-open {
  visibility: visible;
  cursor: pointer;
}



/*----Slider-----*/
.hero-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 90vh;
    justify-content: center;
    padding: 60px;
    background-blend-mode: color-burn;
}

.hero-title {
    font-size: 6rem;
    font-family: var(--ff-poppins);
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    background-size: 500% auto;
    display: inline-block;
    background-position: 150% center;
    background-repeat: no-repeat;
    margin: 0;
    line-height: 7rem; 
}


.hero-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #10b362;
}


/* button.btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background:red;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
} */

.form-area {
  padding: 50px 0 100px;
  background-blend-mode: color;
}

.form-inner {
  border-radius: 19px;
}

.form-inner label {
  color: #ffffff;
  text-transform: capitalize;
  line-height: 15.4px;
  background: var(--bs-primary);
  position: absolute;
  top: 12px;
  z-index: 9;
  left: 30px;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
}

.input-group .form-control {
  background: transparent;
  color: #000;
  border-color: var(--bs-primary);
  text-indent: 60px;
  font-size: 14px;
  height: 50px;
  border-radius: 12px !important;
  font-weight: 300;
  letter-spacing: 1px !important;
}



textarea.form-control.h-auto {
  line-height: 32px;
}

.input-field span {
  color: #42e594;
}

.input-group .form-control::placeholder {
  color: #000;
}


span.ri-shopping-bag-fill {
  color: #9593A0;
}

.input-field {
  position: relative;
}

.input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  bottom: 0;
  background: transparent;
  border: 0;
}

/*----Offcanvas-----*/
.mobile-menu_wrapper .offcanvas-body {
  background-color: #e6e6ff;
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: visible;
  overflow-x: hidden;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 500ms ease;
  padding: 0;
}

.mobile-menu_wrapper.open .offcanvas-body {
  visibility: visible;
  left: 0;
  opacity: 1;
  z-index: 999;
}


@media (max-width: 479px) {
  .mobile-menu_wrapper .offcanvas-body {
    width: 100%;
  }
}

.mobile-menu_wrapper .inner-body {
  padding: 50px 20px;
}

.mobile-menu_wrapper .offcanvas-top {
  display: flex;
  justify-content: flex-end;
  padding: 0 25px 30px;
  height: auto;
  border-bottom: 0;
  transform: none;
}

.mobile-menu_wrapper .button-close {
  font-size: 20px;
  color: #141414;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu_wrapper .mobile-menu>li {
  height: 100%;
}

.mobile-menu_wrapper .mobile-menu>li>a span {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu_wrapper .mobile-menu li {
  position: relative;
}


.mobile-menu_wrapper .mobile-menu li>.menu-expand {
  position: absolute;
  right: 0;
  top: 2px;
  width: 50px;
  height: 100%;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin-right: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 20px;
}

.mobile-menu_wrapper .mobile-menu li a {
  color: #141414;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  line-height: 40px;
}

.mobile-menu_wrapper .mobile-menu li a i {
  font-size: 24px;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu {
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li a {
  text-transform: uppercase;
  font-size: 11px;
  color: #ffffff;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li.menu-open>a {
  color: #f67366;
}


.mobile-menu_wrapper .mobile-menu li.menu-open>a {
  color: #f67366;
}
/* 
.mobile-menu_wrapper .mobile-menu li.menu-open>a>span>i:before {
  content: '\e682';
} */

.accordion-item {
  background: transparent;
  border: 0;
}

.accordion-button, .accordion-button:not(.collapsed) {
  padding: 0;
  background: transparent;
}

.accordion-button:not(.collapsed) .wrkcard  {
  background-color: #fff;
  /* border-color: var(--color-blue); */
}

/* .accordion-button:not(.collapsed) img {
  filter: invert(22%) sepia(97%) saturate(1203%) hue-rotate(184deg) brightness(95%) contrast(98%);
} */

.accordion-button::after {
  display: none;
}

.accordion-collapse {
  position: absolute;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  overflow: hidden;
}

.mega_inner_card {
  padding-inline: 10px;
}

.hero-content {
  min-height: 550px;
  position: relative;
}

span.nmr {
  font-size: 40px;
  font-weight: 900;
  border: 1px solid #ffc107;
  padding-inline: 10px;
  line-height: 43px;
}

.brand_item {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
}
.brand_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.brand_item:hover img {
  filter: grayscale(0);
  cursor: pointer;
}

.client_area {
  margin-bottom: 200px;
  height: 350px;
}

.auimg {
  position: relative;
  margin-top: -70px;
}
.auimg i {
  width: 30px;
  height: 30px;
  display: flex;
  background: var(--bs-primary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
}

.swiper-button-next, .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--bs-primary);
  border-radius: 12px;
  top: 60%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 800;
  color: var(--bs-white);
}

.swiper-button-next {
  opacity: 0;
  right: -34px;
  transition: all 0.4s linear;
}

.swiper-button-prev {
  left: -34px;
  opacity: 0;
  transition: all 0.4s linear;
}

.clientslider:hover .swiper-button-prev {
  left: -14px;
  opacity: 1 !important;
  visibility: visible;
}

.clientslider:hover .swiper-button-next {
  right: -14px;
  opacity: 1 !important;
  visibility: visible;
}

.service_item * {
  transition: all 0.4s linear;
}

.sv_img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.sv_img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
}

.svicon img {
  width: 80px;
  height: 80px;
  background: var(--bs-primary);
  border-radius: 50%;
  display: block;
  margin: auto;
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 2px;

}



.service_info {
  position: relative;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.service_item:hover .service_info {
  background: #1a6e72;
  border-radius: 0 0 10px 10px;
  color: #fff;
  cursor: pointer;
}
.service_item:hover p {
  color: #fff;
}

.service_item:hover .svicon img {
  border: 2px solid #fff;
}

.phone a {
  font-size: 20px;
}

.yrs {
  position: absolute;
  top: 183px;
  right: 30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 5px solid rgb(167 192 223);
}

.abfeat a {
  display: inline-flex;
}

.yh {
  font-size: 65px;
  font-weight: bold;
  line-height: 65px;
}

.yh span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
}

.clientslider .swiper-wrapper {
  margin-bottom: 50px;
}

/*------ Footer ---------*/

.footer-top {
  padding: 50px 0;
}

.footer-widget-logo {
  padding-bottom: 20px;
}

.footer-widget-title {
  color: #045396;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.footer-widget-desc {
  line-height: 21px;
  color: #fff;
  padding-right: 40px;
}

ul.footer-widget-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.footer-widget-list-item>li a {
  color: #121a2d;
  font-weight: 300;
  font-size: 16px;
  line-height: 35px;
}
.footer-widget-list-item>li a:hover {
  color: var(--bs-primary-dark);
}

.social-link ul {
  display: flex;
  gap: 10px;
}

.social-link i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  font-size: 20px;
  color: #045396;
  transition: all 0.4s;
}

.social-link i:hover {
  background: var(--color-blue-dark);
  color: #fff;
}


.footer-top .col-lg-4 {
position: relative;
}

.footer-top .col-lg-4:nth-child(2):before, .footer-top .col-lg-4:nth-child(2):after {
  content: '';
  width: 1px;
  height: 100%;
  background: rgb(18 26 45 / 38%);
  position: absolute;
  left: -30px;
}

.footer-top .col-lg-4:nth-child(2):after {
  left: auto;
  right: -20px;
  top: 0;
}

/* ---Copyright--- */
.copyright {
  border-top: 1px solid #E5E5E566;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

.count-wrap * {
  color: var(--bs-primary);
  font-size: 50px;
  font-weight: 700;
}
/* 
.counter-item {
  background: #080e1c;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #686868;
} */

.count-title {
  font-size: 16px;
  font-weight: 300;
  color: #b3b3b6 !important;
}


.portcard:hover .trail {
  animation: trail 1s ease-in-out;
}

@keyframes opacity {
  0% {
    border-right: 1px solid transparent;
  }

  10% {
    border-right: 1px solid var(--bs-primary);
  }

  80% {
    border-right: 1px solid var(--bs-primary);
  }

  100% {
    border-right: 1px solid transparent;
  }
}

@keyframes trail {
  0% {
    background: linear-gradient(90deg, #bd9f6700 90%, #17B667 100%);
    opacity: 0;
  }

  30% {
    background: linear-gradient(90deg, #bd9f6700 70%, #17B667 100%);
    opacity: 1;
  }

  70% {
    background: linear-gradient(90deg, #bd9f6700 70%, #17B667 100%);
    opacity: 1;
  }

  95% {
    background: linear-gradient(90deg, #bd9f6700 90%, #17B667 100%);
    opacity: 0;
  }
}



.mqscroll .mqtext {
  min-width: fit-content;
  width: fit-content !important;
}

.mqscroll .mqtext:last-child {
  min-width: 2170px;
}

.service-inner-area .svinfo {
  bottom: -10px;
  left: 20px;
}

.backend .svinfo {
  text-align: left;
  bottom: -20px;
}
.mobile .svinfo {
  text-align: left;
  bottom: -20px;
  left: 10px;
}

.rental {
  margin-top: -100px;
  position: relative;
  z-index: 99;
  width: 94%;
}

.bckptn {
  position: absolute;
  z-index: -1;
  top: 110px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.2;
}

.hero_img > div > img {
  width: 90%;
}

.hero_left {
  animation: movetop 5s linear infinite;
  transition: all 0.5s;
}

@keyframes movetop {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero_right {
  animation: movedown 5s linear infinite;
  transition: all 0.5s;
}

@keyframes movedown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}

.title_wrap {
  background: #5e5eee61;
  padding: 30px;
  border-radius: 0 100px 100px 0;
}





/* custom css r */
.service_item {
  border: 2px solid #1be3ed;
  border-radius: 10px;
}

.service-item {
  border: 5px solid #07474a;
  border-radius: 10px;
  
 
  
}

p.heading-dr {
  color: #fff;
  font-size: 10px;
}

.dr-j, .dr-s {
  border: 1px solid #5c9ea1;
  background: #07474a;
  height: 130px;
  padding: 25px;
  border-radius: 10px;
}


img.img-h {
  height: 107px;
  object-fit: cover;
}

span.spn-dr, .spn-s {
  font-size: 15px;
  font-weight: 700;
  color: #f1ff00;
}

img.img-dr-m {
  height: 160px;
  object-fit: cover;
}

span.dr-heading {
  color: #f3f806;
  font-size: 20px;
  font-weight: bold;
}
span.all-p {
  color: white;
}

.btn-divs {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.detail-section {
  background: #1a6e72;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
p.heading-drs{
  color: #fff;
  font-size: 15px;
}

.div-video video {
  border: 1px solid #5c9ea1;
  width: 100%;
  height: 189px;
  border-radius: 10px;
}
/* .div-video iframe {
  border: 2px solid #5c9ea1;
  width: 100%;
  height: 268px;
  border-radius: 10px;
} */

#player {
  border: 2px solid #5c9ea1 !important;
  border-radius: 10px !IMPORTANT;
}




.btn-div-back {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 10px;
}

.slider-area {
  background-image: url("assets/images/baner-1.png");
  background-size: cover;
}
.heading-dr-se {
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
}

.container-brd {
  border: 3px solid #5c9ea1;
  min-height: 500px;
  border-radius: 10px;
  padding-bottom: 50px;
}
.heading-se {
  padding-top: 30px;
}

.service-area .col:nth-child(1) .service-item, .service-area .col:nth-child(2) .service-item, .service-area .col:nth-child(3) .service-item, .service-area .col:nth-child(4) .service-item, .service-area .col:nth-child(5) .service-item, .service-area .col:nth-child(6) .service-item, .service-area .col:nth-child(7) .service-item, .service-area .col:nth-child(8) {
  opacity: 1;

}
.main-wrapper {
  min-height: 100vh;
}


.dr-img-jayapal img {
  height: 110px;
  width: 100px;
  border-radius: 10px ;
}

.home-j, .home-s {
  border: 1px solid #5c9ea1;
  background: #07474a;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  min-height: 154px;
  padding-top: 28px;
}

button.btn-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: yellow;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.heading-ses {
  border: 3px solid #5c9ea1;
  border-radius: 10px;
}


.issue_cards h2 {
  flex: 1 1 80%;
  max-width: 80%;
}

img.img-dr-m {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.img-tittel .img-div {
  flex: 0 1 31%;
  max-width: 31%;
}

.dr-titel {
  flex: 1 1 69%;
  max-width: 69%;
}

iframe.improved {
  height: 243px !important;
}



@media(max-width: 991px){

.issue_cards h2 {
  flex: 1 1 100%;
  max-width: 100%;
}

.titless {
  font-size: 24px;
  line-height: 40px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #fff;
  color: #fff0;
}

.heading-ses {
  flex-wrap: wrap;
  text-align: center;
  justify-content: center !important;
  gap: 20px;
  font-size: 20px;
}

.space-y {
  padding-block: 40px !important;
}

.img-tittel {
  flex-wrap: wrap;
  justify-content: start !important;
}

.dr-titel {
  flex: 1 1 100%;
  max-width: 100%;
}

.btn-divs {
  padding-bottom: 0 !important;
}

}

@media(max-width: 767px){

  a.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  justify-content: center;
  padding-left: 0px;
  padding-top: 10px;
}

img.img-h {
  height: 107px;
  object-fit: cover;
}



.hero_img > div > img {
  width: 73%;
}
/* section.service-area.space-y {
  padding-bottom: 50px;
} */




.space-y-index {
  padding-block: 30px;
  padding-bottom: 20px;
  background: #1a6e72;
}
.titless {
  font-size: 25px !important;
  line-height: 40px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #fff;
  color: #fff0;
}

.hero_lefts {
  padding-top: 15px;
}

.container-brd {
  border: 3px solid #5c9ea1;
  border-radius: 10px;
}

.heading-se {
  padding-top: 0px;
}
section.detail-section {
  background: #1a6e72;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.dr-j, .dr-s {
  border: 1px solid #5c9ea1;
  background: #07474a;
  height: 130px;
  padding: 14px;
  border-radius: 10px;
}
span.spn-dr, .spn-s {
  font-size: 10px;
  font-weight: 800;
  color: #f1ff00;
}
.btn-divs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 32px;
}



p.heading-drs {
  color: #fff;
  font-size: 13px;
}

h2.title {
  font-size: 30px;
  line-height: 11px;
  padding: 30px 0;
}



}
@media (max-width: 425px) {
.div-video iframe {
  height: 278px !important;
}
}

@media (max-width: 374px) {
  body .div-video iframe {
      height: 199px !important;
  }
}

@media (max-width: 375px) {
  .div-video iframe {
      height: 242px !important;
  }

  .titless {
    font-size: 17px !important;
    line-height: 30px;
}
}



@media(min-width:768px) and (max-width:1023px){
  .space-y-index {
    padding-block: 30px;
    padding-top: 0;
    padding-bottom: 40px;
    background: #1a6e72;
}

h2.title {
  font-size: 35px;
  line-height: 11px;
  padding: 30px 0;
}

span.dr-heading {
  color: #f3f806;
  font-size: 16px;
  font-weight: bold;
}

.btn-div-back {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 0px;
}


.heading-se {
  padding-top: 0px;
}

.container-brd {
  border: 3px solid #5c9ea1;
  height: auto;
  border-radius: 10px;
}

.btn-divs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 32px;
}
.div-video iframe {
  height: 155px;

}
p.heading-drs {
  color: #fff;
  font-size: 10px;
}

}

@media(min-width:1024px) and (max-width:1199px) {

.div-video iframe {
  height: 216px;

}

}

@media(min-width:1401px) and (max-width:1920px) {
  .div-video iframe {
    height: 290px;
}
}

@media(min-width: 1200px) and (max-width: 1400px) {
  /* .div-video iframe {
    height: 261px;
} */
}

