/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --growim-font: "Plus Jakarta Sans", sans-serif;
  --growim-heading-font: "Plus Jakarta Sans", sans-serif;
  --growim-text: #504E4E;
  --growim-text-rgb: 80, 78, 78;
  --growim-text-dark: #D9D9D9;
  --growim-text-dark-rgb: 217, 217, 217;
  --growim-text-gray: #89868d;
  --growim-text-gray-rgb: 137, 134, 141;
  --growim-base: #5B3AEE;
  --growim-base-rgb: 91, 58, 238;
  --growim-secondary: #219BE4;
  --growim-secondary-rgb: 33, 155, 228;
  --growim-primary: #635AD9;
  --growim-primary-rgb: 99, 90, 217;
  --growim-gray: #ECF8FF;
  --growim-gray-rgb: 236, 248, 255;
  --growim-white: #fff;
  --growim-white-rgb: 255, 255, 255;
  --growim-black: #17012C;
  --growim-black-rgb: 23, 1, 44;
  --growim-black2: #00194C;
  --growim-black2-rgb: 0, 25, 76;
  --growim-black3: #000;
  --growim-black3-rgb: 0, 0, 0;
  --growim-border-color: #EAF3F8;
  --growim-border-color-rgb: 234, 243, 248;
  --growim-border2-color: #D4DCFF;
  --growim-border2-color-rgb: 212, 220, 255;
  --growim-letter-space: 0.1em;
  --growim-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--growim-base, #5B3AEE);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--growim-heading-font, "Plus Jakarta Sans", sans-serif);
  color: var(--growim-black, #17012C);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--growim-base, #5B3AEE);
}

