@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --size-80-rem: 5rem;
  --size-76-rem: 4.75rem;
  --size-70-rem: 4.375rem;
  --size-64-rem: 4rem;
  --size-58-rem: 3.625rem;
  --size-52-rem: 3.25rem;
  --size-48-rem: 3rem;
  --size-44-rem: 2.75rem;
  --size-40-rem: 2.5rem;
  --size-36-rem: 2.25rem;
  --size-32-rem: 2rem;
  --size-28-rem: 1.75rem;
  --size-24-rem: 1.5rem;
  --size-20-rem: 1.25rem;
  --size-18-rem: 1.125rem;
  --size-16-rem: 1rem;
  --size-14-rem: 0.875rem;
  --size-12-rem: 0.75rem;
  --size-10-rem: 0.625rem;
  --size-8-rem: 0.5rem;
}
@media (max-width: 900px) {
  :root :root {
    --size-80-rem: 3rem;
    --size-76-rem: 2.5rem;
    --size-70-rem: 2.25rem;
    --size-64-rem: 2rem;
    --size-58-rem: 1.75rem;
    --size-52-rem: 1.5rem;
    --size-48-rem: 1.25rem;
    --size-44-rem: 1.25rem;
    --size-40-rem: 1.125rem;
    --size-36-rem: 1rem;
    --size-32-rem: 0.875rem;
    --size-28-rem: 0.75rem;
    --size-24-rem: 0.625rem;
    --size-20-rem: 0.625rem;
    --size-18-rem: 0.5rem;
    --size-16-rem: 0.5rem;
    --size-14-rem: 0.375rem;
    --size-12-rem: 0.375rem;
    --size-10-rem: 0.25rem;
    --size-8-rem: 0.25rem;
  }
}

.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: 100vh !important;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
[data-theme=default] {
  --white:#fff;
  --black:#000;
  --primary: #00A88E;
  --secondary:#010F1C;
  --text-color:#55585B;
}

[data-theme=dark] {
  --white:#fff;
  --black:#000;
  --primary:#222222;
  --secondary:#000;
}

.theme-changer {
  background: var(--primary);
  position: fixed;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 0rem;
  color: var(--white);
}

body {
  width: 100%;
  float: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-color);
  font-weight: 500;
}
body ul > li {
  list-style: none;
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}
.main {
  width: 100%;
  float: left;
}

.container {
  padding: 0vw 6.2vw;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 900px) {
  .container {
    padding: 0vw 1.5em;
  }
}

p {
  line-height: 30px;
}

.theme-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 30px;
}

.hero-banner-sec {
  margin-top: 4rem;
}
.hero-banner-sec .row {
  margin: 0px;
}
.hero-banner-sec .row .col-12 {
  padding: 0px;
}
.hero-banner-sec .text-part {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 6.2vw;
}
.hero-banner-sec .text-part p {
  margin: 0px;
}
.hero-banner-sec .text-part .btn {
  width: -moz-fit-content;
  width: fit-content;
}
.hero-banner-sec .text-part h1 {
  font-weight: 700;
  line-height: inherit;
  color: var(--black);
}
.hero-banner-sec .text-part h1 span {
  color: var(--primary);
}
.hero-banner-sec .img-part {
  position: relative;
  border-radius: 40px 0px 0px 40px;
  overflow: hidden;
}
.hero-banner-sec .img-part::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: var(--primary) !important;
  z-index: 1;
  left: 0;
  opacity: 0.8;
}
.hero-banner-sec .img-part img {
  width: 100%;
}

.banner-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: -moz-max-content;
  height: max-content;
  text-align: left;
}
.banner-text strong {
  font-size: var(--size-40-px);
  color: var(--primary);
}

