body {
  font-family: "Poppins", sans-serif !important;
  background-color: #1C1F22 !important;
  padding-top: 100px;
}

body .loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #1C1F22;
  z-index: 9999;
}

body .loader .loader-main .bubble {
  -webkit-animation: bounce 0.75s ease-in-out infinite;
          animation: bounce 0.75s ease-in-out infinite;
  border-radius: 20px;
  display: inline-block;
  transform-origin: center center;
  margin: 0 1px;
}

body .loader .loader-main .bubble:nth-child(2) {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
  background: #D091FF;
  border-radius: 50%;
  position: relative;
  height: 10px;
  width: 10px;
  bottom: 35px;
}

body .loader .loader-main .bubble:nth-child(1) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
  background: linear-gradient(145deg, #B3FAB2 0%, rgba(179, 250, 178, 0) 100%);
  border-radius: 50%;
  position: relative;
  height: 15px;
  width: 15px;
  bottom: 10px;
}

body .loader .loader-main .bubble:nth-child(3) {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
  background: linear-gradient(219deg, #D091FF 0%, rgba(208, 145, 255, 0) 100%);
  border-radius: 50%;
  position: relative;
  height: 30px;
  width: 30px;
}

@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.44);
  }
}

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

  25% {
    transform: scale(1.44);
  }
}

body .navbar {
  background-color: transparent;
  padding: 24px 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

body .navbar.shrinked {
  background-color: #1C1F22 !important;
  padding: 16px 0;
}

body .navbar .navbar-brand {
  padding: 0;
}

body .navbar .navbar-brand img {
  width: 100px;
}

body .navbar .navbar-nav {
  -moz-column-gap: 35px;
       column-gap: 35px;
}

body .navbar .navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #B3FAB2;
}

body .navbar .navbar-nav .nav-item .nav-link.active {
  color: #B3FAB2;
}

body .navbar .btn-contact {
  padding: 5px 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #B3FAB2;
  text-decoration: none;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #B3FAB2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .navbar .btn-contact:hover {
  color: #000;
  background: #B3FAB2;
}

body .home-banner {
  position: relative;
  padding: 60px 0 50px;
}

body .home-banner .curved-shape {
  text-align: center;
}

body .home-banner .curved-shape img {
  width: 90%;
}

body .home-banner .ellipse {
  position: absolute;
}

@-webkit-keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

body .home-banner .ellipse1 {
  width: 90px;
  right: 0;
  top: 45px;
  -webkit-animation: zoom-in-zoom-out 1.4s ease infinite;
          animation: zoom-in-zoom-out 1.4s ease infinite;
}

body .home-banner .ellipse2 {
  width: 70px;
  left: 0;
  top: 37%;
  -webkit-animation: zoom-in-zoom-out 1.2s ease infinite;
          animation: zoom-in-zoom-out 1.2s ease infinite;
}

body .home-banner .ellipse3 {
  width: 35px;
  right: 110px;
  bottom: 30%;
  -webkit-animation: zoom-in-zoom-out 1s ease infinite;
          animation: zoom-in-zoom-out 1s ease infinite;
}

body .home-banner .content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

body .home-banner .content .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
}

body .home-banner .content .heading span {
  color: #d091ff;
}

body .home-banner .content .desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  padding: 0 110px;
  margin-bottom: 0;
}

body .home-banner .content .action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 50px;
}

body .home-banner .content .action-btns .btn-view-plans {
  min-height: 50px;
  padding: 8px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background-color: #B3FAB2;
  border-radius: 10px;
  border: 1px solid #B3FAB2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .home-banner .content .action-btns .btn-view-plans:hover {
  color: #B3FAB2;
  background-color: transparent;
}

body .home-banner .content .action-btns .btn-learn-more {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #B3FAB2;
  text-decoration: none;
}

body .home-banner .bar-shape {
  width: calc(100% + 70px);
  height: 1900px;
  position: absolute;
  top: 230px;
  left: -35px;
  z-index: -1;
}

body .our-main-products {
  padding: 60px 0 70px;
  overflow: hidden;
}

body .our-main-products .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .our-main-products .single-product {
  padding-top: 60px;
  padding-left: 70px;
}

body .our-main-products .single-product .product-logo {
  width: 150px;
  margin-right: 40px;
}

body .our-main-products .single-product .rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

body .our-main-products .single-product .desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.4;
  margin-bottom: 30px;
}

body .our-main-products .single-product .points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

body .our-main-products .single-product .points li {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-left: 25px;
}

body .our-main-products .single-product .points li::before {
  content: "";
  position: absolute;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  right: 0;
  height: 10px;
  width: 14px;
  background-color: #B3FAB2;
  border-radius: 10px;
}

body .our-main-products .single-product .points li:last-child {
  margin-bottom: 0;
}

body .our-main-products .single-product .learn-more {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 1rem;
  font-weight: 400;
  color: #B3FAB2;
  text-decoration: none;
}

body .our-main-products .single-product .learn-more .icon {
  width: 8px;
}

body .our-main-products .products-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: -110px;
}

body .our-main-products .products-timeline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #B3FAB2;
}

body .our-main-products .products-timeline .item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-color: #1C1F22;
  border: 2px solid #B3FAB2;
  border-radius: 40px;
  z-index: 1;
}

body .our-main-products .products-timeline .item img {
  max-height: 22px;
}

body .our-main-products .products-timeline .item.active {
  background-color: #B3FAB2;
}

body .our-main-products .products-timeline .item.active img {
  -webkit-filter: invert(100%);
  filter: invert(100%);
  transform: scale(1.05);
}

body .home-services {
  padding: 90px 0 45px;
  background-color: #EAEFF4;
  overflow: hidden;
}

body .home-services .section-heading {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1C1F22;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 110px;
  z-index: 1;
}

body .home-services .section-heading::after {
  content: "";
  height: 200px;
  width: 200px;
  background: #d091ff;
  -webkit-filter: blur(70px);
          filter: blur(70px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  z-index: -1;
}

body .home-services .services-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 45px;
}

body .home-services .services-list .item {
  display: flex;
  flex-direction: column;
  padding: 0 35px;
}

body .home-services .services-list .item .icon {
  max-width: 45px;
  margin-bottom: 15px;
}

body .home-services .services-list .item .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1C1F22;
  line-height: 1.3;
  margin-bottom: 20px;
}

body .home-services .services-list .item .desc {
  font-size: 1rem;
  font-weight: 400;
  color: #1C1F22;
  line-height: 1.4;
  margin-bottom: 30px;
}

body .home-services .services-list .item .btn-learn-more {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #BF6AFE;
  line-height: 1;
  text-decoration: none;
  margin-top: auto;
}

body .home-services .services-list .item .btn-learn-more .icon {
  width: 15px;
}

body .home-services .about-box {
  display: block;
  padding: 30px 30px 30px 40px;
  background: url("/images/bg-home-about-box.png") no-repeat;
  background-size: cover;
  background-position: left bottom;
  overflow: hidden;
  margin-top: 90px;
  border-radius: 20px;
  text-decoration: none;
}

body .home-services .about-box .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-right: 80px;
}

body .home-services .about-box .desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.5;
  margin-bottom: 0;
}

body .home-services .about-box .long-arrow {
  width: 100%;
  margin-top: 30px;
}

body .people-worked-with {
  padding: 80px 0 70px;
  overflow: hidden;
}

body .people-worked-with .section-heading {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 80px;
}