.background-gray {
  background-color: var(--growim-gray, #ECF8FF);
}

.background-black {
  background-color: var(--growim-black, #17012C);
}

.background-black-2 {
  background-color: var(--growim-black2, #00194C);
}

.growim-text-dark {
  color: var(--growim-text-dark, #D9D9D9);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.growim-btn {
  display: inline-block;
  position: relative;
  text-align: center;
}
.growim-btn__text {
  position: relative;
  z-index: 1;
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: all 200ms ease;
  padding: 12px 26px;
  border-radius: 100px;
}
.growim-btn__text::after {
  content: "";
  display: block;
  top: -2em;
  left: -2em;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--growim-base, #5B3AEE);
  transition: 0.7s ease;
}
.growim-btn__icon {
  position: relative;
  z-index: 1;
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
  overflow: hidden;
  font-size: 16px;
  display: inline-block;
  transition: all 200ms ease;
  padding: 12px 18px;
  border-radius: 50%;
}
.growim-btn__icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.growim-btn__icon::after {
  content: "";
  display: block;
  top: -2em;
  left: -2em;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--growim-base, #5B3AEE);
  transition: 0.9s ease;
}
.growim-btn:hover .growim-btn__text {
  color: var(--growim-white, #fff);
}
.growim-btn:hover .growim-btn__text::after {
  height: 500px;
  width: 500px;
}
.growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}
.growim-btn:hover .growim-btn__icon i {
  animation: iconTranslateY 0.4s forwards;
}
.growim-btn:hover .growim-btn__icon::after {
  height: 500px;
  width: 500px;
}
.growim-btn--white .growim-btn__text {
  background-color: var(--growim-white, #fff);
  color: var(--growim-secondary, #219BE4);
}
.growim-btn--white .growim-btn__text::after {
  background-color: var(--growim-secondary, #219BE4);
}
.growim-btn--white .growim-btn__icon::after {
  background-color: var(--growim-white, #fff);
}
.growim-btn--white:hover .growim-btn__icon {
  color: var(--growim-secondary, #219BE4);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--growim-base, #5B3AEE);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--growim-text, #504E4E);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--growim-black, #17012C);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--growim-base, #5B3AEE);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--growim-black, #17012C);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--growim-base, #5B3AEE);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--growim-black, #17012C);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 60px 0 0;
  padding: 60px 0 0;
  list-style: none;
}
.post-pagination.text-left {
  justify-content: flex-start;
}
.post-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--growim-gray, #ECF8FF);
  border: 1px solid var(--growim-gray, #ECF8FF);
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  transition: 500ms ease;
}
.post-pagination a:hover {
  background-color: transparent;
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-primary, #635AD9);
}
.post-pagination a.current {
  font-weight: 800;
  background-color: transparent;
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-primary, #635AD9);
}
.post-pagination a.prev {
  font-weight: normal;
  margin-right: 3px;
}
.post-pagination a.prev:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.post-pagination a.next {
  font-weight: normal;
  margin-left: 3px;
}
.post-pagination a.next:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}

.growim-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.growim-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.growim-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  color: var(--growim-primary, #635AD9);
  transition: all 500ms ease;
  position: relative;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--growim-border-color, #EAF3F8);
  border: none;
  position: relative;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--growim-base, #5B3AEE);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--growim-base, #5B3AEE);
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after, .growim-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.growim-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 48px;
    margin-top: -2px;
  }
}
.sec-title__tagline {
  margin: 0;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 13px;
}
.sec-title__title {
  margin: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
  margin: 0;
}
.sec-title__title span {
  background-image: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-base, #5B3AEE) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 50px;
    line-height: 64px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--growim-black, #17012C);
  color: var(--growim-white, #fff);
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--growim-gray, #ECF8FF);
  background-image: none;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  color: var(--growim-text, #504E4E);
}
.ui-datepicker-calendar td a {
  border-color: var(--growim-border-color, #EAF3F8);
  background-color: var(--growim-gray, #ECF8FF);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--growim-border-color, #EAF3F8);
  background-color: var(--growim-gray, #ECF8FF);
  background-image: none;
  color: var(--growim-text, #504E4E);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-base, #5B3AEE);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--growim-white, #fff);
  background-color: var(--growim-base, #5B3AEE);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--growim-white, #fff);
  color: var(--growim-black, #17012C);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--growim-base, #5B3AEE);
  color: var(--growim-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--growim-primary, #635AD9);
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .video-one {
    padding: 80px 0 0;
  }
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-position: top center;
  opacity: 0.2;
}
.video-one .container {
  position: relative;
}
.video-one .sec-title {
  position: relative;
}
.video-one .sec-title__tagline {
  background: linear-gradient(90deg, var(--growim-white, #fff) 0%, var(--growim-white, #fff) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-one .sec-title__title {
  color: var(--growim-white, #fff);
}
.video-one__counter {
  margin: 0;
  padding: 53px 0 0 32px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .video-one__counter {
    padding: 0 0 45px;
  }
}
@media (max-width: 767px) {
  .video-one__counter {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
.video-one__counter li {
  list-style: none;
  position: relative;
}
.video-one__counter li:not(:last-of-type)::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--growim-white, #fff);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -24%;
}
@media (max-width: 1199px) {
  .video-one__counter li:not(:last-of-type)::after {
    right: -90%;
  }
}
@media (max-width: 991px) {
  .video-one__counter li:not(:last-of-type)::after {
    right: -48%;
  }
}
@media (max-width: 767px) {
  .video-one__counter li:not(:last-of-type)::after {
    display: none;
  }
}
.video-one__counter__number {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--growim-white, #fff);
  line-height: 1;
  margin: 0 0 12px;
}
.video-one__counter__text {
  font-size: 20px;
  color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.9);
  text-transform: capitalize;
  margin: 0;
  line-height: 1;
}
.video-one__wrapper {
  position: relative;
  margin-right: -100px;
}
@media (max-width: 1199px) {
  .video-one__wrapper {
    margin: 0 15px;
  }
}
.video-one__wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0 100px 0 0;
}
@media (max-width: 767px) {
  .video-one__wrapper img {
    border-radius: 0;
  }
}
.video-one__wrapper .video-popup {
  width: 80px;
  height: 80px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 24px;
  color: var(--growim-white, #fff);
  transition: all 500ms ease;
  transform: scale(1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.video-one__wrapper .video-popup .ripple,
.video-one__wrapper .video-popup .ripple:before,
.video-one__wrapper .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--growim-white-rgb, 255, 255, 255), 0.5);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-one__wrapper .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-one__wrapper .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.video-one__wrapper .video-popup:hover {
  transform: scale(1.1);
}

.video-two {
  position: relative;
  background-color: var(--growim-black, #17012C);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-black, #17012C);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--growim-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--growim-base, #5B3AEE);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--growim-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--growim-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--growim-base, #5B3AEE);
}

.team-one {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0;
  }
}
.team-one__shape-one {
  position: absolute;
  left: 0;
  top: 150px;
  width: 312px;
  height: 324px;
}
@media (max-width: 1499px) {
  .team-one__shape-one {
    display: none;
  }
}
.team-one__shape-two {
  position: absolute;
  left: 60px;
  top: 265px;
  width: 157px;
  height: 34px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1299px) {
  .team-one__shape-two {
    display: none;
  }
}
.team-one__shape-three {
  position: absolute;
  left: 18%;
  bottom: -10%;
  width: 610px;
  height: 610px;
}
@media (max-width: 1299px) {
  .team-one__shape-three {
    display: none;
  }
}
.team-one__shape-four {
  position: absolute;
  left: 35%;
  top: 0%;
  width: 787px;
  height: 787px;
}
@media (max-width: 1299px) {
  .team-one__shape-four {
    display: none;
  }
}
.team-one__shape-five {
  position: absolute;
  right: 0;
  top: 3%;
  width: 560px;
  height: 560px;
}
@media (max-width: 1299px) {
  .team-one__shape-five {
    display: none;
  }
}
.team-one__shape-six {
  position: absolute;
  right: 1%;
  bottom: 0;
  width: 265px;
  height: 110px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1299px) {
  .team-one__shape-six {
    display: none;
  }
}

.team-card {
  position: relative;
  background: linear-gradient(180deg, var(--growim-primary, #635AD9) 0%, rgba(var(--growim-secondary-rgb, 33, 155, 228), 0.3) 100%);
  border-radius: 135px;
  z-index: 1;
  overflow: hidden;
  padding: 5px;
}
.team-card__image {
  position: relative;
  z-index: 2;
}
.team-card__image img {
  border-radius: 135px 135px 0 0;
  width: 100%;
}
.team-card__hover {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__social {
  background-color: var(--growim-primary, #635AD9);
  border: 3px solid var(--growim-white, #fff);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 500ms ease;
}
.team-card__social > i {
  width: 48px;
  height: 48px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-card__social__list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  transform: translateY(50px) scale(0, 1);
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transition: 500ms ease;
  transform-origin: bottom;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 58px;
}
.team-card__social__list a {
  width: 36px;
  height: 36px;
  background-color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--growim-white, #fff);
  font-size: 14px;
  transition: all 500ms ease;
}
.team-card__social__list a + a {
  margin-top: 8px;
}
.team-card__social__list a:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-black, #17012C);
}
.team-card__social:hover .team-card__social__list {
  opacity: 1;
  transform: translateY(0) scale(1, 1);
}
.team-card__content {
  position: relative;
  padding: 45px 15px 34px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 0 0 135px 135px;
  text-align: center;
}
.team-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1818181818em;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin-bottom: 10px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__designation {
  line-height: 1em;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
}

.team-two {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-two {
    padding: 80px 0;
  }
}
.team-two__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 915px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1299px) {
  .team-two__shape-one {
    display: none;
  }
}

.team-card-two {
  position: relative;
  padding: 0 0 16px;
}
.team-card-two__image {
  position: relative;
  z-index: 2;
  max-width: 270px;
  min-height: 316px;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  transition: all 500ms ease;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 270 310" xmlns="http://www.w3.org/2000/svg"><path d="M124.899 2.91111C131.138 -0.740022 138.862 -0.740025 145.101 2.91111L260.101 70.2074C266.232 73.7951 270 80.3656 270 87.4691V222.531C270 229.634 266.232 236.205 260.101 239.793L145.101 307.089C138.862 310.74 131.138 310.74 124.899 307.089L9.89874 239.793C3.76785 236.205 0 229.634 0 222.531V87.4691C0 80.3656 3.76785 73.7951 9.89874 70.2074L124.899 2.91111Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 270 310" xmlns="http://www.w3.org/2000/svg"><path d="M124.899 2.91111C131.138 -0.740022 138.862 -0.740025 145.101 2.91111L260.101 70.2074C266.232 73.7951 270 80.3656 270 87.4691V222.531C270 229.634 266.232 236.205 260.101 239.793L145.101 307.089C138.862 310.74 131.138 310.74 124.899 307.089L9.89874 239.793C3.76785 236.205 0 229.634 0 222.531V87.4691C0 80.3656 3.76785 73.7951 9.89874 70.2074L124.899 2.91111Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.team-card-two__image img {
  width: 100%;
  height: auto;
  transition: all 500ms ease;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 270 310" xmlns="http://www.w3.org/2000/svg"><path d="M124.899 2.91111C131.138 -0.740022 138.862 -0.740025 145.101 2.91111L260.101 70.2074C266.232 73.7951 270 80.3656 270 87.4691V222.531C270 229.634 266.232 236.205 260.101 239.793L145.101 307.089C138.862 310.74 131.138 310.74 124.899 307.089L9.89874 239.793C3.76785 236.205 0 229.634 0 222.531V87.4691C0 80.3656 3.76785 73.7951 9.89874 70.2074L124.899 2.91111Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 270 310" xmlns="http://www.w3.org/2000/svg"><path d="M124.899 2.91111C131.138 -0.740022 138.862 -0.740025 145.101 2.91111L260.101 70.2074C266.232 73.7951 270 80.3656 270 87.4691V222.531C270 229.634 266.232 236.205 260.101 239.793L145.101 307.089C138.862 310.74 131.138 310.74 124.899 307.089L9.89874 239.793C3.76785 236.205 0 229.634 0 222.531V87.4691C0 80.3656 3.76785 73.7951 9.89874 70.2074L124.899 2.91111Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.team-card-two__image::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  content: "";
  transition: all 500ms ease;
  background-color: var(--growim-primary, #635AD9);
  z-index: -1;
  opacity: 0;
}
.team-card-two__image::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  transition: all 500ms ease;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(242, 107, 1) 100%);
}
.team-card-two:hover .team-card-two__image {
  padding: 3px;
}
.team-card-two:hover .team-card-two__image::before {
  opacity: 1;
}
.team-card-two:hover .team-card-two__image::after {
  height: calc(100% - 6px);
}
.team-card-two__content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -30px;
  width: 100%;
  text-align: center;
  padding: 0 15px 51px;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}
.team-card-two:hover .team-card-two__content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.team-card-two__social {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.team-card-two__social a {
  width: 36px;
  height: 36px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--growim-white, #fff);
  border: 1px solid var(--growim-white, #fff);
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-card-two__social a:hover {
  background-color: var(--growim-white, #fff);
  color: var(--growim-primary, #635AD9);
}
.team-card-two__social a:first-child, .team-card-two__social a:last-child {
  position: relative;
  top: -18px;
}
.team-card-two__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1818181818em;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin-bottom: 10px;
}
.team-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-two__title a:hover {
  background-size: 100% 1px;
}
.team-card-two__designation {
  line-height: 1em;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
}
.team-card-two__border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 227px;
  height: 66px;
  transition: all 500ms ease;
  background-color: var(--growim-border-color, #EAF3F8);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 230 67" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 2L109.825 62.3329C116.114 65.8356 123.8 65.6883 129.95 61.9472L228.5 2" stroke="currentColor" stroke-width="3"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 230 67" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 2L109.825 62.3329C116.114 65.8356 123.8 65.6883 129.95 61.9472L228.5 2" stroke="currentColor" stroke-width="3"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.team-card-two:hover .team-card-two__border {
  background-color: var(--growim-primary, #635AD9);
}

.team-three {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-three {
    padding: 80px 0;
  }
}
.team-three__shape-one {
  position: absolute;
  right: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
}
@media (max-width: 1300px) {
  .team-three__shape-one {
    display: none;
  }
}
.team-three__shape-two {
  position: absolute;
  right: 2%;
  top: 20%;
  bottom: 0;
  margin: auto;
  width: 93px;
  height: 93px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1300px) {
  .team-three__shape-two {
    display: none;
  }
}
.team-three__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  margin: 0 0 48px;
}
@media (max-width: 767px) {
  .team-three__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.team-three__top .sec-title {
  padding: 0 0 0;
}
.team-three__top .growim-btn {
  flex-shrink: 0;
  margin-bottom: 5px;
}

.team-card-three {
  position: relative;
  padding: 0 0;
}
.team-card-three__image {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0;
  transition: all 500ms ease;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
}
.team-card-three__image img {
  width: auto !important;
  margin: auto;
  max-width: 100%;
  height: auto;
  transition: all 500ms ease;
}
.team-card-three__hover {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  transition: all 500ms ease;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 100px;
  visibility: hidden;
}
.team-card-three:hover .team-card-three__hover {
  bottom: 20px;
  visibility: visible;
}
.team-card-three__bg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  transition: all 500ms ease;
  background-color: var(--growim-border-color, #EAF3F8);
  border-radius: 100px;
}
.team-card-three__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 40px;
  width: calc(100% - 60px);
  text-align: center;
  padding: 20.2px 15px;
  border-radius: 80px;
  background-color: var(--growim-white, #fff);
  overflow: hidden;
  transition: all 500ms ease;
}
.team-card-three__content::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-primary, #635AD9);
  content: "";
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.team-card-three:hover .team-card-three__content::after {
  transform-origin: top center;
  transform: scale(1, 1);
}
.team-card-three__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1818181818em;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.team-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-three__title a:hover {
  background-size: 100% 1px;
}
.team-card-three:hover .team-card-three__title {
  color: var(--growim-white, #fff);
}
.team-card-three__designation {
  line-height: 1em;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 300ms ease;
}
.team-card-three:hover .team-card-three__designation {
  color: var(--growim-white, #fff);
}

.team-four {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-four {
    padding: 80px 0;
  }
}
.team-four__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  margin: 0 0 48px;
}
@media (max-width: 767px) {
  .team-four__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.team-four__top .sec-title {
  padding: 0 0 0;
}
.team-four__top .growim-btn {
  flex-shrink: 0;
  margin-bottom: 5px;
}
.team-four__top .growim-btn__text {
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
.team-four--page {
  position: relative;
}
@media (min-width: 992px) {
  .team-four--page {
    padding-bottom: 160px;
  }
}

.team-card-four {
  position: relative;
  padding: 37px 37px 23px;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  border-radius: 12px;
  transition: all 500ms ease;
}
.team-card-four:hover {
  border-color: var(--growim-primary, #635AD9);
}
.team-card-four__image {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0;
  transition: all 500ms ease;
  overflow: hidden;
  border-radius: 50%;
}
.team-card-four__image img {
  width: 100% !important;
  height: auto;
  object-fit: cover;
  transition: all 500ms ease;
}
.team-card-four__content {
  position: relative;
  text-align: center;
  padding: 26px 12px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card-four__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.team-card-four__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1818181818em;
  text-transform: capitalize;
  margin-bottom: 17px;
}
.team-card-four__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-four__title a:hover {
  background-size: 100% 1px;
}
.team-card-four__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.team-card-four__designation {
  line-height: 1em;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 300ms ease;
}
.team-card-four__social {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
}
.team-card-four__social a {
  color: var(--growim-text, #504E4E);
  font-size: 20px;
  transition: all 500ms ease;
}
.team-card-four__social a:hover {
  color: var(--growim-primary, #635AD9);
}

.team-details {
  padding: 120px 0 60px;
  position: relative;
}
@media (max-width: 767px) {
  .team-details {
    padding: 80px 0 40px;
  }
}
.team-details__inner {
  position: relative;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  overflow: hidden;
  padding: 29px;
}
@media (max-width: 767px) {
  .team-details__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.team-details__image {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.team-details__image img {
  max-width: 100%;
}
.team-details__content {
  position: relative;
  padding: 0 0 0 0;
}
@media (min-width: 1200px) {
  .team-details__content {
    margin-left: -53px;
  }
}
.team-details__title {
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 1;
  margin-bottom: 6px;
}
.team-details__designation {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-transform: capitalize;
  margin: 0;
}
.team-details__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .team-details__social {
    position: relative;
    top: 0;
    justify-content: flex-start;
    margin: 15px 0 0;
  }
}
.team-details__social a {
  width: 36px;
  height: 36px;
  background-color: var(--growim-gray, #ECF8FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growim-primary, #635AD9);
  border-radius: 50%;
  font-size: 14px;
  transition: all 500ms ease;
}
.team-details__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.team-details__social a:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.team-details__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.team-details__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--growim-border-color, #EAF3F8);
  margin: 24px 0 20px;
}
.team-details__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0 0 12px;
}
.team-details__sign {
  position: relative;
  margin: 68px 0 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
.team-details__sign img {
  max-width: 100%;
  height: auto;
}
.team-details__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .team-details__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.team-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-text, #504E4E);
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-details__list li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details__list li a:hover {
  background-size: 100% 1px;
}
.team-details__list li a:hover {
  color: var(--growim-primary, #635AD9);
}
.team-details__list li:hover .team-details__list__icon {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.team-details__list li:hover .team-details__list__icon span {
  animation: iconTranslateY 0.4s forwards;
}
.team-details__list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--growim-gray, #ECF8FF);
  color: var(--growim-primary, #635AD9);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.4s;
}
.team-details__list__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-details-info {
  position: relative;
  padding: 60px 0 215px;
  margin-bottom: -115px;
  background-color: var(--growim-gray, #ECF8FF);
}
@media (max-width: 767px) {
  .team-details-info {
    padding-bottom: 190px;
  }
}
.team-details-info__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 24px;
  letter-spacing: -0.48px;
  font-weight: 600;
  margin-bottom: 19px;
}
.team-details-info__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0 0 30px;
}
.team-details-info__area {
  margin-top: 52px;
  position: relative;
  background-color: var(--growim-white, #fff);
  padding: 30px 42px 60px;
}
@media (max-width: 767px) {
  .team-details-info__area {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.team-details-info__area .team-details-info__title {
  margin-bottom: 35px;
  font-size: 20px;
}
.team-details-info__area .team-details-info__text {
  margin: 17px 0 0;
}
.team-details-info__progress {
  position: relative;
  margin-bottom: 26px;
}
.team-details-info__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}
.team-details-info__progress__bar {
  width: 100%;
  height: 15px;
  background-color: var(--growim-gray, #ECF8FF);
  position: relative;
}
.team-details-info__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--growim-primary, #635AD9);
  transition: all 700ms linear;
  width: 0px;
}
.team-details-info__progress__number {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--growim-primary, #635AD9);
}

.blog-card {
  position: relative;
  background-color: var(--growim-white, #fff);
  border-radius: 8px;
  overflow: hidden;
  transition: all 400ms ease;
}
.blog-card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--growim-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover .blog-card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__content {
  background-color: var(--growim-white, #fff);
  padding: 30px;
  position: relative;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 30px 20px;
  }
}
.blog-card__meta {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 15px;
  gap: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta {
    gap: 15px;
  }
}
.blog-card__meta__cat {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-primary, #635AD9);
  border: 1px solid var(--growim-border-color, #EAF3F8);
  border-radius: 100px;
  padding: 3px 15px;
}
.blog-card__meta__cat:hover {
  background-color: var(--growim-primary, #635AD9);
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.blog-card__meta__date {
  font-weight: 500;
  text-transform: uppercase;
}
.blog-card__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 1px solid var(--growim-border2-color, #D4DCFF);
  line-height: 32px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  font-weight: bold;
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card__author img {
  width: 44px !important;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-card__author__content {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  text-transform: capitalize;
}
.blog-card__author__content span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--growim-black2, #00194C);
}
.blog-card__author__content span a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__author__content span a:hover {
  background-size: 100% 1px;
}
.blog-card__author__content span a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--growim-gray, #ECF8FF);
  font-size: 14px;
  color: var(--growim-primary, #635AD9);
  border-radius: 4px;
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
}
.blog-card__link:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}

.blog-one {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0;
  }
}
.blog-one__shape-one {
  position: absolute;
  left: 60px;
  top: 165px;
  width: 157px;
  height: 34px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1499px) {
  .blog-one__shape-one {
    display: none;
  }
}
.blog-one__shape-two {
  position: absolute;
  left: 20px;
  bottom: -70px;
  width: 646px;
  height: 646px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .blog-one__shape-two {
    display: none;
  }
}
.blog-one__shape-three {
  position: absolute;
  right: 185px;
  top: -100px;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .blog-one__shape-three {
    display: none;
  }
}
.blog-one__shape-four {
  position: absolute;
  right: 0;
  bottom: -190px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .blog-one__shape-four {
    display: none;
  }
}
.blog-one__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .blog-one__top {
    flex-direction: column;
  }
}
.blog-one__top .growim-btn {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .blog-one__top .growim-btn {
    margin: -5px 0 40px;
  }
}
.blog-one--home-three {
  background-color: transparent;
}
.blog-one--home-three .blog-card {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
}
.blog-one--home-three .blog-card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);
}
.blog-one--home-five {
  position: relative;
}
.blog-one--home-five .growim-btn__text {
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
.blog-one--page {
  background-color: transparent;
}
@media (min-width: 992px) {
  .blog-one--page {
    padding-bottom: 160px;
  }
}
.blog-one--page .blog-card {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
}
.blog-one--standar .post-pagination {
  border: none;
  margin-top: 0;
  padding-top: 30px;
}

.blog-two {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0 0;
  }
}
.blog-two__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .blog-two__top {
    flex-direction: column;
  }
}
.blog-two__top .growim-btn {
  margin-top: 28px;
  flex-shrink: 0;
}
.blog-two__top .growim-btn__text {
  background-color: rgba(242, 107, 1, 0.1);
  color: var(--growim-primary, #635AD9);
}
.blog-two__top .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.blog-two__top .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.blog-two__top .growim-btn__icon::after {
  background-color: rgba(242, 107, 1, 0.1);
}
.blog-two__top .growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}
@media (max-width: 767px) {
  .blog-two__top .growim-btn {
    margin: -5px 0 40px;
  }
}

.blog-card-two {
  position: relative;
}
.blog-card-two__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}
.blog-card-two__image img {
  transition: 0.5s;
  width: 100%;
  min-height: 582px;
  object-fit: cover;
}
.blog-card-two__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-two__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-two__image::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(242, 107, 1) 100%);
}
.blog-card-two:hover .blog-card-two__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-two__date {
  width: 64px;
  height: 53px;
  background-color: var(--growim-primary, #635AD9);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--growim-white, #fff);
  padding: 0;
  line-height: 1.2em;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 10px;
  z-index: 10;
  text-transform: uppercase;
  font-weight: 400;
  flex-direction: column;
}
.blog-card-two__date span {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.blog-card-two__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 0 30px 43px;
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  margin-bottom: 11px;
}
.blog-card-two__meta li {
  color: var(--growim-white, #fff);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card-two__meta li i {
  font-size: 20px;
  margin-right: 8px;
}
.blog-card-two__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__meta li a:hover {
  background-size: 100% 1px;
}
.blog-card-two__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--growim-white, #fff);
}
.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}

.blog-card-three {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  padding: 19px;
  border-radius: 20px;
}
.blog-card-three--mb30 {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-three {
    gap: 20px;
  }
  .blog-card-three .blog-card-three__meta {
    gap: 8px;
    margin-right: -10px;
  }
  .blog-card-three .blog-card-three__meta i {
    font-size: 15px;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .blog-card-three {
    flex-direction: column;
  }
}
.blog-card-three__image {
  position: relative;
  margin: 0;
  width: 47.6%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-card-three__image {
    width: 100%;
  }
}
.blog-card-three__image img {
  transition: 0.5s;
  width: 100%;
  min-height: 236px;
  object-fit: cover;
}
.blog-card-three__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-three__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-three:hover .blog-card-three__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-three__date {
  width: 64px;
  height: 53px;
  background-color: var(--growim-primary, #635AD9);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--growim-white, #fff);
  padding: 0;
  line-height: 1.2em;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 10px;
  z-index: 10;
  text-transform: uppercase;
  font-weight: 400;
  flex-direction: column;
}
.blog-card-three__date span {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.blog-card-three__content {
  position: relative;
  padding: 0;
  width: 52.4%;
}
@media (max-width: 767px) {
  .blog-card-three__content {
    width: 100%;
  }
}
.blog-card-three__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  margin-bottom: 11px;
}
.blog-card-three__meta li {
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card-three__meta li i {
  color: var(--growim-primary, #635AD9);
  font-size: 20px;
  margin-right: 8px;
}
.blog-card-three__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__meta li a:hover {
  background-size: 100% 1px;
}
.blog-card-three__meta li a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-three__title {
  margin: 0 0 31px;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-three__title {
    font-size: 21px;
    line-height: 30px;
  }
}
.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__title a:hover {
  background-size: 100% 1px;
}
.blog-card-three__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-three__author {
  display: flex;
  align-items: center;
  gap: 17px;
}
.blog-card-three__author img {
  width: 56px !important;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-card-three__author__content {
  position: relative;
  font-size: 16px;
  color: var(--growim-black, #17012C);
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
}
.blog-card-three__author__content span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--growim-primary, #635AD9);
  margin-bottom: 6px;
}
.blog-card-three__author__content a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__author__content a:hover {
  background-size: 100% 1px;
}
.blog-card-three__author__content a:hover {
  color: var(--growim-primary, #635AD9);
}

.blog-three {
  padding: 232px 0 120px;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-three {
    padding: 190px 0 80px;
  }
}
.blog-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.08;
}
.blog-three__shape {
  position: absolute;
  left: 0;
  top: 115px;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

.blog-card-four {
  position: relative;
  border-radius: 20px;
  padding: 16px;
  background-color: var(--growim-white, #fff);
  overflow: hidden;
  transition: all 400ms ease;
}
.blog-card-four:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-card-four__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-card-four__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card-four__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-four__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-four__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-four__image__link::before, .blog-card-four__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--growim-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-four__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-four:hover .blog-card-four__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-four:hover .blog-card-four__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-four:hover .blog-card-four__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-four__date {
  width: 59px;
  height: 61px;
  background-image: linear-gradient(180deg, #1138e6 0%, #e501fe 100%);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--growim-white, #fff);
  padding: 0;
  line-height: 1.2em;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 10px;
  z-index: 10;
  text-transform: capitalize;
  font-weight: 400;
  flex-direction: column;
}
.blog-card-four__date span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 7px;
}
.blog-card-four__content {
  position: relative;
  padding: 23px 14px 9px;
}
.blog-card-four__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  margin-bottom: 12px;
}
.blog-card-four__meta li {
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.blog-card-four__meta li i {
  color: var(--growim-primary, #635AD9);
  font-size: 20px;
  margin-right: 8px;
}
.blog-card-four__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-four__meta li a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-four__title {
  margin: 0 0 11px;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.blog-card-four__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-four__title a:hover {
  background-size: 100% 1px;
}
.blog-card-four__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-four__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
}
.blog-card-four__link i {
  position: relative;
  top: 1px;
  display: inline-block;
}
.blog-card-four__link:hover {
  color: var(--growim-primary, #635AD9);
}

.blog-card-list {
  position: relative;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
  padding-bottom: 30px;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  max-width: 100%;
  border-radius: 20px;
}
.blog-card-list__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-list__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-list__image__link::before, .blog-card-list__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--growim-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-list__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-list:hover .blog-card-list__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__date {
  width: 55px;
  height: 51px;
  background-color: #F2EEEA;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 16px;
  color: var(--growim-black, #17012C);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 6px;
  z-index: 2;
  flex-direction: column;
}
.blog-card-list__date span {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  border-radius: 6px;
  padding: 5.5px 5px;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}
.blog-card-list__content {
  position: relative;
  padding: 28px 0 0;
}
.blog-card-list__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  margin-bottom: 16px;
}
.blog-card-list__meta li {
  color: var(--growim-text, #504E4E);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.blog-card-list__meta li i {
  color: var(--growim-primary, #635AD9);
  margin-right: 10px;
}
.blog-card-list__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-list__meta li a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-list__title {
  margin: 0 0 13px;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 37px;
  font-weight: 700;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-card-list__text {
  margin: 0 0 22px;
  text-transform: capitalize;
}
.blog-card-list__link {
  position: relative;
  z-index: 1;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  transition: all 400ms ease;
  padding: 9.4px 20px;
  border-radius: 10px;
}
.blog-card-list__link::after {
  content: "";
  display: block;
  top: -2em;
  left: -2em;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--growim-black, #17012C);
  transition: 0.6s ease;
}
.blog-card-list__link:hover {
  color: var(--growim-white, #fff);
}
.blog-card-list__link:hover::after {
  height: 500px;
  width: 500px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one label {
  display: block;
  line-height: 1;
  color: var(--growim-white, #fff);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 14px;
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: var(--growim-white, #fff);
  border-radius: 10px;
  border: none;
  outline: none !important;
  color: var(--growim-text, #504E4E);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=tel],
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 56px;
  background-color: var(--growim-white, #fff);
  border-radius: 10px;
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}
.form-one textarea {
  width: 100%;
  height: 110px;
  padding-top: 15px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one button {
  background-color: var(--growim-white, #fff);
  color: var(--growim-primary, #635AD9);
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  outline: none;
  height: 56px;
  line-height: 1;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.form-one button:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--growim-base, #5B3AEE);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--growim-base, #5B3AEE);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--growim-base, #5B3AEE);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.mail-section {
  position: relative;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
  margin-bottom: -113px;
}
.mail-section__inner {
  position: relative;
  z-index: 1;
  background-color: var(--growim-base, #5B3AEE);
  border-radius: 20px;
  padding: 0 60px 0 100px;
}
@media (max-width: 1199px) {
  .mail-section__inner {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .mail-section__inner {
    padding: 0 25px;
  }
}
.mail-section__shape-one {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1199px) {
  .mail-section__shape-one {
    display: none;
  }
}
.mail-section__shape-two {
  position: absolute;
  left: 36%;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 116px;
  height: 116px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .mail-section__shape-two {
    display: none;
  }
}
.mail-section__shape-three {
  position: absolute;
  left: 45%;
  top: 20px;
  width: 35px;
  height: 18px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .mail-section__shape-three {
    display: none;
  }
}
.mail-section__shape-four {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.mail-section__image {
  position: relative;
  margin-top: -39px;
}
.mail-section__image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .mail-section__image {
    display: none;
  }
}
.mail-section__form {
  position: relative;
  padding: 52px 0;
}
@media (min-width: 1200px) {
  .mail-section__form {
    margin-left: -14px;
  }
}
.mail-section__form__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--growim-white, #fff);
  margin-bottom: 22px;
}
.mail-section__form .mc-form {
  position: relative;
  width: 100%;
}
.mail-section__form .mc-form input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 56px;
  background-color: var(--growim-white, #fff);
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 400;
  padding-left: 22px;
  padding-right: 60px;
  border-radius: 100px;
  transition: all 500ms ease;
}
.mail-section__form .mc-form button[type=submit] {
  background-color: var(--growim-base, #5B3AEE);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--growim-white, #fff);
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.mail-section__form .mc-form button[type=submit]:hover {
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
}
.mail-section--home-four {
  position: relative;
  background-color: transparent;
}
.mail-section--home-four .mail-section__shape-five {
  position: absolute;
  left: 14%;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 225px;
  height: 210px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .mail-section--home-four .mail-section__shape-five {
    display: none;
  }
}
.mail-section--inner {
  background-color: transparent;
}

.main-footer {
  position: relative;
  background-color: var(--growim-black, #17012C);
}
.main-footer__top {
  padding-top: 214px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .main-footer__top {
    padding-top: 190px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
  mix-blend-mode: screen;
  background-size: cover;
  background-position: center center;
}
.main-footer__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: movebounce3 4s linear infinite;
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom {
  text-align: center;
}
.main-footer__bottom__inner {
  padding: 22px 0;
  border-top: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    gap: 15px;
  }
}
.main-footer__bottom__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-footer__bottom__menu li {
  color: var(--growim-text-dark, #D9D9D9);
}
.main-footer__bottom__menu li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__bottom__menu li a:hover {
  background-size: 100% 1px;
}
.main-footer__bottom__menu li a:hover {
  color: var(--growim-primary, #635AD9);
}
.main-footer__copyright {
  margin: 0;
  color: var(--growim-text-dark, #D9D9D9);
}
.main-footer--three {
  position: relative;
}
.main-footer--three .main-footer__top {
  padding: 0 0 12px;
}
.main-footer--three .mail-section__inner {
  padding: 43px 40px;
  border-radius: 0 0 20px 20px;
  margin-bottom: 70px;
  overflow: hidden;
  background-color: var(--growim-primary, #635AD9);
  position: relative;
}
@media (max-width: 991px) {
  .main-footer--three .mail-section__inner {
    text-align: center;
  }
}
.main-footer--three .mail-section__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.1;
  z-index: -1;
}
.main-footer--three .mail-section__form {
  margin: 0 auto;
  padding: 0;
  max-width: 504px;
}
@media (max-width: 991px) {
  .main-footer--three .mail-section__form {
    margin: 20px auto;
  }
}
.main-footer--three .mail-section__form .mc-form input[type=text] {
  padding-left: 25px;
}
.main-footer--three .footer-widget__logo {
  margin: 0;
}
.main-footer--three__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
@media (max-width: 991px) {
  .main-footer--three__social {
    text-align: center;
    justify-content: center;
  }
}
.main-footer--three__social a {
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: var(--growim-white, #fff);
  border: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.main-footer--three__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-footer--three__social a:hover {
  color: var(--growim-primary, #635AD9);
  border-color: var(--growim-white, #fff);
  background-color: var(--growim-white, #fff);
}
.main-footer--three__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.main-footer--three .footer-widget--contact {
  padding-left: 0;
  margin-left: 0;
}
.main-footer--three .footer-widget--links {
  margin-right: 0;
  padding-left: 0;
}
.main-footer--home-five {
  position: relative;
}
.main-footer--home-five .footer-widget .growim-btn__text {
  font-size: 16px;
  color: var(--growim-white, #fff);
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
  padding: 7px 24px;
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 22px;
}
.footer-widget__text {
  color: var(--growim-text-dark, #D9D9D9);
  margin-bottom: 22px;
}
.footer-widget .growim-btn__text {
  font-size: 14px;
  padding: 8px 16px;
}
.footer-widget .growim-btn__icon {
  font-size: 12px;
  padding: 10px 14px;
}
.footer-widget__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
}
.footer-widget__social__text {
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--growim-text-dark, #D9D9D9);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget__social__text::before {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: currentColor;
  content: "";
}
.footer-widget__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.8);
  transition: all 500ms ease;
}
.footer-widget__social a:hover {
  color: var(--growim-primary, #635AD9);
}
.footer-widget__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin: 0;
  position: relative;
  margin-top: -3px;
  margin-bottom: 51px;
}
.footer-widget__title::after {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 20px;
  height: 1.5px;
  background-color: var(--growim-base, #5B3AEE);
  content: "";
}
.footer-widget__title::before {
  position: absolute;
  left: 29px;
  bottom: -16px;
  width: 63px;
  height: 1.5px;
  background-color: var(--growim-white, #fff);
  content: "";
}
@media (min-width: 1200px) {
  .footer-widget--links {
    margin-right: -30px;
    padding-left: 22px;
  }
  .footer-widget--contact {
    padding-left: 65px;
  }
}
.footer-widget__links {
  padding: 0;
  margin: -10px 0 0;
}
.footer-widget__links li {
  color: var(--growim-text-dark, #D9D9D9);
  padding-left: 27px;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 13px;
}
.footer-widget__links li::after {
  position: absolute;
  left: 3px;
  top: 1px;
  bottom: 0;
  margin: auto;
  font-family: "Flaticon" !important;
  content: "\e912";
  font-size: 12px;
  display: flex;
  align-items: center;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links li a:hover {
  color: var(--growim-primary, #635AD9);
}
.footer-widget__info {
  padding: 0;
  margin: -10px 0 0;
}
.footer-widget__info li {
  color: var(--growim-text-dark, #D9D9D9);
  font-weight: 500;
  position: relative;
  padding-left: 27px;
  margin-bottom: 13px;
}
.footer-widget__info li i {
  color: var(--growim-primary, #635AD9);
  position: absolute;
  left: 0;
  top: 7px;
}
.footer-widget__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info li a:hover {
  background-size: 100% 1px;
}
.footer-widget__info li a:hover {
  color: var(--growim-primary, #635AD9);
}
.footer-widget__gallery {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-widget__gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  width: 81px;
  height: 81px;
}
.footer-widget__gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-widget__gallery a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.7);
  transition: all 400ms ease;
  transform: translateY(-110%);
  opacity: 0;
}
.footer-widget__gallery a::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-size: 21px;
  color: var(--growim-white, #fff);
  transition: all 600ms ease;
  transform: translateY(110%);
  opacity: 0;
  z-index: 1;
}
.footer-widget__gallery a:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.footer-widget__gallery a:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.main-footer-two {
  position: relative;
  background-size: cover;
  background-position: center center;
}
.main-footer-two__top {
  padding-top: 60px;
  padding-bottom: 12px;
}
.main-footer-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-primary, #635AD9);
  opacity: 0.05;
}
.main-footer-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: movebounce3 4s linear infinite;
}
.main-footer-two .container {
  position: relative;
}
.main-footer-two .footer-widget__social {
  margin-top: 5px;
}
.main-footer-two .footer-widget__social__text {
  color: var(--growim-black, #17012C);
}
.main-footer-two .footer-widget__social a {
  color: var(--growim-black, #17012C);
}
.main-footer-two .footer-widget__social a:hover {
  color: var(--growim-primary, #635AD9);
}
.main-footer-two .footer-widget__title {
  color: var(--growim-black, #17012C);
}
.main-footer-two .footer-widget__title::before {
  background-color: var(--growim-black, #17012C);
}
.main-footer-two .footer-widget__links li {
  color: var(--growim-text, #504E4E);
}
.main-footer-two .footer-widget--mailchimp {
  position: relative;
}
@media (min-width: 1200px) {
  .main-footer-two .footer-widget--mailchimp {
    padding-left: 70px;
  }
}
.main-footer-two .footer-widget--mailchimp .mc-form {
  position: relative;
  width: 100%;
}
.main-footer-two .footer-widget--mailchimp .mc-form input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 56px;
  background-color: var(--growim-white, #fff);
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 400;
  padding-left: 22px;
  padding-right: 60px;
  border-radius: 100px;
  transition: all 500ms ease;
}
.main-footer-two .footer-widget--mailchimp .mc-form button[type=submit] {
  background-color: var(--growim-base, #5B3AEE);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--growim-white, #fff);
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.main-footer-two .footer-widget--mailchimp .mc-form button[type=submit]:hover {
  background-color: var(--growim-black, #17012C);
  color: var(--growim-white, #fff);
}
.main-footer-two__bottom {
  text-align: center;
}
.main-footer-two__bottom__inner {
  padding: 22px 0;
  border-top: 1px solid rgba(var(--growim-text-rgb, 80, 78, 78), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .main-footer-two__bottom__inner {
    flex-direction: column;
    gap: 15px;
  }
}
.main-footer-two__bottom__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-footer-two__bottom__menu li {
  color: var(--growim-text, #504E4E);
}
.main-footer-two__bottom__menu li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer-two__bottom__menu li a:hover {
  background-size: 100% 1px;
}
.main-footer-two__bottom__menu li a:hover {
  color: var(--growim-primary, #635AD9);
}
.main-footer-two__copyright {
  margin: 0;
  color: var(--growim-text, #504E4E);
}

.main-footer-four {
  position: relative;
  background-color: var(--growim-gray, #ECF8FF);
  padding: 60px 0;
}
.main-footer-four__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .main-footer-four__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.main-footer-four__social {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
}
.main-footer-four__social a {
  width: 36px;
  height: 36px;
  color: var(--growim-primary, #635AD9);
  border: 1px solid rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.main-footer-four__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-footer-four__social a:hover {
  color: var(--growim-primary, #635AD9);
  border-color: var(--growim-white, #fff);
  background-color: var(--growim-white, #fff);
}
.main-footer-four__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.main-footer-four__copyright {
  margin: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  background-color: var(--growim-black, #17012C);
  padding: 39px 0 30px;
}
.contact-info__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1400px) {
  .contact-info__shape {
    display: none;
  }
}
.contact-info__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1200px) {
  .contact-info__list {
    padding: 0 38px;
  }
}
@media (max-width: 991px) {
  .contact-info__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .contact-info__list {
    flex-direction: column;
    flex-wrap: inherit;
    align-items: flex-start;
  }
}
.contact-info__list li {
  position: relative;
}
.contact-info__list li:hover .contact-info__icon {
  background-color: var(--growim-primary, #635AD9);
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.contact-info__list li:hover .contact-info__icon i {
  animation: iconTranslateY 0.4s forwards;
}
.contact-info__list li:not(:first-of-type)::before {
  content: "";
  width: 1px;
  height: 76px;
  background-color: var(--growim-white, #fff);
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  opacity: 0.2;
}
@media (max-width: 1199px) {
  .contact-info__list li:not(:first-of-type)::before {
    left: -55px;
  }
}
@media (max-width: 991px) {
  .contact-info__list li:not(:first-of-type)::before {
    display: none;
  }
}
.contact-info__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  font-size: 18px;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  margin-bottom: 4px;
}
.contact-info__icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.contact-info__text {
  font-size: 20px;
  color: var(--growim-white, #fff);
  font-weight: 500;
  margin: 0;
}
.contact-info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-info__text a:hover {
  background-size: 100% 1px;
}
.contact-info__text a:hover {
  color: var(--growim-base, #5B3AEE);
}

.contact-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgb(23, 1, 44) 0%, rgba(76, 4, 146, 0.3) 100%);
}
.contact-one__shape-one {
  position: absolute;
  left: 60px;
  bottom: 285px;
  width: 133px;
  height: 123px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1600px) {
  .contact-one__shape-one {
    left: 15px;
  }
}
@media (max-width: 1400px) {
  .contact-one__shape-one {
    display: none;
  }
}
.contact-one__shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1400px) {
  .contact-one__shape-two {
    display: none;
  }
}
.contact-one .sec-title__title {
  color: var(--growim-white, #fff);
}
.contact-one__form {
  padding: 55px 60px 60px;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  background-image: linear-gradient(180deg, #1138e6 0%, #e501fe 100%);
}
@media (max-width: 1199px) {
  .contact-one__form {
    max-width: 570px;
  }
}
@media (max-width: 767px) {
  .contact-one__form {
    padding: 35px 20px 40px;
  }
}
.contact-one__form__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  line-height: 1;
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .contact-one__form__title {
    font-size: 24px;
    margin: 0 0 25px;
  }
}

.contact-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-two {
    padding: 80px 0;
  }
}
.contact-two__image {
  position: relative;
}
.contact-two__image img {
  max-width: 100%;
  height: auto;
}
.contact-two__image__video {
  position: relative;
  display: inline-block;
  max-width: 540px;
  border: 10px solid var(--growim-white, #fff);
  border-radius: 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  margin-top: 36px;
}
.contact-two__image__video img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.contact-two__image__video .video-popup {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  font-size: 16px;
  color: var(--growim-primary, #635AD9);
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 1;
}
.contact-two__image__video .video-popup::after {
  position: absolute;
  left: -6px;
  top: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  content: "";
  background-color: var(--growim-white, #fff);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
}
.contact-two__image__video .video-popup .ripple,
.contact-two__image__video .video-popup .ripple:before,
.contact-two__image__video .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--growim-white-rgb, 255, 255, 255), 0.3);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.contact-two__image__video .video-popup .ripple:before {
  animation-delay: 0.5s;
  content: "";
  position: absolute;
}
.contact-two__image__video .video-popup .ripple::after {
  animation-delay: 0.7s;
  content: "";
  position: absolute;
}
.contact-two__image__video .video-popup:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.contact-two__content {
  position: relative;
  padding-top: 5px;
}
@media (max-width: 991px) {
  .contact-two__content {
    padding-top: 45px;
  }
}
.contact-two__title {
  font-size: 50px;
  line-height: 63px;
  font-weight: 800;
  text-transform: capitalize;
  margin: 0 0 11px;
}
@media (max-width: 767px) {
  .contact-two__title {
    font-size: 36px;
    line-height: 45px;
  }
}
.contact-two__text {
  margin: 0 0 32px;
}
.contact-two__form {
  padding: 37px 30px 32px;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 4px 40px 0px rgba(99, 90, 217, 0.1);
  position: relative;
}
.contact-two__form__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--growim-primary, #635AD9);
  line-height: 1;
  margin: 0 0 38px;
}
.contact-two__form .form-one__group {
  gap: 10px;
}
.contact-two__form .bootstrap-select > .dropdown-toggle,
.contact-two__form input[type=tel],
.contact-two__form input[type=text],
.contact-two__form input[type=email],
.contact-two__form textarea {
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 10px;
  font-size: 16px;
  height: 60px;
  font-weight: 400;
  color: #8C8C8C;
}
.contact-two__form textarea {
  height: 171px;
  margin-bottom: 30px;
}
.contact-two__form button {
  background-color: transparent;
  color: inherit;
  width: auto;
  height: 52px;
  line-height: inherit;
  border-radius: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  transition: all 0.4s ease;
}
.contact-two__form button .growim-btn__text {
  background-color: var(--growim-gray, #ECF8FF);
  color: var(--growim-primary, #635AD9);
}
.contact-two__form button .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.contact-two__form button .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.contact-two__form button .growim-btn__icon::after {
  background-color: var(--growim-gray, #ECF8FF);
}
.contact-two__form button:hover {
  background-color: transparent;
}
.contact-two__form button:hover .growim-btn__icon {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  background-color: var(--growim-black, #17012C);
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px 13px 30px;
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.topbar__info {
  display: flex;
  align-items: center;
  margin: 0;
}
.topbar__info__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-white, #fff);
  line-height: 1.2em;
}
.topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__info__item a:hover {
  background-size: 100% 1px;
}
.topbar__info__item a:hover {
  color: var(--growim-primary, #635AD9);
}
.topbar__info__item + .topbar__info__item {
  margin-left: 40px;
}
.topbar__info__icon {
  font-size: 18px;
  color: var(--growim-primary, #635AD9);
  position: relative;
  top: 2px;
  margin-right: 9px;
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 29px;
}
.topbar__social a {
  font-size: 16px;
  color: var(--growim-white, #fff);
  display: inline-block;
}
.topbar__social a:hover {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0 105px;
}
@media (max-width: 1599px) {
  .main-header {
    padding: 0 15px;
  }
}
@media (max-width: 1299px) {
  .main-header {
    padding: 0 5px;
  }
}
@media (max-width: 1199px) {
  .main-header {
    padding: 0 0;
  }
}
.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
.main-header__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}
.main-header__logo img {
  max-width: 100%;
}
.main-header__logo img:nth-child(2) {
  position: absolute;
  left: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}
.main-header__btn {
  margin-left: 55px;
}
@media (max-width: 1599px) {
  .main-header__btn {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.main-header__cart, .main-header__search {
  font-size: 16px;
  color: var(--growim-white, #fff);
  transition: all 500ms ease;
  margin-left: 40px;
  line-height: 1em;
}
@media (max-width: 1599px) {
  .main-header__cart, .main-header__search {
    margin-left: 20px;
  }
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--growim-white, #fff);
}
.main-header__nav {
  margin-left: auto;
}
.main-header--two {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 9;
  width: 100%;
}
.main-header--two.sticky-header--cloned {
  border: none;
  background-image: linear-gradient(90deg, #fff5ee 0%, #fff4ec 100%);
  box-shadow: 0px 3px 18px rgba(var(--growim-black-rgb, 23, 1, 44), 0.07);
}
.main-header--two.sticky-header--cloned .main-header__logo img:nth-child(1) {
  opacity: 1;
}
.main-header--two.sticky-header--cloned .main-header__inner__bg {
  border-radius: 0;
}
.main-header--two.sticky-header--cloned .main-header__inner__bg::after {
  border-radius: 0;
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--growim-black, #17012C);
}
.main-header--two .main-header__inner {
  position: relative;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #fff5ee 0%, #fff4ec 100%);
  padding: 0 20px 0 22px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 15px 20px 15px 22px;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__inner {
    padding: 20px 15px;
  }
}
.main-header--two .main-header__inner::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 100%;
  border-radius: 10px;
  content: "";
  z-index: -1;
  width: calc(100% - 38px);
  margin: auto;
  background-color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
}
.main-header--two .main-header__inner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  height: 100%;
  background-color: var(--growim-black, #17012C);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  border-radius: 10px 0 0 10px;
}
.main-header--two .main-header__inner__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 230px;
  height: 100%;
  content: "";
  background-color: var(--growim-primary, #635AD9);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  z-index: -1;
  border-radius: 10px 0 0 10px;
}
.main-header--two .main-menu .main-menu__list > li {
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-header--two .main-menu .main-menu__list > li + li {
  margin-left: 40px;
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--growim-black, #17012C);
}
.main-header--two .main-menu .main-menu__list > li.current > a,
.main-header--two .main-menu .main-menu__list > li:hover > a {
  color: var(--growim-primary, #635AD9);
}
.main-header--two .main-header__cart,
.main-header--two .main-header__search {
  color: var(--growim-black, #17012C);
}
@media (max-width: 767px) {
  .main-header--two .main-header__cart,
  .main-header--two .main-header__search {
    margin-left: 10px;
  }
}
.main-header--two .main-header__cart:hover,
.main-header--two .main-header__search:hover {
  color: var(--growim-primary, #635AD9);
}
.main-header--two .main-header__toggler {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(242, 107, 1, 0.1);
  color: var(--growim-primary, #635AD9);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 60px;
}
@media (max-width: 1599px) {
  .main-header--two .main-header__toggler {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__toggler {
    display: none;
  }
}
.main-header--two .main-header__toggler:hover {
  border-color: var(--growim-primary, #635AD9);
}
.main-header--three {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  padding: 30px 120px;
}
@media (max-width: 1600px) {
  .main-header--three {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .main-header--three {
    padding: 15px;
  }
}
.main-header--three__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header--three__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 400ms ease;
}
.main-header--three__menu i {
  width: 50px;
  height: 50px;
  border: 1px solid var(--growim-secondary, #219BE4);
  border-radius: 50%;
  font-size: 24px;
  color: var(--growim-secondary, #219BE4);
  transition: all 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header--three__menu:hover {
  color: var(--growim-secondary, #219BE4);
}
.main-header--three.sticky-header--cloned {
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 3px 18px rgba(var(--growim-black-rgb, 23, 1, 44), 0.07);
  padding: 20px 120px;
}
@media (max-width: 1600px) {
  .main-header--three.sticky-header--cloned {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .main-header--three.sticky-header--cloned {
    padding: 15px;
  }
}
.main-header--three.sticky-header--cloned .main-header__logo img:nth-child(1) {
  opacity: 1;
}
.main-header--four {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  padding: 12px 120px;
}
@media (max-width: 1600px) {
  .main-header--four {
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .main-header--four {
    padding: 15px 0;
  }
}
.main-header--four__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header--four .growim-btn__text {
  padding: 13.5px 19.5px;
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .main-header--four .growim-btn__text {
    display: none;
  }
}
.main-header--four .main-header__toggler {
  width: 50px;
  height: 50px;
  border: 1px solid var(--growim-primary, #635AD9);
  color: var(--growim-primary, #635AD9);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 60px;
}
@media (max-width: 1599px) {
  .main-header--four .main-header__toggler {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header--four .main-header__toggler {
    display: none;
  }
}
.main-header--four .main-header__toggler:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.main-header--four.sticky-header--cloned {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .main-header--four.sticky-header--cloned {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .main-header--four.sticky-header--cloned {
    padding: 15px 0;
  }
}
.main-header--four.sticky-header--cloned .main-header__logo img:nth-child(1) {
  opacity: 1;
}
.main-header--five__inner {
  position: relative;
  border-radius: 0 0 30px 30px;
  background-image: linear-gradient(0deg, #edf6ff 0%, #f5e3fc 100%);
}
.main-header--five .main-menu .main-menu__list > li {
  padding-top: 43px;
  padding-bottom: 43px;
}
.main-header--five .main-menu .main-menu__list > li + li {
  margin-left: 40px;
}
.main-header--five .main-menu .main-menu__list > li > a {
  color: var(--growim-black, #17012C);
}
.main-header--five .main-menu .main-menu__list > li.current > a,
.main-header--five .main-menu .main-menu__list > li:hover > a {
  color: var(--growim-primary, #635AD9);
}
.main-header--five .main-header__cart,
.main-header--five .main-header__search {
  color: var(--growim-black, #17012C);
}
@media (max-width: 767px) {
  .main-header--five .main-header__cart,
  .main-header--five .main-header__search {
    margin-left: 10px;
  }
}
.main-header--five .main-header__cart:hover,
.main-header--five .main-header__search:hover {
  color: var(--growim-primary, #635AD9);
}
.main-header--five .main-header__inner {
  padding: 0 40px 0 30px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header--five .main-header__inner {
    padding: 20px 40px 20px 30px;
  }
}
@media (max-width: 767px) {
  .main-header--five .main-header__inner {
    padding: 25px 25px;
  }
}
.main-header--five .main-header__btn {
  margin-left: 50px;
  height: 55px;
}
@media (max-width: 1500px) {
  .main-header--five .main-header__btn {
    margin-left: 30px;
  }
}
.main-header--five .growim-btn__text {
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
  padding: 13.5px 28px;
}
.main-header--five .mobile-nav__btn span {
  background-color: var(--growim-black, #17012C);
}
.main-header--five.sticky-header--cloned {
  background: linear-gradient(0deg, #edf6ff 0%, #f5e3fc 100%);
  box-shadow: 0px 3px 18px rgba(var(--growim-black-rgb, 23, 1, 44), 0.07);
}
.main-header--five.sticky-header--cloned .topbar {
  display: none;
}
.main-header--five.sticky-header--cloned .main-header__logo img:nth-child(1) {
  opacity: 1;
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--growim-black, #17012C);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--growim-white-rgb, 255, 255, 255), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned .main-header__logo img:nth-child(1) {
  opacity: 0;
}
.sticky-header--cloned .main-header__logo img:nth-child(2) {
  opacity: 1;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: -50px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: -40px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--growim-white, #fff);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 36.25px;
  padding-bottom: 36.25px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 42px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 36px;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--growim-white, #fff);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--growim-white, #fff);
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 210px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  border-radius: 0 0 10px 10px;
  background-color: var(--growim-white, #fff);
  padding: 0;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 15px;
  line-height: 26px;
  color: var(--growim-black, #17012C);
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 0;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--growim-primary, #635AD9);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 1px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--growim-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--growim-black, #17012C);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--growim-primary, #635AD9);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--growim-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__card .growim-btn {
  height: 40px;
  position: relative;
}
.demo-one__card .growim-btn__text {
  min-width: 135px;
  font-size: 14px;
  padding: 8px 25px;
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--growim-black, #17012C);
  font-weight: 700;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--growim-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  margin-top: -20px;
  margin-bottom: -20px;
}
.home-showcase .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--growim-black3-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .why-choose-one {
    padding: 80px 0;
  }
}
.why-choose-one__shape-one {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 133px;
  height: 123px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1499px) {
  .why-choose-one__shape-one {
    display: none;
  }
}
.why-choose-one__shape-two {
  position: absolute;
  right: 0;
  bottom: 250px;
  width: 155px;
  height: 34px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1299px) {
  .why-choose-one__shape-two {
    display: none;
  }
}
.why-choose-one .container {
  position: relative;
}
.why-choose-one__image {
  position: relative;
  z-index: 1;
  max-width: 554px;
  padding-left: 108px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-one__image {
    padding-left: 55px;
  }
}
@media (max-width: 767px) {
  .why-choose-one__image {
    padding-left: 0;
  }
}
.why-choose-one__image__bg {
  position: absolute;
  left: -15px;
  top: 51px;
  width: 100%;
  height: 100%;
  max-height: 486px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-one__image__bg {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .why-choose-one__image__bg {
    background-size: contain;
  }
}
.why-choose-one__image img {
  max-width: 100%;
}
.why-choose-one__content {
  position: relative;
}
@media (max-width: 991px) {
  .why-choose-one__content {
    margin-top: 45px;
  }
}
.why-choose-one__content .sec-title {
  padding-bottom: 20px;
}
.why-choose-one__text {
  font-weight: 500;
  margin: 0 0 28px;
}
.why-choose-one__progress {
  position: relative;
  margin-top: 26px;
}
.why-choose-one__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-choose-one__progress__bar {
  width: 100%;
  height: 10px;
  background-color: var(--growim-gray, #ECF8FF);
  position: relative;
}
.why-choose-one__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--growim-primary, #635AD9);
  transition: all 700ms linear;
  width: 0px;
}
.why-choose-one__progress__number {
  position: absolute;
  bottom: calc(100% + 7px);
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--growim-black, #17012C);
}

.why-choose-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .why-choose-two {
    padding: 80px 0;
  }
}
.why-choose-two__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .why-choose-two__shape-one {
    display: none;
  }
}
.why-choose-two__shape-two {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: right center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .why-choose-two__shape-two {
    display: none;
  }
}
.why-choose-two__content {
  position: relative;
}
.why-choose-two__content .sec-title {
  padding-bottom: 20px;
}
.why-choose-two__content__text {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 42px;
}
.why-choose-two__content .growim-btn {
  margin-top: 21px;
  flex-shrink: 0;
}
.why-choose-two__content .growim-btn__text {
  background-color: rgba(242, 107, 1, 0.15);
  color: var(--growim-primary, #635AD9);
}
.why-choose-two__content .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.why-choose-two__content .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.why-choose-two__content .growim-btn__icon::after {
  background-color: rgba(242, 107, 1, 0.15);
}
.why-choose-two__content .growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}
.why-choose-two__list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
@media (max-width: 767px) {
  .why-choose-two__list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.why-choose-two__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-choose-two__list__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--growim-border-color, #EAF3F8);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-choose-two__list__icon img {
  width: 36px;
  height: 36px;
}
.why-choose-two__list__number {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 2px;
}
.why-choose-two__list__text {
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.why-choose-two__image {
  position: relative;
}
@media (max-width: 1199px) {
  .why-choose-two__image {
    max-width: 570px;
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .why-choose-two__image {
    margin-left: 15px;
  }
}
.why-choose-two__image__one {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.why-choose-two__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: 135px;
}
.why-choose-two__image__one::after {
  position: absolute;
  left: -11px;
  top: 0;
  width: calc(100% + 22px);
  height: calc(100% + 38px);
  content: "";
  background-color: #FEF5ED;
  border-radius: 135px;
  z-index: -1;
}
.why-choose-two__image__two {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 140px;
}
@media (max-width: 767px) {
  .why-choose-two__image__two {
    margin-top: 100px;
  }
}
.why-choose-two__image__two img {
  max-width: 100%;
  height: auto;
  border-radius: 135px;
}
.why-choose-two__image__two::after {
  position: absolute;
  left: -11px;
  bottom: 0;
  width: calc(100% + 22px);
  height: calc(100% + 38px);
  content: "";
  background-color: #FEF5ED;
  border-radius: 135px;
  z-index: -1;
}
.why-choose-two__image__shape-three {
  position: absolute;
  right: 200px;
  top: 0;
  width: 94px;
  height: 89px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 767px) {
  .why-choose-two__image__shape-three {
    display: none;
  }
}
.why-choose-two__image__shape-four {
  position: absolute;
  right: 300px;
  bottom: 45px;
  width: 66px;
  height: 66px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 767px) {
  .why-choose-two__image__shape-four {
    display: none;
  }
}
.why-choose-two__image__circle {
  position: absolute;
  z-index: 2;
  right: 40%;
  bottom: 208px;
  width: 130px;
  height: 130px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .why-choose-two__image__circle {
    display: none;
  }
}
.why-choose-two__image__circle img {
  max-width: 118px;
  height: auto;
  animation: rotated 10s linear infinite;
}

.why-choose-three {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .why-choose-three {
    padding: 80px 0 0;
  }
}
.why-choose-three__shape-one {
  position: absolute;
  left: 35px;
  bottom: 130px;
  width: 133px;
  height: 123px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove2 7s linear infinite;
}
@media (max-width: 1499px) {
  .why-choose-three__shape-one {
    display: none;
  }
}
.why-choose-three__shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1299px) {
  .why-choose-three__shape-two {
    display: none;
  }
}
.why-choose-three__shape-three {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .why-choose-three__shape-three {
    display: none;
  }
}
.why-choose-three__content {
  position: relative;
}
@media (min-width: 1200px) {
  .why-choose-three__content {
    max-width: 440px;
  }
}
.why-choose-three__content .sec-title {
  padding-bottom: 21px;
}
.why-choose-three__content__text {
  margin: 0 0 30px;
}
.why-choose-three__list {
  position: relative;
  margin: 0 0 29px;
  padding: 0 0 29px;
  list-style: none;
  display: flex;
  gap: 46px;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
@media (max-width: 767px) {
  .why-choose-three__list {
    flex-direction: column;
    gap: 25px;
  }
}
.why-choose-three__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
}
.why-choose-three__list__icon {
  width: 64px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
  color: var(--growim-secondary, #219BE4);
  font-size: 38px;
}
.why-choose-three__author {
  position: relative;
  padding: 5px 0 0 73px;
  text-transform: capitalize;
  min-height: 54px;
}
.why-choose-three__author img {
  width: 56px;
  height: 54px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.why-choose-three__author__name {
  margin: 0 0 4px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.why-choose-three__author__designation {
  font-size: 14px;
  margin: 0;
}
.why-choose-three__call {
  position: relative;
  padding: 0 0 0 70px;
  text-transform: capitalize;
  min-height: 54px;
  margin-right: -15px;
}
.why-choose-three__call__icon {
  width: 56px;
  height: 54px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--growim-white, #fff);
  left: 0;
  top: 0;
}
.why-choose-three__call__icon span {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: var(--growim-primary, #635AD9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-three__call__title {
  margin: 0 0 -1px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--growim-text, #504E4E);
}
.why-choose-three__call__text {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  color: var(--growim-black, #17012C);
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.why-choose-three__call__text:hover {
  background-size: 100% 1px;
}
.why-choose-three__call__text:hover {
  color: var(--growim-primary, #635AD9);
}
.why-choose-three__image {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .why-choose-three__image {
    margin-top: 45px;
    max-width: 670px;
  }
}
@media (min-width: 1200px) {
  .why-choose-three__image {
    padding-left: 38px;
  }
}
.why-choose-three__image__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
.why-choose-three__image img {
  max-width: 100%;
  height: auto;
}
.why-choose-three--about-page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .why-choose-three--about-page {
    padding: 80px 0;
  }
}

.why-choose-four {
  position: relative;
  background-color: var(--growim-gray, #ECF8FF);
}
.why-choose-four__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .why-choose-four__bg {
    display: none;
  }
}
.why-choose-four__shape-one {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .why-choose-four__shape-one {
    display: none;
  }
}
.why-choose-four__image {
  position: relative;
}
@media (max-width: 991px) {
  .why-choose-four__image {
    margin-top: 60px;
  }
}
.why-choose-four__image img {
  max-width: 100%;
}
.why-choose-four__content {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .why-choose-four__content {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .why-choose-four__content {
    padding-right: 41px;
    padding-left: 34px;
  }
}
@media (max-width: 991px) {
  .why-choose-four__content {
    padding: 80px 0;
  }
}
.why-choose-four__content .sec-title {
  padding-bottom: 10px;
}
.why-choose-four__content__text {
  margin: 0 0 25px;
}
@media (min-width: 1200px) {
  .why-choose-four__content__text {
    padding-right: 41px;
  }
}
.why-choose-four__list {
  position: relative;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 50px;
}
@media (max-width: 767px) {
  .why-choose-four__list {
    flex-direction: column;
    gap: 25px;
  }
}
.why-choose-four__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
}
.why-choose-four__list__icon {
  flex-shrink: 0;
  color: var(--growim-primary, #635AD9);
}
.why-choose-four__progress {
  position: relative;
}
.why-choose-four__progress + .why-choose-four__progress {
  margin-top: 33px;
}
.why-choose-four__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-choose-four__progress__bar {
  width: 100%;
  height: 12px;
  background-color: var(--growim-white, #fff);
  border-radius: 16px;
  position: relative;
}
.why-choose-four__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 16px;
  transition: all 700ms linear;
  width: 0px;
}
.why-choose-four__progress__number {
  position: absolute;
  width: 40px;
  height: 24px;
  background-color: var(--growim-base, #5B3AEE);
  color: var(--growim-white, #fff);
  bottom: calc(100% + 12px);
  right: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-four__progress__number::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 6px 0;
  border-color: transparent var(--growim-base, #5B3AEE) transparent transparent;
  transform: rotate(0deg);
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  padding: 362px 0 0;
  margin: 0 120px;
}
@media (max-width: 1600px) {
  .counter-one {
    margin: 0 30px;
  }
}
@media (max-width: 1300px) {
  .counter-one {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .counter-one {
    padding-top: 320px;
  }
}
.counter-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  margin: 0 auto;
  height: 100%;
  border-radius: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.counter-one__wrapper {
  position: relative;
  display: flex;
  background-color: var(--growim-black, #17012C);
  border-radius: 30px 0 30px 0;
  padding: 46px 75px 46px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1045px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .counter-one__wrapper {
    max-width: 100%;
    padding: 46px 55px 46px 55px;
  }
}
@media (max-width: 991px) {
  .counter-one__wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.counter-one__wrapper__bg {
  position: absolute;
  left: -25%;
  bottom: -25%;
  width: 700px;
  height: 700px;
}
.counter-one__counter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 66px;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .counter-one__counter {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
.counter-one__counter::after {
  position: absolute;
  right: -62px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 168px;
  content: "";
  background-color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 1199px) {
  .counter-one__counter::after {
    display: none;
  }
}
.counter-one__counter li {
  list-style: none;
  position: relative;
}
.counter-one__counter li:not(:last-of-type)::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--growim-white, #fff);
  position: absolute;
  top: 4px;
  bottom: 0;
  margin: auto;
  right: -36px;
}
@media (max-width: 767px) {
  .counter-one__counter li:not(:last-of-type)::after {
    display: none;
  }
}
.counter-one__counter__number {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--growim-white, #fff);
  line-height: 1;
  margin: 0 0 12px;
}
.counter-one__counter__text {
  font-size: 20px;
  color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.9);
  text-transform: capitalize;
  margin: 0;
  line-height: 1;
}
.counter-one__right {
  display: block;
  position: relative;
  text-align: center;
}
.counter-one__right__clients {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.counter-one__right__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.counter-one__right__clients img + img {
  margin-left: -19px;
}
.counter-one__right__text {
  font-size: 24px;
  font-weight: 700;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin: 24px 0 19px;
}
.counter-one__right__number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--growim-white, #fff);
  line-height: 1;
  margin: 0 0 31px;
}
.counter-one__right .progress {
  min-width: 235px;
  height: 10px;
  background-color: var(--growim-white, #fff);
  border-radius: 100px;
  margin: 0;
  padding: 0;
}
.counter-one__right .progress .progress-bar {
  background-color: var(--growim-primary, #635AD9);
  border-radius: 100px;
}

.counter-two {
  position: relative;
  padding: 0 0;
  z-index: 1;
  margin-top: -138px;
}
.counter-two::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-color: var(--growim-primary, #635AD9);
  content: "";
  z-index: -1;
}
.counter-two__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 23%;
  border-radius: 260px 0 0 260px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1600px) {
  .counter-two__bg {
    width: 17%;
  }
}
@media (max-width: 1300px) {
  .counter-two__bg {
    width: 13%;
  }
}
@media (max-width: 1199px) {
  .counter-two__bg {
    display: none;
  }
}
.counter-two__counter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 150px;
  position: relative;
  border-radius: 260px 0 0 260px;
  background-color: var(--growim-primary, #635AD9);
  padding: 85px 80px 81px 80px;
}
@media (max-width: 1199px) {
  .counter-two__counter {
    gap: 95px;
  }
}
@media (max-width: 991px) {
  .counter-two__counter {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .counter-two__counter {
    flex-direction: column;
    gap: 35px;
    border-radius: 60px 0 0 60px;
  }
}
.counter-two__counter li {
  list-style: none;
  position: relative;
}
.counter-two__counter li:not(:last-of-type)::after {
  content: "";
  width: 2px;
  height: 155px;
  background-color: var(--growim-white, #fff);
  opacity: 0.1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -57%;
}
@media (max-width: 1199px) {
  .counter-two__counter li:not(:last-of-type)::after {
    right: -42%;
  }
}
@media (max-width: 991px) {
  .counter-two__counter li:not(:last-of-type)::after {
    display: none;
  }
}
.counter-two__counter li:hover .counter-two__counter__icon span {
  transform: scale(1.1);
}
.counter-two__counter__icon {
  font-size: 60px;
  line-height: 60px;
  color: var(--growim-white, #fff);
  display: block;
  margin: 0 0 22px;
}
.counter-two__counter__icon span {
  transform: scale(1);
  transition: all ease 500ms;
  display: inline-block;
}
.counter-two__counter__number {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--growim-white, #fff);
  line-height: 1;
  margin: 0 0 9px;
}
.counter-two__counter__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin: 0;
  line-height: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .testimonials-one {
    padding-top: 80px;
  }
}
.testimonials-one__shape-one {
  position: absolute;
  left: 0;
  top: 199px;
  width: 141px;
  height: 330px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .testimonials-one__shape-one {
    display: none;
  }
}
.testimonials-one__shape-two {
  position: absolute;
  left: 20px;
  top: 0;
  width: 756px;
  height: 860px;
}
@media (max-width: 1299px) {
  .testimonials-one__shape-two {
    display: none;
  }
}
.testimonials-one__shape-three {
  position: absolute;
  right: 0;
  top: 150px;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (max-width: 1299px) {
  .testimonials-one__shape-three {
    display: none;
  }
}
.testimonials-one__shape-four {
  position: absolute;
  right: 0;
  top: 320px;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .testimonials-one__shape-four {
    display: none;
  }
}
.testimonials-one__image {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding-left: 68px;
}
@media (max-width: 767px) {
  .testimonials-one__image {
    padding-left: 0;
  }
}
.testimonials-one__image__bg {
  position: absolute;
  left: -25px;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: 440px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-one__image__bg {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .testimonials-one__image__bg {
    display: none;
  }
}
.testimonials-one__area {
  position: relative;
  margin-left: -45px;
}
@media (max-width: 991px) {
  .testimonials-one__area {
    margin: 45px 0 0;
  }
}
@media (min-width: 1200px) {
  .testimonials-one__area {
    padding-right: 15px;
  }
}
.testimonials-one__area .sec-title {
  padding-bottom: 30px;
}
.testimonials-one__item {
  position: relative;
}
.testimonials-one__item__rating {
  display: flex;
  align-items: center;
  color: #F39F5F;
  font-size: 16px;
  letter-spacing: 6px;
  margin-bottom: 21px;
}
.testimonials-one__item__content {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 31px;
}
.testimonials-one__item__author {
  position: relative;
  padding: 0 0 0 65px;
  text-transform: capitalize;
  min-height: 50px;
}
.testimonials-one__item__author img {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-one__item__name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}
.testimonials-one__item__designation {
  margin: 0;
}
.testimonials-one__item__quote {
  position: absolute;
  right: 25px;
  bottom: 6px;
  line-height: 1;
  font-size: 42px;
  color: var(--growim-primary, #635AD9);
}
.testimonials-one--service-page {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .testimonials-one--service-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .testimonials-one--service-page {
    padding: 80px 0;
  }
}

.testimonials-two {
  position: relative;
  padding: 120px 0 115px;
  margin: 0 120px;
}
@media (max-width: 1500px) {
  .testimonials-two {
    margin: 0 20px;
  }
}
@media (max-width: 1299px) {
  .testimonials-two {
    margin: 0 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 10px 75px;
  }
}
.testimonials-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-primary, #635AD9);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  border-radius: 30px;
}
.testimonials-two__content {
  position: relative;
}
@media (max-width: 991px) {
  .testimonials-two__content {
    margin-bottom: 45px;
  }
}
.testimonials-two__clients {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 400ms linear;
  margin: 0 0 50px;
}
.testimonials-two__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-primary, #635AD9);
}
.testimonials-two__clients img + img {
  margin-left: -19px;
}
.testimonials-two__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-white, #fff);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}
.testimonials-two__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.testimonials-two__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  position: relative;
  z-index: 1;
  transition: all 400ms linear;
}
.testimonials-two__nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.testimonials-two__nav a:hover {
  color: var(--growim-black, #17012C);
}
.testimonials-two__nav a:hover::after {
  border-color: var(--growim-black, #17012C);
}
.testimonials-two__item {
  position: relative;
}
.testimonials-two__item__quote {
  position: relative;
  margin: 0 0 20px;
  width: 55px;
  height: 43px;
}
.testimonials-two__item__quote img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.testimonials-two__item__content {
  font-size: 24px;
  line-height: 36px;
  color: var(--growim-white, #fff);
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  margin-bottom: 42px;
}
.testimonials-two__item__author {
  position: relative;
  padding: 0 0 0 65px;
  text-transform: capitalize;
  min-height: 50px;
}
.testimonials-two__item__author img {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-two__item__name {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--growim-white, #fff);
  font-weight: 600;
}
.testimonials-two__item__designation {
  margin: 0;
  color: var(--growim-white, #fff);
}

.testimonials-three {
  position: relative;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.1);
  overflow: hidden;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0;
  }
}
.testimonials-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
.testimonials-three .growim-stretch-element-inside-column {
  position: relative;
}
.testimonials-three__image {
  position: relative;
  z-index: 1;
  max-width: 878px;
}
@media (max-width: 1600px) {
  .testimonials-three__image {
    max-width: 80%;
  }
}
.testimonials-three__image::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 31px);
  content: "";
  border: 4px solid var(--growim-secondary, #219BE4);
  border-radius: 0 322px 322px 0;
  z-index: -1;
}
.testimonials-three__image img {
  max-width: 100%;
  min-height: 586px;
  object-fit: cover;
  border-radius: 0 322px 322px 0;
}
.testimonials-three__carousel-thumb {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 991px) {
  .testimonials-three__carousel-thumb {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .testimonials-three__carousel-thumb {
    right: 0;
  }
}
.testimonials-three__carousel-thumb__item {
  width: 106px;
  height: 106px;
  border: 2px solid var(--growim-white, #fff);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: 39px;
  margin-bottom: 55px;
  transition: all 500ms ease;
  cursor: pointer;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.08));
  margin-left: auto;
}
@media (max-width: 450px) {
  .testimonials-three__carousel-thumb__item {
    width: 100px;
    height: 100px;
  }
}
.testimonials-three__carousel-thumb__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-three .slick-slide.slick-active .testimonials-three__carousel-thumb__item {
  right: 113px;
}
.testimonials-three .slick-slide.slick-active.slick-current.slick-center .testimonials-three__carousel-thumb__item {
  right: 32px;
  border: 4px solid var(--growim-primary, #635AD9);
  transform: scale(1.6);
}
.testimonials-three__wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .testimonials-three__wrapper {
    margin-top: 45px;
  }
}
@media (min-width: 1200px) {
  .testimonials-three__wrapper {
    margin-left: 25px;
  }
}
.testimonials-three__wrapper .sec-title {
  padding-bottom: 16px;
}
.testimonials-three__wrapper__text {
  font-weight: 500;
  margin: 0 0 42px;
}
.testimonials-three__item {
  position: relative;
  padding: 40px 40px 32px;
  background-color: var(--growim-white, #fff);
}
@media (max-width: 767px) {
  .testimonials-three__item {
    padding: 40px 20px 32px;
  }
}
.testimonials-three__item__author {
  position: relative;
  padding: 13px 0 0 120px;
  text-transform: capitalize;
  min-height: 100px;
  margin-bottom: 22px;
}
.testimonials-three__item__author img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-three__item__name {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 600;
}
.testimonials-three__item__designation {
  margin: 0 0 2px;
}
.testimonials-three__item__rating {
  display: flex;
  align-items: center;
  color: var(--growim-primary, #635AD9);
  font-size: 16px;
  letter-spacing: 6px;
  margin-bottom: 21px;
}
.testimonials-three__item__quote {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 50px;
  height: 37px;
}
@media (max-width: 767px) {
  .testimonials-three__item__quote {
    right: 20px;
    top: 20px;
  }
}
.testimonials-three__item__content {
  margin: 0;
}
.testimonials-three .active .testimonials-three__item__thumb-one {
  animation-delay: 0.3s;
  animation-name: fadeInUp;
}
.testimonials-three .active .testimonials-three__item__thumb-two {
  animation-delay: 0.4s;
  animation-name: fadeInUp;
}
.testimonials-three .active .testimonials-three__item__thumb-flower {
  animation-delay: 0.5s;
  animation-name: fadeInUp;
}

.testimonials-four {
  position: relative;
  padding: 95px 0 0;
}
@media (max-width: 991px) {
  .testimonials-four {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .testimonials-four {
    padding: 80px 0;
  }
}
.testimonials-four__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonials-four__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: treeMove2 30s linear 0s infinite;
}
.testimonials-four__wrapper {
  position: relative;
  z-index: 1;
  margin-left: -30px;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .testimonials-four__wrapper {
    padding-top: 30px;
  }
  .testimonials-four__wrapper .sec-title__title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .testimonials-four__wrapper {
    margin: 0;
    padding: 0;
  }
}
.testimonials-four__image {
  position: relative;
}
@media (max-width: 991px) {
  .testimonials-four__image {
    display: none;
  }
}
.testimonials-four__image img {
  max-width: 100%;
  height: auto;
}
.testimonials-four__item {
  position: relative;
  background-color: var(--growim-white, #fff);
  border-radius: 12px;
  padding: 51px 30px 48px;
  transition: all 400ms ease;
}
.testimonials-four__item:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.testimonials-four__item__rating {
  display: flex;
  align-items: center;
  color: var(--growim-primary, #635AD9);
  font-size: 19px;
  letter-spacing: 8px;
  margin-bottom: 25px;
}
.testimonials-four__item__content {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 32px;
}
.testimonials-four__item__author {
  position: relative;
  padding: 3px 0 0 75px;
  text-transform: capitalize;
  min-height: 60px;
}
.testimonials-four__item__author img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-four__item__name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
}
.testimonials-four__item__designation {
  margin: 0;
}
.testimonials-four__item__quote {
  position: absolute;
  right: 31px;
  top: 31px;
  line-height: 1;
  width: 45px;
  height: 45px;
}

.testimonials-five {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .testimonials-five {
    padding: 80px 0 0;
  }
}
.testimonials-five__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 464px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonials-five__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(21, 6, 125, 0.6);
}
.testimonials-five .sec-title__tagline {
  color: var(--growim-white, #fff);
  -webkit-text-fill-color: inherit;
}
.testimonials-five .sec-title__title {
  color: var(--growim-white, #fff);
}
.testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -156px;
}
@media (max-width: 767px) {
  .testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: auto;
  }
}
.testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border-color: var(--growim-white, #fff);
  color: var(--growim-white, #fff);
}
.testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  border-color: var(--growim-primary, #635AD9);
}
@media (max-width: 767px) {
  .testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border-color: var(--growim-primary, #635AD9);
    color: var(--growim-primary, #635AD9);
  }
  .testimonials-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    color: var(--growim-white, #fff);
  }
}
.testimonials-five__item {
  position: relative;
  padding: 40px 40px 32px;
  background-color: var(--growim-white, #fff);
  transition: all 400ms ease;
  filter: drop-shadow(0px 4px 12.5px rgba(56, 75, 255, 0.08));
}
.testimonials-five__item:hover {
  filter: drop-shadow(0px 4px 20px rgba(56, 75, 255, 0.1));
}
@media (max-width: 767px) {
  .testimonials-five__item {
    padding: 40px 20px 32px;
  }
}
.testimonials-five__item__author {
  position: relative;
  padding: 13px 0 0 120px;
  text-transform: capitalize;
  min-height: 100px;
  margin-bottom: 22px;
}
.testimonials-five__item__author img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-five__item__name {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 600;
}
.testimonials-five__item__designation {
  margin: 0 0 2px;
}
.testimonials-five__item__rating {
  display: flex;
  align-items: center;
  color: var(--growim-primary, #635AD9);
  font-size: 16px;
  letter-spacing: 6px;
  margin-bottom: 21px;
}
.testimonials-five__item__quote {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 50px;
  height: 37px;
}
@media (max-width: 767px) {
  .testimonials-five__item__quote {
    right: 20px;
    top: 20px;
  }
}
.testimonials-five__item__content {
  margin: 0;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  background-color: rgba(242, 107, 1, 0.1);
  position: relative;
  overflow: hidden;
}
.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}
.cta-one__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 269px;
  height: 22px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .cta-one__shape-one {
    display: none;
  }
}
.cta-one__shape-two {
  position: absolute;
  left: 2%;
  top: -13%;
  background-position: left top;
  background-repeat: no-repeat;
  width: 832px;
  height: 768px;
}
@media (max-width: 1499px) {
  .cta-one__shape-two {
    left: 0;
  }
}
@media (max-width: 1199px) {
  .cta-one__shape-two {
    display: none;
  }
}
.cta-one__shape-three {
  position: absolute;
  right: 3%;
  bottom: 34px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 96px;
  height: 102px;
  opacity: 0.1;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1199px) {
  .cta-one__shape-three {
    display: none;
  }
}
.cta-one__image {
  position: relative;
}
@media (max-width: 991px) {
  .cta-one__image {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .cta-one__image {
    padding-left: 35px;
  }
}
.cta-one__image img {
  max-width: 100%;
  height: auto;
}
.cta-one__content {
  position: relative;
  padding: 140px 0 132px;
}
@media (max-width: 1199px) {
  .cta-one__content {
    padding: 120px 0 112px;
  }
}
@media (max-width: 991px) {
  .cta-one__content {
    padding: 40px 0 62px;
  }
}
.cta-one__content .sec-title {
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .cta-one__content .sec-title__title {
    font-size: 50px;
    line-height: 55px;
  }
}
.cta-one__content .growim-btn {
  margin-top: 28px;
  flex-shrink: 0;
}
.cta-one__content .growim-btn__text {
  background-color: rgba(242, 107, 1, 0.15);
  color: var(--growim-primary, #635AD9);
}
.cta-one__content .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.cta-one__content .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.cta-one__content .growim-btn__icon::after {
  background-color: rgba(242, 107, 1, 0.15);
}
.cta-one__content .growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}
@media (max-width: 767px) {
  .cta-one__content .growim-btn {
    margin: -5px 0 40px;
  }
}

.cta-two {
  position: relative;
  background-color: var(--growim-base, #5B3AEE);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}
.cta-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}
.cta-two__content {
  position: relative;
  padding: 85px 0 90px;
}
.cta-two__sub-title {
  color: var(--growim-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin: 0 0 2px;
}
.cta-two__title {
  color: var(--growim-white, #fff);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 37px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-two__title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .cta-two__title {
    font-size: 35px;
  }
}
.cta-two__thumb {
  position: relative;
}
.cta-two__thumb__one {
  position: relative;
  right: 35px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .cta-two__thumb__one {
    right: 0;
  }
}
.cta-two__thumb__one__shape {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 545px;
  height: 408px;
}
.cta-two__thumb__one__thumb {
  width: 482px;
  height: auto;
  border: 20px solid var(--growim-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(5deg);
}
@media (max-width: 767px) {
  .cta-two__thumb__one__thumb {
    width: 100%;
  }
}
.cta-two__thumb__one__thumb img {
  width: 100%;
  height: 282px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cta-two__thumb__one__thumb img {
    height: auto;
  }
}
.cta-two__thumb__two {
  position: absolute;
  right: -48px;
  top: 195px;
  z-index: 3;
}
@media (max-width: 991px) {
  .cta-two__thumb__two {
    top: 45px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .cta-two__thumb__two {
    position: relative;
    top: 0;
    right: 0;
  }
}
.cta-two__thumb__two__flower {
  position: absolute;
  right: -10px;
  top: -121px;
  z-index: 4;
}
@media (max-width: 767px) {
  .cta-two__thumb__two__flower {
    display: none;
  }
}
.cta-two__thumb__two__flower img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.cta-two__thumb__two__shape {
  position: absolute;
  left: -45px;
  top: -60px;
  width: 446px;
  height: 421px;
}
.cta-two__thumb__two__thumb {
  width: 360px;
  height: auto;
  border: 20px solid var(--growim-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(-17.2deg);
}
@media (max-width: 767px) {
  .cta-two__thumb__two__thumb {
    width: 100%;
  }
}
.cta-two__thumb__two__thumb img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cta-two__thumb__two__thumb img {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}
.sidebar__single {
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 20px;
  padding: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding: 30px 20px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  margin-top: -5px;
  margin-bottom: 20px;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--growim-white, #fff);
  font-size: 16px;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  border: none;
  padding-left: 21px;
  padding-right: 21px;
  border-radius: 10px;
  transition: all 500ms ease;
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--growim-primary, #635AD9);
}
.sidebar__search button[type=submit]:hover {
  color: var(--growim-black, #17012C);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 16px;
  width: 80px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}
.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__posts__meta a:hover {
  color: var(--growim-primary, #635AD9);
}
.sidebar__posts__meta a i {
  color: var(--growim-primary, #635AD9);
  margin-right: 10px;
}
.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.sidebar__categories {
  margin-bottom: -12px;
  margin-top: -12px;
}
.sidebar__categories li {
  font-size: 16px;
  font-weight: 400;
  color: var(--growim-black, #17012C);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  padding: 9px 0;
}
.sidebar__categories li a {
  display: inline-block;
  color: inherit;
}
.sidebar__categories li a:hover {
  padding-left: 5px;
  color: var(--growim-primary, #635AD9);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 8px;
}
.sidebar__tags a {
  background-color: var(--growim-white, #fff);
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: var(--growim-black, #17012C);
  border-radius: 5px;
  transition: all 500ms ease;
  display: inline-flex;
  padding: 5px 13px;
}
.sidebar__tags a:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 26px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--growim-primary, #635AD9);
  font-size: 20px;
  color: var(--growim-white, #fff);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--growim-black, #17012C);
  color: var(--growim-white, #fff);
}
.sidebar__comments__title {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--growim-text, #504E4E);
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--growim-primary, #635AD9);
}

.service-sidebar {
  position: relative;
}
.service-sidebar__single {
  position: relative;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 10px;
  padding: 30px;
}
.service-sidebar__single + .service-sidebar__single {
  margin-top: 30px;
}
.service-sidebar__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  position: relative;
  margin-top: -4px;
  margin-bottom: 35px;
}
.service-sidebar__title::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 20px;
  height: 1.5px;
  background-color: var(--growim-base, #5B3AEE);
  content: "";
}
.service-sidebar__title::before {
  position: absolute;
  left: 29px;
  bottom: -12px;
  width: 63px;
  height: 1.5px;
  background-color: var(--growim-primary, #635AD9);
  content: "";
}
.service-sidebar__nav {
  margin: 0;
  padding: 0;
}
.service-sidebar__nav li {
  margin-top: 12px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
  overflow: hidden;
  background-color: var(--growim-white, #fff);
  border-radius: 8px;
  padding: 14px 50px 14px 24px;
  transition: all 400ms ease;
}
.service-sidebar__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--growim-primary, #635AD9);
  transform: scalex(0);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in-out;
  transform-origin: right center;
  z-index: -1;
}
.service-sidebar__nav li::after {
  content: "\e915";
  font-family: "Flaticon" !important;
  font-weight: normal;
  transition: all 400ms ease;
  font-size: 16px;
  position: absolute;
  right: 24px;
  color: var(--growim-primary, #635AD9);
}
.service-sidebar__nav li a {
  color: inherit;
  display: inline-block;
  transition: none;
}
.service-sidebar__nav li.current, .service-sidebar__nav li:hover {
  color: var(--growim-white, #fff);
}
.service-sidebar__nav li.current::after, .service-sidebar__nav li:hover::after {
  color: var(--growim-white, #fff);
}
.service-sidebar__nav li.current::before, .service-sidebar__nav li:hover::before {
  transform: scalex(1);
  transform-origin: left center;
}
.service-sidebar__info {
  margin: 0;
  padding: 0;
}
.service-sidebar__info li {
  margin-top: 12px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
  overflow: hidden;
  background-color: var(--growim-white, #fff);
  border-radius: 8px;
  padding: 14px 50px 14px 24px;
  transition: all 400ms ease;
}
.service-sidebar__info li i {
  color: var(--growim-primary, #635AD9);
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: 1px;
}
.service-sidebar__btn {
  width: 100%;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-sidebar__btn::after {
  content: "";
  display: block;
  top: -2em;
  left: -2em;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--growim-black, #17012C);
  transition: 0.5s ease;
}
.service-sidebar__btn:hover::after {
  height: 700px;
  width: 700px;
}
.service-sidebar__contact {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 30px 162px;
}
.service-sidebar__contact::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgb(99, 90, 217) 30%, rgba(97, 140, 239, 0.43) 57%, rgba(96, 178, 255, 0) 100%);
}
.service-sidebar__contact__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  color: var(--growim-primary, #635AD9);
  font-size: 26px;
  position: relative;
  z-index: 1;
}
.service-sidebar__contact__icon::after {
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  content: "";
  border: 1px solid var(--growim-white, #fff);
  border-radius: 50%;
}
.service-sidebar__contact__number {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--growim-white, #fff);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: capitalize;
  margin: 24px 0 0;
}
.service-sidebar__contact__number span {
  display: block;
  margin-bottom: 12px;
}
.service-sidebar__contact__number a {
  font-size: 18px;
  color: inherit;
  line-height: 1.1;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-sidebar__contact__number a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-black, #17012C);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 16px;
  color: var(--growim-white, #fff);
  transition: all 0.4s ease;
  cursor: pointer;
}
.sidebar-one__close:hover {
  color: var(--growim-primary, #635AD9);
}
.sidebar-one__content {
  width: 350px;
  background-color: var(--growim-black, #17012C);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}
.sidebar-one__text {
  color: var(--growim-text-dark, #D9D9D9);
  margin: 35px 0 30px;
  line-height: 28px;
}
.sidebar-one__title {
  color: var(--growim-white, #fff);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}
.sidebar-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-one__info li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 10px;
  color: var(--growim-text-dark, #D9D9D9);
}
.sidebar-one__info li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--growim-primary, #635AD9);
  line-height: inherit;
}
.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  color: inherit;
}
.sidebar-one__info li a:hover {
  color: var(--growim-primary, #635AD9);
  background-size: 100% 1px;
}
.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 40px;
}
.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--growim-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--growim-white, #fff);
}
.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-one__social a:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.sidebar-one__newsletter {
  position: relative;
}
.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--growim-white-rgb, 255, 255, 255), 0.08);
  color: var(--growim-text-dark, #D9D9D9);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 50px;
  transition: all 500ms ease;
  border-radius: 5px;
}
.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--growim-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Popup Nav
--------------------------------------------------------------*/
.popup-nav__wrapper {
  background-color: var(--growim-white, #fff);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateY(-100%);
  transform-origin: top center;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  padding: 60px 65px;
}
@media (max-width: 1600px) {
  .popup-nav__wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .popup-nav__wrapper {
    padding: 40px 10px;
  }
  .popup-nav__wrapper .col-lg-3 {
    width: 30%;
  }
  .popup-nav__wrapper .col-lg-9 {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .popup-nav__wrapper .col-lg-3 {
    width: 100%;
  }
  .popup-nav__wrapper .col-lg-9 {
    display: none;
  }
}

.popup-nav__wrapper.expanded {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.popup-nav__wrapper .main-menu__nav {
  display: block;
  padding: 0;
}

.popup-nav__wrapper .logo-box {
  margin-bottom: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .popup-nav__wrapper .logo-box {
    margin-bottom: 45px;
  }
}

.popup-nav__close {
  position: absolute;
  top: 90px;
  right: 110px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--growim-white, #fff);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1600px) {
  .popup-nav__close {
    top: 70px;
    right: 75px;
  }
}
@media (max-width: 991px) {
  .popup-nav__close {
    top: 30px;
    right: 30px;
    color: var(--growim-black, #17012C);
    border-color: var(--growim-black, #17012C);
  }
}
@media (max-width: 767px) {
  .popup-nav__close {
    right: 20px;
  }
}
.popup-nav__close:hover {
  color: var(--growim-primary, #635AD9);
  border-color: var(--growim-primary, #635AD9);
}

.popup-nav__wrapper .main-menu__list,
.popup-nav__wrapper .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.popup-nav__wrapper .main-menu__list ul {
  display: none;
}

.popup-nav__wrapper .main-menu__list ul li > a:hover,
.popup-nav__wrapper .main-menu__list ul li > a.expanded {
  color: var(--growim-primary, #635AD9);
}

.popup-nav__wrapper .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--growim-black, #17012C);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  height: 60px;
  align-items: center;
  transition: 500ms;
}
@media (max-width: 1600px) {
  .popup-nav__wrapper .main-menu__list li > a {
    height: 50px;
    font-size: 24px;
  }
}

.popup-nav__wrapper .main-menu__list li a:hover,
.popup-nav__wrapper .main-menu__list li a.expanded {
  color: var(--growim-primary, #635AD9);
}

.popup-nav__wrapper .main-menu__list ul li > a {
  padding-left: 1em;
  font-size: 24px;
}
@media (max-width: 1600px) {
  .popup-nav__wrapper .main-menu__list ul li > a {
    padding-left: 0.5em;
    font-size: 18px;
  }
}

.popup-nav__wrapper .main-menu__list li a button {
  width: 40px;
  height: 40px;
  font-weight: normal;
  font-size: 18px;
  background-color: var(--growim-primary, #635AD9);
  border: none;
  outline: none;
  color: var(--growim-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 500ms ease;
}

.popup-nav__wrapper .main-menu__list li a button.expanded {
  transform: rotate(90deg);
}

.popup-nav__container {
  overflow-y: auto;
  max-height: 600px;
  scrollbar-width: thin;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .popup-nav__container {
    max-height: 480px;
    padding-right: 0;
  }
}
.popup-nav__container .home-showcase {
  margin-bottom: 10px;
}
.popup-nav__container .home-showcase__inner {
  padding: 0;
  box-shadow: none;
}
.popup-nav__container .home-showcase__inner .col-lg-3 {
  padding: 0;
  width: 100%;
}
.popup-nav__container .home-showcase__inner .demo-one__card {
  box-shadow: none;
  background: var(--growim-gray, #ECF8FF);
  transform: none;
  margin-top: 20px;
}

.popup-nav__wrapper__image {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  max-width: 1154px;
  gap: 30px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.popup-nav__wrapper__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .blog-details {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 28px;
}
.blog-details__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-details__date {
  width: 55px;
  height: 51px;
  background-color: #F2EEEA;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 16px;
  color: var(--growim-black, #17012C);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 6px;
  z-index: 2;
  flex-direction: column;
}
.blog-details__date span {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  border-radius: 6px;
  padding: 5.5px 5px;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}
.blog-details__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  margin-bottom: 19px;
}
.blog-details__meta li {
  color: var(--growim-text, #504E4E);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.blog-details__meta li i {
  color: var(--growim-primary, #635AD9);
  margin-right: 10px;
}
.blog-details__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-details__meta li a:hover {
  color: var(--growim-primary, #635AD9);
}
.blog-details__title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 26px;
}
.blog-details__content {
  position: relative;
}
.blog-details__content__text {
  margin: 0 0 28px;
}
.blog-details__content__image {
  position: relative;
}
.blog-details__content__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.blog-details__content .mb {
  margin-bottom: 31px;
  margin-top: -8px;
}
.blog-details__content__list {
  margin: 0;
  padding: 0 0 0 9px;
  list-style: none;
}
.blog-details__content__list li {
  font-weight: 500;
  text-transform: capitalize;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 8px;
}
.blog-details__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
  padding-top: 22px;
  padding-bottom: 22px;
  margin-top: 53px;
  margin-bottom: 52px;
}
.blog-details__cats {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .blog-details__cats {
    flex-wrap: wrap;
  }
}
.blog-details__cats__title {
  text-transform: uppercase;
  margin: 0 4px 0 0;
  line-height: 1em;
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  font-weight: 500;
}
.blog-details__cats a {
  border: none;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 12px;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  border-radius: 5px;
  background-color: var(--growim-gray, #ECF8FF);
}
.blog-details__cats a:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 0;
}
.blog-details__tags__title {
  text-transform: uppercase;
  margin: 0 10px 0 0;
  line-height: 1em;
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  font-weight: 500;
}
.blog-details__tags a {
  border: none;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  background-color: transparent;
  margin-left: 3px;
}
.blog-details__tags a:hover {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 55px;
}
.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
.comments-one__list {
  margin: 0;
  margin-top: 32px;
}
.comments-one__card {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
@media (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}
.comments-one__card__image {
  position: relative;
  margin-right: 20px;
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  margin-top: 17px;
  margin-bottom: 9px;
}
.comments-one__card__date {
  display: block;
  margin: 0 0 23px;
}
.comments-one__card__text {
  margin: 0;
  line-height: 30px;
}
.comments-one__card__btn {
  position: absolute;
  right: 0;
  top: 27px;
}
@media (max-width: 767px) {
  .comments-one__card__btn {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}
.comments-one__card__btn a {
  position: relative;
  z-index: 1;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  transition: all 400ms ease;
  padding: 5px 13px;
  border-radius: 5px;
}
.comments-one__card__btn a::after {
  content: "";
  display: block;
  top: -2em;
  left: -2em;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--growim-black, #17012C);
  transition: 0.6s ease;
}
.comments-one__card__btn a:hover {
  color: var(--growim-white, #fff);
}
.comments-one__card__btn a:hover::after {
  height: 500px;
  width: 500px;
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-form {
    margin-top: 55px;
  }
}
.comments-form__title {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
.comments-form__form {
  margin-top: 45px;
}
.comments-form__form .bootstrap-select > .dropdown-toggle,
.comments-form__form input[type=tel],
.comments-form__form input[type=text],
.comments-form__form input[type=email],
.comments-form__form textarea {
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 0;
}
.comments-form__form textarea {
  height: 118px;
  margin-bottom: 20px;
}
.comments-form__form button {
  width: auto;
  display: inline-block;
  height: 50px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 10px;
  font-size: 15px;
  color: var(--growim-white, #fff);
  padding: 0 28px;
}
.comments-form__form button:hover {
  background-color: var(--growim-black, #17012C);
  color: var(--growim-white, #fff);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product-one {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .product-one {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}
.product-one__sidebar {
  position: relative;
}
.product-one__sidebar__item {
  position: relative;
  background-color: var(--growim-gray, #ECF8FF);
  padding: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-one__sidebar__item {
    padding: 30px 15px;
  }
}
.product-one__sidebar__item + .product-one__sidebar__item {
  margin-top: 30px;
}
.product-one__sidebar__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 20px;
}
.product-one__search {
  position: relative;
  display: block;
}
.product-one__search form {
  border-radius: 0;
  position: relative;
}
.product-one__search form input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--growim-white, #fff);
  font-size: 16px;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  border: none;
  padding-left: 15px;
  padding-right: 21px;
  transition: all 500ms ease;
  border-radius: 0;
}
.product-one__search form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--growim-primary, #635AD9);
}
.product-one__search form button[type=submit]:hover {
  color: var(--growim-secondary, #219BE4);
}
.product-one__price-ranger {
  background-color: var(--growim-gray, #ECF8FF);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-one__price-ranger {
    padding: 30px 20px;
  }
}
.product-one__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--growim-white, #fff);
  border: none;
  border: 1px solid var(--growim-base, #5B3AEE);
  height: 7px;
  border-radius: 10px;
  position: relative;
}
.product-one__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--growim-base, #5B3AEE);
}
.product-one__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -7px;
  background: var(--growim-base, #5B3AEE);
  border: 0;
  height: 18px;
  width: 18px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product-one__price-ranger #slider-range .ui-slider-handle::after {
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.product-one__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 18px 0 0 0px;
}
.product-one__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product-one__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--growim-text, #504E4E);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}
.product-one__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background-color: var(--growim-white, #fff);
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--growim-black, #17012C);
  font-size: 10px;
  letter-spacing: var(--growim-letter-space, 0.1em);
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  border-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(var(--growim-black-rgb, 23, 1, 44), 0.07);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-one__price-ranger .ranger-min-max-block input[type=submit] {
    padding: 0 15px;
  }
}
.product-one__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--growim-base, #5B3AEE);
  color: var(--growim-white, #fff);
}
.product-one__categories {
  position: relative;
}
.product-one__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}
.product-one__categories ul li {
  position: relative;
  margin: 0 0 4px;
}
.product-one__categories ul li a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 11px;
}
.product-one__categories ul li a span {
  position: relative;
  top: 1px;
  display: inline-block;
  font-size: 12px;
  color: var(--growim-text, #504E4E);
  margin-right: 10px;
  transition: all 0.3s ease;
}
.product-one__categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--growim-white, #fff);
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.product-one__categories ul li:hover a, .product-one__categories ul li.active a {
  color: var(--growim-primary, #635AD9);
  padding-left: 27px;
}
.product-one__categories ul li:hover a::before, .product-one__categories ul li.active a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}
.product-one__categories ul li:hover a span, .product-one__categories ul li.active a span {
  color: var(--growim-primary, #635AD9);
}
.product-one__color {
  position: relative;
}
.product-one__color ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-one__color ul li {
  position: relative;
  margin: 0 0 0;
  padding-left: 25px;
}
.product-one__color ul li::after {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  border-radius: 50%;
  content: "";
}
.product-one__color ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}
.product-one__color ul li a:hover {
  color: var(--growim-primary, #635AD9);
}
.product-one__color ul li + li {
  margin-top: 18px;
}
.product-one__status {
  position: relative;
}
.product-one__status ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -15px;
}
.product-one__status ul li {
  position: relative;
  margin: 0 0 12px;
}
.product-one__status ul li a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}
.product-one__status ul li a span {
  position: relative;
  top: 1px;
  display: inline-block;
  font-size: 12px;
  color: var(--growim-text, #504E4E);
  margin-right: 10px;
  transition: all 0.3s ease;
}
.product-one__status ul li:hover a, .product-one__status ul li.active a {
  color: var(--growim-primary, #635AD9);
}
.product-one__status ul li:hover a span, .product-one__status ul li.active a span {
  color: var(--growim-primary, #635AD9);
}
.product-one__size {
  position: relative;
}
.product-one__size ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-one__size ul li {
  position: relative;
  margin: 0 0 0;
}
.product-one__size ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 24px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--growim-text, #504E4E);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}
.product-one__size ul li a:hover {
  color: var(--growim-primary, #635AD9);
}
.product-one__size ul li + li {
  margin-top: 16px;
}
.product-one__reviews {
  position: relative;
}
.product-one__reviews ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-one__reviews ul li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.product-one__reviews ul li input[type=radio] {
  display: none;
}
.product-one__reviews ul li label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  width: 100%;
  font-size: 14px;
  color: #F26B01;
  letter-spacing: 6px;
  padding-left: 24px;
  transition: 300ms ease;
}
.product-one__reviews ul li label::after {
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  font-family: "Flaticon" !important;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid var(--growim-text, #504E4E);
  color: var(--growim-white, #fff);
  font-size: 9px;
  font-weight: normal;
  transition: 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 5px;
}
.product-one__reviews ul li label span {
  margin-left: auto;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
  font-weight: normal;
  color: var(--growim-text, #504E4E);
}
.product-one__reviews ul li input[type=radio]:checked + label::after {
  border-color: var(--growim-primary, #635AD9);
  background-color: var(--growim-primary, #635AD9);
  content: "\e907";
}
.product-one__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product-one__info-top {
    display: block;
  }
}
.product-one__showing-text {
  margin: 0;
  color: var(--growim-black, #17012C);
}
@media (max-width: 767px) {
  .product-one__showing-text {
    margin-bottom: 20px;
  }
}
.product-one__showing-sort {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
}
.product-one__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 190px !important;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
}
.product-one__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product-one__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product-one__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 52px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--growim-gray, #ECF8FF) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--growim-text, #504E4E) !important;
  font-size: 16px;
  line-height: 52px;
  text-transform: capitalize;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product-one__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Flaticon" !important;
  content: "\e92f";
  font-size: 12px;
  font-weight: normal;
  transform: rotate(90deg);
  color: var(--growim-text, #504E4E);
}
.product-one__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
}
.product-one__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  color: var(--growim-text, #504E4E);
  background-color: var(--growim-gray, #ECF8FF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product-one__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product-one__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  border-color: var(--growim-primary, #635AD9);
}
.product-one__item {
  position: relative;
  background-color: var(--growim-white, #fff);
  border: 1px solid var(--growim-border-color, #EAF3F8);
  transition: all 500ms ease;
}
.product-one__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.product-one__item__img {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.product-one__item__img img {
  max-width: 100%;
  height: auto;
  transition: all 500ms ease;
  transform: scale(1);
}
.product-one__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.product-one__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  color: var(--growim-black, #17012C);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product-one__item__btn a:hover {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.product-one__item__btn a:nth-child(1) {
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product-one__item__btn a:nth-child(2) {
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product-one__item__btn a + a {
  margin-top: 10px;
}
.product-one__item:hover .product-one__item__img img {
  transform: scale(1.05);
}
.product-one__item:hover .product-one__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
.product-one__item__content {
  position: relative;
  text-align: center;
  padding: 30px 20px;
}
.product-one__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--growim-primary, #635AD9);
  letter-spacing: 5px;
  margin-bottom: 16px;
}
.product-one__item__title {
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  margin-bottom: 13px;
}
.product-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-one__item__title a:hover {
  background-size: 100% 1px;
}
.product-one__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.product-one__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--growim-text, #504E4E);
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-one__item__link {
  height: 40px;
  background-color: var(--growim-primary, #635AD9);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--growim-white, #fff);
  padding: 11px 16px;
}
.product-one__item__link i {
  font-size: 16px;
  border-left: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  margin-left: 14px;
  padding-left: 14px;
  position: relative;
  top: 1px;
}
.product-one__item__link:hover {
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
}
.product-one .post-pagination {
  border: none;
  padding: 0;
  margin: 30px 0 0;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .product-details {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}
.product-details__img {
  background-color: var(--growim-gray, #ECF8FF);
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details__img img {
  max-width: 100%;
  height: auto;
}
.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}
.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--growim-black, #17012C);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--growim-base, #5B3AEE);
}
.product-details__content {
  position: relative;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 23px;
}
.product-details__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}
.product-details__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--growim-black, #17012C);
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 7px;
  color: var(--growim-primary, #635AD9);
}
.product-details__review a {
  display: inline-block;
  color: var(--growim-text, #504E4E);
  letter-spacing: 0;
  margin-left: 2px;
  transition: all 500ms ease;
  text-transform: capitalize;
}
.product-details__review a:hover {
  color: var(--growim-primary, #635AD9);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--growim-border-color, #EAF3F8);
  margin: 25px 0 21px;
}
.product-details__excerpt {
  margin: 0;
  line-height: 30px;
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 31px 0 39px;
}
.product-details__quantity-title {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  margin-right: 20px;
  font-weight: 400;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 53px;
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 53px;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  color: var(--growim-black, #17012C);
  padding-left: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 34px;
  height: 26px;
  color: var(--growim-text, #504E4E);
  font-size: 10px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border: none;
  border-left: 1px solid var(--growim-border-color, #EAF3F8);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--growim-primary, #635AD9);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-details__buttons__link {
  height: 55px;
  background-color: var(--growim-primary, #635AD9);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--growim-white, #fff);
  padding: 14px 23px;
}
.product-details__buttons__link i {
  font-size: 16px;
  border-left: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  margin-left: 14px;
  padding-left: 14px;
  position: relative;
  top: 1px;
}
.product-details__buttons__link:hover {
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 40px;
}
.product-details__socials__title {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  color: var(--growim-text, #504E4E);
  margin-right: 9px;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  font-size: 14px;
  color: var(--growim-text, #504E4E);
  transition: all 500ms ease;
  border-radius: 0;
}
.product-details__socials a:hover {
  background-color: var(--growim-primary, #635AD9);
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 58px 0 0;
}
.product-details__description__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 22px;
  font-weight: bold;
}
.product-details__description__text {
  margin-bottom: 30px;
  line-height: 30px;
}
.product-details__comment {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  margin: 55px 0 0;
  padding: 52px 0 0;
  position: relative;
}
.product-details__review-title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 44px;
  font-weight: bold;
}
.product-details__card {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
@media (min-width: 768px) {
  .product-details__card {
    display: flex;
    align-items: flex-start;
  }
}
.product-details__card__image {
  position: relative;
  margin-right: 20px;
}
.product-details__card__image img {
  border-radius: 50%;
}
.product-details__card__title {
  margin: 0;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  margin-top: 17px;
  margin-bottom: 9px;
}
.product-details__card__date {
  display: block;
  margin: 0 0 23px;
}
.product-details__card__text {
  margin: 0;
  line-height: 30px;
}
.product-details__card__ratings {
  position: absolute;
  right: 0;
  top: 35px;
  display: flex;
  align-items: center;
  letter-spacing: 7px;
  font-size: 16px;
  color: var(--growim-primary, #635AD9);
}
.product-details__card__content {
  position: relative;
}
.product-details__form {
  position: relative;
  margin: 51px 0 0;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: bold;
}
.product-details__form-text {
  text-transform: capitalize;
  margin: 0 0 15px;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--growim-text, #504E4E);
  margin: 0 0 25px;
}
.product-details__form-ratings__label {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
  margin: 0 37px 0 0;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form textarea {
  height: 143px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .cart-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  color: var(--growim-black, #17012C);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0 0 24px;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8) !important;
  box-shadow: none;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
  padding: 30px 0;
  letter-spacing: 0;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
  padding-right: 20px;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 70px;
  height: 70px;
  background-color: var(--growim-gray, #ECF8FF);
  margin-right: 20px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page__table__meta-title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
  font-weight: bold;
  color: var(--growim-black, #17012C);
}
.cart-page__table__meta-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cart-page__table__meta-title a:hover {
  background-size: 100% 1px;
}
.cart-page__table__meta-title a:hover {
  color: var(--growim-primary, #635AD9);
}
.cart-page__table__remove {
  display: block;
  color: var(--growim-text, #504E4E);
  font-size: 16px;
}
.cart-page__table__remove:hover {
  color: var(--growim-primary, #635AD9);
}
.cart-page__coupone-form {
  position: relative;
  width: 100%;
}
.cart-page__coupone-form__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cart-page__coupone-form__inner {
    display: block;
  }
}
.cart-page__coupone-form label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  margin: 0 0 8px;
}
.cart-page__coupone-form input[type=text] {
  height: 62px;
  width: 268px;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  display: block;
  font-weight: 400;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__coupone-form .growim-btn {
  height: 62px;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.cart-page__coupone-form .growim-btn__text {
  background-color: var(--growim-primary, #635AD9);
  border-radius: 10px;
  text-transform: capitalize;
  padding: 17px 25px;
}
.cart-page__coupone-form .growim-btn__text::after {
  background-color: var(--growim-secondary, #219BE4);
}
.cart-page__coupone-form .growim-btn.update {
  margin-left: auto;
  background-color: transparent;
}
.cart-page__cart-total {
  position: relative;
  margin: 60px 0 0 auto;
  max-width: 320px;
}
.cart-page__cart-total__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
  margin: 0 0 23px;
  padding: 0 0 30px;
}
.cart-page__cart-total__list {
  position: relative;
  margin: 0 0 24px;
  padding: 0;
}
.cart-page__cart-total__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--growim-primary, #635AD9);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 12px;
}
.cart-page__cart-total__list li span {
  font-size: 20px;
  font-weight: 600;
  color: var(--growim-black, #17012C);
}
.cart-page__cart-total__list li.shipping {
  display: block;
}
.cart-page__cart-total__list li.shipping span {
  font-size: 16px;
}
.cart-page__cart-total__list li.shipping p {
  line-height: 26px;
  font-weight: 400;
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  margin: 8px 0 0;
}
.cart-page__cart-total__list li:last-child {
  padding-top: 17px;
  margin-top: 18px;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cart-page__buttons .growim-btn {
  height: 55px;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  width: 100%;
}
.cart-page__buttons .growim-btn__text {
  background-color: var(--growim-primary, #635AD9);
  border-radius: 10px;
  padding: 14.5px 25px;
  font-size: 15px;
  width: 100%;
}
.cart-page__buttons .growim-btn__text::after {
  background-color: var(--growim-secondary, #219BE4);
}
.cart-page__buttons .growim-btn:hover .growim-btn__text::after {
  width: 750px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .checkout-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  font-size: 24px;
  text-transform: capitalize;
  margin: 0 0 41px;
  font-weight: 600;
}
.checkout-page__shipping-address {
  position: relative;
  margin: 54px 0 0;
}
.checkout-page__shipping-address__title {
  font-size: 24px;
  text-transform: capitalize;
  margin: 0 0 21px;
  font-weight: 600;
}
.checkout-page__shipping-address__title input[type=checkbox] {
  display: none;
}
.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}
.checkout-page__shipping-address__title label span:before {
  position: absolute;
  top: 0;
  left: 6px;
  line-height: 20px;
  display: inline-block;
  color: var(--growim-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__shipping-address__title input[type=checkbox] + label span {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 19px;
  height: 19px;
  background-color: var(--growim-base, #5B3AEE);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}
.checkout-page__shipping-address__title input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  cursor: pointer;
  margin: 0 0 18px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--growim-gray, #ECF8FF);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--growim-gray, #ECF8FF) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--growim-text, #504E4E) !important;
  font-size: 14px;
  line-height: 60px;
  text-transform: capitalize;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  font-weight: normal;
  font-family: "Flaticon" !important;
  content: "\e92f";
  font-size: 12px;
  font-weight: normal;
  transform: rotate(90deg);
  color: var(--growim-text, #504E4E);
  display: flex;
  align-items: center;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  background-color: var(--growim-gray, #ECF8FF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  border-color: var(--growim-primary, #635AD9);
}
.checkout-page__input-box textarea {
  font-size: 16px;
  font-weight: 400;
  color: var(--growim-text, #504E4E);
  height: 177px;
  width: 100%;
  background-color: var(--growim-gray, #ECF8FF);
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--growim-text, #504E4E);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--growim-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--growim-base, #5B3AEE);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
  margin: 40px 0 0;
}
.checkout-page__your-order__title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: bold;
}
.checkout-page__your-order .growim-btn {
  margin-top: 44px;
  height: 55px;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.checkout-page__your-order .growim-btn__text {
  background-color: var(--growim-primary, #635AD9);
  border-radius: 10px;
  font-size: 15px;
  padding: 14.5px 27px;
}
.checkout-page__your-order .growim-btn__text::after {
  background-color: var(--growim-secondary, #219BE4);
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
  font-weight: 500;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-text, #504E4E);
  margin: 0;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 0;
  padding-top: 24px;
  font-weight: 700;
  color: var(--growim-primary, #635AD9);
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
}
.checkout-page__payment {
  background-color: var(--growim-gray, #ECF8FF);
  padding: 30px 30px;
  min-height: 295px;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  margin-bottom: 11px;
  cursor: pointer;
  font-weight: 700;
  color: var(--growim-black, #17012C);
}
.checkout-page__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--growim-text, #504E4E);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title::after {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--growim-text, #504E4E);
  border-radius: 50%;
  transition: all 500ms ease;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  border-color: var(--growim-primary, #635AD9);
}
.checkout-page__payment__item--active .checkout-page__payment__title::after {
  background-color: var(--growim-primary, #635AD9);
}
.checkout-page__payment__content {
  margin-left: 34px;
  margin-bottom: 30px;
  padding-right: 2px;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  padding: 120px 0 150px;
}
@media (max-width: 991px) {
  .faq-one {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .faq-one {
    padding: 80px 0;
  }
}
.faq-one__shape-one {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1599px) {
  .faq-one__shape-one {
    display: none;
  }
}
.faq-one__shape-two {
  position: absolute;
  left: 0;
  bottom: 19%;
  width: 115px;
  height: 197px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1599px) {
  .faq-one__shape-two {
    display: none;
  }
}
.faq-one__shape-three {
  position: absolute;
  right: 9%;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 133px;
  height: 123px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1799px) {
  .faq-one__shape-three {
    right: 3%;
  }
}
@media (max-width: 1599px) {
  .faq-one__shape-three {
    display: none;
  }
}
.faq-one__accordion {
  position: relative;
}
.faq-one__accordion .accrodion {
  border: 1px solid var(--growim-border-color, #EAF3F8);
  position: relative;
  transition: all 500ms ease;
  padding-bottom: 15px;
}
.faq-one__accordion .accrodion + .accrodion {
  margin-top: 10px;
}
.faq-one__accordion .accrodion-title {
  padding: 27px 30px 12px;
  padding-right: 50px;
  cursor: pointer;
}
.faq-one__accordion .accrodion-title h4 {
  font-weight: 600;
  color: var(--growim-black, #17012C);
  font-size: 20px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
}
.faq-one__accordion .accrodion-title__icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}
.faq-one__accordion .accrodion-title__icon::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Flaticon" !important;
  font-size: 16px;
  content: "\e912";
  font-weight: normal;
  transition: all 500ms ease;
}
.faq-one__accordion .active {
  border-color: #F3F7FB;
  background-color: #F3F7FB;
}
.faq-one__accordion .active .accrodion-title h4 {
  color: var(--growim-primary, #635AD9);
}
.faq-one__accordion .active .accrodion-title__icon::after {
  transform: rotate(90deg);
}
.faq-one__accordion .accrodion-content .inner {
  padding: 0px 30px 6px;
}
.faq-one__accordion .accrodion-content p {
  margin: 0;
}
.faq-one__image {
  position: relative;
}
@media (max-width: 991px) {
  .faq-one__image {
    margin-top: 45px;
  }
}
@media (min-width: 1200px) {
  .faq-one__image {
    margin-left: 20px;
  }
}
.faq-one__image img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .faq-one__image img {
    max-width: inherit;
  }
}

.faq-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .faq-two {
    padding: 80px 0;
  }
}
.faq-two__shape-one {
  position: absolute;
  left: 0;
  top: 3%;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1599px) {
  .faq-two__shape-one {
    display: none;
  }
}
.faq-two__shape-two {
  position: absolute;
  left: 0;
  top: 80px;
  width: 115px;
  height: 197px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1599px) {
  .faq-two__shape-two {
    display: none;
  }
}
.faq-two__accordion {
  position: relative;
}
.faq-two__accordion .accrodion {
  border: 1px solid var(--growim-border-color, #EAF3F8);
  position: relative;
  transition: all 500ms ease;
  padding-bottom: 15px;
}
.faq-two__accordion .accrodion + .accrodion {
  margin-top: 10px;
}
.faq-two__accordion .accrodion-title {
  padding: 27px 30px 12px;
  padding-right: 50px;
  cursor: pointer;
}
.faq-two__accordion .accrodion-title h4 {
  font-weight: 600;
  color: var(--growim-black, #17012C);
  font-size: 20px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
}
.faq-two__accordion .accrodion-title__icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}
.faq-two__accordion .accrodion-title__icon::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Flaticon" !important;
  font-size: 16px;
  content: "\e912";
  font-weight: normal;
  transition: all 500ms ease;
}
.faq-two__accordion .active {
  border-color: #F3F7FB;
  background-color: #F3F7FB;
}
.faq-two__accordion .active .accrodion-title h4 {
  color: var(--growim-primary, #635AD9);
}
.faq-two__accordion .active .accrodion-title__icon::after {
  transform: rotate(90deg);
}
.faq-two__accordion .accrodion-content .inner {
  padding: 0px 30px 6px;
}
.faq-two__accordion .accrodion-content p {
  margin: 0;
}
.faq-two__image {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .faq-two__image {
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .faq-two__image {
    margin-bottom: 45px;
    max-width: 540px;
  }
}
.faq-two__image__one {
  position: relative;
  display: inline-block;
  max-width: 370px;
}
.faq-two__image__one img {
  max-width: 100%;
  height: auto;
  border: 7px solid var(--growim-white, #fff);
  border-radius: 8px;
  filter: drop-shadow(0px 4px 13.5px rgba(0, 0, 0, 0.1));
}
.faq-two__image__two {
  position: relative;
  z-index: 1;
  display: flex;
  margin-left: auto;
  margin-top: -249px;
  max-width: 370px;
}
@media (max-width: 767px) {
  .faq-two__image__two {
    margin: 20px 0 0;
  }
}
.faq-two__image__two img {
  max-width: 100%;
  height: auto;
  border: 7px solid var(--growim-white, #fff);
  border-radius: 8px;
  filter: drop-shadow(0px 4px 13.5px rgba(0, 0, 0, 0.1));
}
.faq-two__image__shape-one {
  position: absolute;
  right: 99px;
  top: 26px;
}
@media (max-width: 1199px) {
  .faq-two__image__shape-one {
    right: 0;
  }
}
@media (max-width: 767px) {
  .faq-two__image__shape-one {
    display: none;
  }
}
.faq-two__image__shape-one img {
  max-width: 100%;
  height: auto;
  animation: treeMove2 6s linear 0s infinite;
}
.faq-two__image__shape-two {
  position: absolute;
  left: -12px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .faq-two__image__shape-two {
    display: none;
  }
}
.faq-two__image__shape-two img {
  max-width: 100%;
  height: auto;
}

.faq-page {
  padding: 120px 0;
  position: relative;
}
@media (min-width: 992px) {
  .faq-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .faq-page {
    padding: 80px 0;
  }
}
.faq-page__image {
  position: relative;
  z-index: 1;
  padding-left: 54px;
}
.faq-page__image::before {
  position: absolute;
  left: 7px;
  bottom: 0;
  width: 62px;
  height: 57%;
  content: "";
  background-image: linear-gradient(180deg, #635ad9 0%, #219be4 100%);
  border-radius: 0 0 0 16px;
  clip-path: polygon(50% 11%, 100% 0, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}
.faq-page__image img {
  max-width: 100%;
  border-radius: 16px;
  height: auto;
}
.faq-page__content {
  position: relative;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .faq-page__content {
    margin-top: 45px;
  }
}
.faq-page__content .sec-title {
  padding-bottom: 38px;
}
.faq-page__accordion {
  position: relative;
}
.faq-page__accordion .accrodion {
  position: relative;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  border-radius: 10px;
}
.faq-page__accordion .accrodion + .accrodion {
  margin-top: 20px;
}
.faq-page__accordion .accrodion-title {
  cursor: pointer;
}
.faq-page__accordion .accrodion-title h4 {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--growim-black, #17012C);
  font-size: 16px;
  margin: 0;
  padding: 25px 15px 26px 78px;
  position: relative;
  transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--growim-black, #17012C);
  border-radius: 10px;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon::after, .faq-page__accordion .accrodion-title__icon::before {
  width: 2px;
  height: 16px;
  position: absolute;
  background-color: var(--growim-white, #fff);
  border-radius: 5px;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon::after {
  width: 16px;
  height: 2px;
}
.faq-page__accordion .active .accrodion-title__icon {
  background-color: var(--growim-primary, #635AD9);
}
.faq-page__accordion .active .accrodion-title__icon::before {
  opacity: 0;
}
.faq-page__accordion .accrodion-content .inner {
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  padding: 8px 30px 25px 0;
  margin-left: 15px;
  margin-top: 0;
}
.faq-page__accordion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .package-one {
    padding: 80px 0;
  }
}
.package-one__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1299px) {
  .package-one__shape-one {
    display: none;
  }
}
.package-one__shape-two {
  position: absolute;
  left: 90px;
  top: 29%;
  width: 93px;
  height: 93px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: startIconOne 1.8s infinite alternate;
}
.package-one__shape-three {
  position: absolute;
  left: 0;
  bottom: 90px;
  width: 177px;
  height: 380px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
.package-one__shape-four {
  position: absolute;
  right: 0;
  top: 150px;
  width: 67px;
  height: 197px;
  background-position: top right;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
.package-one__item {
  position: relative;
  background: linear-gradient(180deg, var(--growim-primary, #635AD9) 0%, rgba(var(--growim-secondary-rgb, 33, 155, 228), 0.5) 100%);
  border-radius: 16px;
  padding: 4px;
  transition: all 400ms ease;
}
.package-one__item__inner {
  width: 100%;
  background-color: var(--growim-white, #fff);
  border-radius: 16px;
  padding: 37px 35px 28px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-one__item__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.package-one__item:hover {
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}
.package-one__item__price {
  position: relative;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: var(--growim-black2, #00194C);
  margin: 0 0 31px;
}
.package-one__item__price span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-text, #504E4E);
  margin-top: 9px;
}
.package-one__item__title {
  position: absolute;
  right: 0;
  top: 39px;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12% 50%);
  margin: 0;
  padding: 15px 15px 14px 45px;
  transition: all 400ms ease;
}
.package-one__item__text {
  margin: 0 0 28px;
}
.package-one__item__list {
  margin: 0;
  padding: 30px 0 22px;
  list-style: none;
  border-top: 1px solid var(--growim-border2-color, #D4DCFF);
}
.package-one__item__list li {
  margin: 0 0 12px;
  display: flex;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  gap: 8px;
}
.package-one__item__list li i {
  display: inline-block;
  color: var(--growim-primary, #635AD9);
  position: relative;
  top: 6px;
}
.package-one__item .growim-btn {
  width: 100%;
}
.package-one__item .growim-btn__text {
  width: 100%;
}
.package-one__item .growim-btn:hover .growim-btn__text::after {
  width: 700px;
}

.package-two {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .package-two {
    padding: 80px 0;
  }
}
.package-two__content {
  position: relative;
}
.package-two__tabs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  position: relative;
}
.package-two__tabs li {
  position: relative;
  display: inline-block;
  transition: all 400ms ease;
}
.package-two__tabs li a {
  color: rgba(var(--growim-text-rgb, 80, 78, 78), 0.25);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 400ms ease;
}
.package-two__tabs li:hover a, .package-two__tabs li.active a {
  color: var(--growim-black, #17012C);
}
.package-two__tabs li .switch {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 22px;
  border-radius: 43px;
  vertical-align: middle;
  margin: 0 15px;
}
.package-two__tabs li .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 43px;
  transition: 0.4s;
  background-color: rgba(242, 107, 1, 0.1);
}
.package-two__tabs li .switch .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  bottom: 3px;
  transform: translateX(3px);
  background-color: var(--growim-primary, #635AD9);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
.package-two__tabs li .switch.off .slider::before {
  transform: translateX(22px);
}
.package-two__shape {
  position: relative;
  height: 155px;
  background-position: left top;
  width: 155px;
  margin-left: -65px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1199px) {
  .package-two__shape {
    display: none;
  }
}
.package-two [style="display: none;"] .package-one__item {
  opacity: 0;
  height: 0;
}
.package-two .package-one__item {
  border: 2px solid var(--growim-black, #17012C);
  box-shadow: none;
}
.package-two .package-one__item .package-one__item__title {
  background-color: var(--growim-black, #17012C);
}
.package-two .package-one__item .package-one__item__list li i {
  color: var(--growim-black, #17012C);
  transition: all 300ms ease;
}
.package-two .package-one__item .growim-btn__text {
  background-color: var(--growim-black, #17012C);
}
.package-two .package-one__item:hover {
  border-color: var(--growim-primary, #635AD9);
}
.package-two .package-one__item:hover .package-one__item__title {
  background-color: var(--growim-primary, #635AD9);
}
.package-two .package-one__item:hover .package-one__item__list li i {
  color: var(--growim-primary, #635AD9);
}
.package-two .package-one__item:hover .growim-btn .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
  height: 700px;
  width: 700px;
}

.package-three {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .package-three {
    padding: 80px 0;
  }
}
.package-three__item {
  position: relative;
  z-index: 2;
  background-color: var(--growim-white, #fff);
  border-radius: 32px;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  padding: 39px 39px 27px;
  overflow: hidden;
  transition: all 400ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-three__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.package-three__item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--growim-primary, #635AD9);
  transition: all 0.5s ease;
}
.package-three__item:hover {
  border-color: var(--growim-primary, #635AD9);
}
.package-three__item:hover::after {
  left: 0;
  width: 100%;
}
.package-three__item:hover .package-three__item__list li,
.package-three__item:hover .package-three__item__list li i,
.package-three__item:hover .package-three__item__feature,
.package-three__item:hover .package-three__item__price,
.package-three__item:hover .package-three__item__price span,
.package-three__item:hover .package-three__item__text,
.package-three__item:hover .package-three__item__title {
  color: var(--growim-white, #fff);
}
.package-three__item:hover .package-three__item__list li i {
  border-color: var(--growim-white, #fff);
}
.package-three__item__icon {
  background-image: linear-gradient(180deg, #000000 0%, #525252 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}
.package-three__item__icon img {
  width: 20px;
  height: 20px;
}
.package-three__item__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 5px;
  transition: all 300ms ease;
}
.package-three__item__text {
  font-size: 14px;
  transition: all 300ms ease;
  margin: 0 0 35px;
}
.package-three__item__price {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--growim-black, #17012C);
  transition: all 300ms ease;
  margin: 0 0 42px;
}
.package-three__item__price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-text, #504E4E);
  transition: all 300ms ease;
}
.package-three__item__rm {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--growim-border-color, #EAF3F8);
  border-radius: 12px;
  font-size: 14px;
  color: var(--growim-black, #17012C);
  transition: all 400ms ease;
  font-weight: 600;
  background-color: var(--growim-white, #fff);
  text-transform: uppercase;
}
.package-three__item__rm:hover {
  background-color: var(--growim-black, #17012C);
  border-color: var(--growim-black, #17012C);
  color: var(--growim-white, #fff);
}
.package-three__item__feature {
  display: block;
  color: var(--growim-black, #17012C);
  transition: all 300ms ease;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  margin: 39px 0 12px;
  padding-top: 39px;
}
.package-three__item__list {
  margin: 0;
  padding: 0 0 0;
  list-style: none;
}
.package-three__item__list li {
  margin: 0 0 13px;
  display: flex;
  align-items: center;
  color: var(--growim-black, #17012C);
  font-weight: 400;
  font-size: 14px;
  gap: 10px;
  transition: all 300ms ease;
}
.package-three__item__list li i {
  width: 14px;
  height: 14px;
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--growim-primary, #635AD9);
  transition: all 300ms ease;
  font-size: 8px;
  position: relative;
  top: 0;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(0.5) rotate(45deg);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes treeMove2 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
@keyframes treeMove3 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-3deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(3deg) translateX(0);
    transform: rotate(3deg) translateX(0);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes videoZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 1;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}
@keyframes zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes shrinkAnim {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 0 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shrinkAnim2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--growim-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--growim-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(var(--growim-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--growim-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--growim-white-rgb, 255, 255, 255), 0);
  }
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--growim-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--growim-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growim-black, #17012C);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--growim-black2, #00194C);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--growim-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--growim-base, #5B3AEE);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--growim-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--growim-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--growim-white, #fff);
  font-size: 12px;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--growim-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--growim-base, #5B3AEE);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--growim-base, #5B3AEE);
  border: none;
  outline: none;
  color: var(--growim-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--growim-white, #fff);
  color: var(--growim-black, #17012C);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--growim-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--growim-base, #5B3AEE);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--growim-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--growim-base, #5B3AEE);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--growim-base, #5B3AEE);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--growim-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--growim-white, #fff);
  font-size: 15px;
  color: var(--growim-text, #504E4E);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .growim-btn {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
}
.search-popup__form .growim-btn__text {
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--growim-black, #17012C);
  position: relative;
  padding-top: 284px;
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 180px;
    padding-bottom: 90px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
  opacity: 0.3;
}
.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header__title {
  margin: 0 0 20px;
  font-size: 36px;
  color: var(--growim-white, #fff);
  font-weight: 800;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 50px;
  }
}

.growim-breadcrumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid var(--growim-primary, #635AD9);
  border-radius: 100px;
  padding: 10.5px 11px;
  margin: 0;
}
@media (max-width: 767px) {
  .growim-breadcrumb {
    line-height: 32px;
    padding: 8.5px 11px 13.5px;
  }
}
.growim-breadcrumb li {
  font-size: 16px;
  color: var(--growim-white, #fff);
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .growim-breadcrumb li {
    font-size: 15px;
  }
}
.growim-breadcrumb li:not(:last-of-type)::after {
  content: "\e92f";
  font-family: "Flaticon" !important;
  position: relative;
  top: 2px;
  font-weight: normal;
  font-size: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.growim-breadcrumb li span,
.growim-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1.1;
}
.growim-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.growim-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.growim-breadcrumb li a:hover {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  margin-bottom: -114px;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 557px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__wrapper {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
.google-map__info {
  max-width: 358px;
  background-color: var(--growim-primary, #635AD9);
  margin-left: auto;
  margin-right: 30px;
  padding: 25px 30px 18px;
  position: relative;
}
@media (max-width: 767px) {
  .google-map__info {
    margin-right: 0px;
  }
}
.google-map__info::before {
  position: absolute;
  content: "";
  left: -29px;
  top: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 39px 29px;
  border-color: transparent transparent var(--growim-primary, #635AD9) transparent;
  transform: rotate(0deg);
}
.google-map__info::after {
  position: absolute;
  content: "";
  right: -29px;
  top: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 39px 0 0 29px;
  border-color: transparent transparent transparent var(--growim-primary, #635AD9);
  transform: rotate(0deg);
}
.google-map__info__title {
  color: var(--growim-white, #fff);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 22px;
}
.google-map__info__list {
  margin: 0;
  padding: 0;
}
.google-map__info__list li {
  color: var(--growim-white, #fff);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.15);
}
.google-map__info__list li i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background-color: rgba(var(--growim-white-rgb, 255, 255, 255), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growim-white, #fff);
  font-size: 18px;
}
.google-map__info__list li i.flaticon-pin {
  position: relative;
  top: -3px;
}
.google-map__info__list li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.google-map__info__list li a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  padding: 115px 0 0;
}
@media (max-width: 767px) {
  .client-carousel {
    padding-top: 75px;
  }
}
.client-carousel__title {
  font-size: 24px;
  letter-spacing: -0.72px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 45px;
  text-align: center;
  position: relative;
}
.client-carousel__title::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(50% - 104px);
  height: 1px;
  content: "";
  background-color: var(--growim-gray, #ECF8FF);
}
.client-carousel__title::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(50% - 104px);
  height: 1px;
  content: "";
  background-color: var(--growim-gray, #ECF8FF);
}
.client-carousel__one__item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-carousel__one__item img {
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
  margin: 0 auto;
}
.client-carousel--border {
  position: relative;
}
.client-carousel--border .client-carousel__one {
  border-bottom: 1px solid var(--growim-gray, #ECF8FF);
  padding-bottom: 30px;
}
.client-carousel--home-five {
  padding: 115px 0 120px;
}
@media (max-width: 767px) {
  .client-carousel--home-five {
    padding: 75px 0 80px;
  }
}

.client-carousel-one {
  position: relative;
  background: var(--growim-white, #fff);
  padding: 0 0 60px;
}
.client-carousel-one .client-carousel__one {
  padding: 74px 0 0;
}
.client-carousel-one .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  line-height: 0.8;
}
.client-carousel-one .owl-theme .owl-nav button {
  width: 26px;
  height: 27px;
  background-color: var(--growim-gray, #ECF8FF);
  margin: 0 2.5px;
  padding: 0;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--growim-black, #17012C);
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 0;
}
.client-carousel-one .owl-theme .owl-nav button:hover {
  background-color: var(--growim-base, #5B3AEE);
  color: var(--growim-white, #fff);
}
.client-carousel-one .owl-theme .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--growim-border-color, #EAF3F8);
  z-index: -1;
}
.client-carousel-one .owl-theme .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 110px;
  content: "";
  height: 1px;
  background-color: var(--growim-white, #fff);
}
.client-carousel-one .client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 103px;
  transition: all 500ms ease;
}
.client-carousel-one .client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto;
}
.client-carousel-one .client-carousel__one__item:hover {
  background-color: #f8f5f0;
}
.client-carousel-one .client-carousel__one__item:hover img {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
}
.main-slider-one__carousel {
  position: relative;
  width: 100%;
}
.main-slider-one__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 43px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 82px;
}
.main-slider-one__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
  display: block;
  color: var(--growim-white, #fff);
  line-height: 1;
  font-size: 14px;
  margin: 0 0;
}
.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
  color: var(--growim-black, #17012C);
}
.main-slider-one .growim-owl__carousel__counter {
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
  position: absolute;
  right: 65px;
  bottom: 40px;
  z-index: 1;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.main-slider-one .growim-owl__carousel__counter span {
  display: inline-block;
  position: relative;
  color: var(--growim-white, #fff);
  opacity: 0.4;
  transition: all 300ms ease;
}
.main-slider-one .growim-owl__carousel__counter .growim-owl__carousel__counter__current {
  opacity: 1;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  left: -3px;
  transition: all 300ms ease;
}
.main-slider-one .growim-owl__carousel__counter .growim-owl__carousel__counter__current::before {
  position: relative;
  top: -3px;
  margin-right: 4px;
  left: 0;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
}
.main-slider-one__item {
  background-image: linear-gradient(-90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  position: relative;
  z-index: 3;
  padding-top: 340px;
  padding-bottom: 199px;
}
@media (max-width: 1199px) {
  .main-slider-one__item {
    padding-top: 240px;
    padding-bottom: 129px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.main-slider-one__bg {
  position: absolute;
  width: 51%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 1600px) {
  .main-slider-one__bg {
    width: 44%;
    background-position: left top;
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0% 100%);
  }
}
@media (max-width: 1199px) {
  .main-slider-one__bg {
    display: none;
  }
}
.main-slider-one__shape-one {
  position: absolute;
  top: 0;
  left: 32%;
  width: 554px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1600px) {
  .main-slider-one__shape-one {
    left: 20%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__shape-one {
    display: none;
  }
}
.main-slider-one__shape-two {
  position: absolute;
  top: 165px;
  left: 60%;
  width: 55px;
  height: 28px;
}
.main-slider-one__shape-two img {
  animation: messageMove 4s linear infinite;
}
@media (max-width: 767px) {
  .main-slider-one__shape-two {
    display: none;
  }
}
.main-slider-one__shape-three {
  position: absolute;
  top: 255px;
  right: 50px;
  width: 18px;
  height: 18px;
}
.main-slider-one__shape-three img {
  animation: rotated 10s linear infinite;
}
@media (max-width: 767px) {
  .main-slider-one__shape-three {
    display: none;
  }
}
.main-slider-one__shape-four {
  position: absolute;
  top: 58%;
  left: 52%;
  width: 21px;
  height: 33px;
}
.main-slider-one__shape-four img {
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 767px) {
  .main-slider-one__shape-four {
    display: none;
  }
}
.main-slider-one__shape-five {
  position: absolute;
  right: 0;
  bottom: 245px;
  width: 35px;
  height: 22px;
}
.main-slider-one__shape-five img {
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 767px) {
  .main-slider-one__shape-five {
    display: none;
  }
}
.main-slider-one__shape-six {
  position: absolute;
  right: 70px;
  top: 315px;
  width: 232px;
  height: 232px;
}
.main-slider-one__shape-six img {
  animation: zoomsIn 4s linear infinite;
}
@media (max-width: 767px) {
  .main-slider-one__shape-six {
    display: none;
  }
}
.main-slider-one__shape-seven {
  position: absolute;
  right: 165px;
  bottom: 40px;
  width: 60px;
  height: 60px;
}
.main-slider-one__shape-seven img {
  animation: treeMove2 6s linear 0s infinite;
}
.main-slider-one__report {
  position: relative;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  max-width: 205px;
  padding: 12px 14px 21px;
  transition: all 400ms linear;
  position: absolute;
  bottom: 245px;
  left: 20%;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
@media (max-width: 1199px) {
  .main-slider-one__report {
    display: none;
  }
}
.main-slider-one__report__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.39px;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 3px;
}
.main-slider-one__report__number {
  font-size: 20px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  line-height: 1;
  margin: 0;
}
.main-slider-one__report__number span {
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 5px;
  margin-left: 8px;
  position: relative;
  top: 5px;
}
.main-slider-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  padding-left: 60%;
}
@media (max-width: 1600px) {
  .main-slider-one__content {
    padding-left: 49%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__content {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
.main-slider-one__sub-title {
  position: relative;
  text-align: left;
  color: var(--growim-white, #fff);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 3px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}
.main-slider-one__sub-title::after {
  position: relative;
  display: inline-block;
  right: -22px;
  top: -7px;
  bottom: 0;
  margin: auto;
  content: "";
  width: 124px;
  height: 1px;
  background-color: RGBA(var(--growim-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 767px) {
  .main-slider-one__sub-title {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.main-slider-one__title {
  color: var(--growim-white, #fff);
  font-size: 110px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 7px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}
@media (max-width: 1299px) {
  .main-slider-one__title {
    font-size: 95px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 50px;
  }
}
.main-slider-one__title::after {
  content: "";
  width: 101%;
  height: 80%;
  position: absolute;
  top: 22px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
@media (max-width: 1199px) {
  .main-slider-one__title::after {
    top: 19px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title::after {
    top: 15px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title::after {
    top: 8px;
  }
}
.main-slider-one__text {
  color: var(--growim-white, #fff);
  font-weight: 500;
  margin: 0 0 41px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-one .video-popup {
  margin-left: 330px;
  margin-top: 74px;
  font-size: 14px;
  font-weight: 500;
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 29px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}
@media (max-width: 767px) {
  .main-slider-one .video-popup {
    margin-left: 110px;
    margin-top: 24px;
  }
}
.main-slider-one .video-popup img {
  position: absolute;
  left: -104px;
  bottom: -40px;
  width: 69px !important;
  height: 69px;
  animation: treeMove2 6s linear 0s infinite;
}
.main-slider-one .video-popup__icon {
  position: relative;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  transition: all 500ms ease;
  font-size: 13px;
  color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider-one .video-popup .ripple {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.main-slider-one .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.main-slider-one .video-popup:hover .main-slider-one .video-popup__icon {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}
.main-slider-one .active .main-slider-one__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1700ms;
}
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1900ms;
}
.main-slider-one .active .video-popup {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2100ms;
}
.main-slider-one .active .main-slider-one__report {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2100ms;
}

.main-slider-two {
  position: relative;
}
.main-slider-two__carousel {
  position: relative;
  width: 100%;
}
.main-slider-two__carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  margin: auto 0;
  position: absolute;
  left: 24px;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 40px;
  color: var(--growim-white, #fff);
  line-height: 1;
  transition: all 300ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__carousel.owl-carousel .owl-nav button.owl-prev {
    left: -150px;
    right: 0;
    top: auto;
    bottom: 20px;
    transform: rotate(-90deg);
    margin: auto;
  }
}
.main-slider-two__carousel.owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--growim-primary, #635AD9);
}
.main-slider-two__carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  margin: auto 0;
  position: absolute;
  left: 22px;
  top: 56%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 40px;
  color: var(--growim-white, #fff);
  line-height: 1;
  transition: all 300ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__carousel.owl-carousel .owl-nav button.owl-next {
    left: 0;
    right: -150px;
    top: auto;
    bottom: 20px;
    transform: rotate(-90deg);
    margin: auto;
  }
}
.main-slider-two__carousel.owl-carousel .owl-nav button.owl-next:hover {
  color: var(--growim-primary, #635AD9);
}
.main-slider-two__item {
  background-color: var(--growim-black, #17012C);
  position: relative;
  z-index: 3;
  padding-top: 251px;
  padding-bottom: 177px;
  padding-left: 190px;
}
@media (max-width: 1400px) {
  .main-slider-two__item {
    padding-left: 150px;
  }
}
@media (max-width: 1300px) {
  .main-slider-two__item {
    padding-left: 100px;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    padding-top: 220px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 170px;
    padding-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.main-slider-two__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
}
.main-slider-two__bg img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-two__bg img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.main-slider-two__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgb(27, 18, 46) 0%, rgba(26, 25, 25, 0) 100%);
  z-index: 1;
}
.main-slider-two__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgb(23, 1, 44) 15%, rgba(76, 4, 146, 0.3) 100%);
}
.main-slider-two__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-two__shape-one {
    display: none;
  }
}
.main-slider-two__shape-two {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-two__shape-two {
    display: none;
  }
}
.main-slider-two__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.main-slider-two__title {
  color: var(--growim-white, #fff);
  font-size: 110px;
  font-weight: 800;
  line-height: 122px;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 24px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
.main-slider-two__title span {
  font-size: 90px;
  line-height: 92px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .main-slider-two__title span {
    font-size: 45px;
    line-height: 48px;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__title {
    font-size: 100px;
    line-height: 104px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 80px;
    line-height: 84px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 15px;
  }
}
.main-slider-two__text {
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 50px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
@media (max-width: 767px) {
  .main-slider-two__text {
    line-height: 28px;
    margin-bottom: 35px;
  }
}
.main-slider-two__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-two__btn .growim-btn__text {
  color: var(--growim-primary, #635AD9);
}
.main-slider-two__btn .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.main-slider-two__btn .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.main-slider-two__btn .growim-btn--white:hover .growim-btn__icon {
  color: var(--growim-primary, #635AD9);
}
.main-slider-two .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
@media (max-width: 1400px) {
  .main-slider-two .container {
    padding-right: 10%;
  }
}
@media (max-width: 767px) {
  .main-slider-two .container {
    display: none;
  }
}
.main-slider-two .video-popup {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 1;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-two .video-popup i {
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  transition: all 500ms ease;
  font-size: 13px;
  color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider-two .video-popup .ripple {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.main-slider-two .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.main-slider-two .video-popup:hover i {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.main-slider-two .active .main-slider-two__bg img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.main-slider-two .active .main-slider-two__bg img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-two .active .main-slider-two__shape-one {
  opacity: 1;
  animation-delay: 1.1s;
  animation-name: zoomIn;
}
.main-slider-two .active .main-slider-two__shape-two {
  opacity: 1;
  animation-delay: 1.2s;
  animation-name: zoomIn;
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}
.main-slider-two .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1800ms;
}
.main-slider-two .active .video-popup {
  opacity: 1;
  animation-delay: 2s;
  animation-name: zoomIn;
}
.main-slider-two .growim-owl__carousel__counter {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  position: absolute;
  margin: auto 0;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .main-slider-two .growim-owl__carousel__counter {
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    bottom: 30px;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.main-slider-two .growim-owl__carousel__counter span {
  display: inline-block;
  transform: rotate(-90deg);
  position: relative;
  color: var(--growim-white, #fff);
  opacity: 0.3;
  transition: all 300ms ease;
}
@media (max-width: 767px) {
  .main-slider-two .growim-owl__carousel__counter span {
    transform: none;
  }
}
.main-slider-two .growim-owl__carousel__counter .growim-owl__carousel__counter__current {
  opacity: 1;
  font-size: 24px;
  position: relative;
  left: -3px;
  transition: all 300ms ease;
}
.main-slider-two__social {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  margin: auto 0;
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  gap: 13px;
}
@media (max-width: 1499px) {
  .main-slider-two__social {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__social {
    display: none;
  }
}
.main-slider-two__social a {
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: var(--growim-white, #fff);
  border: 1px solid var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.main-slider-two__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-slider-two__social a:hover {
  color: var(--growim-white, #fff);
  border-color: var(--growim-primary, #635AD9);
  background-color: var(--growim-primary, #635AD9);
}
.main-slider-two__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.main-banner-one {
  position: relative;
  background-color: RGBA(var(--growim-primary-rgb, 99, 90, 217), 0.06);
  padding: 190px 0 85px;
}
@media (max-width: 767px) {
  .main-banner-one {
    padding-top: 125px;
  }
}
.main-banner-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}
.main-banner-one__content {
  position: relative;
  z-index: 1;
  padding-left: 145px;
}
@media (max-width: 1600px) {
  .main-banner-one__content {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .main-banner-one__content {
    padding-left: 5px;
  }
}
.main-banner-one__sub-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--growim-secondary, #219BE4);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .main-banner-one__sub-title {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
.main-banner-one__title {
  font-size: 100px;
  line-height: 110px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 43px;
}
@media (max-width: 1600px) {
  .main-banner-one__title {
    font-size: 80px;
    line-height: 95px;
  }
}
@media (max-width: 1320px) {
  .main-banner-one__title {
    font-size: 75px;
    line-height: 85px;
  }
}
@media (max-width: 767px) {
  .main-banner-one__title {
    font-size: 45px;
    line-height: 55px;
  }
}
.main-banner-one__btn {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.main-banner-one__btn .video-popup {
  font-size: 14px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
@media (max-width: 400px) {
  .main-banner-one__btn .video-popup {
    font-size: 0;
  }
}
.main-banner-one__btn .video-popup i {
  width: 47px;
  height: 47px;
  background-image: url(../images/shapes/video-border.png);
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--growim-secondary, #219BE4);
  transition: all 0.3s ease;
}
.main-banner-one__btn .video-popup:hover {
  color: var(--growim-secondary, #219BE4);
}
.main-banner-one__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: -50px;
}
@media (max-width: 1499px) {
  .main-banner-one__image {
    margin-left: -160px;
  }
}
@media (max-width: 1199px) {
  .main-banner-one__image {
    display: none;
  }
}
.main-banner-one__image img {
  max-width: 100%;
  height: auto;
}
.main-banner-one__image__bg {
  position: absolute;
  left: 115px;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
.main-banner-one__image__clients {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  max-width: 330px;
  padding: 17px 15px 17px 22px;
  transition: all 400ms linear;
  margin-left: auto;
  margin-right: 85px;
  margin-top: -36px;
}
.main-banner-one__image__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.main-banner-one__image__clients img + img {
  margin-left: -19px;
}
.main-banner-one__image__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}
.main-banner-one__image__customer {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  max-width: 260px;
  padding: 18px 20px;
  transition: all 400ms linear;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  position: absolute;
  left: -7%;
  top: 40%;
}
@media (max-width: 1499px) {
  .main-banner-one__image__customer {
    max-width: 230px;
    font-size: 16px;
    left: -2%;
  }
}
@media (max-width: 1199px) {
  .main-banner-one__image__customer {
    display: none;
  }
}
.main-banner-one__image__customer span {
  color: var(--growim-secondary, #219BE4);
  display: inline-block;
  margin-right: 4px;
}
.main-banner-one__image__customer > img {
  width: 32px !important;
  height: 32px;
  margin-right: 12px;
}
.main-banner-one__image__customer__angle {
  position: absolute;
  right: 12px;
  bottom: -52px;
  animation: movebounce2 4s linear infinite;
}
.main-banner-one__image__report {
  position: relative;
  background-color: var(--growim-white, #fff);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  max-width: 205px;
  padding: 12px 14px 21px;
  transition: all 400ms linear;
  position: absolute;
  right: -8%;
  top: 12%;
}
@media (max-width: 1199px) {
  .main-banner-one__image__report {
    display: none;
  }
}
.main-banner-one__image__report__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.39px;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 3px;
}
.main-banner-one__image__report__number {
  font-size: 20px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  line-height: 1;
  margin: 0;
}
.main-banner-one__image__report__number span {
  background-color: var(--growim-secondary, #219BE4);
  color: var(--growim-white, #fff);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 5px;
  margin-left: 8px;
  position: relative;
  top: 5px;
}
.main-banner-one__shape-one {
  position: absolute;
  left: 0;
  top: 185px;
  width: 38px;
  height: 22px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-one {
    display: none;
  }
}
.main-banner-one__shape-two {
  position: absolute;
  left: 0;
  bottom: 115px;
  width: 122px;
  height: 34px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-two {
    display: none;
  }
}
.main-banner-one__shape-three {
  position: absolute;
  left: 37%;
  top: 170px;
  width: 93px;
  height: 93px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-three {
    display: none;
  }
}
.main-banner-one__shape-four {
  position: absolute;
  left: 38%;
  bottom: 120px;
  width: 55px;
  height: 61px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-four {
    display: none;
  }
}
.main-banner-one__shape-five {
  position: absolute;
  left: 56%;
  top: 340px;
  width: 101px;
  height: 94px;
  animation: treeMove2 7s linear infinite;
}
@media (max-width: 1499px) {
  .main-banner-one__shape-five {
    left: 54%;
    top: 330px;
  }
}
@media (max-width: 1199px) {
  .main-banner-one__shape-five {
    display: none;
  }
}
.main-banner-one__shape-six {
  position: absolute;
  left: 53%;
  bottom: 172px;
  width: 28px;
  height: 28px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1499px) {
  .main-banner-one__shape-six {
    left: 46%;
  }
}
@media (max-width: 1199px) {
  .main-banner-one__shape-six {
    display: none;
  }
}
.main-banner-one__shape-seven {
  position: absolute;
  left: 52%;
  bottom: 68px;
  width: 55px;
  height: 28px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-seven {
    display: none;
  }
}
.main-banner-one__shape-eight {
  position: absolute;
  right: 13.4%;
  top: 230px;
  width: 18px;
  height: 18px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-eight {
    display: none;
  }
}
.main-banner-one__shape-nine {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 69px;
  height: 197px;
  animation: movebounce3 5s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-one__shape-nine {
    display: none;
  }
}

.main-banner-two {
  position: relative;
  background-color: var(--growim-black, #17012C);
  padding: 273px 0 137px;
}
@media (max-width: 1499px) {
  .main-banner-two {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .main-banner-two {
    padding: 150px 0 80px;
  }
}
.main-banner-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-banner-two__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: RGBA(var(--growim-black-rgb, 23, 1, 44), 0.85);
}
.main-banner-two__content {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: left;
}
@media (max-width: 1499px) {
  .main-banner-two__content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .main-banner-two__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.main-banner-two__name {
  position: relative;
  margin: 0 0 2px;
}
.main-banner-two__name img {
  max-width: 100%;
  text-align: left;
}
.main-banner-two__name__image-one {
  position: absolute;
  left: 32%;
  top: -16px;
  width: 286px;
  height: 286px;
  background-image: linear-gradient(180deg, #b724fb 0%, #1477ee 100%);
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 1499px) {
  .main-banner-two__name__image-one {
    width: 255px;
    height: 255px;
  }
}
@media (max-width: 1199px) {
  .main-banner-two__name__image-one {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 991px) {
  .main-banner-two__name__image-one {
    width: 140px;
    height: 140px;
    padding: 7px;
    top: -6px;
  }
}
@media (max-width: 767px) {
  .main-banner-two__name__image-one {
    display: none;
  }
}
.main-banner-two__name__image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.main-banner-two__name__video {
  position: absolute;
  left: 41%;
  bottom: -92px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background-color: var(--growim-white, #fff);
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .main-banner-two__name__video {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 991px) {
  .main-banner-two__name__video {
    display: none;
  }
}
.main-banner-two__name__video::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: "";
  border-radius: 50%;
  background-image: linear-gradient(180deg, #b724fb 0%, #1477ee 100%);
  opacity: 0.5;
}
.main-banner-two__name__video img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.main-banner-two__name__video .video-popup {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.main-banner-two__name__video .video-popup i {
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  transition: all 500ms ease;
  font-size: 13px;
  color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-banner-two__name__video .video-popup .ripple {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.main-banner-two__name__video .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--growim-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.main-banner-two__name__video .video-popup:hover i {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.main-banner-two__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--growim-secondary, #219BE4);
  text-transform: uppercase;
  margin: 52px 0 25px 35px;
}
@media (max-width: 767px) {
  .main-banner-two__title {
    margin-left: 10px;
    margin-top: 32px;
  }
}
.main-banner-two__text {
  font-weight: 600;
  line-height: 30px;
  color: RGBA(var(--growim-white-rgb, 255, 255, 255), 0.7);
  text-transform: capitalize;
  max-width: 425px;
  margin: 0 0 30px 35px;
}
@media (max-width: 767px) {
  .main-banner-two__text {
    margin-left: 10px;
  }
}
.main-banner-two__btn {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-left: 430px;
}
@media (max-width: 1199px) {
  .main-banner-two__btn {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .main-banner-two__btn {
    flex-direction: column;
    gap: 20px;
  }
}
.main-banner-two__btn > img {
  width: 86px;
  height: 87px;
  position: relative;
  top: -22px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 767px) {
  .main-banner-two__btn > img {
    display: none;
  }
}
.main-banner-two__btn .growim-btn {
  height: 55px;
}
.main-banner-two__btn .growim-btn__text {
  padding: 13.5px 21px;
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
.main-banner-two__btn__clients {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: var(--growim-white, #fff);
  border-radius: 100px;
  max-width: 331px;
  padding: 17px 19px 17px 22px;
  transition: all 400ms linear;
}
@media (max-width: 767px) {
  .main-banner-two__btn__clients {
    bottom: 10px;
    right: 10px;
  }
}
.main-banner-two__btn__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.main-banner-two__btn__clients img + img {
  margin-left: -19px;
}
.main-banner-two__btn__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}
.main-banner-two__shape-one {
  position: absolute;
  left: 65px;
  top: 235px;
  width: 18px;
  height: 18px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-one {
    display: none;
  }
}
.main-banner-two__shape-two {
  position: absolute;
  left: 32%;
  top: 150px;
  width: 55px;
  height: 61px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-two {
    display: none;
  }
}
.main-banner-two__shape-three {
  position: absolute;
  left: 37%;
  z-index: 2;
  top: 223px;
  width: 101px;
  height: 94px;
  animation: treeMove2 7s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-three {
    display: none;
  }
}
.main-banner-two__shape-four {
  position: absolute;
  left: 83%;
  top: 210px;
  width: 55px;
  height: 28px;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-four {
    display: none;
  }
}
.main-banner-two__shape-five {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1499px) {
  .main-banner-two__shape-five {
    bottom: -45px;
  }
}
@media (max-width: 1199px) {
  .main-banner-two__shape-five {
    display: none;
  }
}
.main-banner-two__shape-six {
  position: absolute;
  left: 53%;
  bottom: 348px;
  width: 38px;
  height: 38px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-six {
    display: none;
  }
}
.main-banner-two__shape-seven {
  position: absolute;
  right: 95px;
  bottom: 220px;
  width: 18px;
  height: 18px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1199px) {
  .main-banner-two__shape-seven {
    display: none;
  }
}

.main-banner-three {
  position: relative;
  padding: 263px 105px 0;
}
@media (max-width: 1599px) {
  .main-banner-three {
    padding: 263px 15px 0;
  }
}
@media (max-width: 1299px) {
  .main-banner-three {
    padding: 263px 5px 0;
  }
}
@media (max-width: 1199px) {
  .main-banner-three {
    padding: 263px 0 0;
  }
}
@media (max-width: 767px) {
  .main-banner-three {
    padding-top: 150px;
  }
}
.main-banner-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
}
.main-banner-three__title {
  font-size: 70px;
  line-height: 80px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  padding-left: 110px;
}
@media (max-width: 1599px) {
  .main-banner-three__title {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .main-banner-three__title {
    font-size: 50px;
    line-height: 60px;
  }
}
.main-banner-three__right {
  position: relative;
  margin-left: -79px;
  padding-top: 8px;
}
@media (max-width: 1599px) {
  .main-banner-three__right {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .main-banner-three__right {
    padding-top: 45px;
  }
}
.main-banner-three__text {
  font-weight: 500;
  margin: 0 0 47px;
}
@media (max-width: 1199px) {
  .main-banner-three__text br {
    display: none;
  }
}
.main-banner-three__btn {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-left: -200px;
}
@media (max-width: 991px) {
  .main-banner-three__btn {
    margin-left: 0;
  }
}
.main-banner-three__btn img {
  width: 86px;
  height: 87px;
  position: relative;
  top: -11px;
  animation: messageMove 3s linear 0s infinite;
}
.main-banner-three__btn .growim-btn {
  height: 55px;
}
.main-banner-three__btn .growim-btn__text {
  padding: 12.5px 29px;
  background-color: transparent;
  border: 1px solid var(--growim-primary, #635AD9);
  color: var(--growim-primary, #635AD9);
}
.main-banner-three__image {
  position: relative;
  padding: 26px 26px 0;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .main-banner-three__image {
    padding: 0;
  }
}
.main-banner-three__image__border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 258px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-banner-three__image__border {
    display: none;
  }
}
.main-banner-three__image__border img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
}
.main-banner-three__image > img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .main-banner-three__image > img {
    min-height: 300px;
    object-fit: cover;
  }
}
.main-banner-three__image__clients {
  position: absolute;
  bottom: 30px;
  right: 56px;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: var(--growim-white, #fff);
  border-radius: 100px;
  max-width: 331px;
  padding: 17px 19px 17px 22px;
  transition: all 400ms linear;
}
@media (max-width: 767px) {
  .main-banner-three__image__clients {
    bottom: 10px;
    right: 10px;
  }
}
.main-banner-three__image__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.main-banner-three__image__clients img + img {
  margin-left: -19px;
}
.main-banner-three__image__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}

.main-slider-three {
  position: relative;
  overflow: hidden;
}
.main-slider-three__carousel {
  position: relative;
  width: 100%;
}
.main-slider-three__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 50px;
  z-index: 2;
  width: 1176px;
}
@media (max-width: 1199px) {
  .main-slider-three__carousel .owl-dots {
    width: 930px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__carousel .owl-dots {
    width: 100%;
    justify-content: center;
    bottom: 30px;
  }
}
.main-slider-three__carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 3px;
}
.main-slider-three__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--growim-black, #17012C);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-three__carousel .owl-dots .owl-dot:hover span,
.main-slider-three__carousel .owl-dots .owl-dot.active span {
  background-color: var(--growim-black, #17012C);
}
.main-slider-three__item {
  position: relative;
  padding-top: 214px;
  padding-bottom: 90px;
  background-color: var(--growim-gray, #ECF8FF);
}
@media (max-width: 767px) {
  .main-slider-three__item {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  background-color: var(--growim-gray, #ECF8FF);
  mix-blend-mode: luminosity;
  opacity: 0.8;
}
.main-slider-three__shape-left {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 17%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left top;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-100%);
  z-index: 1;
  display: none;
}
@media (min-width: 1400px) {
  .main-slider-three__shape-left {
    display: block;
  }
}
.main-slider-three__shape-right {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right top;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-100%);
  z-index: 1;
  display: none;
}
@media (min-width: 1400px) {
  .main-slider-three__shape-right {
    display: block;
  }
}
.main-slider-three .container {
  position: relative;
  z-index: 3;
}
.main-slider-three__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.main-slider-three__sub-title {
  color: var(--growim-text, #504E4E);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--growim-font, "Plus Jakarta Sans", sans-serif);
  letter-spacing: 3.2px;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  margin: 0 0 26px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
}
@media (max-width: 500px) {
  .main-slider-three__sub-title {
    letter-spacing: 0;
  }
}
.main-slider-three__title {
  color: var(--growim-black, #17012C);
  font-size: 70px;
  font-weight: 600;
  line-height: 70px;
  text-transform: uppercase;
  margin: 0 0 38px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 40px;
    line-height: 45px;
  }
}
.main-slider-three__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
@media (max-width: 991px) {
  .main-slider-three .text-end {
    text-align: center !important;
  }
}
.main-slider-three__thumb {
  position: relative;
}
@media (max-width: 991px) {
  .main-slider-three__thumb {
    margin: 40px auto 0;
    max-width: 570px;
  }
}
.main-slider-three__thumb-one {
  position: relative;
  z-index: 2;
  display: inline-block;
  border-radius: 250px;
  overflow: hidden;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
.main-slider-three__thumb-one img {
  max-width: 100%;
  height: auto;
}
.main-slider-three__thumb-border {
  position: absolute;
  right: -66px;
  top: 83px;
  z-index: 2;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(200px);
}
.main-slider-three__thumb-border img {
  animation: rotated 10s infinite linear;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-slider-three__thumb-border {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-slider-three__thumb-border {
    display: none;
  }
}
.main-slider-three__thumb-leaf-one {
  position: absolute;
  left: -15px;
  top: 113px;
  z-index: 1;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
.main-slider-three__thumb-leaf-one img {
  animation: movebounce3 3s linear infinite;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-slider-three__thumb-leaf-one {
    top: 20px;
    left: -35px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__thumb-leaf-one {
    display: none;
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.main-slider-three__thumb-leaf-two {
  position: absolute;
  right: 40px;
  bottom: -25px;
  z-index: 1;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}
.main-slider-three__thumb-leaf-two img {
  animation: movebounce2 3s linear infinite;
}
@media (max-width: 767px) {
  .main-slider-three__thumb-leaf-two {
    display: none;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
.main-slider-three__thumb-flower {
  position: absolute;
  right: -62px;
  top: 64px;
  z-index: 2;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
.main-slider-three__thumb-flower img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@media (max-width: 767px) {
  .main-slider-three__thumb-flower {
    display: none;
  }
}
.main-slider-three__curved-circle-box {
  width: 173px;
  height: 173px;
  background-color: var(--growim-white, #fff);
  display: inline-block;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  left: 72px;
  bottom: 15px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
  opacity: 0;
}
@media (max-width: 767px) {
  .main-slider-three__curved-circle-box {
    bottom: -50px;
  }
}
.main-slider-three__curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 150px !important;
  height: 150px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.main-slider-three__curved-circle-box .curved-circle--item {
  width: 150px !important;
  height: 150px !important;
}
.main-slider-three__curved-circle-box .curved-circle--item span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--growim-black, #17012C);
  letter-spacing: 0.25em;
}
.main-slider-three__curved-circle-box .video-popup {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 95px;
  height: 95px;
  background-color: var(--growim-base, #5B3AEE);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growim-white, #fff);
  border-radius: 50px;
}
.main-slider-three__curved-circle-box .video-popup:hover {
  background-color: var(--growim-black, #17012C);
}
.main-slider-three .active .main-slider-three__shape-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}
.main-slider-three .active .main-slider-three__shape-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-three .active .main-slider-three__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}
.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.main-slider-three .active .main-slider-three__thumb-one {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1800ms;
}
.main-slider-three .active .main-slider-three__thumb-border {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 1900ms;
}
.main-slider-three .active .main-slider-three__thumb-leaf-one {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 2000ms;
}
.main-slider-three .active .main-slider-three__thumb-leaf-two {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 2000ms;
}
.main-slider-three .active .main-slider-three__thumb-flower {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 2100ms;
}
.main-slider-three .active .main-slider-three__curved-circle-box {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 2200ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  z-index: 2;
  padding: 37px 0 60px;
}
@media (max-width: 991px) {
  .feature-one {
    padding-bottom: 0;
  }
}
.feature-one__list {
  margin: 0;
  padding: 30px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
}
@media (max-width: 767px) {
  .feature-one__list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.feature-one__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 15px;
}
.feature-one__item__img {
  width: 60px;
  height: 60px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-one__item__img img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}
.feature-one__item__text {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}
.feature-one__item__text span {
  display: block;
}
.feature-one__item + .feature-one__item {
  border-left: 1px solid var(--growim-gray, #ECF8FF);
  padding-left: 30px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .feature-one__item + .feature-one__item {
    margin: 0;
    padding: 0;
    border: none;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0;
  }
}
.about-one__shape-one {
  position: absolute;
  left: 0;
  top: -28%;
  width: 100%;
  height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .about-one__shape-one {
    display: none;
  }
}
.about-one__shape-two {
  position: absolute;
  left: 38px;
  top: -5%;
  width: 93px;
  height: 93px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1499px) {
  .about-one__shape-two {
    display: none;
  }
}
.about-one__shape-three {
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 120px;
  height: 380px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .about-one__shape-three {
    display: none;
  }
}
.about-one__shape-four {
  position: absolute;
  left: 17%;
  top: -30%;
  width: 925px;
  height: 925px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .about-one__shape-four {
    display: none;
  }
}
.about-one__shape-five {
  position: absolute;
  right: 0;
  top: -45%;
  width: 196px;
  height: 392px;
  background-position: top right;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .about-one__shape-five {
    display: none;
  }
}
.about-one__shape-six {
  position: absolute;
  right: 0;
  top: -25%;
  width: 51px;
  height: 197px;
  background-position: top right;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .about-one__shape-six {
    display: none;
  }
}
.about-one__image {
  position: relative;
  z-index: 2;
  padding: 0 0 0 48px;
  margin-top: -58px;
}
@media (max-width: 991px) {
  .about-one__image {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .about-one__image {
    padding: 0;
  }
  .about-one__image img {
    max-width: 100%;
  }
}
.about-one__image__bg {
  position: absolute;
  left: 0;
  top: 112px;
  width: 666px;
  height: 516px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-one__image__bg {
    display: none;
  }
}
.about-one__image__clients {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--growim-white, #fff);
  border-radius: 100px;
  max-width: 330px;
  padding: 17px 15px 17px 22px;
  transition: all 400ms linear;
  margin-left: 40px;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .about-one__image__clients {
    margin-left: 0;
  }
}
.about-one__image__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.about-one__image__clients img + img {
  margin-left: -19px;
}
.about-one__image__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-black, #17012C);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}
.about-one__content {
  position: relative;
}
.about-one__content .sec-title {
  padding-bottom: 20px;
}
.about-one__content__text {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 31px;
}
.about-one__content .growim-btn__text {
  color: var(--growim-secondary, #219BE4);
  background-color: var(--growim-border-color, #EAF3F8);
}
.about-one__list {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--growim-border-color, #EAF3F8);
  border-bottom: 1px solid var(--growim-border-color, #EAF3F8);
  gap: 45px;
  margin: 0 0 30px;
  list-style: none;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .about-one__list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.about-one__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-one__list__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--growim-border-color, #EAF3F8);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-one__list__icon img {
  width: 36px;
  height: 36px;
}
.about-one__list__number {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 2px;
}
.about-one__list__text {
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.about-one--page {
  padding: 180px 0 120px;
}
@media (max-width: 991px) {
  .about-one--page {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .about-one--page {
    padding: 80px 0;
  }
}

.about-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}
.about-two__shape-one {
  position: absolute;
  left: 3%;
  bottom: 170px;
  width: 63px;
  height: 132px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1499px) {
  .about-two__shape-one {
    display: none;
  }
}
.about-two__shape-two {
  position: absolute;
  right: 0;
  bottom: 220px;
  width: 197px;
  height: 44px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .about-two__shape-two {
    display: none;
  }
}
.about-two__shape-three {
  position: absolute;
  left: 12%;
  top: 12%;
  width: 380px;
  height: 362px;
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .about-two__shape-three {
    left: 0%;
  }
}
@media (max-width: 1299px) {
  .about-two__shape-three {
    display: none;
  }
}
.about-two__image-wrapper {
  position: relative;
  display: inline-block;
}
.about-two__image-wrapper__shape-one {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 15px;
  width: 66px;
  height: 66px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 767px) {
  .about-two__image-wrapper__shape-one {
    display: none;
  }
}
.about-two__image-wrapper__shape-two {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 78px;
  height: 78px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 767px) {
  .about-two__image-wrapper__shape-two {
    display: none;
  }
}
.about-two__image {
  position: relative;
  z-index: 2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 554 534" xmlns="http://www.w3.org/2000/svg"><path d="M434.5 534H20C8.9543 534 0 525.046 0 514V131.5C0 120.454 8.9543 111.5 20 111.5H117.5C128.546 111.5 137.5 102.546 137.5 91.5V20C137.5 8.9543 146.454 0 157.5 0H533.5C544.546 0 553.5 8.9543 553.5 20V405.5C553.5 416.546 544.546 425.5 533.5 425.5H474.5C463.454 425.5 454.5 434.454 454.5 445.5V514C454.5 525.046 445.546 534 434.5 534Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 554 534" xmlns="http://www.w3.org/2000/svg"><path d="M434.5 534H20C8.9543 534 0 525.046 0 514V131.5C0 120.454 8.9543 111.5 20 111.5H117.5C128.546 111.5 137.5 102.546 137.5 91.5V20C137.5 8.9543 146.454 0 157.5 0H533.5C544.546 0 553.5 8.9543 553.5 20V405.5C553.5 416.546 544.546 425.5 533.5 425.5H474.5C463.454 425.5 454.5 434.454 454.5 445.5V514C454.5 525.046 445.546 534 434.5 534Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-two__image img {
  max-width: 100%;
}
.about-two__experiance {
  position: absolute;
  right: 36px;
  bottom: 70px;
  z-index: 2;
  width: 293px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 18px;
}
@media (max-width: 767px) {
  .about-two__experiance {
    right: 0;
    bottom: 0;
  }
}
.about-two__experiance__border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: rotated2 15s linear infinite;
  background-color: var(--growim-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 293 240" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.42591 155.802C-0.725649 127.799 13.6912 89.3481 43.4206 57.8138C73.078 26.3559 117.789 2 174.851 2C208.134 2 237.193 9.69766 257.881 25.4404C278.493 41.1249 291 64.9441 291 97.7171C291 134.232 263.929 166.805 228.505 191.453C193.154 216.05 150.048 232.343 119.126 236.48C87.6051 240.696 60.1995 236.143 39.8435 222.834C19.5431 209.56 5.98214 187.402 2.42591 155.802Z" stroke="currentColor" stroke-width="4"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 293 240" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.42591 155.802C-0.725649 127.799 13.6912 89.3481 43.4206 57.8138C73.078 26.3559 117.789 2 174.851 2C208.134 2 237.193 9.69766 257.881 25.4404C278.493 41.1249 291 64.9441 291 97.7171C291 134.232 263.929 166.805 228.505 191.453C193.154 216.05 150.048 232.343 119.126 236.48C87.6051 240.696 60.1995 236.143 39.8435 222.834C19.5431 209.56 5.98214 187.402 2.42591 155.802Z" stroke="currentColor" stroke-width="4"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-two__experiance__inner {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  padding: 46px 15px;
  z-index: 3;
  background-color: var(--growim-primary, #635AD9);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 257 211" xmlns="http://www.w3.org/2000/svg"><path d="M0.384584 137.173C-5.29372 86.6006 52.2011 0 153.367 0C212.234 0 257 27.2756 257 85.9096C257 151.888 159.576 202.293 104.722 209.648C48.8785 217.135 6.72055 193.603 0.384584 137.173Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 257 211" xmlns="http://www.w3.org/2000/svg"><path d="M0.384584 137.173C-5.29372 86.6006 52.2011 0 153.367 0C212.234 0 257 27.2756 257 85.9096C257 151.888 159.576 202.293 104.722 209.648C48.8785 217.135 6.72055 193.603 0.384584 137.173Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-two__experiance__years {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 800;
  color: var(--growim-white, #fff);
  line-height: 1;
}
.about-two__experiance__text {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  margin: 4px 0 0;
}
.about-two__content {
  position: relative;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .about-two__content {
    margin-top: 45px;
  }
}
.about-two__content .sec-title {
  padding-bottom: 20px;
}
.about-two__content__text {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 24px;
}
.about-two__content .growim-btn {
  position: relative;
}
.about-two__content .growim-btn__text {
  background-color: rgba(242, 107, 1, 0.1);
  color: var(--growim-primary, #635AD9);
}
.about-two__content .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.about-two__content .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.about-two__content .growim-btn__icon::after {
  background-color: rgba(242, 107, 1, 0.1);
}
.about-two__content .growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}
.about-two__list {
  position: relative;
  margin: 0 0 43px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
  .about-two__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.about-two__list li {
  position: relative;
}
.about-two__list__number {
  display: block;
  line-height: 1;
  font-size: 50px;
  font-weight: 800;
  color: var(--growim-white, #fff);
  text-shadow: 1px 1px 0 var(--growim-black, #17012C), -1px -1px 0 var(--growim-black, #17012C), 1px -1px 0 var(--growim-black, #17012C), -1px 1px 0 var(--growim-black, #17012C), 1px 1px 0 var(--growim-black, #17012C);
  margin-bottom: 8px;
}
.about-two__list__text {
  margin: 0;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}
.about-two__list__text br {
  display: block;
}

.about-three {
  position: relative;
  background-color: rgba(var(--growim-primary-rgb, 99, 90, 217), 0.06);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-three {
    padding: 80px 0;
  }
}
.about-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-three__shape-one {
  position: absolute;
  left: 15px;
  top: 260px;
  width: 143px;
  height: 156px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1499px) {
  .about-three__shape-one {
    display: none;
  }
}
.about-three__shape-two {
  position: absolute;
  right: 3.5%;
  bottom: 140px;
  width: 133px;
  height: 123px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove2 7s linear infinite;
}
@media (max-width: 1499px) {
  .about-three__shape-two {
    display: none;
  }
}
.about-three__image-wrapper {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  padding-bottom: 68px;
}
@media (max-width: 767px) {
  .about-three__image-wrapper {
    padding: 0;
  }
}
.about-three__image-wrapper__shape-one {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 60px 60px 0 60px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .about-three__image-wrapper__shape-one {
    display: none;
  }
}
.about-three__image-wrapper__shape-two {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}
.about-three__image-wrapper__shape-two img {
  box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .about-three__image-wrapper__shape-two {
    display: none;
  }
}
.about-three__image-wrapper__shape-three {
  position: absolute;
  z-index: 2;
  left: 50px;
  top: 23%;
}
.about-three__image-wrapper__shape-three img {
  max-width: 100%;
  height: auto;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 767px) {
  .about-three__image-wrapper__shape-three {
    display: none;
  }
}
.about-three__image-wrapper__rating {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 130px;
  min-height: 77px;
  background-color: var(--growim-white, #fff);
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
  padding: 19px 14px 10px 73px;
}
@media (max-width: 767px) {
  .about-three__image-wrapper__rating {
    display: none;
  }
}
.about-three__image-wrapper__rating__star {
  width: 47px;
  height: 47px;
  background-color: #F8BC24;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--growim-white, #fff);
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about-three__image-wrapper__rating__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin: 0 0 7px;
}
.about-three__image-wrapper__rating__text {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  display: block;
  line-height: 1;
}
.about-three__image-wrapper__rating__text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.about-three__image-wrapper__rating__text a:hover {
  color: var(--growim-primary, #635AD9);
}
.about-three__image {
  position: relative;
  z-index: 2;
  width: 465px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-three__image {
    width: 100%;
    padding: 0 15px;
  }
}
.about-three__image::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  bottom: 0;
  width: 100%;
  height: 64.6%;
  content: "";
  transition: all 500ms ease;
  background-color: #E8E5FD;
  border-radius: 0 0 50px 50px;
  z-index: -1;
}
.about-three__image img {
  max-width: 100%;
}
.about-three__content {
  position: relative;
  margin-top: 8px;
}
@media (max-width: 1199px) {
  .about-three__content {
    margin-top: 45px;
  }
}
.about-three__content .sec-title {
  padding-bottom: 20px;
}
.about-three__content__text {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 31px;
}
.about-three__content .growim-btn {
  position: relative;
}
.about-three__content .growim-btn__text {
  background-color: var(--growim-white, #fff);
  color: var(--growim-base, #5B3AEE);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
}
.about-three__content .growim-btn__text::after {
  background-color: var(--growim-base, #5B3AEE);
}
.about-three__content .growim-btn__icon {
  background-color: var(--growim-base, #5B3AEE);
}
.about-three__content .growim-btn__icon::after {
  background-color: var(--growim-white, #fff);
}
.about-three__content .growim-btn:hover .growim-btn__icon {
  color: var(--growim-base, #5B3AEE);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
}
.about-three__list {
  position: relative;
  border-top: 1px solid #DEE6F1;
  margin: 0 0 44px;
  padding: 23px 0 0;
  list-style: none;
}
.about-three__list li {
  position: relative;
  margin: 0;
  line-height: 32px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 10px;
}
.about-three__list li i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}

.about-four {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-four {
    padding: 80px 0;
  }
}
.about-four__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-four__shape-one {
  position: absolute;
  left: 75px;
  top: 260px;
  width: 93px;
  height: 93px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: rotated 10s linear 0s infinite;
}
@media (max-width: 1499px) {
  .about-four__shape-one {
    display: none;
  }
}
.about-four__shape-two {
  position: absolute;
  right: 3.5%;
  bottom: 140px;
  width: 138px;
  height: 104px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove2 7s linear infinite;
}
@media (max-width: 1499px) {
  .about-four__shape-two {
    display: none;
  }
}
.about-four__content {
  position: relative;
}
@media (max-width: 1199px) {
  .about-four__content {
    margin-bottom: 30px;
  }
}
.about-four__content .sec-title {
  padding-bottom: 20px;
}
.about-four__content__text {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 32px;
}
.about-four__content--right {
  position: relative;
}
.about-four__content--right .about-four__image {
  padding-left: 30px;
  padding-right: 0;
  margin-bottom: 33px;
}
.about-four__content--right .about-four__content__text {
  margin-bottom: 21px;
}
.about-four__content__list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  gap: 22px 30px;
}
.about-four__content__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
}
.about-four__content__list li i {
  width: 20px;
  height: 20px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growim-white, #fff);
  font-size: 12px;
}
.about-four__content .growim-btn__text {
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
.about-four__image {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .about-four__image {
    max-width: 570px;
  }
}
.about-four__image__border {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 235px;
}
.about-four__image img {
  max-width: 100%;
  height: auto;
  border-radius: 235px;
}

.about-five {
  position: relative;
  background-color: var(--growim-gray, #ECF8FF);
  padding: 293px 0 120px;
  margin-top: -173px;
}
@media (max-width: 767px) {
  .about-five {
    padding: 250px 0 80px;
  }
}
.about-five__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-five__image {
  position: relative;
  max-width: 529px;
}
.about-five__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-five__image__border {
  position: absolute;
  right: 50px;
  top: 28px;
  width: 138px;
  height: 138px;
  z-index: -1;
  animation: rotated 10s linear infinite;
}
.about-five__image__two {
  position: relative;
  max-width: 267px;
  border: 11px solid var(--growim-white, #fff);
  border-radius: 30px;
  filter: drop-shadow(0px 4px 12.5px rgba(56, 75, 255, 0.08));
  margin-left: auto;
  margin-top: -223px;
}
@media (max-width: 767px) {
  .about-five__image__two {
    margin-top: -123px;
  }
}
.about-five__image__two img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-five__experiance {
  position: absolute;
  left: 27px;
  bottom: 22px;
  max-width: 208px;
  background-color: var(--growim-primary, #635AD9);
  border-radius: 140px;
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.06));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px 18px;
}
@media (max-width: 767px) {
  .about-five__experiance {
    left: 0;
  }
}
.about-five__experiance__icon {
  color: var(--growim-white, #fff);
  font-size: 40px;
  line-height: 40px;
  display: inline-block;
}
.about-five__experiance__years {
  color: var(--growim-white, #fff);
  font-size: 14px;
  text-transform: capitalize;
  line-height: 26px;
}
.about-five__experiance__years span {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
}
.about-five__content {
  position: relative;
}
@media (max-width: 1199px) {
  .about-five__content {
    margin-top: 45px;
  }
}
.about-five__content .sec-title {
  padding-bottom: 20px;
}
.about-five__content__text {
  margin: 0 0 42px;
}
.about-five__box {
  position: relative;
  padding: 0 0 0 101px;
  min-height: 80px;
}
.about-five__box__icon {
  width: 80px;
  height: 80px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 4px 12.5px rgba(56, 75, 255, 0.08));
  font-size: 44px;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--growim-primary, #635AD9);
}
.about-five__box__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 9px;
}
.about-five__box__text {
  line-height: 26px;
  margin: 0;
}
.about-five__bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 33px;
  margin-top: 76px;
}
@media (max-width: 450px) {
  .about-five__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.about-five__bottom .growim-btn__text {
  background-image: linear-gradient(90deg, #c21efc 0%, #0081ec 100%);
}
.about-five__author {
  position: relative;
  padding: 5px 0 0 73px;
  text-transform: capitalize;
  min-height: 56px;
}
.about-five__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.about-five__author__name {
  margin: 0 0 4px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.about-five__author__designation {
  font-size: 14px;
  margin: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-color: var(--growim-black, #17012C);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one .sec-title__title {
  color: var(--growim-white, #fff);
}
.service-one__shape-one {
  position: absolute;
  left: 0;
  top: 85px;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .service-one__shape-one {
    display: none;
  }
}
.service-one__shape-two {
  position: absolute;
  left: -25%;
  right: 0;
  margin: 0 auto;
  top: 50px;
  width: 324px;
  height: 324px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .service-one__shape-two {
    display: none;
  }
}
.service-one__shape-three {
  position: absolute;
  left: -40%;
  right: 0;
  margin: 0 auto;
  bottom: -125px;
  width: 688px;
  height: 688px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .service-one__shape-three {
    display: none;
  }
}
.service-one__shape-four {
  position: absolute;
  right: 6%;
  top: 235px;
  width: 688px;
  height: 688px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .service-one__shape-four {
    display: none;
  }
}
.service-one__shape-five {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 380px;
  height: 190px;
  background-position: top center;
  background-repeat: no-repeat;
  animation: messageMove 3s linear 0s infinite;
}
@media (max-width: 1499px) {
  .service-one__shape-five {
    display: none;
  }
}
.service-one__tabs {
  margin: 0 0 60px;
  padding: 0 0 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  gap: 20px;
}
.service-one__tabs li {
  position: relative;
  cursor: pointer;
  color: var(--growim-white, #fff);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 100px;
  border: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  padding: 3px 15px;
  transition: all 500ms ease;
}
.service-one__tabs li:hover, .service-one__tabs li.active-btn {
  background-color: var(--growim-primary, #635AD9);
  border-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.service-one__item {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--growim-primary, #635AD9) 0%, rgba(var(--growim-secondary-rgb, 33, 155, 228), 0.3) 100%);
  border-radius: 135px;
  padding: 5px;
  transition: all 400ms ease;
  margin-bottom: 20px;
}
.service-one__item__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 135px;
  background-color: var(--growim-white, #fff);
  padding: 27px 25px 0;
  transition: all 500ms ease;
}
.service-one__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 500ms ease;
  transform: scale(0.8);
  overflow: hidden;
  border-radius: 135px;
}
.service-one__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgba(var(--growim-white-rgb, 255, 255, 255), 0.4) 35%, rgba(var(--growim-white-rgb, 255, 255, 255), 1) 80%);
}
.service-one__item:hover .service-one__item__hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.service-one__item__icon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 124px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin: 0 auto 27px;
  transition: 300ms ease;
}
.service-one__item__icon img {
  width: 60px;
  height: 60px;
}
.service-one__item:hover .service-one__item__icon {
  visibility: hidden;
  opacity: 0;
}
.service-one__item__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 300ms ease;
  position: relative;
  z-index: 3;
  margin: 0 0 19px;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__title a:hover {
  background-size: 100% 1px;
}
.service-one__item__title a:hover {
  color: var(--growim-base, #5B3AEE);
}
.service-one__item__text {
  line-height: 26px;
  position: relative;
  text-transform: capitalize;
  z-index: 3;
  margin: 0 0 0;
}
.service-one__item__rm {
  position: relative;
  top: 25px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  width: 58px;
  height: 66px;
  color: var(--growim-primary, #635AD9);
  font-size: 16px;
  transition: all 300ms ease;
}
.service-one__item__rm svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: var(--growim-white, #fff);
  filter: drop-shadow(0px 4px 30px rgba(96, 183, 255, 0.4));
  transition: all 300ms ease;
}
.service-one__item__rm i {
  position: relative;
  transition: none;
}
.service-one__item__rm:hover {
  color: var(--growim-white, #fff);
}
.service-one__item__rm:hover svg {
  fill: var(--growim-secondary, #219BE4);
}

.service-two {
  padding: 120px 0;
  background-color: rgba(242, 107, 1, 0.07);
  overflow: hidden;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .service-two {
    padding: 80px 0;
  }
}
.service-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-two__title {
  z-index: 2;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 0 23px;
}
.service-two__slide-text {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 60px;
}
.service-two__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 130px;
}
@media (max-width: 767px) {
  .service-two__slide-text__list {
    gap: 100px;
  }
}
.service-two__slide-text__list:hover {
  animation-play-state: paused;
}
.service-two__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  color: var(--growim-black, #17012C);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .service-two__slide-text__list li {
    font-size: 45px;
  }
}
.service-two__slide-text__list li:nth-child(even) {
  text-shadow: 1px 1px 0 var(--growim-primary, #635AD9), -1px -1px 0 var(--growim-primary, #635AD9), 1px -1px 0 var(--growim-primary, #635AD9), -1px 1px 0 var(--growim-primary, #635AD9), 1px 1px 0 var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
  /*-webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: $growim-primary;*/
}
.service-two__slide-text__list li::after {
  position: absolute;
  right: -89px;
  top: 6px;
  bottom: 0;
  margin: auto;
  content: "\f621";
  font-family: "Font Awesome 5 Free";
  color: var(--growim-black, #17012C);
  font-size: 52px;
  text-shadow: none;
  /*-webkit-text-stroke-color: $growim-black;*/
}
@media (max-width: 767px) {
  .service-two__slide-text__list li::after {
    right: -68px;
    top: 5px;
    font-size: 40px;
  }
}
.service-two__item {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 286px;
  z-index: 2;
  background-color: var(--growim-white, #fff);
  border-radius: 20px;
  counter-increment: count;
  overflow: hidden;
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .service-two__item {
    flex-direction: column;
  }
}
.service-two__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  z-index: -1;
  transform: scale(0.9);
}
.service-two__item:hover::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.service-two__item__content {
  position: relative;
  width: 67.2%;
  padding: 25px 30px 25px 40px;
}
@media (max-width: 767px) {
  .service-two__item__content {
    width: 100%;
  }
}
.service-two__item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 17px;
}
.service-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-two__item__title a:hover {
  background-size: 100% 1px;
}
.service-two__item__title a:hover {
  color: var(--growim-base, #5B3AEE);
}
.service-two__item__text {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 32px;
}
.service-two__item__rm {
  width: 52px;
  height: 52px;
  background-color: var(--growim-black, #17012C);
  font-size: 16px;
  color: var(--growim-white, #fff);
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-two__item__rm i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.service-two__item__rm:hover {
  background-color: var(--growim-primary, #635AD9);
}
.service-two__item__rm:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.service-two__item__number {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--growim-text-rgb, 80, 78, 78), 0.2);
}
.service-two__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-two__item__image {
  width: 32.8%;
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-two__item__image {
    width: 100%;
  }
}
.service-two__item__image img {
  border-radius: 20px;
  width: 100%;
  min-height: 286px;
  object-fit: cover;
}
.service-two__item--no-image {
  position: relative;
}
.service-two__item--no-image .service-two__item__content {
  width: 100%;
  padding: 25px 30px;
}
.service-two__bottom {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 60px;
  padding: 40px 25px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-two__bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.service-two__bottom::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.7);
}
.service-two__bottom__clients {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .service-two__bottom__clients {
    margin-left: 0;
  }
}
.service-two__bottom__clients img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--growim-white, #fff);
}
.service-two__bottom__clients img + img {
  margin-left: -19px;
}
.service-two__bottom__clients span {
  font-weight: 600;
  display: inline-block;
  color: var(--growim-white, #fff);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  margin-left: 10px;
}
.service-two__bottom .growim-btn {
  position: relative;
  z-index: 2;
  height: 52px;
}
.service-two__bottom .growim-btn__text {
  background-color: rgba(242, 107, 1, 0.15);
  color: var(--growim-white, #fff);
}
.service-two__bottom .growim-btn__text::after {
  background-color: var(--growim-primary, #635AD9);
}
.service-two__bottom .growim-btn__icon {
  background-color: var(--growim-primary, #635AD9);
}
.service-two__bottom .growim-btn__icon::after {
  background-color: rgba(242, 107, 1, 0.15);
}
.service-two__bottom .growim-btn:hover .growim-btn__icon {
  color: var(--growim-white, #fff);
}

.service-three {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .service-three {
    padding: 80px 0;
  }
}
.service-three__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .service-three__shape-one {
    display: none;
  }
}
.service-three__shape-two {
  position: absolute;
  left: 38px;
  top: 22%;
  width: 93px;
  height: 93px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1499px) {
  .service-three__shape-two {
    display: none;
  }
}
.service-three__shape-three {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .service-three__shape-three {
    display: none;
  }
}
.service-three__item {
  text-align: center;
  position: relative;
  min-height: 390px;
  padding: 37px 20px 30px;
  z-index: 2;
  background-color: rgba(165, 136, 249, 0.1);
  border-radius: 20px;
  counter-increment: count;
  overflow: hidden;
  transition: all 500ms ease;
}
.service-three__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(21, 127, 252, 0.1);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  z-index: -1;
  transform: scale(0.9);
}
.service-three__item:hover::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.service-three__item__image {
  position: relative;
  margin: 0 0 18px;
}
.service-three__item__image img {
  max-width: 100%;
  height: auto;
}
.service-three__item__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 25px;
}
.service-three__item__title br {
  display: block;
}
.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-three__item__title a:hover {
  background-size: 100% 1px;
}
.service-three__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.service-three__item__text {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.service-four {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .service-four {
    padding: 80px 0;
  }
}
.service-four__item {
  text-align: center;
  position: relative;
  min-height: 390px;
  padding: 0;
  z-index: 2;
  background-color: var(--growim-gray, #ECF8FF);
  padding: 62px 20px 0;
  border-radius: 20px;
  margin-bottom: 26px;
  counter-increment: count;
  transition: all 500ms ease;
}
.service-four__item__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  border-radius: 20px;
  transition: all 500ms ease;
  opacity: 0.12;
  z-index: -1;
}
.service-four__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-image: linear-gradient(180deg, #b724fb 0%, #1477ee 100%);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  z-index: -1;
}
.service-four__item:hover .service-four__item__shape {
  opacity: 0.4;
  z-index: 1;
}
.service-four__item:hover::after {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.service-four__item:hover .service-four__item__image__border {
  background: linear-gradient(90deg, var(--growim-white, #fff) 0%, var(--growim-white, #fff) 100%);
}
.service-four__item:hover .service-four__item__text,
.service-four__item:hover .service-four__item__title {
  color: var(--growim-white, #fff);
}
.service-four__item__image {
  position: relative;
  display: inline-block;
  max-width: 310px;
  margin: 0 auto 25px;
}
.service-four__item__image img {
  max-width: 100%;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 310 232" xmlns="http://www.w3.org/2000/svg"><path d="M87.8129 54.7683C130.943 49.8441 144.795 44.6482 174.693 22.1783C219.088 -11.1777 285.318 -11.3288 304.256 52.4757C318.819 101.548 304.778 162.433 272.459 190.347C218.038 237.356 117.318 245.761 54.7992 209.495C0.900917 178.234 -16.4188 118.094 17.1885 78.9003C28.5869 65.607 46.5033 59.4835 87.8129 54.7683Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 310 232" xmlns="http://www.w3.org/2000/svg"><path d="M87.8129 54.7683C130.943 49.8441 144.795 44.6482 174.693 22.1783C219.088 -11.1777 285.318 -11.3288 304.256 52.4757C318.819 101.548 304.778 162.433 272.459 190.347C218.038 237.356 117.318 245.761 54.7992 209.495C0.900917 178.234 -16.4188 118.094 17.1885 78.9003C28.5869 65.607 46.5033 59.4835 87.8129 54.7683Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.service-four__item__image__border {
  animation: treeMove2 10s linear 0s infinite;
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 3px;
  width: 300px;
  height: 201px;
  transition: all 500ms ease;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 300 201" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M100.332 17.4106L100.48 16.4216L100.332 17.4106C120.705 20.4507 134.478 21.6468 147.301 20.3987C160.137 19.1493 171.958 15.4572 188.44 8.8236C212.67 -0.924759 239.776 -1.77182 260.978 7.55806C282.112 16.858 297.486 36.3095 298.321 67.4767C298.964 91.5476 292.386 116.589 281.111 137.804C269.832 159.028 253.901 176.331 235.918 185.03C205.457 199.767 166.751 202.937 129.6 196.35C92.4497 189.763 56.9789 173.44 32.9708 149.336L32.2623 150.042L32.9707 149.336C12.2798 128.565 1.70354 103.504 1.27044 80.2676C0.837603 57.0459 10.5272 35.6318 30.425 22.0154C43.7722 12.8815 61.3133 11.5868 100.332 17.4106Z" stroke="currentColor" stroke-width="2"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 300 201" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M100.332 17.4106L100.48 16.4216L100.332 17.4106C120.705 20.4507 134.478 21.6468 147.301 20.3987C160.137 19.1493 171.958 15.4572 188.44 8.8236C212.67 -0.924759 239.776 -1.77182 260.978 7.55806C282.112 16.858 297.486 36.3095 298.321 67.4767C298.964 91.5476 292.386 116.589 281.111 137.804C269.832 159.028 253.901 176.331 235.918 185.03C205.457 199.767 166.751 202.937 129.6 196.35C92.4497 189.763 56.9789 173.44 32.9708 149.336L32.2623 150.042L32.9707 149.336C12.2798 128.565 1.70354 103.504 1.27044 80.2676C0.837603 57.0459 10.5272 35.6318 30.425 22.0154C43.7722 12.8815 61.3133 11.5868 100.332 17.4106Z" stroke="currentColor" stroke-width="2"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-four__item__image__border {
    width: 270px;
    height: 160px;
    mask-size: auto;
    right: -10px;
  }
}
.service-four__item__icon {
  position: absolute;
  z-index: 2;
  left: -65px;
  right: 0;
  top: 27px;
  margin: auto;
  width: 65px;
  height: 65px;
  background-color: var(--growim-white, #fff);
  color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 36px;
}
.service-four__item__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.service-four__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-four__item__title a:hover {
  background-size: 100% 1px;
}
.service-four__item__text {
  position: relative;
  z-index: 2;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 300ms ease;
  margin: 0 0 -1px;
}
.service-four__item__rm {
  position: relative;
  top: 25px;
  z-index: 2;
  width: 52px;
  height: 52px;
  background-image: linear-gradient(180deg, #b724fb 0%, #1477ee 100%);
  font-size: 16px;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  margin: 0 auto;
}
.service-four__item__rm::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  transition: all 500ms ease;
}
.service-four__item__rm i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.service-four__item__rm:hover {
  color: var(--growim-primary, #635AD9);
  filter: drop-shadow(0px 4px 12.5px rgb(30, 115, 239));
}
.service-four__item__rm:hover::after {
  height: 100%;
}
.service-four__item__rm:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.service-four__carousel {
  position: relative;
}
@media (max-width: 1299px) {
  .service-four__carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
  }
}
.service-four__carousel .owl-nav button.owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  margin: 0;
  padding: 0;
  opacity: 1;
  position: absolute;
  top: 40%;
  left: -145px;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 1499px) {
  .service-four__carousel .owl-nav button.owl-prev {
    left: -90px;
  }
}
@media (max-width: 1299px) {
  .service-four__carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    font-size: 18px;
    position: relative;
    top: 0;
    left: 0;
  }
}
.service-four__carousel .owl-nav button.owl-prev::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.service-four__carousel .owl-nav button.owl-prev:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.service-four__carousel .owl-nav button.owl-prev:hover::after {
  border-color: var(--growim-gray, #ECF8FF);
  width: 100%;
  height: 100%;
  border-width: 6px;
}
.service-four__carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  margin: 0;
  padding: 0;
  opacity: 1;
  position: absolute;
  top: 40%;
  right: -145px;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 1499px) {
  .service-four__carousel .owl-nav button.owl-next {
    right: -90px;
  }
}
@media (max-width: 1299px) {
  .service-four__carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    font-size: 18px;
    position: relative;
    top: 0;
    right: 0;
  }
}
.service-four__carousel .owl-nav button.owl-next::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.service-four__carousel .owl-nav button.owl-next:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.service-four__carousel .owl-nav button.owl-next:hover::after {
  border-color: var(--growim-gray, #ECF8FF);
  width: 100%;
  height: 100%;
  border-width: 6px;
}

.service-five {
  padding: 120px 0 250px;
  background-image: linear-gradient(0deg, rgb(102, 166, 255) 0%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .service-five {
    padding: 80px 0 200px;
  }
}
.service-five__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-five__item {
  position: relative;
  z-index: 2;
  background-color: var(--growim-white, #fff);
  padding: 36px 30px 30px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 500ms ease;
}
.service-five__item__shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-size: auto;
  background-repeat: no-repeat;
  border-radius: 0 30px 0 0;
  transition: all 400ms ease;
  opacity: 0;
  visibility: hidden;
}
.service-five__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--growim-primary, #635AD9);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 30px;
  z-index: -1;
}
.service-five__item:hover .service-five__item__shape {
  opacity: 1;
  visibility: visible;
}
.service-five__item:hover::after {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.service-five__item:hover .service-five__item__icon {
  background-color: var(--growim-white, #fff);
}
.service-five__item:hover .service-five__item__rm,
.service-five__item:hover .service-five__item__text,
.service-five__item:hover .service-five__item__title {
  color: var(--growim-white, #fff);
}
.service-five__item__icon {
  position: relative;
  width: 80px;
  height: 81px;
  background-color: var(--growim-gray, #ECF8FF);
  transition: all 300ms ease;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 80 81" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M41.6423 0.133352C52.9119 -1.19922 62.7327 7.69021 70.1267 16.3071C76.9324 24.2384 80.2366 34.3672 79.9868 44.8196C79.7434 55.0038 76.2014 65.0124 68.7956 71.9997C61.5831 78.8046 51.5532 80.9054 41.6423 80.997C31.6177 81.0895 21.5454 79.094 13.9834 72.5059C5.89611 65.4601 -0.987939 55.4945 0.116957 44.8196C1.16905 34.6549 12.2234 29.8142 19.1767 22.3317C26.6269 14.3143 30.7791 1.41788 41.6423 0.133352Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 80 81" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M41.6423 0.133352C52.9119 -1.19922 62.7327 7.69021 70.1267 16.3071C76.9324 24.2384 80.2366 34.3672 79.9868 44.8196C79.7434 55.0038 76.2014 65.0124 68.7956 71.9997C61.5831 78.8046 51.5532 80.9054 41.6423 80.997C31.6177 81.0895 21.5454 79.094 13.9834 72.5059C5.89611 65.4601 -0.987939 55.4945 0.116957 44.8196C1.16905 34.6549 12.2234 29.8142 19.1767 22.3317C26.6269 14.3143 30.7791 1.41788 41.6423 0.133352Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 0 20px;
}
.service-five__item__icon i {
  position: relative;
  top: 3px;
}
.service-five__item__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
  margin: 0 0 10px;
}
.service-five__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-five__item__title a:hover {
  background-size: 100% 1px;
}
.service-five__item__text {
  position: relative;
  z-index: 2;
  font-weight: 400;
  transition: all 300ms ease;
  margin: 0 0 16px;
}
.service-five__item__rm {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  color: var(--growim-text, #504E4E);
  text-transform: capitalize;
  display: inline-block;
  transition: all 300ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-five__item__rm:hover {
  background-size: 100% 1px;
}
.service-five__item__rm i {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 2px;
}
.service-five__item__rm:hover {
  color: var(--growim-primary, #635AD9);
}
.service-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -156px;
}
@media (max-width: 767px) {
  .service-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: auto;
  }
}
.service-five__text {
  position: relative;
  z-index: 2;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  margin: 53px 0 0;
  text-align: center;
}
.service-five__text a {
  line-height: 1.1;
  display: inline-block;
  font-weight: 600;
  color: var(--growim-primary, #635AD9);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-five__text a:hover {
  background-size: 100% 1px;
}

.service-six {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-six {
    padding: 80px 0;
  }
}
.service-six__item {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(180deg, #6461fc 0%, #60b7ff 100%);
  border-radius: 185px;
  padding: 5px;
  transition: all 400ms ease;
  margin-bottom: 32px;
}
.service-six__item__wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 185px;
  background-color: var(--growim-white, #fff);
  padding: 30px 30px 0;
  transition: all 400ms ease;
}
.service-six__item__image {
  position: relative;
  width: 100%;
  height: auto;
}
.service-six__item__image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.service-six__item:hover .service-six__item__wrapper {
  background-color: transparent;
}
.service-six__item:hover .service-six__item__text,
.service-six__item:hover .service-six__item__title {
  color: var(--growim-white, #fff);
}
.service-six__item__icon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 88px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin: -50px auto 21px;
  transition: 300ms ease;
}
.service-six__item__icon img {
  width: 42px;
  height: 42px;
}
.service-six__item__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
  margin: 0 0 13px;
}
.service-six__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-six__item__title a:hover {
  background-size: 100% 1px;
}
.service-six__item__text {
  line-height: 26px;
  position: relative;
  text-transform: capitalize;
  transition: all 300ms ease;
  z-index: 3;
  margin: 0 5px -4px;
}
@media (min-width: 1200px) {
  .service-six__item__text {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.service-six__item__rm {
  position: relative;
  top: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  width: 58px;
  height: 66px;
  color: var(--growim-primary, #635AD9);
  font-size: 16px;
  transition: all 300ms ease;
}
.service-six__item__rm svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: var(--growim-white, #fff);
  filter: drop-shadow(0px 4px 30px rgba(96, 183, 255, 0.4));
  transition: all 300ms ease;
}
.service-six__item__rm i {
  position: relative;
  transition: none;
}
.service-six__item__rm:hover {
  color: var(--growim-white, #fff);
}
.service-six__item__rm:hover svg {
  fill: var(--growim-secondary, #219BE4);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .service-details {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
  }
}
.service-details__thumbnail {
  margin-bottom: 22px;
}
.service-details__thumbnail img {
  width: 100%;
  border-radius: 20px;
}
.service-details__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 26px;
}
.service-details__text {
  margin: 0 0 28px;
}
.service-details__content {
  position: relative;
}
.service-details__content .mb {
  margin-top: -25px;
  margin-bottom: 33px;
}
.service-details__list {
  position: relative;
  margin: 0 0 62px;
  padding: 0 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .service-details__list {
    display: block;
  }
}
.service-details__list li {
  position: relative;
  margin: 0;
  line-height: 32px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 12px;
}
.service-details__list li i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-one {
  padding: 120px 0;
  background-color: var(--growim-primary, #635AD9);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-one {
    padding: 80px 0;
  }
}
.portfolio-one__shape-one {
  position: absolute;
  left: 130px;
  top: 40px;
  width: 55px;
  height: 28px;
  background-position: top center;
  background-repeat: no-repeat;
  animation: messageMove 4s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-one {
    display: none;
  }
}
.portfolio-one__shape-two {
  position: absolute;
  left: 8%;
  top: 35%;
  width: 21px;
  height: 33px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-two {
    display: none;
  }
}
.portfolio-one__shape-three {
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 58px;
  height: 197px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-three {
    display: none;
  }
}
.portfolio-one__shape-four {
  position: absolute;
  right: 2%;
  top: 40px;
  width: 18px;
  height: 18px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-four {
    display: none;
  }
}
.portfolio-one__shape-five {
  position: absolute;
  right: 4%;
  top: 28%;
  width: 93px;
  height: 93px;
  animation: rotated 10s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-five {
    display: none;
  }
}
.portfolio-one__shape-six {
  position: absolute;
  right: 0;
  bottom: 245px;
  width: 38px;
  height: 22px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-six {
    display: none;
  }
}
.portfolio-one__title {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--growim-white, #fff);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 0 23px;
}
.portfolio-one__slide-text {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 60px;
}
.portfolio-one__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 130px;
}
@media (max-width: 767px) {
  .portfolio-one__slide-text__list {
    gap: 100px;
  }
}
.portfolio-one__slide-text__list:hover {
  animation-play-state: paused;
}
.portfolio-one__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  color: var(--growim-white, #fff);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .portfolio-one__slide-text__list li {
    font-size: 45px;
  }
}
.portfolio-one__slide-text__list li:nth-child(even) {
  color: var(--growim-primary, #635AD9);
  text-shadow: 1px 1px 0 var(--growim-white, #fff), -1px -1px 0 var(--growim-white, #fff), 1px -1px 0 var(--growim-white, #fff), -1px 1px 0 var(--growim-white, #fff), 1px 1px 0 var(--growim-white, #fff);
}
.portfolio-one__slide-text__list li::after {
  position: absolute;
  right: -89px;
  top: 6px;
  bottom: 0;
  margin: auto;
  content: "\f621";
  font-family: "Font Awesome 5 Free";
  color: var(--growim-white, #fff);
  font-size: 52px;
  text-shadow: none;
}
@media (max-width: 767px) {
  .portfolio-one__slide-text__list li::after {
    right: -68px;
    top: 5px;
    font-size: 40px;
  }
}
.portfolio-one__item {
  position: relative;
  border-top: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.4);
  border-bottom: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.4);
  margin-bottom: -1px;
  padding: 35px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .portfolio-one__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
  }
}
.portfolio-one__item__title {
  color: var(--growim-white, #fff);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
  margin: 0 0 12px;
}
.portfolio-one__item:hover .portfolio-one__item__title {
  background-size: 100% 1px;
}
.portfolio-one__item__cate {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  margin: 0 0 29px;
}
.portfolio-one__item__text {
  color: var(--growim-white, #fff);
  text-transform: capitalize;
  margin: 0;
}
@media (max-width: 991px) {
  .portfolio-one__item__text br {
    display: none;
  }
}
.portfolio-one__item__btn {
  flex-shrink: 0;
}
.portfolio-one__item .hover-item__box {
  position: absolute;
  width: 260px;
  height: 280px;
  top: 50%;
  left: 185px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  z-index: 1;
}
@media (max-width: 767px) {
  .portfolio-one__item .hover-item__box {
    display: none;
  }
}
.portfolio-one__item .hover-item__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease-out;
}

.portfolio-two {
  padding: 120px 0;
  background-color: var(--growim-black, #17012C);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-two {
    padding: 80px 0;
  }
}
.portfolio-two__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.portfolio-two__shape-one {
  position: absolute;
  left: 95px;
  top: 0;
  width: 19px;
  height: 73px;
  background-position: top center;
  background-repeat: no-repeat;
  animation: messageMove 4s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-two__shape-one {
    left: 25px;
  }
}
@media (max-width: 1299px) {
  .portfolio-two__shape-one {
    display: none;
  }
}
.portfolio-two .sec-title__title {
  color: var(--growim-white, #fff);
}
.portfolio-two__item {
  position: relative;
  overflow: hidden;
  background-color: var(--growim-primary, #635AD9);
  transition: all 300ms ease;
  border-radius: 20px;
}
.portfolio-two__item:hover {
  padding: 3px;
}
.portfolio-two__item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  border-radius: 20px;
  transition: all 300ms ease;
}
.portfolio-two__item__content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 15px 90px 15px 21px;
  z-index: 2;
  width: 100%;
  max-width: 445px;
  background-color: var(--growim-white, #fff);
  border-radius: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .portfolio-two__item__content {
    max-width: 100%;
    width: calc(100% - 20px);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
  }
}
.portfolio-two__item:hover .portfolio-two__item__content {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
}
.portfolio-two__item__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}
@media (max-width: 575px) {
  .portfolio-two__item__title {
    font-size: 19px;
  }
}
.portfolio-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-two__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-two__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.portfolio-two__item__cate {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-primary, #635AD9);
  margin: 0;
}
.portfolio-two__item__btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.portfolio-two__item__btn a {
  width: 86px;
  height: 86px;
  background-color: var(--growim-primary, #635AD9);
  font-size: 24px;
  color: var(--growim-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .portfolio-two__item__btn a {
    width: 70px;
    font-size: 22px;
  }
}
.portfolio-two__item__btn a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-two__item__btn a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.portfolio-two__carousel {
  position: relative;
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  position: absolute;
  top: 40%;
  left: 60px;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 767px) {
  .portfolio-two__carousel.owl-carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    font-size: 18px;
    left: 30px;
  }
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-prev::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-prev:hover::after {
  border-color: var(--growim-white, #fff);
  width: 100%;
  height: 100%;
  border-width: 6px;
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  position: absolute;
  top: 40%;
  right: 60px;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 767px) {
  .portfolio-two__carousel.owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    font-size: 18px;
    right: 30px;
  }
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-next::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-next:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.portfolio-two__carousel.owl-carousel .owl-nav button.owl-next:hover::after {
  border-color: var(--growim-white, #fff);
  width: 100%;
  height: 100%;
  border-width: 6px;
}

.portfolio-three {
  padding: 120px 0 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-three {
    padding: 80px 0 0;
  }
}
.portfolio-three__title {
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 0 23px;
}
.portfolio-three__slide-text {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 60px;
}
.portfolio-three__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 130px;
}
@media (max-width: 767px) {
  .portfolio-three__slide-text__list {
    gap: 100px;
  }
}
.portfolio-three__slide-text__list:hover {
  animation-play-state: paused;
}
.portfolio-three__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  color: var(--growim-primary, #635AD9);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .portfolio-three__slide-text__list li {
    font-size: 45px;
  }
}
.portfolio-three__slide-text__list li:nth-child(even) {
  color: var(--growim-white, #fff);
  text-shadow: 1px 1px 0 var(--growim-primary, #635AD9), -1px -1px 0 var(--growim-primary, #635AD9), 1px -1px 0 var(--growim-primary, #635AD9), -1px 1px 0 var(--growim-primary, #635AD9), 1px 1px 0 var(--growim-primary, #635AD9);
}
.portfolio-three__slide-text__list li::after {
  position: absolute;
  right: -89px;
  top: 6px;
  bottom: 0;
  margin: auto;
  content: "\f621";
  font-family: "Font Awesome 5 Free";
  color: var(--growim-primary, #635AD9);
  font-size: 52px;
  text-shadow: none;
}
@media (max-width: 767px) {
  .portfolio-three__slide-text__list li::after {
    right: -68px;
    top: 5px;
    font-size: 40px;
  }
}
.portfolio-three__item {
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  border-radius: 30px;
}
.portfolio-three__item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  border-radius: 30px;
  transition: all 300ms ease;
}
.portfolio-three__item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  padding: 26px 85px 27px 29px;
  margin: 0 auto;
  z-index: 2;
  width: calc(100% - 48px);
  background-color: var(--growim-white, #fff);
  border-radius: 30px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .portfolio-three__item__content {
    max-width: 100%;
    width: calc(100% - 20px);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
  }
}
.portfolio-three__item:hover .portfolio-three__item__content {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
}
.portfolio-three__item__cate {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-primary, #635AD9);
  margin: 0 0 7px;
}
.portfolio-three__item__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0;
}
@media (max-width: 575px) {
  .portfolio-three__item__title {
    font-size: 19px;
  }
}
.portfolio-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-three__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-three__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.portfolio-three__item__btn {
  position: absolute;
  right: 26px;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.portfolio-three__item__btn a {
  width: 52px;
  height: 52px;
  background-color: var(--growim-primary, #635AD9);
  font-size: 16px;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-three__item__btn a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-three__item__btn a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.portfolio-four {
  padding: 120px 0 70px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-four {
    padding: 80px 0 30px;
  }
}
.portfolio-four__title {
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 0 23px;
}
.portfolio-four__slide-text {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 10px;
}
.portfolio-four__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 130px;
}
@media (max-width: 767px) {
  .portfolio-four__slide-text__list {
    gap: 100px;
  }
}
.portfolio-four__slide-text__list:hover {
  animation-play-state: paused;
}
.portfolio-four__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .portfolio-four__slide-text__list li {
    font-size: 45px;
  }
}
.portfolio-four__slide-text__list li:nth-child(even) {
  -webkit-text-fill-color: inherit;
  color: var(--growim-white, #fff);
  text-shadow: 1px 1px 0 var(--growim-primary, #635AD9), -1px -1px 0 var(--growim-primary, #635AD9), 1px -1px 0 var(--growim-primary, #635AD9), -1px 1px 0 var(--growim-primary, #635AD9), 1px 1px 0 var(--growim-primary, #635AD9);
}
.portfolio-four__slide-text__list li::after {
  position: absolute;
  right: -89px;
  top: 6px;
  bottom: 0;
  margin: auto;
  content: "\f621";
  font-family: "Font Awesome 5 Free";
  font-size: 52px;
  text-shadow: none;
  background: linear-gradient(90deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .portfolio-four__slide-text__list li::after {
    right: -68px;
    top: 5px;
    font-size: 40px;
  }
}
.portfolio-four .container {
  max-width: 1480px;
}
.portfolio-four #portfolio-four__carousel {
  position: relative;
  padding: 50px 0;
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  margin: 0;
  padding: 0;
  opacity: 1;
  position: absolute;
  top: 43%;
  left: 0;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 1199px) {
  .portfolio-four #portfolio-four__carousel .flipster__button--prev {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev::before {
  content: "\e939";
  font-family: "Flaticon" !important;
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev:hover::after {
  border-color: var(--growim-white, #fff);
  width: 100%;
  height: 100%;
  border-width: 6px;
}
.portfolio-four #portfolio-four__carousel .flipster__button--prev svg {
  display: none;
}
.portfolio-four #portfolio-four__carousel .flipster__button--next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-color: var(--growim-gray, #ECF8FF);
  border-radius: 50%;
  font-size: 35px;
  color: var(--growim-primary, #635AD9);
  margin: 0;
  padding: 0;
  opacity: 1;
  position: absolute;
  top: 43%;
  right: 0;
  z-index: 1;
  transition: all 400ms linear;
}
@media (max-width: 1199px) {
  .portfolio-four #portfolio-four__carousel .flipster__button--next {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.portfolio-four #portfolio-four__carousel .flipster__button--next::before {
  content: "\e938";
  font-family: "Flaticon" !important;
}
.portfolio-four #portfolio-four__carousel .flipster__button--next::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: "";
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  transition: all 400ms linear;
}
.portfolio-four #portfolio-four__carousel .flipster__button--next:hover {
  color: var(--growim-white, #fff);
  background-color: var(--growim-primary, #635AD9);
}
.portfolio-four #portfolio-four__carousel .flipster__button--next:hover::after {
  border-color: var(--growim-white, #fff);
  width: 100%;
  height: 100%;
  border-width: 6px;
}
.portfolio-four #portfolio-four__carousel .flipster__button--next svg {
  display: none;
}
.portfolio-four__item {
  position: relative;
  height: auto;
  transition: all 500ms ease;
  border-radius: 20px;
  filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1));
}
.portfolio-four__item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
  transition: all 300ms ease;
}
.portfolio-four__item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 26px 85px 27px 29px;
  margin: 0 auto;
  z-index: 2;
  width: calc(100% - 140px);
  background-color: var(--growim-white, #fff);
  border-radius: 30px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .portfolio-four__item__content {
    max-width: 320px;
    left: -50px;
    bottom: 15px;
  }
}
.portfolio-four__item__cate {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-primary, #635AD9);
  margin: 0 0 7px;
}
.portfolio-four__item__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0;
}
@media (max-width: 575px) {
  .portfolio-four__item__title {
    font-size: 19px;
  }
}
.portfolio-four__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-four__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-four__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.portfolio-four__item__btn {
  position: absolute;
  right: 26px;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.portfolio-four__item__btn a {
  width: 52px;
  height: 52px;
  background-image: linear-gradient(180deg, #b724fb 0%, #1477ee 100%);
  font-size: 16px;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-four__item__btn a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-four__item__btn a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.portfolio-four .flipster__item.flipster__item--current .portfolio-four__item__content {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
}

.portfolio-five {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .portfolio-five {
    padding: 80px 0 0;
  }
}
.portfolio-five__shape-one {
  position: absolute;
  left: 80px;
  top: 40px;
  width: 133px;
  height: 123px;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1400px) {
  .portfolio-five__shape-one {
    display: none;
  }
}
.portfolio-five__shape-two {
  position: absolute;
  left: 0;
  bottom: -120px;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1400px) {
  .portfolio-five__shape-two {
    display: none;
  }
}
.portfolio-five__shape-three {
  position: absolute;
  left: 100px;
  bottom: 40%;
  width: 93px;
  height: 93px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 1400px) {
  .portfolio-five__shape-three {
    display: none;
  }
}
.portfolio-five__item {
  position: relative;
  transition: all 500ms ease;
  border-radius: 30px;
  overflow: hidden;
  counter-increment: count;
}
.portfolio-five__item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  overflow: hidden;
  border-radius: 30px;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .portfolio-five__item img {
    min-height: 350px;
    object-fit: cover;
  }
}
.portfolio-five__item:hover img {
  transform: scale(1.05) rotate(1.1deg);
  transition: all 0.3s ease-out;
}
.portfolio-five__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s ease-out;
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.5);
  visibility: hidden;
  opacity: 0;
}
.portfolio-five__item__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 62px 0 0 65px;
  z-index: 2;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 991px) {
  .portfolio-five__item__content {
    padding: 22px 0 0 25px;
  }
}
.portfolio-five__item__cate {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--growim-white, #fff);
  margin: 0 0 13px;
}
.portfolio-five__item__title {
  font-size: 55px;
  line-height: 65px;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  font-weight: 800;
  max-width: 360px;
  margin: 0 0 0;
}
@media (max-width: 767px) {
  .portfolio-five__item__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.portfolio-five__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-five__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-five__item__title a:hover {
  color: var(--growim-primary, #635AD9);
}
.portfolio-five__item__number {
  position: absolute;
  right: 65px;
  top: 73px;
  color: var(--growim-white, #fff);
  line-height: 1;
  font-weight: 800;
  font-size: 24px;
}
@media (max-width: 767px) {
  .portfolio-five__item__number {
    right: 45px;
    top: 43px;
  }
}
.portfolio-five__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-five .growim-owl__carousel--basic-nav.owl-carousel .owl-stage {
  width: 100%;
}
.portfolio-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  left: 65px;
  bottom: 65px;
  z-index: 2;
}
@media (max-width: 991px) {
  .portfolio-five .growim-owl__carousel--basic-nav.owl-carousel .owl-nav {
    left: 25px;
    bottom: 25px;
  }
}
.portfolio-five .owl-item {
  opacity: 0;
}
.portfolio-five .owl-item.active,
.portfolio-five .owl-item.active + .owl-item {
  opacity: 1;
}
.portfolio-five .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.portfolio-five .owl-item.active .portfolio-five__item::after {
  visibility: visible;
  opacity: 1;
}
.portfolio-five .owl-item.active .portfolio-five__item__content {
  visibility: visible;
  opacity: 1;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
}

.portfolio-six {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .portfolio-six {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .portfolio-six {
    padding: 80px 0;
  }
}
.portfolio-six__item {
  position: relative;
  transition: all 500ms ease;
  border-radius: 30px;
  overflow: hidden;
  counter-increment: count;
}
.portfolio-six__item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  overflow: hidden;
  border-radius: 30px;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .portfolio-six__item img {
    min-height: 350px;
    object-fit: cover;
  }
}
.portfolio-six__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  transition: all 400ms ease;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(99, 90, 217) 85%);
}
.portfolio-six__item:hover::after {
  height: 100%;
}
.portfolio-six__item:hover img {
  transform: scale(1.05) rotate(1.1deg);
  transition: all 0.3s ease-out;
}
.portfolio-six__item:hover .portfolio-six__item__title {
  opacity: 1;
  transform: translateX(0px);
}
.portfolio-six__item:hover .portfolio-six__item__cate {
  opacity: 1;
  transform: translateX(0px);
}
.portfolio-six__item:hover .portfolio-six__item__btn {
  opacity: 1;
  transform: translateX(0px) scale(1) rotate(0);
}
.portfolio-six__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 130px 66px 60px;
  z-index: 2;
}
@media (min-width: 991px) and (max-width: 1199px) {
  .portfolio-six__item__content {
    padding: 0 100px 36px 25px;
  }
}
@media (max-width: 767px) {
  .portfolio-six__item__content {
    padding: 0 100px 36px 25px;
  }
}
.portfolio-six__item__title {
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  font-weight: 800;
  margin: 0 0 8px;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (max-width: 767px) {
  .portfolio-six__item__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.portfolio-six__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-six__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-six__item__cate {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  margin: 0;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(-300px);
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.portfolio-six__item__btn {
  position: absolute;
  right: 60px;
  bottom: 60px;
  opacity: 0;
  transform: translateX(100px) scale(0.1) rotate(-135deg);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (min-width: 991px) and (max-width: 1199px) {
  .portfolio-six__item__btn {
    right: 20px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .portfolio-six__item__btn {
    right: 20px;
    bottom: 30px;
  }
}
.portfolio-six__item__btn a {
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.2);
  font-size: 20px;
  color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) and (max-width: 1199px) {
  .portfolio-six__item__btn a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .portfolio-six__item__btn a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.portfolio-six__item__btn a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-six__item__btn a:hover {
  border-color: var(--growim-white, #fff);
}
.portfolio-six__item__btn a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.portfolio-details {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .portfolio-details {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .portfolio-details {
    padding: 80px 0;
  }
}
.portfolio-details__image {
  position: relative;
  margin: 0 0 41px;
}
.portfolio-details__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.portfolio-details__content {
  position: relative;
}
@media (max-width: 991px) {
  .portfolio-details__content {
    margin-bottom: 55px;
  }
}
.portfolio-details__content .mb {
  margin-bottom: 32px;
  margin-top: -42px;
}
.portfolio-details__content__image {
  position: relative;
}
.portfolio-details__content__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.portfolio-details__title {
  font-size: 30px;
  font-weight: 800;
  text-transform: capitalize;
  margin: 0 0 26px;
}
.portfolio-details__text {
  margin: 0 0 28px;
}
.portfolio-details__list {
  position: relative;
  margin: 0 0 44px;
  padding: 0 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .portfolio-details__list {
    display: block;
  }
}
.portfolio-details__list li {
  position: relative;
  margin: 0;
  line-height: 32px;
  font-weight: 500;
  color: var(--growim-black, #17012C);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 12px;
}
.portfolio-details__list li i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.portfolio-details__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--growim-border2-color, #D4DCFF);
  border-bottom: 1px solid var(--growim-border2-color, #D4DCFF);
  padding: 20px 0;
  margin-top: 51px;
}
.portfolio-details__pagination__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--growim-black, #17012C);
  font-weight: 700;
}
.portfolio-details__pagination__item img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transition: all 400ms ease;
  object-fit: cover;
}
.portfolio-details__pagination__item:hover {
  color: var(--growim-primary, #635AD9);
}
.portfolio-details__pagination__item:hover img {
  border: 3px solid var(--growim-primary, #635AD9);
}
.portfolio-details__info {
  position: relative;
  filter: drop-shadow(0px 1px 10px rgba(99, 90, 217, 0.1));
  background-image: linear-gradient(180deg, var(--growim-primary, #635AD9) 0%, var(--growim-secondary, #219BE4) 100%);
  border-radius: 20px;
  padding: 25px 30px 25px;
  margin: 0 0 30px;
}
.portfolio-details__info__title {
  color: var(--growim-white, #fff);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  border-bottom: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.15);
  margin: 0 0 16px;
  padding: 0 0 15px;
}
.portfolio-details__info__list {
  margin: 0;
  padding: 0 0;
  list-style: none;
}
.portfolio-details__info__list li {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--growim-white, #fff);
  border-bottom: 1px solid rgba(var(--growim-white-rgb, 255, 255, 255), 0.15);
  padding: 0 0 15px;
  margin: 0 0 16px;
}
.portfolio-details__info__list li span {
  display: block;
  font-weight: 700;
  margin: 0 0 3px;
}
.portfolio-details__info__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding-top: 2px;
}
.portfolio-details__info__social__title {
  color: var(--growim-white, #fff);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin: 0;
}
.portfolio-details__info__social a {
  font-size: 16px;
  color: var(--growim-white, #fff);
  display: inline-block;
}
.portfolio-details__info__social a:hover {
  color: var(--growim-black, #17012C);
}
.portfolio-details__contact {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 30px 162px;
}
.portfolio-details__contact::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgb(99, 90, 217) 30%, rgba(97, 140, 239, 0.43) 57%, rgba(96, 178, 255, 0) 100%);
}
.portfolio-details__contact__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  color: var(--growim-primary, #635AD9);
  font-size: 26px;
  position: relative;
  z-index: 1;
}
.portfolio-details__contact__icon::after {
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  content: "";
  border: 1px solid var(--growim-white, #fff);
  border-radius: 50%;
}
.portfolio-details__contact__number {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--growim-white, #fff);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: capitalize;
  margin: 24px 0 0;
}
.portfolio-details__contact__number span {
  display: block;
  margin-bottom: 12px;
}
.portfolio-details__contact__number a {
  font-size: 18px;
  color: inherit;
  line-height: 1.1;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-details__contact__number a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Slide Text
--------------------------------------------------------------*/
.slide-text {
  position: relative;
  z-index: 1;
  padding: 112px 0 114px;
}
@media (max-width: 767px) {
  .slide-text {
    padding: 72px 0 74px;
  }
}
.slide-text__wrap {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
}
.slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 130px;
}
@media (max-width: 767px) {
  .slide-text__list {
    gap: 100px;
  }
}
.slide-text__list:hover {
  animation-play-state: paused;
}
.slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  color: var(--growim-base, #5B3AEE);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .slide-text__list li {
    font-size: 45px;
  }
}
.slide-text__list li:nth-child(even) {
  color: var(--growim-white, #fff);
  text-shadow: 1px 1px 0 var(--growim-base, #5B3AEE), -1px -1px 0 var(--growim-base, #5B3AEE), 1px -1px 0 var(--growim-base, #5B3AEE), -1px 1px 0 var(--growim-base, #5B3AEE), 1px 1px 0 var(--growim-base, #5B3AEE);
}
.slide-text__list li::after {
  position: absolute;
  right: -89px;
  top: 6px;
  bottom: 0;
  margin: auto;
  content: "\f621";
  font-family: "Font Awesome 5 Free";
  color: var(--growim-base, #5B3AEE);
  font-size: 52px;
  text-shadow: none;
}
@media (max-width: 767px) {
  .slide-text__list li::after {
    right: -68px;
    top: 5px;
    font-size: 40px;
  }
}
@keyframes text-scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-text--home-two {
  position: relative;
}
.slide-text--home-two .slide-text__list li {
  color: var(--growim-black, #17012C);
}
.slide-text--home-two .slide-text__list li::after {
  color: var(--growim-black, #17012C);
}
.slide-text--home-two .slide-text__list li:nth-child(even) {
  color: var(--growim-white, #fff);
}

.slide-text-two {
  position: relative;
  z-index: 1;
  padding: 39px 0 48px;
  background-color: var(--growim-primary, #635AD9);
}
@media (max-width: 767px) {
  .slide-text-two {
    padding: 39px 0 38px;
  }
}
.slide-text-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}
.slide-text-two__wrap {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
}
.slide-text-two__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 160px;
}
@media (max-width: 767px) {
  .slide-text-two__list {
    gap: 100px;
    animation: text-scrolling 10s linear infinite;
  }
}
.slide-text-two__list:hover {
  animation-play-state: paused;
}
.slide-text-two__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 128px;
  color: var(--growim-white, #fff);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .slide-text-two__list li {
    font-size: 45px;
  }
}
.slide-text-two__list li::after {
  position: absolute;
  right: -114px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "*";
  color: var(--growim-white, #fff);
  font-size: 128px;
  text-shadow: none;
}
@media (max-width: 767px) {
  .slide-text-two__list li::after {
    right: -63px;
    font-size: 45px;
  }
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0;
  }
}
.work-process-one__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 48px;
}
@media (max-width: 767px) {
  .work-process-one__top {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.work-process-one__top .sec-title {
  padding: 0 0 0;
}
.work-process-one__circle {
  width: 132px;
  height: 132px;
  background-color: var(--growim-primary, #635AD9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  margin-top: -10px;
}
.work-process-one__circle img {
  max-width: 118px;
  height: auto;
  animation: rotated 10s linear infinite;
}
.work-process-one__circle .video-popup {
  width: 85px;
  height: 85px;
  background-color: var(--growim-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--growim-primary, #635AD9);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.work-process-one__item {
  position: relative;
  max-width: 350px;
}
.work-process-one__item__number {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--growim-primary, #635AD9);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--growim-primary, #635AD9);
  margin: 0 15px 100px auto;
  transition: all 400ms ease;
}
.work-process-one__item__number span {
  display: block;
  margin-top: 3px;
}
.work-process-one__item__number::after {
  position: absolute;
  right: 29px;
  top: 82px;
  width: 1px;
  height: 53px;
  content: "";
  background-color: var(--growim-primary, #635AD9);
}
.work-process-one__item:hover .work-process-one__item__number {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.work-process-one__item__title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 0;
  padding: 17px 21px;
  border-radius: 100px;
  transition: all 400ms ease;
  background-color: transparent;
}
.work-process-one__item__title::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/work-process-one__title-bg.png);
  background-size: cover;
  content: "";
  transition: all 400ms ease;
}
.work-process-one__item:hover .work-process-one__item__title {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.work-process-one__item:hover .work-process-one__item__title::after {
  visibility: hidden;
  opacity: 0;
}
.work-process-one__bottom {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 114px;
  padding: 35px 25px 34px;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .work-process-one__bottom {
    gap: 80px;
  }
}
@media (max-width: 767px) {
  .work-process-one__bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.work-process-one__bottom::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--growim-black-rgb, 23, 1, 44), 0.7);
}
.work-process-one__bottom__title {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: var(--growim-white, #fff);
  font-weight: 800;
  text-transform: capitalize;
  margin: 0;
}
.work-process-one__bottom__title span {
  display: inline-block;
  color: var(--growim-black, #17012C);
  text-shadow: 1px 1px 0 var(--growim-white, #fff), -1px -1px 0 var(--growim-white, #fff), 1px -1px 0 var(--growim-white, #fff), -1px 1px 0 var(--growim-white, #fff), 1px 1px 0 var(--growim-white, #fff);
}
.work-process-one__bottom .growim-btn {
  position: relative;
  z-index: 2;
  height: 52px;
}

.work-process-two {
  position: relative;
  counter-reset: count;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .work-process-two {
    padding: 80px 0;
  }
}
.work-process-two__item {
  position: relative;
  text-align: center;
  counter-increment: count;
}
.work-process-two__item__icon {
  width: 100px;
  height: 100px;
  background-color: var(--growim-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  font-size: 40px;
  color: var(--growim-primary, #635AD9);
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.08));
}
.work-process-two__item__icon i {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.work-process-two__item:hover .work-process-two__item__icon i {
  transform: scale(1.1);
}
.work-process-two__item__number {
  width: 34px;
  height: 34px;
  background-color: var(--growim-primary, #635AD9);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--growim-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  left: -6px;
  top: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.work-process-two__item__number::before {
  content: counters(count, ".");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-process-two__item:hover .work-process-two__item__number {
  transform: scale(1.05);
}
.work-process-two__item__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 25px 0 12px;
}
.work-process-two__item__text {
  margin: 0;
}
.work-process-two__item--reverse {
  position: relative;
  display: flex;
  flex-direction: column;
}
.work-process-two__item--reverse .work-process-two__item__title {
  margin: 0 0 12px;
}
.work-process-two__item--reverse .work-process-two__item__text {
  margin: 0 0 22px;
}
.work-process-two__border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  width: 801px;
  height: 110px;
  margin: auto;
  z-index: -1;
}
@media (max-width: 1199px) {
  .work-process-two__border {
    display: none;
  }
}
.work-process-two .container {
  position: relative;
}
/*# sourceMappingURL=growim.css.map */