header {
  width: 100%;
  float: left;
  /* Icon 1 */
}
header .navbar-brand {
  padding: 0px;
  margin: 0px;
}
header .logo {
  width: 90px;
  padding: 5px;
}
header .top-bar {
  padding: 16px 0px;
}
header .top-bar .top-flex {
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
}
header .top-bar .top-flex .email-flex a {
  color: #55585B;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .navbar {
  box-shadow: 0.0625rem 0.125rem 0.8125rem rgba(0, 0, 0, 0.1411764706);
  z-index: 1000;
  position: relative;
  border-radius: 100px;
  padding: 6px 16px;
  overflow: hidden;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
header .sub-menu {
  padding: 0rem;
  position: absolute;
  top: 100%;
  left: 0%;
  background: white;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 0.1875rem solid var(--primary);
  box-shadow: -0.25rem 0.4375rem 0.8125rem rgba(0, 0, 0, 0.0784313725);
  transition: all 0.3s ease-in-out;
  transform: translate(0rem, 3.125rem);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
header .navbar-toggler {
  border: 0rem;
  outline: 0rem !important;
  padding: 0rem;
}
header .navbar-toggler:focus {
  outline: 0rem;
  box-shadow: none;
}
header li {
  position: relative;
}
header li a {
  color: var(--secondary) !important;
  padding: 0.625rem 1.25rem;
  float: left;
  width: 100%;
}
header li .active {
  color: var(--primary) !important;
}
header .menu-children-item:hover .sub-menu {
  opacity: 1;
  transform: translate(0rem, 0rem);
  pointer-events: all;
}
header .animated-icon1, header .animated-icon2, header .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .animated-icon1 span, header .animated-icon2 span, header .animated-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .animated-icon1 span {
  background: var(--secondary);
}
header .animated-icon1 span:nth-child(1) {
  top: 0px;
}
header .animated-icon1 span:nth-child(2) {
  top: 10px;
}
header .animated-icon1 span:nth-child(3) {
  top: 20px;
}
header .animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
header .animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
header .animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.header-fixed {
  position: fixed;
  background-color: transparent;
  top: -6.25rem;
  transition: transform 0.5s;
  transform: translateY(6.25rem);
  z-index: 1000;
  padding-top: 20px;
}
.header-fixed .top-bar {
  display: none;
}

.social-flex ul {
  display: flex;
  gap: 1rem;
  margin: 0px;
}
.social-flex ul li a {
  padding: 0px;
}

.about-us-sec {
  padding: 80px 0px;
}

.main-head h2 {
  font-weight: 700;
  line-height: inherit;
  color: var(--black);
  font-size: 2.4rem;
}

.small-head {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

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

.services-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  padding: 0px 30px;
}
.services-card .icon-part img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services-card h3 {
  margin: 0px;
  font-weight: 700;
  line-height: inherit;
  color: var(--black);
  font-size: 1.4rem;
}
.services-card p {
  margin: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimoanial-sec {
  background: url(../images/testimonial-bg.png);
  padding: 6rem 0rem 0rem 0rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-bottom: 8rem;
}
.testimoanial-sec .owl-nav.disabled, .testimoanial-sec .owl-nav {
  display: flex !important;
  position: absolute;
  top: 50%;
  width: 100%;
  justify-content: space-between;
}
.testimoanial-sec .owl-nav.disabled span, .testimoanial-sec .owl-nav span {
  display: none;
}
.testimoanial-sec .owl-nav.disabled .owl-prev, .testimoanial-sec .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  background: url(../images/arrow-left.svg);
  margin-left: -40px !important;
  background-size: contain;
}
.testimoanial-sec .owl-nav.disabled .owl-next, .testimoanial-sec .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  background: url(../images/arrow-right.svg);
  margin-right: -40px !important;
  background-size: contain;
}
.testimoanial-sec .item {
  padding: 16px;
}
.testimoanial-sec .testimoanil-slider {
  margin-bottom: -5rem;
}
.testimoanial-sec .head-part span, .testimoanial-sec .head-part h2 {
  color: var(--white);
}

.testimonial-card {
  background: var(--white);
  padding: 80px 30px 30px 30px;
  border-radius: 20px;
  position: relative;
  margin-top: 4rem;
  color: var(--black);
  box-shadow: 2px 6px 16px rgba(167, 167, 167, 0.3176470588);
  border: 1px solid rgba(206, 206, 206, 0.3411764706);
}
.testimonial-card .icon-part {
  position: absolute;
  top: -2rem;
}
.testimonial-card p {
  font-weight: 400;
  line-height: 30px;
}

.clients-sec {
  padding-bottom: 80px;
}
.clients-sec .row {
  max-width: 80%;
  margin: 40px auto 0px auto;
}
.clients-sec .row .client-logo {
  text-align: center;
}
.clients-sec .row .client-logo img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.2;
}