body .people-worked-with .section-heading::after {
  content: "";
  height: 200px;
  width: 200px;
  background: #d091ff;
  -webkit-filter: blur(70px);
          filter: blur(70px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: -1;
}

body .people-worked-with .people-slider .slick-list {
  padding: 30px 0;
}

body .people-worked-with .people-slider .slick-list .slick-track {
  display: flex;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide {
  height: inherit;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #00000080;
  border-radius: 12px;
  visibility: visible;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .detailed-info {
  padding: 35px 30px 50px;
  font-size: 1rem;
  font-weight: 400;
  color: #1C1F22;
  line-height: 1.4;
  margin-bottom: 0;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .basic-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #D9D9D9;
  padding: 15px 30px;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .basic-info .profile {
  width: 40px;
  margin-right: 10px;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .basic-info .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-bottom: 5px;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .basic-info .designation {
  font-size: 0.75rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
  margin-bottom: 0;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-slide .item .basic-info .people-logo {
  width: 100%;
  max-width: 120px;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-current + .slick-active .item {
  transform: scale(1.1);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 9;
}

body .people-worked-with .people-slider .slick-list .slick-track .slick-current + .slick-active .item::after {
  visibility: hidden;
}

body .faqs {
  padding: 60px 0 50px;
}

body .faqs .section-heading {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

body .faqs .section-heading::after {
  content: "";
  height: 200px;
  width: 200px;
  background: #d091ff;
  -webkit-filter: blur(70px);
  filter: blur(70px);
  border-radius: 50%;
  position: absolute;
  top: -60px;
  left: -180px;
  z-index: -1;
}

body .faqs .accordion .accordion-item {
  color: #ffffff;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff;
}

body .faqs .accordion .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

body .faqs .accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

body .faqs .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

body .faqs .accordion .accordion-item .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 35px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

body .faqs .accordion .accordion-item .accordion-button:after {
  display: none;
}

body .faqs .accordion .accordion-item .accordion-button .plus {
  display: none;
}

body .faqs .accordion .accordion-item .accordion-button.collapsed .plus {
  display: block;
}

body .faqs .accordion .accordion-item .accordion-button.collapsed .minus {
  display: none;
}

body .faqs .accordion .accordion-item .accordion-body {
  padding: 0 0 35px 0;
}

body .faqs .accordion .accordion-item .accordion-body .text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.4;
  margin-bottom: 0;
}

body .services-banner {
  padding: 45px 0 60px;
}

body .services-banner .content {
  padding: 140px 12px 200px;
}

body .services-banner .content .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .services-banner .content .desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

body .services-banner .vector-triangle {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
}

body .services-banner .vector-square {
  position: absolute;
  right: 220px;
  top: calc(50% - 140px);
  width: 280px;
}

body .services-banner .vector-circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
}

body .all-services {
  padding: 60px 0;
  overflow: hidden;
}

body .all-services .single-service {
  position: relative;
  align-items: center;
  margin-bottom: 140px;
}

body .all-services .single-service:last-of-type {
  margin-bottom: 0;
}

body .all-services .single-service:nth-child(1)::after,
body .all-services .single-service:nth-child(3)::after,
body .all-services .single-service:nth-child(5)::after {
  content: "";
  height: 500px;
  width: 500px;
  background: rgba(208, 145, 255, 0.6);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

body .all-services .single-service:nth-child(1)::after {
  left: calc(50% - 250px);
  bottom: -120px;
}

body .all-services .single-service:nth-child(3)::after {
  right: -200px;
  bottom: -200px;
}

body .all-services .single-service:nth-child(5)::after {
  left: -150px;
  bottom: -160px;
}

body .all-services .single-service .padding-l-custom {
  padding-right: 100px;
}

body .all-services .single-service .padding-r-custom {
  padding-left: 100px;
}

body .all-services .single-service .service-img {
  border-radius: 20px;
  overflow: hidden;
}

body .all-services .single-service .service-img img {
  height: 100%;
  width: 100%;
}

body .all-services .single-service .service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .all-services .single-service .service-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 45px;
}

body .all-services .single-service .btn-learn-more {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #d091ff;
  line-height: 1;
  text-decoration: none;
}

body .all-services .single-service .btn-learn-more .icon {
  width: 15px;
}

body .about-banner {
  position: relative;
  padding: 110px 0 220px;
}

body .about-banner .about-vector1 {
  position: absolute;
  top: -100px;
  right: 0;
}

body .about-banner .about-vector2 {
  position: absolute;
  top: 265px;
  right: 16%;
  width: 840px;
}

body .about-banner .section-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body .about-banner .section-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

body .our-mission {
  padding: 40px 0 70px;
}

body .our-mission .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .our-mission .section-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
}

body .our-mission .numbers {
  display: flex;
  flex-direction: column;
  row-gap: 45px;
  align-items: flex-end;
}

body .our-mission .numbers .key {
  font-size: 3rem;
  font-weight: 500;
  color: #d091ff;
  line-height: 1;
  text-align: right;
  margin-bottom: 8px;
}

body .our-mission .numbers .value {
  font-size: 1rem;
  font-weight: 400;
  color: #B3FAB2;
  line-height: 1;
  text-align: right;
  margin-bottom: 0;
}

body .our-mission .about-cover-img {
  overflow: hidden;
  border-radius: 20px;
  padding-top: 100px;
}

body .our-values {
  padding: 70px 0 80px;
}

body .our-values .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 110px;
}

body .our-values .values-list {
  row-gap: 80px;
}

body .our-values .values-list .value .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 20px;
}

body .our-values .values-list .value .desc {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.4;
  margin-bottom: 0;
}

body .our-team {
  padding: 80px 0 50px;
}

body .our-team .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .our-team .section-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 70px;
}

body .our-team .team-members {
  position: relative;
  row-gap: 60px;
}

body .our-team .team-members::after {
  content: "";
  height: 500px;
  width: 500px;
  background: #d091ff;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 250px);
  left: calc(50% - 250px);
  z-index: -1;
}

body .our-team .team-members .member {
  text-align: center;
}

body .our-team .team-members .member .profile {
  text-align: center;
  margin-bottom: 20px;
}

body .our-team .team-members .member .profile img {
  width: 100%;
  max-width: 180px;
}

body .our-team .team-members .member .name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

body .our-team .team-members .member .designation {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
}

body .service-details {
  padding: 185px 0 20px;
}

body .service-details .vector-triangle {
  position: absolute;
  right: 0;
  top: -140px;
  width: 280px;
}

body .service-details .vector-square {
  position: absolute;
  right: 220px;
  top: 80px;
  width: 280px;
}

body .service-details .vector-circle {
  position: absolute;
  right: 0;
  top: 220px;
  width: 360px;
}

body .service-details .service-title {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 40px;
}

body .service-details .service-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
}

body .service-details .service-cover-img {
  overflow: hidden;
  border-radius: 20px;
  margin-top: 70px;
}

body .sub-page-banner {
  padding: 220px 0 220px;
}

body .sub-page-banner .vector-triangle {
  position: absolute;
  left: 0;
  bottom: calc(100% + 20px);
  width: 130px;
}

body .sub-page-banner .vector-square {
  position: absolute;
  right: 80px;
  top: 55px;
  width: 160px;
}

body .sub-page-banner .vector-circle {
  position: absolute;
  right: 0;
  top: calc(50% - 70px);
  width: 140px;
}

body .sub-page-banner .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
}

body .sub-page-content {
  padding: 0 0 30px 0;
}

body .sub-page-content .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .sub-page-content .sub-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #d091ff;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .sub-page-content .text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 30px;
}

body .sub-page-content .list {
  margin-bottom: 40px;
}

body .sub-page-content .list li {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.4;
  margin-bottom: 15px;
}

body .sub-page-content .list li:last-child {
  margin-bottom: 0;
}

body .sub-page-content .list li span {
  color: #d091ff;
}

body .sub-page-content .list li a {
  color: #d091ff;
}

body .life-here-banner {
  position: relative;
  padding: 110px 0 50px;
}

body .life-here-banner .life-here-vector1 {
  position: absolute;
  top: -100px;
  right: 0;
}

body .life-here-banner .section-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body .life-here-banner .section-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

body .life-here-banner .life-here-cover-img {
  overflow: hidden;
  border-radius: 20px;
  padding-top: 100px;
}

body .enjoy-section {
  padding: 50px 0 45px;
  overflow: hidden;
}

body .enjoy-section .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0;
}

body .enjoy-section .desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
}

body .events-section {
  padding: 45px 0 60px;
  overflow: hidden;
}

body .events-section .event {
  margin-bottom: 100px;
}

body .events-section .event .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}

body .events-section .event .desc {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 30px;
}

body .events-section .event .desc:last-of-type {
  margin-bottom: 0;
}

body .events-section .event .mt-50 {
  margin-top: 50px;
}

body .events-section .event .quote {
  position: relative;
  padding-left: 150px;
  margin-top: 70px;
}

body .events-section .event .quote .icon {
  position: absolute;
  left: 70px;
  top: -30px;
  width: 60px;
  height: 60px;
}

body .events-section .event .quote .text {
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

body .events-section .event:last-child,
body .events-section .event:only-child {
  margin-bottom: 0;
}

body .join-our-team {
  padding: 60px 0 40px;
  text-align: center;
}

body .join-our-team .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 40px;
}

body .join-our-team .btn-see-openings {
  display: inline-block;
  min-height: 50px;
  padding: 0 40px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  line-height: 50px;
  text-decoration: none;
  background-color: #d091ff;
  border-radius: 10px;
  border: 0;
  outline: 0;
  box-shadow: none;
}

body .career-banner {
  position: relative;
  padding: 110px 0 100px;
}

body .career-banner .career-vector1 {
  position: absolute;
  top: -100px;
  right: 0;
}

body .career-banner .section-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body .career-banner .section-desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

body .job-openings {
  padding: 50px 0;
}

body .job-openings .box {
  position: relative;
  padding: 30px 30px 25px 30px;
  background-color: #ffffff;
  border-radius: 20px;
}

body .job-openings .box::after {
  content: "";
  height: 500px;
  width: 500px;
  background: #d091ff;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 250px);
  bottom: -172px;
  z-index: -1;
}

body .job-openings .box .inner {
  padding: 20px 25px 40px 25px;
  background: url("/images/bg-contact-box-inner.png") no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 20px;
}

body .job-openings .box .inner .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}

body .job-openings .box .inner .label {
  font-size: 1rem;
  font-weight: 400;
  color: #00000080;
  line-height: 1;
  margin-bottom: 15px;
}

body .job-openings .box .inner .field {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  padding: 12px 20px;
  background-color: #b3fab2b0;
  border: 0;
  border-radius: 10px;
  outline: 0;
  box-shadow: none;
}

body .job-openings .box .inner .btn-search {
  width: 100%;
  height: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #B3FAB2;
  line-height: 1;
  padding: 10px 30px;
  background-color: #1C1F22;
  border: 2px solid #1C1F22;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .job-openings .box .inner .search-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 20px 0 5px;
}

body .job-openings .box .inner .search-filters .item {
  display: flex;
  align-items: center;
}

body .job-openings .box .inner .search-filters .item:last-child {
  margin-left: auto;
}

