/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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;
}

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

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

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) {
  p br {
    display: none;
  }
}

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

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

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

.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;
  right: -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;
  right: -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);
}

.preloader {
  position: fixed;
  background-color: var(--growim-black, #17012C);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  left: 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;
  left: -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-left: 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;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--growim-black, #17012C);
}

/* post paginations */

.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;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 50px;
    line-height: 64px;
  }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.team-four {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-four {
    padding: 80px 0;
  }
}
.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;
}

/*--------------------------------------------------------------
# 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__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.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-right: 20px;
  padding-left: 20px;
}
.form-one textarea {
  width: 100%;
  height: 110px;
  padding-top: 15px;
}
.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;
  right: 0;
  top: 0;
  -webkit-transform: translate(calc(-1*(-50% + 5px)), -50%);
  transform: translate(calc(-1*(-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;
}

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

.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;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.25;
  mix-blend-mode: screen;
  background-size: cover;
  background-position: center center;
}
.main-footer__shape {
  position: absolute;
  right: 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__copyright {
  margin: 0;
  color: var(--growim-text-dark, #D9D9D9);
}

.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;
  right: 0;
  bottom: -16px;
  width: 20px;
  height: 1.5px;
  background-color: var(--growim-base, #5B3AEE);
  content: "";
}
.footer-widget__title::before {
  position: absolute;
  right: 29px;
  bottom: -16px;
  width: 63px;
  height: 1.5px;
  background-color: var(--growim-white, #fff);
  content: "";
}
@media (min-width: 1200px) {
  .footer-widget--links {
    margin-left: -30px;
    padding-right: 22px;
  }
  .footer-widget--contact {
    padding-right: 65px;
  }
}
.footer-widget__links {
  padding: 0;
  margin: -10px 0 0;
}
.footer-widget__links li {
  color: var(--growim-text-dark, #D9D9D9);
  padding-right: 27px;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 13px;
}
.footer-widget__links li::after {
  position: absolute;
  right: 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 left, 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-right: 27px;
  margin-bottom: 13px;
}
.footer-widget__info li i {
  color: var(--growim-primary, #635AD9);
  position: absolute;
  right: 0;
  top: 7px;
}
.footer-widget__info li a {
  color: inherit;
  background: linear-gradient(to left, 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);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.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__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 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background-color: transparent;
  position: absolute;
  right: 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;
  right: 0;
  opacity: 0;
}
.main-header__btn {
  margin-right: 55px;
}
@media (max-width: 1599px) {
  .main-header__btn {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.main-header__nav {
  margin-right: auto;
}

.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-right: -50px;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-right: -40px;
    margin-left: 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-right: 42px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-right: 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:hover > a {
  color: var(--growim-white, #fff);
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  right: -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 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;
  left: 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:hover > a {
  background-color: var(--growim-primary, #635AD9);
  color: var(--growim-white, #fff);
}
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

.why-choose-three {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .why-choose-three {
    padding: 80px 0 0;
  }
}
.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__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-right: 38px;
  }
}
.why-choose-three__image__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left 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;
  }
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.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;
  right: 0;
  bottom: -12px;
  width: 20px;
  height: 1.5px;
  background-color: var(--growim-base, #5B3AEE);
  content: "";
}
.service-sidebar__title::before {
  position: absolute;
  right: 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 24px 14px 50px;
  transition: all 400ms ease;
}
.service-sidebar__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--growim-primary, #635AD9);
  transform: scalex(0);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in-out;
  transform-origin: left 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;
  left: 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: right center;
}
.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;
  right: 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;
  right: -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 left, 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;
  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, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--growim-black, #17012C);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  left: 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;
  left: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 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 28px 0 0;
  margin-bottom: 10px;
  color: var(--growim-text-dark, #D9D9D9);
}
.sidebar-one__info li span {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 15px;
  color: var(--growim-primary, #635AD9);
  line-height: inherit;
}
.sidebar-one__info li a {
  background: linear-gradient(to left, 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-right: 30px;
  padding-left: 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%;
  left: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--growim-primary, #635AD9);
}

/*--------------------------------------------------------------
# Popup Nav
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.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-left: 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%;
  left: -24px;
  transform: translateY(-50%);
}
.faq-one__accordion .accrodion-title__icon::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 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;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(0.5) rotate(-45deg);
  }
}
@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 messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(-10px);
  }
}
@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 zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  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;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 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-right: 15px;
  padding-left: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

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

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

.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: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-left: 10px;
  color: var(--growim-white, #fff);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 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);
  left: 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;
    right: 0;
    left: 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;
  right: 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=text] {
  width: 100%;
  background-color: var(--growim-white, #fff);
  font-size: 15px;
  color: var(--growim-text, #504E4E);
  border: none;
  outline: none;
  height: 66px;
  padding-right: 30px;
}
.search-popup__form .growim-btn {
  padding: 0;
  position: absolute;
  top: 0;
  left: 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;
}

/*--------------------------------------------------------------
# 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;
  right: 0;
  left: 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-right: 10px;
  margin-left: 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 left, 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;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
.google-map__info {
  max-width: 358px;
  background-color: var(--growim-primary, #635AD9);
  margin-right: auto;
  margin-left: 30px;
  padding: 25px 30px 18px;
  position: relative;
}
@media (max-width: 767px) {
  .google-map__info {
    margin-left: 0px;
  }
}
.google-map__info::before {
  position: absolute;
  content: "";
  right: -29px;
  top: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 29px 39px 0;
  border-color: transparent transparent var(--growim-primary, #635AD9) transparent;
  transform: rotate(0deg);
}
.google-map__info::after {
  position: absolute;
  content: "";
  left: -29px;
  top: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 39px 29px 0 0;
  border-color: transparent var(--growim-primary, #635AD9) transparent transparent;
  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 left, 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;
  right: 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;
  left: 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;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
}
.main-slider-one__carousel {
  position: relative;
  width: 100%;
}
.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;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 1600px) {
  .main-slider-one__bg {
    width: 44%;
    background-position: right 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;
  right: 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 {
    right: 20%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__shape-one {
    display: none;
  }
}
.main-slider-one__shape-two {
  position: absolute;
  top: 165px;
  right: 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;
  left: 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%;
  right: 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;
  left: 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;
  left: 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;
  left: 165px;
  bottom: 40px;
  width: 60px;
  height: 60px;
}
.main-slider-one__shape-seven img {
  animation: treeMove2 6s linear 0s infinite;
}
.main-slider-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  padding-right: 60%;
}
@media (max-width: 1600px) {
  .main-slider-one__content {
    padding-right: 49%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__content {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__content {
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
  }
}
.main-slider-one__sub-title {
  position: relative;
  text-align: right;
  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;
  left: -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;
  right: 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-right: 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-right: 110px;
    margin-top: 24px;
  }
}
.main-slider-one .video-popup img {
  position: absolute;
  right: -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;
  right: 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;
  right: 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;
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  z-index: 2;
  padding: 37px 0 60px;
}
@media (max-width: 991px) {
  .feature-one {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0;
  }
}
.about-one__shape-four {
  position: absolute;
  right: 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__image {
  position: relative;
  z-index: 2;
  padding: 0 48px 0 0;
  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;
  right: 0;
  top: 112px;
  width: 666px;
  height: 516px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-one__image__bg {
    display: none;
  }
}
.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;
  }
}

/*--------------------------------------------------------------
# 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;
  right: 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;
  right: -25%;
  left: 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;
  right: -40%;
  left: 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;
  left: 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;
  left: 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__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;
  right: 0;
  left: 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;
  right: 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 left, 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;
  right: 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-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 left, 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-right: 24px;
    padding-left: 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;
  right: 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__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;
  right: 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;
  right: 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;
  right: 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;
  left: 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;
  left: 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;
  left: 0;
  bottom: 245px;
  width: 38px;
  height: 22px;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1499px) {
  .portfolio-one__shape-six {
    display: none;
  }
}
.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;
  left: -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 {
    left: -68px;
    top: 5px;
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Slide Text
--------------------------------------------------------------*/
@keyframes text-scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/

.work-process-two {
  position: relative;
  counter-reset: count;
  background-position: right 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__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;
  right: -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;
  left: 0;
  bottom: 0;
  right: 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;
  right: 0;
  left: 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;
}