.contact-sec {
  padding-bottom: 80px;
}
.contact-sec .head-part {
  text-align: left;
}
.contact-sec .form-part {
  padding: 40px 0px 40px 20px;
}
.contact-sec form .row {
  max-width: 100%;
  margin: 30px 0px 0px -15px;
}
.contact-sec form .row .col-12 {
  margin-bottom: 20px;
}
.contact-sec form input, .contact-sec form textarea {
  background: #F3F3F3 !important;
  padding: 16px 20px !important;
  border: 0px !important;
  width: 100% !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.contact-sec form input:focus, .contact-sec form textarea:focus {
  outline: 2px solid var(--primary);
}
.contact-sec form textarea {
  min-height: 100px;
}
.contact-sec .row {
  max-width: 90%;
  margin: auto;
}
.contact-sec .contact-bg {
  padding: 4rem 2rem 2rem 2rem;
  background: url(../images/contact-bg.svg);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-sec .contact-bg strong {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3rem;
  display: block;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
}
.contact-sec .contact-bg .bottom-part ul {
  align-items: center;
}
.contact-sec .contact-bg ul {
  margin-top: 60px;
  padding-left: 0px;
}
.contact-sec .contact-bg ul li a {
  display: flex;
  gap: 1rem;
  color: var(--white);
  font-weight: 300;
}
.contact-sec .contact-bg ul li a svg {
  flex: 0 0 auto;
}

.blog-sec {
  background: url(../images/blog-bg.png);
  padding: 60px 0px 0px 0px;
  margin-bottom: 8rem;
}
.blog-sec .row {
  margin-top: 60px;
  margin-bottom: -4rem;
}
.blog-sec .head-part span, .blog-sec .head-part h2 {
  color: var(--white);
}
.blog-sec .blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.blog-sec .blog-card .text-part {
  background: var(--white);
  color: var(--black);
  padding: 20px;
  margin-top: -40px;
  z-index: 3;
  position: relative;
  max-width: 90%;
  border-radius: 12px 0px 12px 12px;
  box-shadow: 2px 6px 16px rgba(0, 0, 0, 0.1294117647);
}
.blog-sec .blog-card .text-part .date-part {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.blog-sec .blog-card .text-part .date-part i {
  color: var(--primary);
}
.blog-sec .blog-card .text-part .btn-readmore {
  color: var(--primary);
  font-weight: 500;
  padding: 0px;
  text-decoration: underline;
}
.blog-sec .blog-card .text-part h3 {
  font-weight: 700;
  line-height: inherit;
  font-size: 1.5rem;
  margin: 16px 0px;
}

.explore-sec {
  padding-bottom: 80px;
}

.explore-card {
  background: url(../images/explore-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  color: var(--white);
  position: relative;
}
.explore-card::after {
  width: 400px;
  height: 80px;
  background: #fff;
  position: absolute;
  content: "";
  transform: skew(0deg, -48deg);
  right: -5%;
  opacity: 0.1;
  z-index: 0;
}
.explore-card .product-icon {
  position: absolute;
  left: 0;
}
.explore-card .btn-explore {
  padding: 12px 40px;
  background: #fff;
  border-radius: 51px;
  color: var(--primary);
  font-weight: 500;
  z-index: 10;
  position: relative;
}
.explore-card h3 {
  font-size: 2rem;
  line-height: inherit;
}
.explore-card p {
  margin: 0px;
  font-weight: 200;
}

.main-footer {
  background: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0px 0px 0px;
  color: #C3C3C3;
  font-weight: 400;
}
.main-footer .footer-logo img {
  filter: grayscale(100) invert(100);
  width: 120px;
}
.main-footer .copyright-sec {
  padding: 2rem 0rem;
  border-top: 1px solid rgba(195, 195, 195, 0.1960784314);
  margin-top: 2rem;
  text-align: center;
}
.main-footer .copyright-sec p {
  margin: 0px;
}
.main-footer .social-flex ul {
  padding: 0px;
  margin-top: 4rem;
}
.main-footer .footer-card .footer-logo {
  margin-bottom: 1.5rem;
}
.main-footer .footer-card strong {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 2rem;
}
.main-footer .footer-card p {
  font-weight: 200;
  margin-bottom: 0px;
}
.main-footer .footer-card .link-part {
  width: 50%;
  float: left;
}
.main-footer .footer-card .link-part ul {
  padding: 0px;
  margin: 0px;
}
.main-footer .footer-card .link-part ul li {
  margin-bottom: 10px;
}
.main-footer .footer-card .link-part ul li a {
  color: #C3C3C3 !important;
  font-weight: 200;
}
.main-footer .footer-card:has(.footer-logo) {
  padding-right: 60px;
}
.main-footer form {
  position: relative;
  margin-top: 20px;
}
.main-footer form input[type=email] {
  width: 100%;
  background: transparent;
  border: 0px;
  padding: 20px;
  border-bottom: 2px solid #757575;
}
.main-footer form a {
  display: flex;
  align-items: center;
  right: 20px;
  top: 0;
  bottom: 0;
  position: absolute;
}
.main-footer form a img {
  width: 20px;
}

.inner-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}
.inner-banner::after {
  background: rgb(11, 126, 108);
  background: linear-gradient(90deg, rgb(11, 126, 108) 35%, rgb(0, 168, 142) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  opacity: 0.9;
}
.inner-banner .text-part {
  position: absolute;
  z-index: 10;
  color: #fff;
}
.inner-banner img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-sec {
  padding: 80px 0px;
}
.about-sec .text-part {
  padding: 40px 0px 40px 40px;
}
.about-sec .col-lg-5:has(.img-part) {
  display: flex;
}
.about-sec .col-lg-5:has(.img-part) img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision-mission-sec {
  padding: 80px 0px;
  position: relative;
}
.vision-mission-sec .small-head, .vision-mission-sec h2 {
  color: #fff;
}
.vision-mission-sec .row {
  margin-top: 40px;
}
.vision-mission-sec .row .col-lg-6 {
  display: flex;
}
.vision-mission-sec .icon-part img {
  width: 60px;
}
.vision-mission-sec::after {
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  height: 70%;
  content: "";
  width: 100%;
  z-index: -1;
}
.vision-mission-sec .text-part {
  background: #fff;
  box-shadow: 1px 1px 20px 1px rgba(60, 60, 60, 0.13);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  text-align: left;
}
.vision-mission-sec .text-part h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 20px 0px;
}
.vision-mission-sec .text-part h4 {
  color: #000;
  margin-bottom: 1rem;
  font-weight: 500;
}
.vision-mission-sec .text-part p {
  margin-bottom: 0px;
}

.hero-banner-new img {
  width: 40%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
}
.main-header .logo {
  width: 120px;
  padding: 0px;
}
.main-header .navbar-expand-lg {
  box-shadow: none;
  background: transparent;
  border: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.hero-banner-new {
  position: relative;
  overflow-x: hidden;
}
.hero-banner-new .text-part {
  position: absolute;
  bottom: 10%;
  width: 100%;
}
.hero-banner-new .text-part strong {
    font-weight: bolder;
    font-size: 1.6vw;
    line-height: 1.2;
    font-weight: 400;
    color: #00A88E;
    font-weight: 500;
    text-decoration: underline;
}
.hero-banner-new h2 {
    font-size: 4vw;
    line-height: 1.2;
    font-weight: 400;
    margin: 2vw 0vw;
    font-weight: 600;
}
.hero-banner-new .text-part p {
    font-size: 1.6vw;
    line-height: inherit;
    margin-top: 0px;
    font-weight: 300;
    max-width: 55%;
}
.hero-banner-new .text-part p span {
  background: #00A88E;
  color: #fff;
  font-weight: 100;
}
.about-sec-new {
  padding: 60px 0px;
}
.about-sec-new p {
  font-size: 2vw;
  line-height: inherit;
  margin-bottom: 40px;
  font-weight: 300;
  color: #000;
}
.about-sec-new p span {
  color: #00A88E;
}
.hidden {
  display: none;
}
.main-head h2 {
  font-size: 48px;
}
.contact-sec-new p {
  font-size: 1.6vw;
  line-height: inherit;
  margin-bottom: 40px;
  font-weight: 400;
  color: #000;
  font-style: italic;
}
.prev-img {
    position: absolute;
    bottom: -6vw;
    right: 0;
}
.prev-img img {
    width: 100%;
    height: 80vh;
    position: relative;
    right: -20%;
}
.contact-sec-new input, .contact-sec-new select, .contact-sec-new textarea {
  padding: 16px 0px !important;
  border: 0px !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0px !important;
  font-size: 18px !important;
  margin-bottom: 20px;
}
.contact-sec-new ::-moz-placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}
.contact-sec-new ::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}
.contact-sec-new ::-ms-input-placeholder { /* Edge 12 -18 */
  color: #000;
}
.btn-submit {
  background: #000;
  padding: 10px 40px;
  color: #fff;
  font-size: 16px !important;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-submit:hover {
  background: #222222;
  color: #fff;
}
.btn-submit svg path {
  fill: #fff;
}
.footer-new {
  background: transparent;
  padding: 0px;
  margin: 60px 0px 0px 0px;
}
.footer-new .row {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin-bottom: 20px;
}
.footer-new ul, .footer-new p, .footer-new a {
  margin: 0px;
  color: #fff;
}
.footer-new ul {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.main-header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5215686275);
  /* padding: 10px; */
}/*# sourceMappingURL=main.css.map */