body .job-openings .box .inner .search-filters .item .checkbox {
  position: absolute;
  opacity: 0;
}

body .job-openings .box .inner .search-filters .item .checkbox + label {
  position: relative;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6A6A6A;
  line-height: 1;
  text-transform: capitalize;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

body .job-openings .box .inner .search-filters .item .checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 3px;
}

body .job-openings .box .inner .search-filters .item .checkbox:checked + label:before {
  background: #000;
}

body .job-openings .box .inner .search-filters .item .checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: #ffffff;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #ffffff, 4px 0 0 #ffffff, 4px -2px 0 #ffffff, 4px -4px 0 #ffffff, 4px -6px 0 #ffffff, 4px -8px 0 #ffffff;
  transform: rotate(45deg);
}

body .job-openings .box .inner .vacancies .vacancy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #929292;
}

body .job-openings .box .inner .vacancies .vacancy .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
}

body .job-openings .box .inner .vacancies .vacancy .details {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
  margin-right: 15px;
}

body .job-openings .box .inner .vacancies .vacancy .details .icon {
  width: 15px;
}

body .job-openings .box .inner .vacancies .vacancy .details .text {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6A;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 0;
}

body .job-openings .box .inner .vacancies .vacancy .btn-details {
  display: inline-block;
  height: 50px;
  padding: 10px 30px;
  background-color: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  color: #d091ff;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid #d091ff;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .job-details-banner {
  padding: 220px 0 220px;
}

body .job-details-banner .vector-triangle {
  position: absolute;
  left: 0;
  bottom: calc(100% + 20px);
  width: 130px;
}

body .job-details-banner .vector-square {
  position: absolute;
  right: 80px;
  top: 55px;
  width: 160px;
}

body .job-details-banner .vector-circle {
  position: absolute;
  right: 0;
  top: calc(50% - 70px);
  width: 140px;
}

body .job-details-banner .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
}

body .job-details-content {
  padding: 0 0 30px 0;
}

body .job-details-content .basic-details {
  display: flex;
  align-items: center;
  -moz-column-gap: 45px;
       column-gap: 45px;
  padding-bottom: 30px;
  border-bottom: 2px solid #ffffff80;
  margin-bottom: 30px;
}

body .job-details-content .basic-details .item {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

body .job-details-content .basic-details .item .icon {
  width: 22px;
}

body .job-details-content .basic-details .item .text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 0;
}

body .job-details-content .heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

body .job-details-content .desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 60px;
}


body .job-details-content .points {
  margin: 0 0 50px 0;
}

body .job-details-content .points:last-of-type {
  margin: 0;
}

body .job-details-content .points li {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 15px;
}

body .job-details-content .points li:last-child {
  margin-bottom: 0;
}

body .job-details-content .points li span {
  color: #d091ff;
}

body .job-details-content .points li a {
  color: #d091ff;
}

body .application-form {
  padding: 70px 0 0;
}

body .application-form .box {
  position: relative;
  padding: 30px 30px 25px 30px;
  background-color: #ffffff;
  border-radius: 20px;
}

body .application-form .box::after {
  content: "";
  height: 500px;
  width: 500px;
  background: #d091ff;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 250px);
  bottom: -172px;
  z-index: -1;
}

body .application-form .box .inner {
  padding: 50px 25px 40px 25px;
  background: url("/images/bg-contact-box-inner.png") no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 20px;
}

body .application-form .box .inner .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

body .application-form .box .inner .label {
  font-size: 1rem;
  font-weight: 400;
  color: #00000080;
  line-height: 1;
  margin-bottom: 15px;
}

body .application-form .box .inner .field {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  padding: 12px 20px;
  background-color: #b3fab2b0;
  border: 0;
  border-radius: 10px;
  outline: 0;
  box-shadow: none;
}

body .application-form .box .inner .field::-webkit-outer-spin-button,
body .application-form .box .inner .field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body .application-form .box .inner .field[type=number] {
  -moz-appearance: textfield;
}

body .application-form .box .inner .field[type=file] {
  background-image: url("/images/icons/icon-file.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: top 12px right 20px;
}

body .application-form .box .inner .field[type=file]::file-selector-button {
  display: none;
}

body .application-form .box .inner .btn-submit {
  width: 100%;
  height: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #B3FAB2;
  line-height: 1;
  padding: 10px 30px;
  background-color: #1C1F22;
  border: 2px solid #1C1F22;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin-top: 35px;
}

body #formSuccessModal .modal-dialog {
  max-width: 520px;
  width: 100%;
}

body #formSuccessModal .modal-dialog .modal-content {
  border: 0;
  border-radius: 20px;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 20px 25px 25px;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .btn-close {
  position: absolute;
  top: -20px;
  right: -25px;
  width: 53px;
  height: 53px;
  font-size: 1.125rem;
  padding: 0;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  background-color: #000;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .btn-close:hover {
  opacity: 1 !important;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg {
  background: url("/images/modal-bg-shaded.png") no-repeat;
  background-position: top left;
  background-size: cover;
  padding: 80px 100px 70px;
  text-align: center;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg .icon {
  margin-bottom: 25px;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg .icon img {
  width: 90px;
  height: 90px;
}

body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg .text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 0;
}

body .not-found-main {
  padding: 160px 0 120px;
}

body .not-found-main .vector-triangle {
  position: absolute;
  left: 0;
  top: -90px;
  width: 130px;
}

body .not-found-main .vector-square {
  position: absolute;
  right: 0;
  bottom: -130px;
  width: 160px;
}

body .not-found-main .vector-circle {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 140px;
}

body .not-found-main .content {
  text-align: center;
}

body .not-found-main .content .not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 30px;
}

body .not-found-main .content .not-found .numb {
  font-size: 180px;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  margin-bottom: 0;
}

body .not-found-main .content .text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}

body .not-found-main .content .btn-back {
  display: inline-block;
  height: 36px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #B3FAB2;
  border: 1px solid #B3FAB2;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .not-found-main .content .btn-back:hover {
  color: #B3FAB2;
  background-color: transparent;
}

body .coming-soon-main {
  padding: 80px 0 40px;
}

body .coming-soon-main .content {
  padding-right: 100px;
}

body .coming-soon-main .content .heading {
  font-size: 4rem;
  font-weight: 700;
  color: #B3FAB2;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}

body .coming-soon-main .content .desc {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 35px;
}

body .coming-soon-main .content .btn-back {
  display: inline-block;
  height: 36px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #B3FAB2;
  border: 1px solid #B3FAB2;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .coming-soon-main .content .btn-back:hover {
  color: #B3FAB2;
  background-color: transparent;
}

body .coming-soon-main .img {
  width: 100%;
}

body .footer {
  padding: 80px 0 40px;
  overflow: hidden;
}

body .footer .contact-box {
  position: relative;
  padding: 30px 30px 25px 30px;
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 110px;
}

body .footer .contact-box::after {
  content: "";
  height: 500px;
  width: 500px;
  background: #d091ff;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 250px);
  bottom: -172px;
  z-index: -1;
}

body .footer .contact-box .inner {
  padding: 20px 25px 40px 25px;
  background: url("/images/bg-contact-box-inner.png") no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 20px;
}

body .footer .contact-box .inner .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 35px;
}

body .footer .contact-box .inner .mb-20 {
  margin-bottom: 20px;
}

body .footer .contact-box .inner .item label {
  font-size: 1rem;
  font-weight: 400;
  color: #00000080;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 15px;
}

body .footer .contact-box .inner .item .field {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  padding: 12px 20px;
  background-color: #b3fab2b0;
  border: 0;
  border-radius: 10px;
  outline: 0;
  box-shadow: none;
}

body .footer .contact-box .inner .item textarea {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  padding: 12px 20px;
  background-color: #b3fab2b0;
  border: 0;
  border-radius: 10px;
  outline: 0;
  box-shadow: none;
  resize: none;
}

body .footer .contact-box .inner .telephone-img {
  width: 90%;
  margin-bottom: 30px;
}

body .footer .contact-box .inner .btn-talk {
  width: 100%;
  height: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #B3FAB2;
  line-height: 1;
  padding: 10px 30px;
  background-color: #1C1F22;
  border: 2px solid #1C1F22;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .footer .contact-box .inner .btn-talk:hover {
  color: #000;
  background-color: #ffffff;
}

body .footer .footer-about {
  padding-right: 100px;
}

body .footer .footer-about .footer-logo {
  display: inline-block;
  width: 100px;
  margin-bottom: 45px;
}

body .footer .footer-about .desc {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

body .footer .footer-links {
  padding-top: 17px;
}

body .footer .footer-links .heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 60px;
}

body .footer .footer-links ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

body .footer .footer-links ul li {
  margin-bottom: 15px;
}

body .footer .footer-links ul li:last-child {
  margin-bottom: 0;
}

body .footer .footer-links ul li .link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

body .footer .footer-links ul li .link:hover {
  color: #B3FAB2;
  transition: all 0.2s ease;
}

body .footer .footer-links .contact-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 20px;
}

body .footer .footer-links .contact-link .icon {
  width: 25px;
}

body .footer .newsletter {
  align-items: center;
  padding: 30px 0 40px;
  border-top: 1px solid #ffffff36;
  border-bottom: 1px solid #ffffff36;
  margin: 40px 0 30px;
}

