/* [project]/node_modules/swiper/modules/pagination.css [app-client] (css) */
.swiper-pagination {
  text-align: center;
  z-index: 10;
  transition: opacity .3s;
  position: absolute;
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  width: 100%;
  left: 0;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  display: inline-block;
}

button.swiper-pagination-bullet {
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, top .2s;
  display: inline-block;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: 100% 0;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  top: 0;
  left: 0;
}

.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  top: 0;
  left: 0;
}

.swiper-pagination-lock {
  display: none;
}


/* [project]/public/styles/home/home.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.hero_sec {
  position: relative;
}

.hero_sec .scrollbar_wrapper {
  z-index: 3;
  --swiper-pagination-color: #fff;
  align-items: center;
  gap: 20px;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 13%;
  transform: translate(-10%, 5%);
}

@media only screen and (width <= 1300px) {
  .hero_sec .scrollbar_wrapper {
    width: 90%;
  }
}

@media only screen and (width <= 768px) {
  .hero_sec .scrollbar_wrapper {
    width: 80%;
  }
}

.hero_sec .scrollbar_wrapper .play_btn {
  --btnsize: 16px;
  vertical-align: middle;
  --btncolor: #fff;
  width: 0;
  height: var(--btnsize);
  border-color: transparent transparent transparent var(--btncolor);
  cursor: pointer;
  border-style: solid;
  border-width: calc(var(--btnsize) * .5) 0 calc(var(--btnsize) * .5) calc(var(--btnsize) * .81);
  background: none;
  transition: all .1s;
  display: inline-block;
}

.hero_sec .scrollbar_wrapper .play_btn.pause {
  border-style: double;
  border-width: 0px 0 0px calc(var(--btnsize) * .81);
}

.hero_sec .scrollbar_wrapper .progress_bar {
  flex: 1;
  position: relative;
}

.hero_sec .soundbar {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  bottom: 15%;
  right: 3%;
  transform: translate(3%, 15%);
}

@media only screen and (width <= 768px) {
  .hero_sec .soundbar {
    ight: 5%;
    bottom: 5%;
    transform: translate(5%, 5%);
  }
}

.hero_sec .soundbar.active .sound_on {
  display: block;
}

.hero_sec .soundbar.active .sound_off, .hero_sec .soundbar .sound_on {
  display: none;
}

.hero_sec .soundbar .sound_off {
  display: block;
}

.hero_sec .swiper-nav.center-full.home-nav {
  max-width: 85%;
}

@media only screen and (width <= 768px) {
  .hero_sec .swiper-nav.center-full.home-nav {
    max-width: 90%;
  }
}

.hero_sec .swiper-nav.center-full.home-nav .swiper-prev, .hero_sec .swiper-nav.center-full.home-nav .swiper-next {
  background: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@media only screen and (width <= 540px) {
  .hero_sec .swiper-nav.center-full.home-nav .swiper-prev, .hero_sec .swiper-nav.center-full.home-nav .swiper-next {
    width: 30px;
    height: 30px;
  }
}

.hero_sec .swiper-nav.center-full.home-nav .swiper-prev svg, .hero_sec .swiper-nav.center-full.home-nav .swiper-next svg {
  vertical-align: middle;
}

.banner.home-banner:before {
  background: linear-gradient(359deg, #0000 0%, #000c 100%), linear-gradient(#0000 14%, #0009 88%);
}

.banner.home-banner .bg {
  height: 100vh;
}

@media only screen and (width <= 540px) {
  .banner.home-banner .bg {
    height: 80vh;
  }
}

.banner.home-banner .bg .banner-wrapper {
  left: 50%;
  top: unset;
  bottom: 10%;
  transform: translate(-50%, 10%);
}

@media only screen and (width <= 768px) {
  .banner.home-banner .bg .banner-wrapper {
    width: 400px;
  }
}

@media only screen and (width <= 540px) {
  .banner.home-banner .bg .banner-wrapper {
    width: 300px;
  }
}

.banner.home-banner .bg .banner-wrapper .heading {
  text-align: center;
}

.banner.home-banner .bg .banner-wrapper .heading h1 {
  font-size: 48px;
}

@media only screen and (width <= 1024px) {
  .banner.home-banner .bg .banner-wrapper .heading h1 {
    font-size: 45px;
  }
}

@media only screen and (width <= 991px) {
  .banner.home-banner .bg .banner-wrapper .heading h1 {
    font-size: 38px;
  }
}

@media only screen and (width <= 768px) {
  .banner.home-banner .bg .banner-wrapper .heading h1 {
    font-size: 32px;
  }
}

.banner.home-banner .bg .banner-wrapper .heading p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

@media only screen and (width <= 540px) {
  .banner.home-banner .bg .banner-wrapper .heading p {
    font-size: 14px;
  }
}

.banner.home-banner .bg .banner-wrapper .heading .btn {
  margin-top: 40px;
}

@media only screen and (width <= 1024px) {
  .banner.home-banner .bg .banner-wrapper .heading .btn {
    margin-top: 35px;
  }
}

@media only screen and (width <= 991px) {
  .banner.home-banner .bg .banner-wrapper .heading .btn {
    margin-top: 30px;
  }
}

.client_slider_wrapper .heading {
  margin-bottom: 4rem;
}

@media only screen and (width <= 991px) {
  .client_slider_wrapper .heading {
    margin-bottom: 3rem;
  }
}

@media only screen and (width <= 768px) {
  .client_slider_wrapper .heading {
    max-width: 300px;
    margin: 0 auto 2rem;
  }
}

@media only screen and (width <= 540px) {
  .client_slider_wrapper .heading {
    margin: 0 auto 1.5rem;
  }
}

.client_slider_wrapper .client_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.client_slider_wrapper .client_slider .swiper-slide figure {
  width: 100%;
  height: 100%;
}

.client_slider_wrapper .client_slider .swiper-slide figure:hover img {
  filter: grayscale(0);
}

.client_slider_wrapper .client_slider .swiper-slide figure img {
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale();
  transition: all .5s;
}

.home-secA .heading {
  margin-bottom: 3rem;
}

@media only screen and (width <= 768px) {
  .home-secA .heading {
    margin-bottom: 2rem;
  }
}

@media only screen and (width <= 540px) {
  .home-secA .heading {
    margin-bottom: 1.5rem;
  }
}

.home-secA .profession_grid {
  grid-gap: 6px 8px;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .home-secA .profession_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-secA .profession_grid .profession_col {
  position: relative;
}

.home-secA .profession_grid .profession_col:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.home-secA .profession_grid .profession_col:hover:before {
  animation: .4s linear shine;
}

.home-secA .profession_grid .profession_col:hover figure img {
  transform: scale(1.1);
}

.home-secA .profession_grid .profession_col:after {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.home-secA .profession_grid .profession_col figure {
  overflow: hidden;
}

.home-secA .profession_grid .profession_col figcaption {
  text-align: center;
  padding: 0 10px 20px;
  bottom: 10%;
  translate: 0 10%;
}

.home-secA .profession_grid .profession_col figcaption h6, .home-secA .profession_grid .profession_col figcaption p {
  color: var(--white);
  transition: all .6s;
}

.home-secA .profession_grid .profession_col figcaption h6 {
  font-size: 24px;
}

@media only screen and (width <= 768px) {
  .home-secA .profession_grid .profession_col figcaption h6 {
    font-size: 20px;
  }
}

.home-secA .profession_grid .profession_col figcaption p {
  font-size: 14px;
}

@media only screen and (width <= 768px) {
  .home-secA .profession_grid .profession_col figcaption p {
    font-size: 12px;
    line-height: 1.2;
  }
}

.home-secA .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

@media only screen and (width <= 768px) {
  .home-secA .btn_wrapper {
    margin-top: 30px;
  }
}

.bestSeller_slider_wrapper {
  z-index: 0;
  position: relative;
}

.bestSeller_slider_wrapper .container-fluid .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

@media only screen and (width <= 768px) {
  .bestSeller_slider_wrapper .container-fluid .btn_wrapper {
    margin-top: 30px;
  }
}

.animate_banner.banner:before {
  background: linear-gradient(270deg, #f8f8f800 90%, #0000 100%);
}

.animate_banner.banner .bg {
  height: 100vh;
}

.animate_banner.banner .banner-wrapper .container {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container {
    flex-direction: column;
    gap: 50px;
  }
}

@media only screen and (width <= 540px) {
  .animate_banner.banner .banner-wrapper .container {
    gap: 20px;
  }
}

.animate_banner.banner .banner-wrapper .container .content {
  flex: 1;
  width: 30%;
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .content {
    text-align: center;
    width: 100%;
  }
}

.animate_banner.banner .banner-wrapper .container .content h2 {
  letter-spacing: 10px;
  padding-bottom: 5px;
  font-size: 50px;
  line-height: 1.5;
}

@media only screen and (width <= 991px) {
  .animate_banner.banner .banner-wrapper .container .content h2 {
    font-size: 40px;
  }
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .content h2 {
    font-size: 32px;
  }
}

@media only screen and (width <= 540px) {
  .animate_banner.banner .banner-wrapper .container .content h2 {
    font-size: 28px;
  }
}

.animate_banner.banner .banner-wrapper .container .content h6 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

@media only screen and (width <= 991px) {
  .animate_banner.banner .banner-wrapper .container .content h6 {
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .content h6 {
    font-size: 16px;
  }
}

@media only screen and (width <= 540px) {
  .animate_banner.banner .banner-wrapper .container .content h6 {
    font-size: 14px;
  }
}

.animate_banner.banner .banner-wrapper .container .content .btn {
  z-index: 1;
  margin-top: 50px;
}

@media only screen and (width <= 540px) {
  .animate_banner.banner .banner-wrapper .container .content .btn {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper {
  width: 45%;
  height: 100%;
  margin-right: 30px;
  position: relative;
  overflow: hidden;
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .animate_slider_wrapper {
    width: 55%;
    margin-right: 0;
  }
}

@media only screen and (width <= 540px) {
  .animate_banner.banner .banner-wrapper .container .animate_slider_wrapper {
    width: 100%;
  }
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .swiper-wrapper {
  justify-content: start;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .swiper-slide-active {
  z-index: 3;
  opacity: 1;
  transform: translate(0)scale(1);
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .swiper-slide-prev {
  z-index: 2;
  opacity: 1;
  transform: translate(89%)scale(.9);
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .swiper-slide-next {
  z-index: 1;
  opacity: 1;
  transform: translate(-52%)scale(.8);
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide {
  transition: transform 1s, z-index 1s, opacity .1s;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide:not(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next) {
  opacity: 0;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figure {
  position: relative;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figure:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(#0000 14%, #0009 88%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figure img {
  width: 100%;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figcaption {
  z-index: 0;
  padding: 0 40px;
  position: absolute;
  bottom: 10%;
  left: 0;
  transform: translate(0, 10%);
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figcaption {
    padding: 0 20px;
  }
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figcaption p {
  color: var(--white);
  font-size: 20px;
}

@media only screen and (width <= 991px) {
  .animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .animate_slider .animate-slide figcaption p {
    font-size: 18px;
  }
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .fraction {
  right: -74%;
  left: unset;
  top: unset;
  z-index: 4;
  --swiper-pagination-fraction-color: #fff;
  position: absolute;
  bottom: 8%;
}

.animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .fraction span {
  font-size: 16px;
  font-weight: 400;
}

@media only screen and (width <= 768px) {
  .animate_banner.banner .banner-wrapper .container .animate_slider_wrapper .fraction span {
    font-size: 14px;
  }
}

.promo-sec.banner .bg {
  height: 80vh;
}

@media only screen and (width <= 768px) {
  .promo-sec.banner .bg {
    height: 50vh;
  }
}

.promo-sec.banner .banner-wrapper {
  top: unset;
  bottom: 15%;
  translate: 0 15%;
}

.promo-sec.banner .banner-wrapper h2 {
  color: var(--white);
  padding-bottom: 10px;
  font-size: 50px;
  line-height: 1.2;
}

@media only screen and (width <= 991px) {
  .promo-sec.banner .banner-wrapper h2 {
    padding-bottom: 15px;
    font-size: 40px;
  }
}

@media only screen and (width <= 768px) {
  .promo-sec.banner .banner-wrapper h2 {
    font-size: 34px;
  }
}

@media only screen and (width <= 540px) {
  .promo-sec.banner .banner-wrapper h2 {
    font-size: 30px;
  }
}

.promo-sec.banner .banner-wrapper p {
  color: var(--white);
  margin-bottom: 50px;
}

@media only screen and (width <= 540px) {
  .promo-sec.banner .banner-wrapper p {
    margin-bottom: 30px;
    line-height: 1.2;
  }
}

@media only screen and (width <= 768px) {
  .counter-sec.banner .bg {
    height: 70vh;
  }
}

.counter-sec.banner .banner-wrapper {
  color: var(--white);
  line-height: 1.2;
}

.counter-sec.banner .banner-wrapper h2 {
  font-size: 36px;
}

@media only screen and (width <= 991px) {
  .counter-sec.banner .banner-wrapper h2 {
    font-size: 30px;
  }
}

@media only screen and (width <= 540px) {
  .counter-sec.banner .banner-wrapper h2 {
    font-size: 24px;
  }
}

.counter-sec.banner .banner-wrapper .subhead {
  max-width: 540px;
  padding: 20px 0 30px;
  font-weight: 300;
  line-height: 1.5;
}

@media only screen and (width <= 540px) {
  .counter-sec.banner .banner-wrapper .subhead {
    padding: 15px 0 20px;
    font-size: 14px;
  }
}

.counter-sec.banner .banner-wrapper .counter-wrapper {
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .counter-sec.banner .banner-wrapper .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.counter-sec.banner .banner-wrapper .counter-wrapper .counter-info-wrap h5 {
  font-family: Lato, sans-serif;
}

.counter-sec.banner .banner-wrapper .counter-wrapper .counter-info-wrap p {
  font-weight: 300;
}

@media only screen and (width <= 1300px) {
  .testimony_slider_wrapper .upper-sec .heading {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media only screen and (width <= 991px) {
  .testimony_slider_wrapper .upper-sec .heading {
    max-width: 500px;
  }
}

@media only screen and (width <= 540px) {
  .category_slider_wrapper.sec-pad, .client_slider_wrapper.sec-pad {
    padding-bottom: 0;
  }
}


/*# sourceMappingURL=_981760f7._.css.map*/