body .footer .newsletter .heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

body .footer .newsletter .text {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
}

body .footer .newsletter .email-to-subscribe {
  width: 100%;
  max-width: 220px;
  height: 36px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  padding: 10px 12px;
  background-color: transparent;
  border: 2px solid #B3FAB2;
  border-radius: 10px;
  outline: 0;
  box-shadow: none;
  margin-right: 20px;
}

body .footer .newsletter .email-to-subscribe::-webkit-input-placeholder,
body .footer .newsletter .email-to-subscribe:-ms-input-placeholder,
body .footer .newsletter .email-to-subscribe::placeholder {
  color: #b3fab280;
}

body .footer .newsletter .btn-subscribe {
  height: 36px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  padding: 10px 30px;
  background-color: #B3FAB2;
  border: 1px solid #B3FAB2;
  outline: 0;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

body .footer .newsletter .btn-subscribe:hover {
  color: #B3FAB2;
  background-color: #000;
}

body .footer .copyright {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.5;
  margin-bottom: 0;
}

body .footer .sub-links {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-right: 35px;
}

body .footer .sub-links a {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1;
  text-decoration: none;
}

body .footer .sub-links a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -22px;
  width: 7px;
  height: 7px;
  background-color: #B3FAB2;
  border-radius: 10px;
}

body .footer .sub-links a:first-child::before {
  display: none;
}

body .footer .social-icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

body .footer .social-icons a {
  text-decoration: none;
}

body .footer .social-icons a .icon {
  width: 24px;
}

@media only screen and (max-width: 1399.98px) and (min-width: 1200px) {
  body .home-banner .curved-shape img {
    width: 100%;
  }

  body .home-banner .ellipse1 {
    width: 85px;
  }

  body .home-banner .ellipse2 {
    width: 65px;
  }

  body .home-banner .ellipse3 {
    bottom: 33%;
  }

  body .home-banner .content .heading {
    font-size: 3.5rem;
  }

  body .home-banner .content .desc {
    padding: 0 50px;
  }

  body .home-banner .bar-shape {
    height: 1820px;
  }

  body .our-main-products .single-product {
    padding-top: 60px;
    padding-left: 50px;
  }

  body .home-services .section-heading {
    margin-bottom: 90px;
  }

  body .home-services .services-list .item {
    padding: 0 25px;
  }

  body .services-banner .content {
    padding: 110px 12px 120px;
  }

  body .services-banner .content .heading {
    font-size: 3.5rem;
  }

  body .services-banner .vector-triangle {
    width: 250px;
  }

  body .services-banner .vector-square {
    position: absolute;
    right: 200px;
    top: calc(50% - 125px);
    width: 250px;
  }

  body .services-banner .vector-circle {
    width: 320px;
  }

  body .all-services .single-service {
    margin-bottom: 120px;
  }

  body .all-services .single-service .padding-l-custom {
    padding-right: 70px;
  }

  body .all-services .single-service .padding-r-custom {
    padding-left: 70px;
  }

  body .all-services .single-service .service-desc {
    margin-bottom: 30px;
  }

  body .service-details {
    padding: 155px 0 20px;
  }

  body .service-details .vector-triangle {
    top: -110px;
    width: 250px;
  }

  body .service-details .vector-square {
    right: 200px;
    top: 54px;
    width: 250px;
  }

  body .service-details .vector-circle {
    top: 148px;
    width: 320px;
  }

  body .service-details .service-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  body .service-details .service-desc {
    font-size: 1.125rem;
  }

  body .service-details .service-cover-img {
    margin-top: 50px;
  }

  body .about-banner {
    padding: 110px 0 140px;
  }

  body .about-banner .about-vector1 {
    width: 450px;
  }

  body .about-banner .about-vector2 {
    position: absolute;
    top: 206px;
    right: 15%;
    width: 700px;
  }

  body .about-banner .section-heading {
    font-size: 3.5rem;
  }

  body .our-mission {
    padding: 40px 0 50px;
  }

  body .our-mission .about-cover-img {
    padding-top: 80px;
  }

  body .our-values {
    padding: 60px 0 60px;
  }

  body .our-values .section-desc {
    margin-bottom: 100px;
  }

  body .our-values .values-list {
    row-gap: 70px;
  }

  body .our-team {
    padding: 50px 0 50px;
  }

  body .sub-page-banner {
    padding: 180px 0 180px;
  }

  body .sub-page-banner .vector-triangle {
    bottom: calc(100% + 0px);
  }

  body .sub-page-banner .heading {
    font-size: 3.5rem;
  }

  body .sub-page-content {
    padding: 0 0 20px 0;
  }

  body .sub-page-content .heading {
    font-size: 2.25rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .sub-heading {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .text {
    margin-bottom: 25px;
  }

  body .life-here-banner {
    padding: 100px 0 50px;
  }

  body .life-here-banner .life-here-vector1 {
    width: 500px;
  }

  body .life-here-banner .section-heading {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }

  body .life-here-banner .life-here-cover-img {
    padding-top: 90px;
  }

  body .career-banner {
    padding: 100px 0 50px;
  }

  body .career-banner .career-vector1 {
    width: 500px;
  }

  body .career-banner .section-heading {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }

  body .job-details-banner {
    padding: 180px 0 180px;
  }

  body .job-details-banner .vector-triangle {
    bottom: calc(100% + 0px);
  }

  body .job-details-banner .heading {
    font-size: 3.5rem;
  }

  body .job-details-content .desc {
    margin-bottom: 50px;
  }

  body .not-found-main {
    padding: 130px 0 100px;
  }

  body .not-found-main .vector-triangle {
    top: -70px;
  }

  body .not-found-main .vector-square {
    bottom: -100px;
  }

  body .not-found-main .vector-circle {
    bottom: 0;
  }

  body .not-found-main .content .not-found .numb {
    font-size: 160px;
  }

  body .not-found-main .content .not-found .zero-img img {
    width: 120px;
  }

  body .coming-soon-main {
    padding: 70px 0 40px;
  }

  body .coming-soon-main .content {
    padding-right: 0;
  }

  body .coming-soon-main .content .heading {
    font-size: 3.5rem;
  }

  body .coming-soon-main .img {
    width: 90%;
  }

  body .footer .contact-box {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  body .home-banner {
    padding: 50px 0 40px;
  }

  body .home-banner .curved-shape img {
    width: 100%;
  }

  body .home-banner .ellipse1 {
    width: 80px;
  }

  body .home-banner .ellipse2 {
    width: 60px;
  }

  body .home-banner .ellipse3 {
    right: 90px;
    bottom: 30%;
  }

  body .home-banner .content .heading {
    font-size: 3rem;
  }

  body .home-banner .content .desc {
    font-size: 1.125rem;
    padding: 0 50px;
  }

  body .home-banner .content .action-btns {
    margin-top: 40px;
  }

  body .home-banner .content .action-btns .btn-view-plans {
    font-size: 1.125rem;
  }

  body .home-banner .content .action-btns .btn-learn-more {
    font-size: 1.125rem;
  }

  body .home-banner .bar-shape {
    display: none;
  }

  body .our-main-products {
    padding: 50px 0 70px;
  }

  body .our-main-products .section-heading {
    font-size: 2.25rem;
    margin-bottom: 45px;
  }

  body .our-main-products .single-product {
    padding-top: 0;
    padding-left: 0;
  }

  body .our-main-products .products-timeline {
    margin-top: 0;
  }

  body .our-main-products .products-timeline .item {
    height: 70px;
  }

  body .home-services {
    padding: 70px 0 45px;
  }

  body .home-services .section-heading {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 80px;
  }

  body .home-services .services-list .item {
    padding: 0 20px;
  }

  body .home-services .services-list .item .title {
    line-height: 1.3;
  }

  body .home-services .services-list .item .desc {
    margin-bottom: 25px;
  }

  body .home-services .about-box {
    padding: 30px 30px 30px 30px;
  }

  body .home-services .about-box .heading {
    font-size: 3rem;
    margin-right: 50px;
  }

  body .people-worked-with {
    padding: 60px 0 50px;
  }

  body .people-worked-with .section-heading {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 70px;
  }

  body .people-worked-with .people-slider .item::after {
    display: none;
  }

  body .people-worked-with .people-slider .item .detailed-info {
    padding: 30px 25px 35px;
  }

  body .people-worked-with .people-slider .slick-list {
    padding: 0;
  }

  body .people-worked-with .people-slider .slick-list .slick-current + .slick-active .item {
    transform: scale(1);
  }

  body .services-banner .content {
    padding: 100px 12px 100px;
  }

  body .services-banner .content .heading {
    font-size: 3rem;
  }

  body .services-banner .content .desc {
    font-size: 1.125rem;
  }

  body .services-banner .vector-triangle {
    width: 200px;
  }

  body .services-banner .vector-square {
    position: absolute;
    right: 155px;
    top: calc(50% - 100px);
    width: 200px;
  }

  body .services-banner .vector-circle {
    width: 240px;
  }

  body .all-services .single-service {
    margin-bottom: 100px;
  }

  body .all-services .single-service .padding-l-custom {
    padding-right: 0;
  }

  body .all-services .single-service .padding-r-custom {
    padding-left: 0;
  }

  body .all-services .single-service .service-title {
    font-size: 2.25rem;
  }

  body .all-services .single-service .service-desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  body .service-details {
    padding: 145px 0 20px;
  }

  body .service-details .vector-triangle {
    top: -100px;
    width: 200px;
  }

  body .service-details .vector-square {
    right: 155px;
    top: 65px;
    width: 200px;
  }

  body .service-details .vector-circle {
    top: 193px;
    width: 240px;
  }

  body .service-details .service-title {
    font-size: 3rem;
  }

  body .service-details .service-desc {
    font-size: 1.125rem;
  }

  body .service-details .service-cover-img {
    margin-top: 60px;
  }

  body .about-banner {
    padding: 100px 0 100px;
  }

  body .about-banner .about-vector1 {
    width: 400px;
  }

  body .about-banner .about-vector2 {
    position: absolute;
    top: 160px;
    right: 17%;
    width: 630px;
  }

  body .about-banner .section-heading {
    font-size: 3rem;
  }

  body .our-mission {
    padding: 40px 0 50px;
  }

  body .our-mission .about-cover-img {
    padding-top: 80px;
  }

  body .our-values {
    padding: 50px 0 50px;
  }

  body .our-values .section-desc {
    margin-bottom: 90px;
  }

  body .our-values .values-list {
    row-gap: 60px;
  }

  body .our-team {
    padding: 60px 0 50px;
  }

  body .our-team .team-members {
    row-gap: 60px;
  }

  body .sub-page-banner {
    padding: 160px 0 160px;
  }

  body .sub-page-banner .vector-triangle {
    bottom: calc(100% + 0px);
    width: 110px;
  }

  body .sub-page-banner .vector-square {
    width: 140px;
  }

  body .sub-page-banner .vector-circle {
    top: calc(50% - 60px);
    width: 120px;
  }

  body .sub-page-banner .heading {
    font-size: 3rem;
  }

  body .sub-page-content {
    padding: 0 0 20px 0;
  }

  body .sub-page-content .heading {
    font-size: 2.25rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .sub-heading {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .text {
    margin-bottom: 25px;
  }

  body .sub-page-content .list {
    margin-bottom: 30px;
  }

  body .life-here-banner {
    padding: 100px 0 50px;
  }

  body .life-here-banner .life-here-vector1 {
    width: 450px;
  }

  body .life-here-banner .section-heading {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  body .life-here-banner .section-heading br {
    display: none;
  }

  body .life-here-banner .section-desc {
    font-size: 1.125rem;
  }

  body .life-here-banner .life-here-cover-img {
    padding-top: 80px;
  }

  body .enjoy-section {
    padding: 50px 0 45px;
  }

  body .enjoy-section .heading {
    font-size: 2.25rem;
  }

  body .enjoy-section .desc {
    font-size: 1.125rem;
  }

  body .events-section {
    padding: 45px 0 50px;
  }

  body .events-section .event {
    margin-bottom: 80px;
  }

  body .events-section .event .title {
    margin-bottom: 30px;
  }

  body .events-section .event .desc {
    font-size: 1.125rem;
    margin-bottom: 25px;
  }

  body .events-section .event .mt-50 {
    margin-top: 30px;
  }

  body .events-section .event .quote {
    padding-left: 95px;
  }

  body .events-section .event .quote .icon {
    left: 30px;
    top: -30px;
    width: 55px;
    height: 55px;
  }

  body .events-section .event .quote .text {
    font-size: 1.75rem;
  }

  body .join-our-team {
    padding: 50px 0 40px;
  }

  body .join-our-team .heading {
    font-size: 2.25rem;
  }

  body .join-our-team .btn-see-openings {
    padding: 0 30px;
    font-size: 1.125rem;
  }

  body .career-banner {
    padding: 100px 0 50px;
  }

  body .career-banner .career-vector1 {
    width: 450px;
  }

  body .career-banner .section-heading {
    font-size: 3rem;
    margin-bottom: 25px;
  }

  body .career-banner .section-desc {
    font-size: 1.125rem;
  }

  body .job-openings {
    padding: 40px 0;
  }

  body .job-openings .box .inner .heading {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }

  body .job-openings .box .inner .btn-search {
    font-size: 1.125rem;
  }

  body .job-openings .box .inner .search-filters {
    margin: 25px 0 20px;
  }

  body .job-openings .box .inner .vacancies .vacancy .btn-details {
    height: 45px;
    font-size: 1.125rem;
  }

  body .job-details-banner {
    padding: 160px 0 160px;
  }

  body .job-details-banner .vector-triangle {
    bottom: calc(100% + 0px);
    width: 110px;
  }

  body .job-details-banner .vector-square {
    width: 140px;
  }

  body .job-details-banner .vector-circle {
    top: calc(50% - 60px);
    width: 120px;
  }

  body .job-details-banner .heading {
    font-size: 3rem;
  }

  body .job-details-content .desc {
    margin-bottom: 50px;
  }

  body .application-form {
    padding: 60px 0 0;
  }

  body .application-form .box .inner .heading {
    font-size: 2.25rem;
  }

  body .not-found-main {
    padding: 130px 0 100px;
  }

  body .not-found-main .vector-triangle {
    width: 110px;
    top: -60px;
  }

  body .not-found-main .vector-square {
    width: 140px;
    bottom: -70px;
  }

  body .not-found-main .vector-circle {
    width: 120px;
    bottom: 20px;
  }

  body .not-found-main .content .not-found {
    margin-bottom: 20px;
  }

  body .not-found-main .content .not-found .numb {
    font-size: 140px;
  }

  body .not-found-main .content .not-found .zero-img img {
    width: 105px;
  }

  body .not-found-main .content .text {
    font-size: 1.25rem;
    margin-bottom: 35px;
  }

  body .coming-soon-main {
    padding: 60px 0 40px;
  }

  body .coming-soon-main .content {
    padding-right: 0;
  }

  body .coming-soon-main .content .heading {
    font-size: 3rem;
  }

  body .coming-soon-main .content .desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  body .coming-soon-main .img {
    width: 90%;
  }

  body .footer {
    padding: 50px 0 40px;
  }

  body .footer .contact-box {
    margin-bottom: 80px;
  }

  body .footer .contact-box::after {
    height: 350px;
    width: 350px;
    -webkit-filter: blur(180px);
            filter: blur(180px);
    left: calc(50% - 175px);
    bottom: -100px;
  }

  body .footer .footer-about {
    padding-right: 50px;
  }

  body .footer .copyright {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  body {
    padding-top: 100px;
  }

  body .navbar {
    background-color: #1C1F22 !important;
  }

  body .navbar .navbar-toggler {
    width: 40px;
    height: 40px;
    border: 0;
    outline: 0;
    box-shadow: none;
    padding: 0;
  }

  body .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  body .navbar .navbar-nav {
    -moz-column-gap: initial;
         column-gap: initial;
    margin: 20px 0 10px 0;
  }

  body .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
  }

  body .navbar .btn-contact {
    display: block;
    width: 100%;
    font-size: 1.125rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
  }

  body .home-banner {
    padding: 50px 0 50px;
  }

  body .home-banner .curved-shape {
    display: none;
  }

  body .home-banner .ellipse1,
  body .home-banner .ellipse2,
  body .home-banner .ellipse3 {
    display: none;
  }

  body .home-banner .content {
    position: initial;
    transform: initial;
  }

  body .home-banner .content .heading {
    font-size: 3rem;
  }

  body .home-banner .content .desc {
    font-size: 1.125rem;
    padding: 0;
  }

  body .home-banner .content .action-btns {
    margin-top: 40px;
  }

  body .home-banner .content .action-btns .btn-view-plans {
    font-size: 1.125rem;
  }

  body .home-banner .content .action-btns .btn-learn-more {
    font-size: 1.125rem;
  }

  body .home-banner .bar-shape {
    display: none;
  }

  body .our-main-products {
    padding: 50px 0 60px;
  }

  body .our-main-products .section-heading {
    font-size: 2.25rem;
  }

  body .our-main-products .single-product {
    padding-top: 0;
    padding-left: 0;
  }

  body .our-main-products .single-product .desc {
    font-size: 1.125rem;
  }

  body .our-main-products .products-timeline {
    margin-top: 50px;
  }

  body .our-main-products .products-timeline .item {
    height: 60px;
    padding: 0 15px;
  }

  body .our-main-products .products-timeline .item img {
    max-height: 20px;
  }

  body .home-services {
    padding: 60px 0 45px;
  }

  body .home-services .section-heading {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 60px;
  }

  body .home-services .services-list {
    row-gap: 40px;
  }

  body .home-services .services-list .item {
    padding: 0 15px;
  }

  body .home-services .services-list .item .desc {
    margin-bottom: 20px;
  }

  body .home-services .services-list .item .btn-learn-more {
    -moz-column-gap: 8px;
         column-gap: 8px;
    font-size: 1.125rem;
  }

  body .home-services .services-list .item .btn-learn-more .icon {
    width: 12px;
  }

  body .home-services .about-box {
    padding: 30px 25px 30px 30px;
    margin-top: 75px;
  }

  body .home-services .about-box .heading {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 25px;
    margin-right: 0;
  }

  body .home-services .about-box .heading br {
    display: none;
  }

  body .home-services .about-box .desc {
    font-size: 1.125rem;
  }

  body .home-services .about-box .long-arrow {
    margin-top: 25px;
  }

  body .people-worked-with {
    padding: 60px 0 50px;
  }

  body .people-worked-with .section-heading {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 45px;
  }

  body .people-worked-with .section-heading br {
    display: none;
  }

  body .people-worked-with .people-slider .item::after {
    display: none;
  }

  body .people-worked-with .people-slider .item .detailed-info {
    padding: 35px 30px 35px;
  }

  body .people-worked-with .people-slider .slick-list {
    padding: 0;
  }

  body .faqs {
    padding: 40px 0 40px;
  }

  body .faqs .section-heading {
    font-size: 2.25rem;
  }

  body .faqs .accordion .accordion-item .accordion-button {
    padding: 25px 0;
    font-size: 1.125rem;
  }

  body .faqs .accordion .accordion-item .accordion-button .plus,
  body .faqs .accordion .accordion-item .accordion-button .minus {
    width: 25px;
  }

  body .faqs .accordion .accordion-item .accordion-body {
    padding: 0 0 25px 0;
  }

  body .faqs .accordion .accordion-item .accordion-body .text {
    font-size: 1rem;
  }

  body .services-banner {
    padding: 50px 0 60px;
  }

  body .services-banner .content {
    padding: 0 12px;
    text-align: center;
  }

  body .services-banner .content .heading {
    font-size: 3rem;
  }

  body .services-banner .content .heading br {
    display: none;
  }

  body .services-banner .content .desc {
    font-size: 1.125rem;
    padding: 0 50px;
  }

  body .services-banner .vector-triangle,
  body .services-banner .vector-square,
  body .services-banner .vector-circle {
    display: none;
  }

  body .all-services .single-service {
    margin-bottom: 70px;
  }

  body .all-services .single-service:nth-child(even) {
    text-align: right;
  }

  body .all-services .single-service .padding-l-custom {
    padding-right: 0;
  }

  body .all-services .single-service .padding-r-custom {
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
  }

  body .all-services .single-service .service-img {
    width: 50%;
  }

  body .all-services .single-service .service-title {
    font-size: 2.25rem;
  }

  body .all-services .single-service .service-title br {
    display: none;
  }

  body .all-services .single-service .service-desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  body .service-details {
    padding: 50px 0 50px;
    text-align: center;
  }

  body .service-details .vector-triangle,
  body .service-details .vector-square,
  body .service-details .vector-circle {
    display: none;
  }

  body .service-details .service-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  body .service-details .service-title br {
    display: none;
  }

  body .service-details .service-desc {
    font-size: 1.125rem;
  }

  body .service-details .service-cover-img {
    margin-top: 50px;
  }

  body .about-banner {
    position: relative;
    padding: 50px 0 60px;
    text-align: center;
  }

  body .about-banner .about-vector1 {
    display: none;
  }

  body .about-banner .about-vector2 {
    display: none;
  }

  body .about-banner .section-heading {
    font-size: 3rem;
  }

  body .about-banner .section-heading br {
    display: none;
  }

  body .about-banner .section-desc {
    font-size: 1.125rem;
  }

  body .our-mission {
    padding: 40px 0 50px;
  }

  body .our-mission .section-heading {
    font-size: 2.25rem;
  }

  body .our-mission .numbers {
    row-gap: 40px;
  }

  body .our-mission .numbers .key {
    font-size: 2.5rem;
    text-align: center;
  }

  body .our-mission .numbers .value {
    text-align: center;
  }

  body .our-mission .about-cover-img {
    padding-top: 60px;
  }

  body .our-values {
    padding: 50px 0 50px;
  }

  body .our-values .section-heading {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }

  body .our-values .section-desc {
    font-size: 1.125rem;
    margin-bottom: 70px;
  }

  body .our-values .values-list {
    row-gap: 50px;
  }

  body .our-team {
    padding: 50px 0 50px;
  }

  body .our-team .section-heading {
    font-size: 2.25rem;
  }

  body .our-team .section-desc {
    font-size: 1.125rem;
    margin-bottom: 50px;
  }

  body .our-team .team-members {
    row-gap: 45px;
    justify-content: center;
  }

  body .our-team .team-members::after {
    content: "";
    height: 400px;
    width: 400px;
    -webkit-filter: blur(220px);
            filter: blur(220px);
    top: calc(50% - 200px);
    left: calc(50% - 200px);
  }

  body .our-team .team-members .member .profile img {
    max-width: 150px;
  }

  body .our-team .team-members .member .name {
    font-size: 1.125rem;
  }

  body .our-team .team-members .member .designation {
    line-height: 1.4;
  }

  body .sub-page-banner {
    padding: 80px 0 80px;
  }

  body .sub-page-banner .vector-triangle,
  body .sub-page-banner .vector-square,
  body .sub-page-banner .vector-circle {
    display: none;
  }

  body .sub-page-banner .heading {
    font-size: 3rem;
  }

  body .sub-page-content {
    padding: 0 0 20px 0;
  }

  body .sub-page-content .heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .sub-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  body .sub-page-content .list {
    margin-bottom: 25px;
  }

  body .sub-page-content .list li {
    font-size: 1rem;
  }

  body .life-here-banner {
    padding: 40px 0 40px;
    text-align: center;
  }

  body .life-here-banner .life-here-vector1 {
    display: none;
  }

  body .life-here-banner .section-heading {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  body .life-here-banner .section-heading br {
    display: none;
  }

  body .life-here-banner .section-desc {
    font-size: 1.125rem;
  }

  body .life-here-banner .life-here-cover-img {
    padding-top: 60px;
  }

  body .enjoy-section {
    padding: 40px 0 40px;
  }

  body .enjoy-section .heading {
    font-size: 2.25rem;
  }

  body .enjoy-section .desc {
    font-size: 1.125rem;
  }

  body .events-section {
    padding: 40px 0 40px;
  }

  body .events-section .event {
    margin-bottom: 80px;
  }

  body .events-section .event .title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  body .events-section .event .desc {
    font-size: 1.125rem;
  }

  body .events-section .event .mt-50 {
    margin-top: 25px;
  }

  body .events-section .event .quote {
    padding-left: 90px;
    margin-top: 70px;
  }

  body .events-section .event .quote .icon {
    left: 30px;
    top: -30px;
    width: 50px;
    height: 50px;
  }

  body .events-section .event .quote .text {
    font-size: 1.75rem;
  }

  body .join-our-team {
    padding: 50px 0 40px;
  }

  body .join-our-team .heading {
    font-size: 2.25rem;
  }

  body .join-our-team .heading br {
    display: none;
  }

  body .join-our-team .btn-see-openings {
    padding: 0 30px;
    font-size: 1.125rem;
  }

  body .career-banner {
    padding: 50px 0 40px;
    text-align: center;
  }

  body .career-banner .career-vector1 {
    display: none;
  }

  body .career-banner .section-heading {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  body .career-banner .section-heading br {
    display: none;
  }

  body .career-banner .section-desc {
    font-size: 1.125rem;
  }

  body .job-openings {
    padding: 40px 0;
  }

  body .job-openings .box::after {
    display: none;
  }

  body .job-openings .box .inner .heading {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }

  body .job-openings .box .inner .heading br {
    display: none;
  }

  body .job-openings .box .inner .btn-search {
    font-size: 1.125rem;
    padding: 10px 20px;
  }

  body .job-openings .box .inner .search-filters {
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    margin: 25px 0 20px;
  }

  body .job-openings .box .inner .search-filters .item {
    margin-bottom: 12px;
    width: 50%;
  }

  body .job-openings .box .inner .vacancies .vacancy .btn-details {
    height: 45px;
    font-size: 1.125rem;
  }

  body .job-details-banner {
    padding: 80px 0 80px;
  }

  body .job-details-banner .vector-triangle,
  body .job-details-banner .vector-square,
  body .job-details-banner .vector-circle {
    display: none;
  }

  body .job-details-banner .heading {
    font-size: 3rem;
  }

  body .job-details-content .basic-details {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  body .job-details-content .desc {
    margin-bottom: 40px;
  }

  body .application-form {
    padding: 60px 0 40px;
  }

  body .application-form .box {
    padding: 25px 25px 20px 25px;
  }

  body .application-form .box::after {
    display: none;
  }

  body .application-form .box .inner {
    padding: 40px 25px 30px 25px;
  }

  body .application-form .box .inner .heading {
    font-size: 2.25rem;
  }

  body .application-form .box .inner .field[type=file] {
    background-position: top 12px right 15px;
  }

  body .application-form .box .inner .btn-submit {
    font-size: 1.125rem;
    margin-top: 25px;
  }

  body .not-found-main {
    padding: 80px 0 80px;
  }

  body .not-found-main .vector-triangle,
  body .not-found-main .vector-square,
  body .not-found-main .vector-circle {
    display: none;
  }

  body .not-found-main .content .not-found {
    margin-bottom: 30px;
  }

  body .not-found-main .content .not-found .numb {
    font-size: 130px;
  }

  body .not-found-main .content .not-found .zero-img img {
    width: 95px;
  }

  body .not-found-main .content .text {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  body .coming-soon-main {
    padding: 60px 0 40px;
  }

  body .coming-soon-main .content {
    padding-right: 0;
    text-align: center;
  }

  body .coming-soon-main .content .heading {
    font-size: 3rem;
  }

  body .coming-soon-main .content .desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  body .coming-soon-main .img {
    width: 80%;
  }

  body .footer {
    padding: 50px 0 40px;
  }

  body .footer .contact-box {
    padding: 25px 25px 20px 25px;
    margin-bottom: 80px;
  }

  body .footer .contact-box::after {
    display: none;
  }

  body .footer .contact-box .inner {
    padding: 20px 25px 20px 25px;
  }

  body .footer .contact-box .inner .heading {
    font-size: 2.25rem;
  }

  body .footer .contact-box .inner .heading br {
    display: none;
  }

  body .footer .contact-box .inner .mb-20 {
    margin-bottom: 16px;
  }

  body .footer .contact-box .inner .item label {
    margin-bottom: 12px;
  }

  body .footer .contact-box .inner .telephone-img {
    display: none;
  }

  body .footer .contact-box .inner .btn-talk {
    margin-top: 25px;
    font-size: 1.125rem;
  }

  body .footer .footer-about {
    padding-right: 12px;
  }

  body .footer .footer-about .footer-logo {
    margin-bottom: 40px;
  }

  body .footer .footer-links .heading {
    margin-bottom: 35px;
  }

  body .footer .newsletter {
    padding: 30px 0 30px;
    margin: 30px 0 30px;
  }

  body .footer .copyright {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767.98px) {
  body {
    padding-top: 92px;
  }

  body .navbar {
    background-color: #1C1F22 !important;
    padding: 20px 0;
  }

  body .navbar.shrinked {
    padding: 12px 0;
  }

  body .navbar .navbar-toggler {
    width: 40px;
    height: 40px;
    border: 0;
    outline: 0;
    box-shadow: none;
    padding: 0;
  }

  body .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  body .navbar .navbar-nav {
    -moz-column-gap: initial;
         column-gap: initial;
    margin: 20px 0 10px 0;
  }

  body .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
  }

  body .navbar .btn-contact {
    display: block;
    width: 100%;
    font-size: 1.125rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
  }

  body .home-banner {
    padding: 40px 0 40px;
  }

  body .home-banner .curved-shape {
    display: none;
  }

  body .home-banner .ellipse1,
  body .home-banner .ellipse2,
  body .home-banner .ellipse3 {
    display: none;
  }

  body .home-banner .content {
    position: initial;
    transform: initial;
  }

  body .home-banner .content .heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  body .home-banner .content .desc {
    font-size: 1rem;
    padding: 0;
  }

  body .home-banner .content .action-btns {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 30px;
  }

  body .home-banner .content .action-btns .btn-view-plans {
    min-height: 45px;
    padding: 12px 20px;
    font-size: 1.125rem;
    line-height: 1;
    border-radius: 7px;
  }

  body .home-banner .content .action-btns .btn-learn-more {
    font-size: 1.125rem;
  }

  body .home-banner .bar-shape {
    display: none;
  }

  body .our-main-products {
    padding: 40px 0 50px;
  }

  body .our-main-products .section-heading {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  body .our-main-products .single-product {
    padding-top: 0;
    padding-left: 0;
  }

  body .our-main-products .single-product .product-logo {
    width: 140px;
    margin-right: 20px;
  }

  body .our-main-products .single-product .desc {
    font-size: 1.125rem;
  }

  body .our-main-products .products-timeline {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 40px;
    padding: 30px 60px;
  }

  body .our-main-products .products-timeline::after {
    top: 0;
    left: 50%;
    right: initial;
    height: 100%;
    width: 2px;
  }

  body .our-main-products .products-timeline .item {
    width: 100%;
    height: 60px;
  }

  body .our-main-products .products-timeline .item img {
    max-height: 25px;
  }

  body .home-services {
    padding: 50px 0 45px;
  }

  body .home-services .section-heading {
    position: relative;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  body .home-services .services-list {
    row-gap: 35px;
  }

  body .home-services .services-list .item {
    padding: 0 15px;
  }

  body .home-services .services-list .item .icon {
    max-width: 40px;
  }

  body .home-services .services-list .item .title {
    margin-bottom: 15px;
  }

  body .home-services .services-list .item .desc {
    margin-bottom: 20px;
  }

  body .home-services .services-list .item .btn-learn-more {
    -moz-column-gap: 8px;
         column-gap: 8px;
    font-size: 1.125rem;
  }

  body .home-services .services-list .item .btn-learn-more .icon {
    width: 12px;
  }

  body .home-services .about-box {
    padding: 25px 15px 25px 20px;
    background-position: center;
    margin-top: 50px;
  }

  body .home-services .about-box .heading {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-right: 0;
  }

  body .home-services .about-box .heading br {
    display: none;
  }

  body .home-services .about-box .desc {
    font-size: 1.125rem;
  }

  body .home-services .about-box .long-arrow {
    margin-top: 20px;
  }

  body .people-worked-with {
    padding: 50px 0 30px;
  }

  body .people-worked-with .section-heading {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 50px;
  }

  body .people-worked-with .section-heading br {
    display: none;
  }

  body .people-worked-with .people-slider .item::after {
    display: none;
  }

  body .people-worked-with .people-slider .item .detailed-info {
    padding: 30px 20px 30px;
  }

  body .people-worked-with .people-slider .item .basic-info {
    padding: 15px 15px;
  }

  body .people-worked-with .people-slider .item .basic-info .designation {
    line-height: 1.2;
  }

  body .people-worked-with .people-slider .slick-list {
    padding: 0;
  }

  body .faqs {
    padding: 40px 0 40px;
  }

  body .faqs .section-heading {
    font-size: 1.75rem;
  }

  body .faqs .accordion .accordion-item .accordion-button {
    padding: 25px 0;
    font-size: 1.125rem;
  }

  body .faqs .accordion .accordion-item .accordion-button .plus,
  body .faqs .accordion .accordion-item .accordion-button .minus {
    width: 22px;
  }

  body .faqs .accordion .accordion-item .accordion-body {
    padding: 0 0 25px 0;
  }

  body .faqs .accordion .accordion-item .accordion-body .text {
    font-size: 1rem;
  }

  body .services-banner {
    padding: 40px 0 40px;
  }

  body .services-banner .content {
    padding: 0 12px;
    text-align: center;
  }

  body .services-banner .content .heading {
    font-size: 2rem;
  }

  body .services-banner .content .heading br {
    display: none;
  }

  body .services-banner .content .desc {
    font-size: 1rem;
  }

  body .services-banner .vector-triangle,
  body .services-banner .vector-square,
  body .services-banner .vector-circle {
    display: none;
  }

  body .all-services {
    padding: 40px 0;
  }

  body .all-services .single-service {
    margin-bottom: 50px;
  }

  body .all-services .single-service .padding-l-custom {
    padding-right: 0;
  }

  body .all-services .single-service .padding-r-custom {
    padding-left: 0;
  }

  body .all-services .single-service .service-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  body .all-services .single-service .service-title br {
    display: none;
  }

  body .all-services .single-service .service-desc {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  body .all-services .single-service .btn-learn-more {
    font-size: 1.125rem;
  }

  body .all-services .single-service .btn-learn-more .icon {
    width: 12px;
  }

  body .service-details {
    padding: 40px 0 40px;
    text-align: center;
  }

  body .service-details .vector-triangle,
  body .service-details .vector-square,
  body .service-details .vector-circle {
    display: none;
  }

  body .service-details .service-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  body .service-details .service-title br {
    display: none;
  }

  body .service-details .service-desc {
    font-size: 1rem;
  }

  body .service-details .service-cover-img {
    margin-top: 35px;
  }

  body .about-banner {
    position: relative;
    padding: 40px 0 40px;
    text-align: center;
  }

  body .about-banner .about-vector1 {
    display: none;
  }

  body .about-banner .about-vector2 {
    display: none;
  }

  body .about-banner .section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  body .about-banner .section-heading br {
    display: none;
  }

  body .about-banner .section-desc {
    font-size: 1rem;
  }

  body .our-mission {
    padding: 40px 0 40px;
  }

  body .our-mission .section-heading {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  body .our-mission .section-desc {
    font-size: 1rem;
  }

  body .our-mission .numbers {
    row-gap: 35px;
    align-items: center;
  }

  body .our-mission .numbers .key {
    font-size: 2.5rem;
    text-align: center;
  }

  body .our-mission .numbers .value {
    font-size: 1rem;
    text-align: center;
  }

  body .our-mission .about-cover-img {
    padding-top: 50px;
  }

  body .our-values {
    padding: 40px 0 40px;
  }

  body .our-values .section-heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  body .our-values .section-desc {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  body .our-values .values-list {
    row-gap: 40px;
  }

  body .our-values .values-list .value .title {
    font-size: 1.125rem;
  }

  body .our-team {
    padding: 40px 0 40px;
  }

  body .our-team .section-heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  body .our-team .section-desc {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  body .our-team .team-members {
    row-gap: 0;
  }

  body .our-team .team-members::after {
    height: 180px;
    width: 180px;
    -webkit-filter: blur(131px);
    filter: blur(131px);
    top: -200px;
    left: calc(50% - 90px);
  }

  body .sub-page-banner {
    padding: 60px 0 60px;
  }

  body .sub-page-banner .vector-triangle,
  body .sub-page-banner .vector-square,
  body .sub-page-banner .vector-circle {
    display: none;
  }

  body .sub-page-banner .heading {
    font-size: 2.5rem;
  }

  body .sub-page-content {
    padding: 0 0 40px 0;
  }

  body .sub-page-content .heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  body .sub-page-content .sub-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  body .sub-page-content .text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  body .sub-page-content .list {
    margin-bottom: 30px;
  }

  body .sub-page-content .list li {
    font-size: 1rem;
  }

  body .life-here-banner {
    padding: 40px 0 40px;
    text-align: center;
  }

  body .life-here-banner .life-here-vector1 {
    display: none;
  }

  body .life-here-banner .section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  body .life-here-banner .section-heading br {
    display: none;
  }

  body .life-here-banner .section-desc {
    font-size: 1rem;
  }

  body .life-here-banner .life-here-cover-img {
    border-radius: 10px;
    padding-top: 30px;
  }

  body .enjoy-section {
    padding: 30px 0 30px;
  }

  body .enjoy-section .heading {
    font-size: 2rem;
  }

  body .enjoy-section .desc {
    font-size: 1rem;
  }

  body .events-section {
    padding: 40px 0 40px;
  }

  body .events-section .event {
    margin-bottom: 80px;
  }

  body .events-section .event .title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  body .events-section .event .desc {
    font-size: 1rem;
  }

  body .events-section .event .mt-50 {
    margin-top: 25px;
  }

  body .events-section .event .quote {
    padding-left: 40px;
    margin-top: 50px;
  }

  body .events-section .event .quote .icon {
    left: 0;
    top: -15px;
    width: 35px;
    height: 35px;
  }

  body .events-section .event .quote .text {
    font-size: 1.5rem;
  }

  body .join-our-team {
    padding: 30px 0 40px;
  }

  body .join-our-team .heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  body .join-our-team .heading br {
    display: none;
  }

  body .join-our-team .btn-see-openings {
    padding: 0 25px;
    font-size: 1.125rem;
  }

  body .career-banner {
    padding: 40px 0 40px;
    text-align: center;
  }

  body .career-banner .career-vector1 {
    display: none;
  }

  body .career-banner .section-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  body .career-banner .section-heading br {
    display: none;
  }

  body .career-banner .section-desc {
    font-size: 1rem;
  }

  body .job-openings {
    padding: 40px 0;
  }

  body .job-openings .box {
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
  }

  body .job-openings .box::after {
    display: none;
  }

  body .job-openings .box .inner {
    padding: 20px 15px 15px 15px;
    border-radius: 15px;
  }

  body .job-openings .box .inner .heading {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  body .job-openings .box .inner .heading br {
    display: none;
  }

  body .job-openings .box .inner .label {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  body .job-openings .box .inner .field {
    height: 45px;
    padding: 12px 15px;
  }

  body .job-openings .box .inner .btn-search {
    width: 100%;
    height: 45px;
    font-size: 1.125rem;
    padding: 10px 20px;
  }

  body .job-openings .box .inner .search-filters {
    display: block;
    margin: 25px 0 20px;
  }

  body .job-openings .box .inner .search-filters .item {
    margin-bottom: 12px;
  }

  body .job-openings .box .inner .vacancies .vacancy {
    display: block;
    padding: 20px 0;
  }

  body .job-openings .box .inner .vacancies .vacancy .btn-details {
    display: block;
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    margin-top: 20px;
  }

  body .job-details-banner {
    padding: 60px 0 60px;
  }

  body .job-details-banner .vector-triangle,
  body .job-details-banner .vector-square,
  body .job-details-banner .vector-circle {
    display: none;
  }

  body .job-details-banner .heading {
    font-size: 2.5rem;
  }

  body .job-details-content .basic-details {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  body .job-details-content .basic-details .item .text {
    font-size: 1rem;
  }

  body .job-details-content .heading {
    margin-bottom: 25px;
  }

  body .job-details-content .desc {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  body .job-details-content .points li {
    font-size: 1rem;
  }

  body .application-form {
    padding: 40px 0 40px;
  }

  body .application-form .box {
    padding: 15px 15px 10px 15px;
    border-radius: 10px;
  }

  body .application-form .box::after {
    display: none;
  }

  body .application-form .box .inner {
    padding: 50px 15px 40px 15px;
    border-radius: 15px;
  }

  body .application-form .box .inner .heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  body .application-form .box .inner .label {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  body .application-form .box .inner .field {
    height: 45px;
    padding: 12px 15px;
  }

  body .application-form .box .inner .field[type=file] {
    background-position: top 9px right 10px;
  }

  body .application-form .box .inner .btn-submit {
    height: 45px;
    font-size: 1.125rem;
    padding: 10px 20px;
    margin-top: 15px;
  }

  body #formSuccessModal .modal-dialog {
    max-width: calc(100% - 1.5rem);
    margin: 0.75rem;
  }

  body #formSuccessModal .modal-dialog .modal-content {
    border-radius: 15px;
  }

  body #formSuccessModal .modal-dialog .modal-content .modal-body {
    padding: 20px 20px 20px;
  }

  body #formSuccessModal .modal-dialog .modal-content .modal-body .btn-close {
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg {
    padding: 30px 25px 30px;
  }

  body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg .icon img {
    width: 60px;
    height: 60px;
  }

  body #formSuccessModal .modal-dialog .modal-content .modal-body .shaded-bg .text {
    font-size: 1.25rem;
  }

  body .not-found-main {
    padding: 60px 0 60px;
  }

  body .not-found-main .vector-triangle,
  body .not-found-main .vector-square,
  body .not-found-main .vector-circle {
    display: none;
  }

  body .not-found-main .content .not-found {
    margin-bottom: 20px;
  }

  body .not-found-main .content .not-found .numb {
    font-size: 100px;
  }

  body .not-found-main .content .not-found .zero-img img {
    width: 80px;
  }

  body .not-found-main .content .text {
    font-size: 1.125rem;
    margin-bottom: 25px;
  }

  body .coming-soon-main {
    padding: 40px 0 40px;
  }

  body .coming-soon-main .content {
    padding-right: 0;
    text-align: center;
  }

  body .coming-soon-main .content .heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  body .coming-soon-main .content .desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  body .coming-soon-main .img {
    width: 90%;
  }

  body .footer {
    padding: 30px 0 30px;
  }

  body .footer .contact-box {
    padding: 15px 15px 20px 15px;
    border-radius: 10px;
    margin-bottom: 50px;
  }

  body .footer .contact-box::after {
    display: none;
  }

  body .footer .contact-box .inner {
    padding: 25px 15px 10px 15px;
    border-radius: 15px;
  }

  body .footer .contact-box .inner .heading {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  body .footer .contact-box .inner .heading br {
    display: none;
  }

  body .footer .contact-box .inner .mb-20 {
    margin-bottom: 16px;
  }

  body .footer .contact-box .inner .item label {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  body .footer .contact-box .inner .item .field {
    height: 45px;
    padding: 12px 15px;
  }

  body .footer .contact-box .inner .telephone-img {
    display: none;
  }

  body .footer .contact-box .inner .btn-talk {
    margin-top: 25px;
    font-size: 1.125rem;
  }

  body .footer .footer-about {
    padding-right: 12px;
  }

  body .footer .footer-about .footer-logo {
    margin-bottom: 35px;
  }

  body .footer .footer-links {
    padding-top: 0;
    width: 50%;
  }

  body .footer .footer-links:last-of-type {
    flex: 1;
  }

  body .footer .footer-links .heading {
    margin-bottom: 30px;
  }

  body .footer .footer-links ul li {
    margin-bottom: 10px;
  }

  body .footer .footer-links .contact-link:last-child {
    margin-bottom: 0;
  }

  body .footer .footer-links .contact-link .icon {
    width: 20px;
  }

  body .footer .footer-links .contact-link br {
    display: none;
  }

  body .footer .newsletter {
    padding: 30px 0 30px;
    border-top: 1px solid #ffffff36;
    border-bottom: 1px solid #ffffff36;
    margin: 40px 0 30px;
  }

  body .footer .newsletter .heading {
    margin-bottom: 15px;
  }

  body .footer .newsletter .text {
    line-height: 1.4;
  }

  body .footer .newsletter .email-to-subscribe {
    display: block;
    max-width: 100%;
    height: 50px;
    font-size: 1rem;
    margin-right: 0;
    margin-bottom: 20px;
  }

  body .footer .newsletter .btn-subscribe {
    height: 50px;
    width: 100%;
    font-size: 1rem;
  }

  body .footer .social-icons {
    margin-top: 18px;
    justify-content: center;
  }

  body .footer .social-icons a .icon {
    width: 30px;
  }

  body .footer .copyright {
    text-align: center;
    margin-bottom: 30px;
  }

  body .footer .sub-links {
    margin-right: 0;
    justify-content: center;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 575.98px) {
  .footer .sub-links {
    display: block !important;
  }

  .footer .sub-links a {
    display: block !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .sub-links a:last-child {
    margin-bottom: 0;
  }
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  transform: translateZ(0) !important;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-duration: 0.6s;
}

[data-aos=fade-up] {
  transform: translate3d(0, 30px, 0) !important;
}

[data-aos=fade-right] {
  transform: translate3d(-30px, 0, 0) !important;
}

[data-aos=fade-left] {
  transform: translate3d(30px, 0, 0) !important;
}

[data-aos=zoom-in] {
  transform: scale(0.9) !important;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1) !important;
  transition-duration: 1s;
}

