/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./inc/assets/scss/demos/style-demo3.scss ***!
  \***************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
/*!*******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./inc/assets/scss/demos/style-demo3.scss (1) ***!
  \*******************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
/*!*******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./inc/assets/scss/demos/style-demo3.scss (2) ***!
  \*******************************************************************************************************************************************************************************/
:root {
  --lg-heading-font-size: 8rem;
  --heading-font-size: 5rem;
  --lg-title-font-size: 3rem;
  --md-title-font-size: 2.4rem;
  --sm-title-font-size: 2rem;
  --paragraph-font-size: 1.8rem;
  --md-paragraph-font-size: 1.6rem;
  --sm-paragraph-font-size: 1.4rem;
  --sm-heading-font-size: 1.2rem;
  --color-primary: #ccff00;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark-1: #252525;
  --color-dark-2: #151515;
  --color-dark-3: #292929;
  --color-border: #1a1a1a;
  --color-border-2: #444444;
  --color-grey: #4e4e4e;
  --color-grey-1: #333333;
  --color-grey-2: #949494;
  --color-paragraph: #999999;
  --scrollbar-track: var(--color-black);
  --scrollbar-thumb: var(--color-primary);
  --scrollbar-thumb-hover: var(--color-primary);
  --manrope-font-family: "Manrope", sans-serif;
  --roboto-font-family: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  line-height: 1;
  overflow-x: hidden;
  font-family: var(--manrope-font-family);
  background-color: var(--color-black);
  color: var(--color-white);
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 2.5rem;
  }
}

svg.growla-mouse-trail {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  svg.growla-mouse-trail {
    display: none !important;
  }
}

body:hover svg.growla-mouse-trail {
  display: block;
}

svg.growla-mouse-trail path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

a {
  text-decoration: none;
}

.growla-character {
  display: inline-block;
  text-decoration: none !important;
}

.growla-word {
  display: inline-block;
  text-decoration: none !important;
  letter-spacing: -4px;
}

.main-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-black);
  z-index: 2;
}

.sub-heading {
  font-size: var(--sm-heading-font-size);
  color: var(--color-primary);
  letter-spacing: 0.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-heading {
  font-family: inherit;
  font-size: var(--heading-font-size);
  color: inherit;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 1rem;
}
.main-heading span {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.9rem;
}
@media (max-width: 991px) {
  .main-heading {
    font-size: var(--lg-title-font-size);
    line-height: 1.6;
  }
}

.sub-title {
  font-size: var(--sm-title-font-size);
  font-family: var(inherit);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.5;
}

.title {
  font-family: inherit;
  font-size: var(--lg-title-font-size);
  color: var(--color-white);
  line-height: 1.46;
  font-weight: 500;
}
@media (max-width: 991px) {
  .title {
    font-size: 2.5rem;
    line-height: 1.6;
  }
}

p {
  font-family: var(--manrope-font-family);
  color: var(--color-paragraph);
  font-size: var(--paragraph-font-size);
  line-height: 1.66;
  font-weight: 400;
}

.btn-arrow,
.btn-arrow:link,
.btn-arrow:visited {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  border: none;
  width: auto;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  --button-color: var(--color-primary);
  --button-icon-color: var(--color-primary);
  --button-hover-color: var(--color-black);
  --button-hover-icon-color: var(--color-black);
  color: var(--button-color) !important;
  fill: var(--button-color) !important;
  height: 30px;
}
.btn-arrow span,
.btn-arrow:link span,
.btn-arrow:visited span {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, color 0s ease;
  z-index: 10;
}
.btn-arrow .icon,
.btn-arrow:link .icon,
.btn-arrow:visited .icon {
  font-size: 1.8rem;
  height: 1.8rem;
  width: 1.8rem;
  fill: var(--button-color);
  color: var(--button-color);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, color 0s ease, fill 0.25s ease;
}
.btn-arrow .icon svg,
.btn-arrow:link .icon svg,
.btn-arrow:visited .icon svg {
  height: inherit;
  width: inherit;
  fill: inherit;
  color: inherit;
}
html[dir=rtl] .btn-arrow .icon,
html[dir=rtl] .btn-arrow:link .icon,
html[dir=rtl] .btn-arrow:visited .icon {
  transform: scaleX(-1);
}
html[dir=rtl] .btn-arrow:hover .icon,
html[dir=rtl] .btn-arrow:link:hover .icon,
html[dir=rtl] .btn-arrow:visited:hover .icon {
  transform: scaleX(-1) rotate(45deg);
}
.btn-arrow:hover .icon,
.btn-arrow:link:hover .icon,
.btn-arrow:visited:hover .icon {
  transform: rotate(-45deg);
}

.underline-btn,
.underline-btn:link,
.underline-btn:visited {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 0px 0px 0px 0px;
  font-family: var(--manrope-font-family);
  font-weight: 600;
  letter-spacing: 0.2rem;
  border: none;
  width: auto;
  text-decoration: none;
  color: var(--color-white);
}
.underline-btn::after,
.underline-btn:link::after,
.underline-btn:visited::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  opacity: 0;
  background-color: var(--color-primary);
  transition: all 0.5s ease;
}
.underline-btn span,
.underline-btn:link span,
.underline-btn:visited span {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, color 0s ease;
  z-index: 10;
}
.underline-btn .icon,
.underline-btn:link .icon,
.underline-btn:visited .icon {
  font-size: 1.8rem;
  height: 1.8rem;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, color 0s ease, fill 0.25s ease;
}
.underline-btn .icon svg,
.underline-btn:link .icon svg,
.underline-btn:visited .icon svg {
  height: inherit;
  width: inherit;
  fill: inherit;
  color: inherit;
}
.underline-btn:hover::after,
.underline-btn:link:hover::after,
.underline-btn:visited:hover::after {
  width: 100%;
  opacity: 1;
}
.underline-btn:hover .icon,
.underline-btn:link:hover .icon,
.underline-btn:visited:hover .icon {
  transform: rotate(-45deg);
}

:root {
  --primary-btn-color: var(--color-primary);
  --primary-btn-icon-color: var(--color-primary);
  --primary-btn-hover-color: var(--color-black);
  --primary-btn-hover-icon-color: var(--color-black);
  --primary-btn-border-color: var(--color-primary);
  --primary-btn-bg-color: var(--color-primary);
  --secondary-btn-color: var(--color-white);
  --secondary-btn-icon-color: var(--color-white);
  --secondary-btn-hover-color: var(--color-black);
  --secondary-btn-hover-icon-color: var(--color-black);
  --secondary-btn-border-color: var(--color-white);
  --secondary-btn-border-hover-color: var(--color-primary);
  --secondary-btn-bg-color: var(--color-primary);
}

.btn,
.btn:link,
.btn:visited {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.7rem 3.7rem 1.7rem 4rem;
  font-family: var(--manrope-font-family);
  font-size: var(--sm-paragraph-font-size);
  font-weight: 600;
  letter-spacing: 0.2rem;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn::before,
.btn:link::before,
.btn:visited::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 0.25s ease;
}
.btn span,
.btn:link span,
.btn:visited span {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, color 0s ease;
  z-index: 10;
}
.btn .icon,
.btn:link .icon,
.btn:visited .icon {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  height: 1.8rem;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, color 0s ease, fill 0.25s ease;
}
.btn .icon svg,
.btn:link .icon svg,
.btn:visited .icon svg {
  height: inherit;
  width: inherit;
  fill: inherit;
  color: inherit;
}
html[dir=rtl] .btn .icon svg,
html[dir=rtl] .btn:link .icon svg,
html[dir=rtl] .btn:visited .icon svg {
  transform: scaleX(-1);
}

.primary-btn {
  --button-color: var(--primary-btn-color);
  --button-icon-color: var(--primary-btn-icon-color);
  --button-hover-color: var(--primary-btn-hover-color);
  --button-hover-icon-color: var(--primary-btn-hover-icon-color);
  --button-border-color: var(--primary-btn-border-color);
  --button-bg-color: var(--primary-btn-bg-color);
  color: var(--button-color) !important;
  fill: var(--button-icon-color) !important;
  border-bottom: 2px solid var(--button-border-color);
}
.primary-btn:hover {
  color: var(--button-hover-color) !important;
  fill: var(--button-hover-icon-color) !important;
}
.primary-btn:hover::before {
  transform: translateY(0%);
  background-color: var(--button-bg-color);
}

.secondary-btn {
  --button-color: var(--secondary-btn-color);
  --button-icon-color: var(--secondary-btn-icon-color);
  --button-hover-color: var(--secondary-btn-hover-color);
  --button-hover-icon-color: var(--secondary-btn-hover-icon-color);
  --button-border-color: var(--secondary-btn-border-color);
  --button-border-hover-color: var(--secondary-btn-border-hover-color);
  --button-bg-color: var(--secondary-btn-bg-color);
  color: var(--button-color) !important;
  fill: var(--button-icon-color) !important;
  border-bottom: 2px solid var(--button-border-color);
}
.secondary-btn:hover {
  color: var(--button-hover-color) !important;
  fill: var(--button-hover-icon-color) !important;
  border-bottom: 2px solid var(--button-border-hover-color);
}
.secondary-btn:hover::before {
  transform: translateY(0%);
  background-color: var(--button-bg-color);
}

.project-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .project-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .project-section {
    padding: 5rem 0;
  }
}
.project-section .main-heading-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 7rem;
}
.project-section .main-heading-wrapper .headings {
  width: 65%;
}
@media (max-width: 1024px) {
  .project-section .main-heading-wrapper {
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .project-section .main-heading-wrapper {
    flex-direction: column;
    align-items: start;
  }
  .project-section .main-heading-wrapper .headings {
    width: 100%;
  }
}
.project-section .project-list-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 767px) {
  .project-section .project-list-wrapper {
    grid-template-columns: 1fr;
  }
}
.project-section .project-card {
  text-decoration: none;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.project-section .project-card .project-thumbnail {
  position: relative;
  width: 100%;
  min-height: 45.6rem;
  max-height: 45.6rem;
  flex: 1.3;
  overflow: hidden;
}
.project-section .project-card .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .project-section .project-card .project-thumbnail {
    min-height: 3rem;
  }
}
.project-section .project-card .project-content {
  position: relative;
  padding: 3rem;
  padding-top: 5rem;
  padding-bottom: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  flex: 1;
  background-color: var(--color-dark-2);
  gap: 2rem;
}
.project-section .project-card .project-content .title {
  width: 70%;
}
.project-section .project-card .project-content p {
  font-size: var(--sm-paragraph-font-size);
  line-height: 2;
}
.project-section .project-card .project-content .project-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-dark-1);
  font-size: 2rem;
  color: var(--color-white);
  transition: all 0.5s ease;
}
.project-section .project-card .project-content .project-icon svg {
  fill: var(--color-paragraph);
  width: 2.5rem;
  transition: inherit;
}
html[dir=rtl] .project-section .project-card .project-content .project-icon svg {
  transform: rotate(180deg);
}
@media only screen and (max-width: 991px) {
  .project-section .project-card .project-content {
    padding: 3rem;
  }
  .project-section .project-card .project-content .title {
    width: 90%;
  }
}
.project-section .project-card:hover .project-thumbnail img {
  transform: scale(1.1);
}
.project-section .project-card:hover .project-content .project-icon {
  background-color: var(--color-primary);
}
.project-section .project-card:hover .project-content .project-icon svg {
  fill: var(--color-black);
}
.project-section .project-list-horizontal {
  grid-template-columns: 1fr !important;
  gap: 2rem;
}
.project-section .project-list-horizontal .project-card-horizontal {
  flex-direction: row;
}
.project-section .project-list-horizontal .project-card-horizontal .project-content {
  padding-top: 5rem !important;
  padding-bottom: 7rem !important;
}
@media (max-width: 767px) {
  .project-section .project-list-horizontal .project-card-horizontal {
    flex-direction: column;
  }
}

.project-swiper-section {
  padding-bottom: 15rem;
}
.project-swiper-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .project-swiper-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.project-swiper-section .slider-header .headings {
  flex: 0.7;
}
.project-swiper-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.project-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.project-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.project-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn:hover {
  fill: var(--color-primary);
  opacity: 1;
}
.project-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.project-swiper-section .project-swiper .project-card {
  flex-direction: column;
}

.about-history-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .about-history-section {
    padding: 10rem 0;
  }
}
@media (max-width: 991px) {
  .about-history-section {
    padding: 5rem 0;
  }
}
@media (min-width: 767px) {
  .about-history-section .headings {
    width: 90%;
  }
}
.about-history-section .about-history-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 10rem;
}
@media (min-width: 767px) {
  .about-history-section .about-history-wrapper :first-child {
    width: 20% !important;
  }
}
.about-history-section .about-history-wrapper .about-history-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 767px) {
  .about-history-section .about-history-wrapper .about-history-card {
    width: 36%;
  }
}
@media (max-width: 991px) {
  .about-history-section .about-history-wrapper {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .about-history-section .about-history-wrapper {
    margin-top: 3rem;
    flex-direction: column;
    gap: 3rem;
  }
}

.faqs-section {
  padding: 10rem 0;
}
@media (max-width: 991px) {
  .faqs-section {
    padding: 5rem 0;
  }
}
@media (min-width: 767px) {
  .faqs-section .headings {
    width: 50%;
  }
}
.faqs-section .accordion {
  max-width: 70%;
  margin: 0 auto;
  padding-top: 7rem;
}
@media (max-width: 991px) {
  .faqs-section .accordion {
    max-width: 100%;
  }
}
.faqs-section .accordion .accordion-item {
  border: none;
  background-color: var(--color-dark-2);
  transition: all 0.25s ease;
  margin-bottom: 2px;
}
.faqs-section .accordion button:not(:disabled) {
  cursor: pointer;
}
.faqs-section .accordion .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: all 0.25s ease;
  padding: 30px 40px;
  border: none;
  outline: none;
  width: 100%;
  --size: 20px;
  --width: calc(20px * 0.6);
  --height: calc(20px * 0.1);
}
.faqs-section .accordion .accordion-button.keep-open[aria-expanded=true] {
  pointer-events: none;
}
.faqs-section .accordion .accordion-button,
.faqs-section .accordion .accordion-button:focus {
  box-shadow: none;
}
.faqs-section .accordion .accordion-button span {
  display: inline-block;
  font-size: var(--sm-title-font-size);
  font-family: var(--manrope-font-family);
  color: var(--color-paragraph);
  font-weight: 600;
  line-height: 1.5;
  text-transform: none;
  cursor: pointer;
}
.faqs-section .accordion .accordion-button::after {
  display: none;
}
.faqs-section .accordion .accordion-button,
.faqs-section .accordion .accordion-button:not(.collapsed) span {
  color: var(--color-white);
  background: none;
  box-shadow: none;
}
.faqs-section .accordion .accordion-button.collapsed::after,
.faqs-section .accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
}
.faqs-section .accordion .collapse:not(.show) {
  display: none;
}
.faqs-section .accordion .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faqs-section .accordion .collapsing {
    transition: none;
  }
}
.faqs-section .accordion .collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faqs-section .accordion .collapsing.collapse-horizontal {
    transition: none;
  }
}
.faqs-section .accordion .accordion-button .icon {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 2px solid var(--color-paragraph);
  padding: 10px;
}
.faqs-section .accordion .accordion-button .icon::after,
.faqs-section .accordion .accordion-button .icon::before {
  position: absolute;
  display: inline-block;
  background-color: var(--color-paragraph);
  content: "";
  width: 10px;
  height: 2px;
  width: 12px;
  height: 2px;
  top: 10px;
  left: 10px;
  transform: translate(-10px, -10px);
  transition: transform 0.5s ease;
  border-radius: 3px;
}
.faqs-section .accordion .accordion-button.collapsed .icon::after {
  transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.faqs-section .accordion .accordion-button.collapsed .icon::before {
  transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon {
  border: 2px solid var(--color-primary);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon::after {
  transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
  background-color: var(--color-primary);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon::before {
  transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
  background-color: var(--color-primary);
}
.faqs-section .accordion .accordion-body {
  padding: 0rem 5rem 5rem 5rem;
}

.clients-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .clients-section {
    padding: 5rem 0;
  }
}
@media (min-width: 768px) {
  .clients-section .headings {
    width: 50%;
  }
}
.clients-section .clients-block-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 10rem;
}
@media (max-width: 991px) {
  .clients-section .clients-block-wrapper {
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .clients-section .clients-block-wrapper {
    grid-template-columns: 1fr;
  }
}
.clients-section .clients-block-wrapper .clients-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
  border-right: 0.5px solid var(--color-border);
  border-left: 0.5px solid var(--color-border);
}
.clients-section .clients-block-wrapper .clients-block a {
  text-decoration: none;
  display: inline-block;
}
.clients-section .clients-block-wrapper .clients-block a img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.2;
  transition-duration: 0.25s;
}
.clients-section .clients-block-wrapper .clients-block a:hover img {
  opacity: 1;
}
.clients-section .clients-block-wrapper .clients-block:nth-child(-n+4) {
  border-top: none;
}
.clients-section .clients-block-wrapper .clients-block:nth-last-child(-n+4) {
  border-bottom: none;
}
.clients-section .clients-block-wrapper .clients-block:nth-child(1), .clients-section .clients-block-wrapper .clients-block:nth-child(5), .clients-section .clients-block-wrapper .clients-block:nth-child(9) {
  border-left: none;
}
.clients-section .clients-block-wrapper .clients-block:nth-child(4), .clients-section .clients-block-wrapper .clients-block:nth-child(8), .clients-section .clients-block-wrapper .clients-block:nth-child(12) {
  border-right: none;
}
@media (max-width: 767px) {
  .clients-section .clients-block-wrapper .clients-block {
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: 0.5px solid var(--color-border);
  }
  .clients-section .clients-block-wrapper .clients-block:nth-last-child(-n+4) {
    border-bottom: 0.5px solid var(--color-border);
  }
  .clients-section .clients-block-wrapper .clients-block:last-child {
    border-bottom: none;
  }
}

.about-us-v1-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .about-us-v1-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .about-us-v1-section {
    padding: 5rem 0;
  }
}
.about-us-v1-section .about-block-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 991px) {
  .about-us-v1-section .about-block-wrapper {
    flex-direction: column;
    gap: 5rem;
  }
}
.about-us-v1-section .about-block-wrapper .content-wrapper p {
  margin-top: 2rem;
}
.about-us-v1-section .about-block-wrapper .content-wrapper .about-list {
  margin-top: 2rem;
  margin-bottom: 3rem;
  list-style: none;
}
.about-us-v1-section .about-block-wrapper .content-wrapper .about-list .list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5.5px 0;
}
.about-us-v1-section .about-block-wrapper .content-wrapper .about-list .list-item .list-icon {
  height: 30px;
  width: 30px;
  fill: var(--color-primary);
  margin-right: 7.5px;
}
.about-us-v1-section .about-block-wrapper .content-wrapper .about-list .list-item .list-title {
  font-family: var(--manrope-font-family);
  font-size: var(--sm-title-font-size);
  color: var(--color-white);
  font-weight: 600;
  line-height: 18px;
  padding-left: 20px;
  margin: 6px 0px 0px 0px;
  line-height: 30px;
}
.about-us-v1-section .about-block-wrapper .content-wrapper .about-list .list-item:not(:last-child) {
  padding-bottom: 10px;
}
@media (min-width: 991px) {
  .about-us-v1-section .about-block-wrapper .content-wrapper {
    width: 67%;
  }
}
.about-us-v1-section .about-block-wrapper .about-illustration-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 991px) {
  .about-us-v1-section .about-block-wrapper .about-illustration-block {
    width: 50%;
  }
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration {
  position: relative;
  --box-color: var(--color-primary);
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-first-img {
  max-width: 80%;
  margin-left: auto;
  position: relative;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-first-img .first-img-wrapper {
  max-height: 43.3rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-first-img .first-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-first-img::after {
  content: "";
  width: 8rem;
  height: 8rem;
  background-color: rgba(0, 0, 0, 0);
  border: 0.3rem solid var(--box-color);
  position: absolute;
  top: -3.3rem;
  right: -2.5rem;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-second-img {
  position: relative;
  margin-top: -12rem;
  max-width: 60%;
  max-height: 23.3rem;
  border: 2rem solid var(--color-black);
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-second-img .second-img-wrapper {
  max-height: 23.3rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-second-img .second-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .about-illustration-second-img::after {
  content: "";
  width: 7.8rem;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: 0.3rem solid var(--box-color);
  position: absolute;
  bottom: -4.5rem;
  left: -2.6rem;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  bottom: -3rem;
  right: 0;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-row {
  width: 15.6rem;
  display: flex;
  gap: 1.2rem;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box {
  width: 4.4rem;
  height: 4.4rem;
  border: 0.3rem solid var(--box-color);
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-filled {
  background-color: var(--box-color);
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-row-end {
  justify-content: flex-end;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-row-2 {
  margin-bottom: 1.2rem;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-row-space-between {
  justify-content: space-between;
}
.about-us-v1-section .about-block-wrapper .about-illustration-block .about-illustration .growla-illustration-box-row-center {
  justify-content: center;
}

.growla-about-section {
  position: relative;
  height: 100vh;
  background-image: url(4313bdbb663598bd628d.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.growla-about-section::before {
  background-color: #000000;
  --background-overlay: "";
  content: var(--background-overlay);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.growla-about-section .about-inner {
  position: relative;
  width: 70%;
}
@media (max-width: 991px) {
  .growla-about-section .about-inner {
    width: 100%;
  }
}
.growla-about-section .about-inner .heading .main-heading {
  margin-top: 1rem;
  font-size: 7rem;
  line-height: 1.28;
  font-weight: 400;
}
@media (max-width: 991px) {
  .growla-about-section .about-inner .heading .main-heading {
    font-size: 4.5rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .growla-about-section .about-inner .heading .main-heading {
    font-size: 3rem;
    line-height: 1.6;
  }
}
.growla-about-section .about-inner .btn-block {
  margin-top: 2rem;
}

.contact-form-section {
  background-image: url(659deb9d2a7bb520ab92.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.contact-form-section .contact-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 3rem;
  column-gap: 5rem;
  padding-top: 20rem;
}
@media (max-width: 767px) {
  .contact-form-section .contact-inner-wrapper {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }
}
.contact-form-section .contact-form-wrapper {
  position: relative;
  padding: 7rem 4rem;
  background-color: var(--color-dark-2);
}
.contact-form-section .contact-form-wrapper .icon-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
}
.contact-form-section .contact-form-wrapper .icon-wrapper svg {
  fill: var(--color-black);
  width: 50px;
  height: 50px;
}
.contact-form-section .contact-form-wrapper .headings {
  margin-top: 30px;
}
.contact-form-section .contact-form-wrapper form .form-group {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}
.contact-form-section .contact-form-wrapper form .form-group input,
.contact-form-section .contact-form-wrapper form .form-group textarea {
  height: 5rem;
  font-size: var(--sm-paragraph-font-size);
  font-weight: 500;
  color: var(--color-white);
  font-family: var(--manrope-font-family);
  border-radius: none;
  border: none !important;
  padding: 1rem;
  resize: none;
  outline: none;
  width: 100%;
  border-bottom: 1px solid var(--color-grey) !important;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}
.contact-form-section .contact-form-wrapper form .form-group input::placeholder,
.contact-form-section .contact-form-wrapper form .form-group textarea::placeholder {
  color: var(--color-paragraph);
  font-size: var(--sm-paragraph-font-size);
}
.contact-form-section .contact-form-wrapper form .form-group textarea {
  max-width: 100%;
  min-height: 15rem;
  max-height: 30rem;
}
.contact-form-section .contact-form-wrapper form .btn {
  width: 100%;
  margin-top: 2rem;
}
.contact-form-section .content-block {
  align-self: end;
  padding-bottom: 10rem;
}
.contact-form-section .content-block .logo-block .logo {
  display: inline-block;
  vertical-align: middle;
}
.contact-form-section .content-block .main-heading {
  width: 90%;
}
@media (max-width: 991px) {
  .contact-form-section .content-block .main-heading {
    font-size: var(--heading-font-size) !important;
    line-height: 1.4 !important;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-form-section .content-block {
    grid-row: 1;
    padding-bottom: 0;
  }
}
.contact-form-section .waves-illustration {
  z-index: -1;
}

footer {
  background-image: url(32d4453b714b513fad1c.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 15rem 0;
}
@media (max-width: 1024px) {
  footer {
    background-position: top right;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 5rem 0;
  }
}
footer .footer-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
footer .footer-inner-wrapper .footer-heading-underline {
  position: relative;
  text-decoration: none;
  font-family: var(--roboto-font-family);
  font-size: var(--lg-heading-font-size);
  color: var(--color-primary);
  font-weight: 300;
  width: max-content;
}
footer .footer-inner-wrapper .footer-heading-underline::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
  background-color: var(--color-primary);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-inner-wrapper .footer-heading-underline:hover::after {
  width: 100%;
  opacity: 1;
}
@media (max-width: 767px) {
  footer .footer-inner-wrapper .footer-heading-underline {
    font-size: 4rem;
    word-wrap: break-word;
  }
}
footer .footer-inner-wrapper .footer-content-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 11rem;
}
@media (max-width: 991px) {
  footer .footer-inner-wrapper .footer-content-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  footer .footer-inner-wrapper .footer-content-inner-wrapper {
    margin-top: 2rem;
  }
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block .footer-title {
  font-family: var(--manrope-font-family);
  font-size: var(--sm-heading-font-size);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-grey-2);
  line-height: 1.5;
  text-transform: uppercase;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block a {
  text-decoration: none;
  font-family: var(--manrope-font-family);
  font-size: var(--paragraph-font-size);
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 1px;
  color: var(--color-white);
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block a span {
  position: relative;
  width: max-content;
  transition: color 0.3s;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block a span::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: var(--color-white);
  transition: all 0.5s ease;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .about-col .about-block a:hover span::after {
  width: 100%;
  opacity: 1;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col {
  display: flex;
  gap: 2rem;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item a {
  font-family: var(--manrope-font-family);
  font-size: var(--md-paragraph-font-size);
  font-weight: 400;
  text-decoration: none;
  display: flex;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item a .list-text {
  position: relative;
  width: max-content;
  line-height: 1.66;
  color: var(--color-grey-2);
  transition: color 0.3s;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item a .list-text::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: var(--color-grey-2);
  transition: all 0.5s ease;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item a:hover .list-text {
  color: var(--color-white);
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item a:hover .list-text::after {
  background-color: var(--color-white);
  width: 100%;
  opacity: 1;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item:not(:last-child) {
  padding-bottom: 11px;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .links-col .list-items .list-item:not(:first-child) {
  margin-top: 11px;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item {
  background-color: var(--color-black);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item a {
  position: relative;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item a svg {
  fill: var(--color-grey);
  display: block;
  height: 25px;
  position: relative;
  width: 25px;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: block;
  background-color: var(--color-primary);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-origin: center;
  transition: all 0.25s ease;
  z-index: 0;
  opacity: 0;
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item:hover a svg {
  fill: var(--color-black);
}
footer .footer-inner-wrapper .footer-content-inner-wrapper .social-icons .icon-item:hover a::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
footer .footer-inner-wrapper .copyright {
  font-family: var(--manrope-font-family);
  font-size: var(--sm-paragraph-font-size);
  font-weight: 600;
  color: var(--color-grey-2);
  line-height: 1.5;
  margin-top: 3rem;
}

.footer-wrapper {
  position: relative;
  overflow: hidden;
}
.footer-wrapper.footer-anim-disabled #footer-spacer {
  display: none;
}
.footer-wrapper .footer-content-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footer-wrapper.footer-anim-disabled .footer-content-wrapper {
  position: static;
}

.services-section {
  background-image: url(5cdde6f9dd7c9fca75f7.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 125px;
  position: relative;
  z-index: 1;
}
.services-section .services-inner-wrapper {
  transform: translateY(125px);
}
.services-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .services-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.services-section .slider-header .headings {
  flex: 0.7;
}
.services-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.services-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.services-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.services-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.services-section .swiper {
  width: 100%;
  height: 100%;
}
.services-section .swiper-slide {
  padding: 0.2rem;
}
.services-section .services-card {
  background-color: var(--color-dark-2);
  padding: 5rem 5rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: 0.2rem solid rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}
.services-section .services-card .service-icon {
  background-color: var(--color-primary);
  padding: 2rem;
  width: 10.4rem;
  height: 10.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.services-section .services-card .service-icon svg {
  height: 6rem;
}
.services-section .services-card .top-icon {
  top: 0;
  right: 0;
}
.services-section .services-card .bottom-icon {
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.services-section .services-card .services-content-wrapper {
  position: relative;
}
.services-section .services-card .services-content-wrapper .title {
  max-width: 70%;
  margin-bottom: 4.2rem;
}
.services-section .services-card .services-content-wrapper .services-content-inner-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.services-section .services-card .services-content-icon {
  position: relative;
  text-align: center;
  padding-top: 3rem;
  margin-top: 4rem;
}
.services-section .services-card .services-content-icon .services-border {
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-border-2);
  position: absolute;
  top: 0;
  right: 0;
}
.services-section .services-card .services-content-icon .services-icon-wrapper {
  position: relative;
  height: 3.4rem;
}
.services-section .services-card .services-content-icon .services-icon-wrapper .normal-icon, .services-section .services-card .services-content-icon .services-icon-wrapper .active-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.services-section .services-card .services-content-icon .services-icon-wrapper .normal-icon svg, .services-section .services-card .services-content-icon .services-icon-wrapper .active-icon svg {
  height: 3.4rem;
  fill: var(--color-primary);
}
.services-section .services-card .services-content-icon .services-icon-wrapper .active-icon {
  opacity: 0;
  visibility: hidden;
}
.services-section .services-card:hover {
  outline-color: var(--color-primary);
}
.services-section.services-no-bg {
  background-image: none !important;
  margin-bottom: 0 !important;
}
.services-section.services-no-bg .services-inner-wrapper {
  transform: translateY(115px);
}

.growla-grow-section {
  clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
}
@media (max-width: 991px) {
  .growla-grow-section {
    clip-path: none;
  }
}

.services-grid-section {
  padding: 10rem 0;
}
@media (max-width: 991px) {
  .services-grid-section {
    padding: 5rem 0;
  }
}
.services-grid-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .services-grid-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.services-grid-section .slider-header .headings {
  flex: 0.7;
}
.services-grid-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.services-grid-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.services-grid-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.services-grid-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.services-grid-section .services-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 85px;
}
@media (max-width: 991px) {
  .services-grid-section .services-grid-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .services-grid-section .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
}
.services-grid-section .services-card {
  background-color: var(--color-dark-2);
  padding: 5rem 5rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: 0.2rem solid rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}
.services-grid-section .services-card .service-icon {
  background-color: var(--color-primary);
  padding: 2rem;
  width: 10.4rem;
  height: 10.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.services-grid-section .services-card .service-icon svg {
  height: 6rem;
}
.services-grid-section .services-card .top-icon {
  top: 0;
  right: 0;
}
.services-grid-section .services-card .bottom-icon {
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.services-grid-section .services-card .services-content-wrapper {
  position: relative;
}
.services-grid-section .services-card .services-content-wrapper .title {
  max-width: 70%;
  margin-bottom: 4.2rem;
}
.services-grid-section .services-card .services-content-wrapper .services-content-inner-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.services-grid-section .services-card .services-content-icon {
  position: relative;
  text-align: center;
  padding-top: 3rem;
  margin-top: 4rem;
}
.services-grid-section .services-card .services-content-icon .services-border {
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-border);
  position: absolute;
  top: 0;
  right: 0;
}
.services-grid-section .services-card .services-content-icon .services-icon-wrapper {
  position: relative;
  height: 3.4rem;
}
.services-grid-section .services-card .services-content-icon .services-icon-wrapper .normal-icon, .services-grid-section .services-card .services-content-icon .services-icon-wrapper .active-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.services-grid-section .services-card .services-content-icon .services-icon-wrapper .normal-icon svg, .services-grid-section .services-card .services-content-icon .services-icon-wrapper .active-icon svg {
  height: 3.4rem;
  fill: var(--color-primary);
}
.services-grid-section .services-card .services-content-icon .services-icon-wrapper .active-icon {
  opacity: 0;
  visibility: hidden;
}
.services-grid-section .services-card:hover {
  outline-color: var(--color-primary);
}

.team-section {
  padding-bottom: 15rem;
  padding-top: 15rem;
}
@media (max-width: 767px) {
  .team-section {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
.team-section .main-heading-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 7rem;
}
.team-section .main-heading-wrapper .headings {
  width: 70%;
}
@media (max-width: 1024px) {
  .team-section .main-heading-wrapper {
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .team-section .main-heading-wrapper {
    flex-direction: column;
    align-items: start;
  }
  .team-section .main-heading-wrapper .headings {
    width: 100%;
  }
}
.team-section .team-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 1200px) {
  .team-section .team-container {
    padding: 0 2.5rem;
  }
}
.team-section .team-members-wrapper {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 3rem;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .team-section .team-members-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.team-section .team-member {
  width: 33%;
}
@media (max-width: 1024px) {
  .team-section .team-member {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .team-section .team-member {
    width: 100%;
  }
}
.team-section .team-member .team-member-image {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-section .team-member .team-member-image img {
  height: 100% !important;
  max-height: 53rem;
  max-width: 100%;
  object-fit: cover;
}
.team-section .team-member .team-member-content {
  text-align: center;
}
.team-section .team-member .team-member-content h4 {
  margin-top: 3rem;
}
.team-section .team-member .team-member-content p {
  margin-bottom: 2.7rem;
  font-size: 1.4rem;
  line-height: 2;
}
.team-section .team-member .team-member-content ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.team-section .team-member .team-member-content ul li {
  list-style: none;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: var(--color-dark-1);
  color: var(--color-grey);
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease;
}
.team-section .team-member .team-member-content ul li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  font-size: 1.8rem;
  border-radius: inherit;
  padding: 10px;
  fill: var(--color-grey);
}
.team-section .team-member .team-member-content ul li a svg {
  max-width: 90%;
  max-height: 100%;
}
.team-section .team-member .team-member-content ul li:hover {
  color: var(--color-black);
  fill: var(--color-black);
  background-color: var(--color-primary);
}
.team-section.padding-top-none {
  padding-top: 0 !important;
}

.blog-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .blog-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 5rem 0;
  }
}
.blog-section .main-heading-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 7rem;
}
.blog-section .main-heading-wrapper .headings {
  width: 50%;
}
@media (max-width: 1024px) {
  .blog-section .main-heading-wrapper {
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .blog-section .main-heading-wrapper {
    flex-direction: column;
    align-items: start;
  }
  .blog-section .main-heading-wrapper .headings {
    width: 100%;
  }
}
.blog-section .blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .blog-section .blog-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .blog-section .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-post {
  width: 100%;
}
.blog-post a {
  text-decoration: none;
}
.blog-post .thumbnail {
  position: relative;
  background-color: var(--color-dark-2);
}
.blog-post .post-thumbnail {
  width: 100%;
  max-width: 100%;
  height: 26.6rem;
  overflow: hidden;
}
.blog-post .post-thumbnail a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.blog-post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease;
}
.blog-post .date {
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
  overflow: hidden;
  width: max-content;
  min-width: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blog-post .date a {
  color: inherit;
  display: block;
  text-align: center;
}
.blog-post .date a span {
  display: block;
}
.blog-post .date a .wrapper {
  padding: 1.9rem 2.1rem 1rem 2.1rem;
}
.blog-post .date a .wrapper .day {
  font-size: 3rem;
}
.blog-post .date a .wrapper .month {
  font-weight: 600;
  text-transform: uppercase;
}
.blog-post .content {
  display: block;
  position: relative;
  padding: 5rem;
  min-height: 6rem;
  color: var(--color-white);
  background-color: var(--color-dark-2);
}
.blog-post .content h6 {
  width: 90%;
  font-size: 2.6rem;
  font-weight: 500;
}
.blog-post .content p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.blog-post .content .icon-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.blog-post .content .icon-wrapper .icon {
  background-color: var(--color-dark-1);
  padding: 1.5rem;
  transition: all 0.5s ease;
}
.blog-post .content .icon-wrapper .icon svg {
  height: 24px;
  fill: var(--color-paragraph);
  transition: all 0.5s ease;
}
[dir=rtl] .blog-post .content .icon-wrapper .icon svg {
  transform: rotate(180deg);
}
.blog-post:hover .post-thumbnail img {
  transform: scale(1.1);
}
.blog-post:hover .content .icon-wrapper .icon {
  background-color: var(--color-primary);
}
.blog-post:hover .content .icon-wrapper .icon svg {
  fill: var(--color-black);
}

.blog-grid-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .blog-grid-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .blog-grid-section {
    padding: 5rem 0;
  }
}
.blog-grid-section .blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .blog-grid-section .blog-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .blog-grid-section .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  background-image: url(0d019ef427cf8ff9fccf.jpg);
  background-size: cover;
  padding: 33rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .testimonials-section {
    padding: 15rem;
  }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 10rem 0;
  }
}
.testimonials-section::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  --background-overlay: "";
  content: var(--background-overlay);
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.testimonials-section .testimonials-swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 10rem;
  width: 100%;
  position: relative;
}
.testimonials-section .testimonials-thumbs {
  flex: 0.1;
  min-width: 7.3rem;
  min-height: calc(29.2rem + 66px);
}
.testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper {
  width: 90px;
  height: 400px;
}
.testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper .swiper-slide img {
  width: 7.3rem;
  height: 7.3rem;
  object-fit: cover;
  border-radius: 50%;
}
.testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.testimonials-section .testimonials-swiper {
  flex: 1;
  max-width: 70%;
  margin-left: 0;
}
.testimonials-section .testimonials-swiper .testimonial-content {
  max-width: 700px;
}
.testimonials-section .testimonials-swiper .testimonial-content .main-heading {
  font-size: 7rem;
  line-height: 9rem;
}
.testimonials-section .testimonials-swiper .testimonial-content .testimonial-author {
  color: var(--color-primary);
  margin-top: var(--sm-title-font-size);
  font-size: 2rem;
  font-weight: 600;
  line-height: 3.4rem;
}
.testimonials-section .testimonials-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.testimonials-section .testimonials-nav .testimonials-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.testimonials-section .testimonials-nav .testimonials-btn .icon {
  position: relative;
  z-index: 2;
}
.testimonials-section .testimonials-nav .testimonials-btn .icon svg {
  width: 4rem;
  height: auto;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.testimonials-section .testimonials-nav .testimonials-btn.swiper-button-disabled {
  opacity: 0.1;
}
.testimonials-section .testimonials-nav .testimonials-btn:hover {
  opacity: 1;
  fill: var(--color-primary);
}
@media (max-width: 991px) {
  .testimonials-section .testimonials-swiper-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .testimonials-section .testimonials-thumbs {
    margin: 0;
    min-height: initial;
    max-width: 100%;
  }
  .testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper {
    width: 100%;
    height: 85px;
  }
  .testimonials-section .testimonials-thumbs .testimonials-thumbs-swiper .swiper-slide {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
  .testimonials-section .testimonials-swiper {
    max-width: 100%;
  }
  .testimonials-section .testimonials-swiper .testimonial-content {
    margin-left: 0;
  }
  .testimonials-section .testimonials-swiper .testimonial-content .main-heading {
    font-size: 4rem;
    line-height: 6rem;
  }
  .testimonials-section .testimonials-swiper .testimonial-content .testimonial-text {
    font-size: 2.2rem;
  }
  .testimonials-section .testimonials-nav {
    position: static;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .testimonials-section .testimonials-nav {
    justify-content: flex-start;
  }
  .testimonials-section .testimonials-swiper-wrapper {
    gap: 3rem;
  }
}

.testimonial-2-section {
  background-image: url(6fb209e40f2967a70a71.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15rem 0;
  margin-bottom: 130px;
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-2-section {
    padding: 10rem 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .testimonial-2-section {
    padding: 5rem 0;
    margin-bottom: 50px;
  }
}
.testimonial-2-section::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  --background-overlay: "";
  content: var(--background-overlay);
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.testimonial-2-section .testimonial-inner-wrapper {
  transform: translateY(275px);
}
@media (max-width: 991px) {
  .testimonial-2-section .testimonial-inner-wrapper {
    transform: translateY(100px);
  }
}
@media (max-width: 767px) {
  .testimonial-2-section .testimonial-inner-wrapper {
    transform: translateY(50px);
  }
}
.testimonial-2-section .main-heading-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 7rem;
}
.testimonial-2-section .main-heading-wrapper .headings {
  width: 70%;
}
.testimonial-2-section .main-heading-wrapper .headings .main-heading {
  font-size: 7rem;
  line-height: 1.28;
}
@media (max-width: 991px) {
  .testimonial-2-section .main-heading-wrapper .headings .main-heading {
    font-size: var(--lg-title-font-size);
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .testimonial-2-section .main-heading-wrapper {
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .testimonial-2-section .main-heading-wrapper {
    flex-direction: column;
    align-items: start;
  }
  .testimonial-2-section .main-heading-wrapper .headings {
    width: 100%;
  }
}
.testimonial-2-section .main-heading-wrapper .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.testimonial-2-section .main-heading-wrapper .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.testimonial-2-section .main-heading-wrapper .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.testimonial-2-section .main-heading-wrapper .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.testimonial-2-section .swiper {
  width: 100%;
  height: 100%;
}
.testimonial-2-section .testimonial-slide-2 {
  position: relative;
  background-color: var(--color-dark-2);
  padding: 4rem 5rem;
  outline: 0.2rem solid rgba(0, 0, 0, 0);
  transition: all var(--anim-duration) ease;
}
.testimonial-2-section .testimonial-slide-2 p {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: var(--color-white);
}
.testimonial-2-section .testimonial-slide-2 .testimonial-slide-2--details {
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
  padding-top: 2rem;
}
.testimonial-2-section .testimonial-slide-2 h5 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--color-primary);
}
.testimonial-2-section .testimonial-slide-2 h6 {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--color-paragraph);
}
.testimonial-2-section .testimonial-slide-2 .icon {
  width: 5.4rem;
  height: 5.4rem;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-2-section .testimonial-slide-2 .icon svg {
  height: 2.2rem;
  fill: var(--color-black);
}

.intro-section {
  padding: 14rem 0;
}
@media (max-width: 991px) {
  .intro-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .intro-section {
    padding: 5rem 0;
  }
}
.intro-section .main-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .intro-section .main-heading-wrapper {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .intro-section .main-heading-wrapper .heading {
    flex: 0.65;
  }
}
.intro-section .swiper-wrapper {
  overflow: visible;
}
.intro-section .swiper {
  width: 100%;
  height: 100%;
}
.intro-section .intro-swiper {
  overflow: visible;
}
.intro-section .intro-block {
  margin-top: 8.5rem;
}
@media (max-width: 768px) {
  .intro-section .intro-block {
    margin-top: 3rem;
  }
}
.intro-section .growla-block-slide {
  text-decoration: none;
}
.intro-section .growla-block-slide .slide-thumbnail {
  outline: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.intro-section .growla-block-slide .slide-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-section .growla-block-slide .slide-thumbnail .icon {
  width: 12rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .intro-section .growla-block-slide .slide-thumbnail .icon {
    width: 6rem;
  }
}
.intro-section .growla-block-slide .slide-thumbnail .icon svg {
  max-width: 58px;
}
@media (max-width: 991px) {
  .intro-section .growla-block-slide .slide-thumbnail .icon svg {
    max-width: 30px;
  }
}
.intro-section .growla-block-slide .block-slide-content {
  display: flex;
  align-items: flex-start;
  gap: 14rem;
  margin-top: 4.5rem;
}
@media (max-width: 991px) {
  .intro-section .growla-block-slide .block-slide-content {
    gap: 5rem;
    margin-top: 2rem;
  }
}
.intro-section .growla-block-slide .block-slide-content .index-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.intro-section .growla-block-slide .block-slide-content .index-wrapper .index {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 5rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  white-space: nowrap;
}
.intro-section .growla-block-slide .block-slide-content .content-inner {
  width: 50%;
}
@media (max-width: 991px) {
  .intro-section .growla-block-slide .block-slide-content .content-inner {
    width: 100%;
  }
}
.intro-section .growla-block-slide .block-slide-content .content-inner .content-heading {
  color: var(--color-white);
}
.intro-section .growla-block-slide .block-slide-content .content-inner p {
  margin-top: 2rem;
}
.intro-section .growla-block-slide:hover .slide-thumbnail {
  outline: 2px solid var(--color-primary);
}
.intro-section .intro-block-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  column-gap: 3rem;
  margin-top: 85px;
}
@media (max-width: 991px) {
  .intro-section .intro-block-wrapper {
    grid-template-columns: 1fr;
  }
}
.intro-section .intro-block-wrapper .growla-block-slide .block-slide-content .content-inner {
  width: initial;
}

.about-counter-section {
  padding: 15rem 0;
  position: relative;
  background-image: url(0d019ef427cf8ff9fccf.jpg);
  background-size: cover;
}
@media (max-width: 991px) {
  .about-counter-section {
    padding: 10rem 0;
  }
}
.about-counter-section::before {
  background-color: #000000;
  --background-overlay: "";
  content: var(--background-overlay);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.about-counter-section .counter-main-wrapper {
  position: relative;
  align-items: initial;
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-counter-section .counter-main-wrapper .heading {
    width: 70%;
  }
}
.about-counter-section .counter-main-wrapper .heading .main-heading {
  margin-top: 1rem;
  font-size: 7rem;
  line-height: 1.28;
  font-weight: 400;
}
@media (max-width: 991px) {
  .about-counter-section .counter-main-wrapper .heading .main-heading {
    font-size: 4.5rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .about-counter-section .counter-main-wrapper .heading .main-heading {
    font-size: var(--lg-title-font-size);
    line-height: 1.6;
  }
}
.about-counter-section .counter-main-wrapper .counter-section {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .about-counter-section .counter-main-wrapper .counter-section {
    flex-wrap: wrap;
  }
}
.about-counter-section .counter-main-wrapper .growla-counter {
  width: 100%;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .about-counter-section .counter-main-wrapper .growla-counter {
    width: 48.5%;
  }
}
.about-counter-section .counter-main-wrapper .growla-counter .growla-counter-value {
  width: 100%;
  border: 0.3rem solid var(--color-primary);
  padding: 0.5rem 3rem 0.7rem 3rem;
  font-size: 6rem;
  font-weight: 500;
  line-height: 8rem;
}
.about-counter-section .counter-main-wrapper .growla-counter .counter-text {
  font-size: var(--md-title-font-size);
  font-weight: 500;
  line-height: 3rem;
  margin-top: 2rem;
}
.about-counter-section .btn-block {
  margin-top: 2rem;
}
.about-counter-section.about-content-section::before {
  content: none;
}

.page-header {
  position: relative;
  overflow: hidden;
}
.page-header .page-header-wrapper {
  background-image: url(2b54ffae3bb203ae603b.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-dark-3);
  background-position: center center;
  padding: 20rem 25px 9rem 25px;
}
@media (max-width: 991px) {
  .page-header .page-header-wrapper {
    padding: 113px 0px 40px 0px;
  }
}
.page-header .page-header-content {
  position: relative;
  z-index: 10;
}
.page-header .page-header-content .main-heading {
  margin-bottom: 7rem;
  font-size: 7rem;
  line-height: 1.28;
  font-weight: 400;
}
@media (max-width: 991px) {
  .page-header .page-header-content .main-heading {
    font-size: calc(3.5rem + 2.5 * (100vw - 250px) / 1150);
    line-height: calc(5.5rem + 2.5 * (100vw - 250px) / 1150);
    margin-bottom: 0;
  }
}
.page-header .page-header-content .breadcrumbs {
  padding: 0 1rem;
  text-align: right;
}
.page-header .page-header-content .breadcrumbs ul {
  padding: 0;
  line-height: 1.66;
  font-size: 1.8rem;
  font-weight: 400;
}
.page-header .page-header-content .breadcrumbs ul li {
  display: inline;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.page-header .page-header-content .breadcrumbs ul li a {
  color: inherit;
  text-decoration: none;
}
.page-header .page-header-content .breadcrumbs ul li:nth-child(n+2)::before {
  content: "|";
  display: inline-block;
  font-size: 1.2rem;
  margin: 0 4.2rem;
}
@media (max-width: 991px) {
  .page-header .page-header-content .breadcrumbs {
    text-align: left;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .page-header .page-header-illustration {
    display: none;
  }
}

.award-section .inner {
  padding: 10rem 0 3rem 0;
}
.award-section .inner .heading {
  margin-bottom: 5rem;
}
@media (min-width: 767px) {
  .award-section .inner .heading {
    width: 72%;
  }
}
@media (max-width: 1024px) {
  .award-section .inner .heading.text-center {
    text-align: center;
    margin: auto;
  }
}
@media (max-width: 991px) {
  .award-section .inner .heading p {
    font-size: 3rem;
    line-height: 1.6;
  }
}
.award-section .inner .award-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .award-section .inner .award-card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .award-section .inner .award-card-wrapper {
    grid-template-columns: 1fr;
  }
}
.award-section .inner .award-card-wrapper .award-card {
  background-color: var(--color-dark-2);
  padding: 5rem;
  outline: 0.3rem solid rgba(0, 0, 0, 0);
  display: block;
  transition: all 0.25s ease;
  text-decoration: none;
}
.award-section .inner .award-card-wrapper .award-card .icon-box {
  display: block;
}
.award-section .inner .award-card-wrapper .award-card .icon-box svg {
  height: 11rem;
  fill: #383838;
  transition: all 0.25s ease;
}
.award-section .inner .award-card-wrapper .award-card .box-content h6 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 2rem 0 3rem 0;
}
.award-section .inner .award-card-wrapper .award-card .box-content p {
  font-size: var(--paragraph-font-size);
  color: var(--color-paragraph);
  line-height: 1.66;
  font-weight: 400;
}
.award-section .inner .award-card-wrapper .award-card:hover {
  outline-color: var(--color-primary);
}
.award-section .inner .award-card-wrapper .award-card:hover .icon-box svg {
  fill: var(--color-primary);
}
.award-section .inner .award-images-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 3rem;
}
@media (min-width: 1025px) {
  .award-section .inner .award-images-wrapper .award-img-block {
    width: 22%;
  }
}
@media (max-width: 1024px) and (min-width: 768) {
  .award-section .inner .award-images-wrapper .award-img-block {
    width: 48%;
  }
}
.award-section .inner .award-images-wrapper .award-img-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.award-title-section {
  background-image: url(0d019ef427cf8ff9fccf.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 350px;
  padding-bottom: 150px;
  margin-top: -30rem;
  position: relative;
  z-index: -1;
}
.award-title-section .award-title {
  display: flex;
  align-items: center;
  text-align: center;
  width: 70%;
  justify-self: center;
}
@media (max-width: 1024px) {
  .award-title-section .award-title {
    width: 100%;
  }
}
.award-title-section .award-title .heading-title {
  font-family: var(--manrope-font-family);
  font-size: 7rem;
  line-height: 9rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .award-title-section .award-title .heading-title {
    font-size: 5rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .award-title-section .award-title .heading-title {
    font-size: 4rem;
    line-height: 1.5;
  }
}

.awards-year-section {
  padding: 10rem 0;
}
@media (min-width: 768px) {
  .awards-year-section .awards-year-wrapper {
    width: 75%;
    margin: auto;
  }
}
.awards-year-section .awards-year-wrapper .title {
  text-align: center;
}
@media (min-width: 768px) {
  .awards-year-section .awards-year-wrapper .title {
    width: 75%;
    margin: auto;
  }
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 5rem;
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award {
  text-decoration: none;
  background-color: var(--color-dark-2);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award {
    flex-direction: column;
    text-align: center;
  }
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award h6 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-paragraph);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award h6.award-title {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  flex: 2;
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award-presenter {
  font-weight: 500;
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award:hover h6 {
  color: var(--color-primary);
}
.awards-year-section .awards-year-wrapper .awards-year-block-wrapper .growla-award:hover h6.award-title {
  color: var(--color-white);
}
.awards-year-section .awards-year-wrapper .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.mission-section .mission-inner {
  padding-top: 135px;
}
.mission-section .mission-inner .heading {
  width: 70%;
}
.mission-section .mission-inner .video-block {
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block {
    margin-top: 5rem;
  }
}
.mission-section .mission-inner .video-block iframe {
  border: none;
}
.mission-section .mission-inner .video-block .elementor-widget-video {
  height: 567px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block .elementor-widget-video {
    width: 100%;
    height: 30rem;
  }
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .elementor-open-inline {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .elementor-video {
  width: 100%;
  height: 567px;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .elementor-video {
    width: 100%;
    height: 30rem;
  }
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .image-overlay {
  background-image: url(4e7f564f0bb79a0b3c6c.jpg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50%;
  cursor: pointer;
  text-align: center;
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .growla-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  pointer-events: none;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .growla-overlay-container {
    justify-content: center;
    align-items: center;
  }
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .growla-overlay-container .icon-box {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mission-section .mission-inner .video-block .elementor-widget-video .video-wrapper .growla-overlay-container .icon-box svg {
  opacity: 0.8;
  height: 100px;
  width: 100px;
  fill: var(--color-primary);
  filter: drop-shadow(1px 0 6px rgba(0, 0, 0, 0.3));
}
.mission-section .mission-inner .video-block .growla-video-illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  --box-color: var(--color-primary);
  pointer-events: none;
}
.mission-section .mission-inner .video-block .growla-video-illustration-box-1 {
  width: 8rem;
  height: 8rem;
  border: 0.3rem solid var(--box-color);
  position: absolute;
  top: -3rem;
  right: -3rem;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block .growla-video-illustration-box-1 {
    width: 4rem;
    height: 4rem;
    top: -1.5rem;
    right: -1.5rem;
  }
}
.mission-section .mission-inner .video-block .growla-video-illustration-box-2 {
  width: 8rem;
  height: 23.8rem;
  border: 0.3rem solid var(--box-color);
  position: absolute;
  bottom: 5rem;
  left: -4rem;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .video-block .growla-video-illustration-box-2 {
    width: 4rem;
    height: 15rem;
    left: -2rem;
  }
}
.mission-section .mission-inner .mission-progress-bar {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.mission-section .mission-inner .mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
  margin: 0 auto;
  padding: 5rem 0 10rem 0;
}
@media (max-width: 991px) {
  .mission-section .mission-inner .mission-content {
    grid-template-columns: 1fr;
  }
}
.mission-section .mission-inner .mission-content .growla-progress-bar {
  background-color: var(--color-dark-2);
  padding: 1.3rem 3rem 2rem 3rem;
}
.mission-section .mission-inner .mission-content .growla-progress-bar .growla-progress-bar--header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.1rem;
}
.mission-section .mission-inner .mission-content .growla-progress-bar .growla-progress-bar--header span {
  font-size: 1.8rem;
  font-weight: 500;
}
.mission-section .mission-inner .mission-content .growla-progress-bar .growla-progress-bar--header .growla-progress-bar--value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}
.mission-section .mission-inner .mission-content .growla-progress-bar .growla-progress-bar--bar {
  width: 100%;
  height: 0.6rem;
  background-color: var(--color-dark-3);
  border-radius: 3rem;
  overflow: hidden;
}
.mission-section .mission-inner .mission-content .growla-progress-bar .growla-progress-bar--bar .growla-progress-bar--actual {
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: inherit;
  transform: translateX(-100%);
}

.jobs-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .jobs-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .jobs-section {
    padding: 5rem 0;
  }
}
.jobs-section .jobs-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}

.growla-collapse {
  background-color: var(--color-dark-2);
  padding: 5rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.growla-collapse-heading {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.6;
}
.growla-collapse-inner > h6 {
  font-size: 1.8rem;
  color: var(--color-paragraph);
  margin-top: 0.5rem;
}
.growla-collapse ul {
  color: var(--color-paragraph);
  padding-left: 2rem;
}
.growla-collapse ul li {
  font-size: var(--paragraph-font-size);
  line-height: 1.66;
  font-weight: 400;
}
.growla-collapse-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  cursor: initial;
  padding: 0 0 3rem 0;
  transform: translateY(25px);
}
.growla-collapse-content-wrapper {
  position: relative;
  margin-top: 3rem;
}
.growla-collapse-content-wrapper > * {
  top: 0;
  left: 0;
}
.growla-collapse-content .title {
  font-size: 2.8rem;
}
.growla-collapse-icon {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--color-dark-1);
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-collapse-icon div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.growla-collapse-icon div.active-icon {
  opacity: 0;
  visibility: hidden;
}
.growla-collapse-icon div * {
  fill: var(--color-paragraph);
  color: var(--color-paragraph);
  height: 2.4rem;
  vertical-align: middle;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-collapse:hover .growla-collapse-icon {
  background-color: var(--color-primary);
}
.growla-collapse:hover .growla-collapse-icon div * {
  fill: var(--color-black);
  color: var(--color-black);
}

.wpcf7 form.invalid .footer-form .wpcf7-not-valid, .wpcf7 .wpcf7-not-valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23ff9f00%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");
}

.wpcf7 {
  margin-top: -2rem;
}
.wpcf7 br {
  display: none;
}
.wpcf7 button {
  z-index: 1;
  margin-top: 2rem;
  width: 100%;
}
.wpcf7 .form-control,
.wpcf7 .wpcf7-form-control {
  margin-top: 2rem;
}
.wpcf7 .wpcf7-not-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7 form .wpcf7-response-output {
  width: 100%;
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  padding: 2rem 2rem 1.7rem 2rem;
  margin-left: 0;
}
.wpcf7 .wpcf7 form.invalid .wpcf7-response-output {
  background-color: var(--color-warning);
}
.wpcf7 .wpcf7 form.failed .wpcf7-response-output {
  background-color: var(--color-error);
}
.wpcf7 .wpcf7 form.success .wpcf7-response-output {
  background-color: var(--color-success);
}

.footer-form {
  position: relative;
}
.footer-form .icon-submit-1 {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.footer-form br {
  display: none;
}
.footer-form .form-control {
  background-position: right 2.2rem center;
}
.footer-form .wpcf7-not-valid {
  background-image: unset;
  background-position: right 2.2rem center;
  background-size: 2rem 2rem;
}

.wpcf7 form.invalid .footer-form .icon-submit-1 {
  opacity: 0;
}
.wpcf7-spinner {
  display: none;
}

.form-control {
  position: relative;
  height: 5rem;
  width: 100%;
}
.form-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: var(--color-paragraph);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 1.6rem;
  text-align: left;
}
.form-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 1rem;
  resize: none;
  border: none;
  border-bottom: 1px solid var(--color-grey-1);
  outline: none;
  font-family: inherit;
  color: var(--color-white);
  background: transparent;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 1.6rem;
  text-align: left;
}
.form-input::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}
.form-input:focus {
  border-color: var(--color-primary);
}
.form-input:focus ~ .form-label, .form-input:not(:placeholder-shown).form-input:not(:focus) ~ .form-label {
  top: -0.5rem;
  font-size: 1.2rem;
  z-index: 9;
  transition: all 0.2s ease;
}
.form-areas {
  resize: none;
  max-width: 100%;
  min-height: 15rem;
  max-height: 30rem;
}
.form-areas .form-label {
  top: 2rem;
}

.growla-select {
  z-index: 10;
  position: relative;
}
.growla-select select {
  opacity: 0;
  visibility: hidden;
}
.growla-select .ts-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-grey-1);
  border-radius: 0;
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
}
.growla-select .ts-control input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  height: unset !important;
  border: none !important;
}
[dir=rtl] .growla-select .ts-control input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  text-align: left;
}
.growla-select .ts-control input,
.growla-select .ts-control .item {
  font-size: 1.6rem;
  color: var(--color-paragraph);
}
.growla-select .ts-control input::placeholder,
.growla-select .ts-control .item::placeholder {
  color: var(--color-paragraph);
}
.growla-select .ts-control::after {
  content: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"%23999999\" viewBox=\"0 0 24 24\"><title>chevron-down</title><path d=\"M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z\" /></svg>");
  width: 2rem;
  margin-right: 1rem;
  margin-left: auto;
}
[dir=rtl] .growla-select .ts-control::after {
  margin-left: 1rem;
  margin-right: 0;
}
.growla-select .input-active .ts-control {
  border-color: var(--color-primary);
  background-color: transparent !important;
}
.growla-select .input-active .ts-control::after {
  content: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"%23999999\" viewBox=\"0 0 24 24\"><title>chevron-up</title><path d=\"M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z\" /></svg>");
}
.growla-select .ts-dropdown {
  border: none;
  background-color: var(--color-black);
  color: var(--color-paragraph);
  box-shadow: 0px 10px 5px 0px rgba(255, 255, 255, 0.01);
  margin-top: 1rem;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-select .ts-dropdown .option {
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.growla-select .ts-dropdown .ts-dropdown-content div {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: left;
}
.growla-select .ts-dropdown .active,
.growla-select .ts-dropdown .ts-dropdown-content div:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 2rem;
}
.custom-dropdown .dropdown-form-button {
  width: 100%;
  font-family: var(--manrope-font-family);
  background-color: transparent;
  color: var(--color-paragraph);
  border: none;
  border-bottom: 1px solid var(--color-grey-1);
  border-radius: 0;
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.custom-dropdown .dropdown-form-button::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--color-paragraph);
  mask: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"%23999999\" viewBox=\"0 0 24 24\"><title>chevron-down</title><path d=\"M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z\" /></svg>");
  -webkit-mask: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"%23999999\" viewBox=\"0 0 24 24\"><title>chevron-down</title><path d=\"M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z\" /></svg>");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  color: var(--color-paragraph);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.custom-dropdown .dropdown-form-menu {
  display: none;
  position: absolute;
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-paragraph);
  box-shadow: 0px 10px 5px 0px rgba(255, 255, 255, 0.01);
  margin-top: 1rem;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-dropdown .dropdown-form-menu li {
  font-size: 1.6rem;
  padding: 1rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
}
.custom-dropdown .dropdown-form-menu li:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.growla-contact-form-row {
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 991px) {
  .growla-contact-form-row {
    flex-direction: column;
    gap: 0;
  }
}

.growla-contact-form-column {
  flex: 1;
}

.growla-file-upload {
  height: 5rem;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.24rem 0 1.25rem 0.8rem;
  border-bottom: 1px solid var(--color-grey-1);
  font-size: 1.6rem;
  color: var(--color-paragraph);
}
.growla-file-upload input {
  display: none;
}
.growla-file-upload .select-wrapper {
  color: var(--color-primary);
  font-weight: 600;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contact-form-wrapper {
  padding: 10rem 0 15rem 0;
}
@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 10rem 0;
  }
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 5rem 0;
  }
}
.contact-form-wrapper .contact-form-tabs {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .contact-form-wrapper .contact-form-tabs {
    width: 100%;
  }
}
.contact-form-wrapper .contact-form-tabs-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-form-wrapper .contact-form-tabs-navigation-item {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-paragraph);
  cursor: pointer;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  gap: 1rem;
  padding: 0 3rem 2rem 3rem;
  border-bottom: 2px solid var(--color-grey-1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.contact-form-wrapper .contact-form-tabs-navigation-item svg {
  height: 2.5rem;
  fill: var(--color-paragraph);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
[dir=rtl] .contact-form-wrapper .contact-form-tabs-navigation-item svg {
  vertical-align: top;
}
.contact-form-wrapper .contact-form-tabs-navigation-item:hover, .contact-form-wrapper .contact-form-tabs-navigation-item.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.contact-form-wrapper .contact-form-tabs-navigation-item:hover svg, .contact-form-wrapper .contact-form-tabs-navigation-item.active svg {
  fill: var(--color-primary);
}
.contact-form-wrapper .contact-form-tabs-content {
  position: relative;
}
.contact-form-wrapper .contact-form-tabs .contact-form-tab {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transform: translateY(25px);
}
.contact-form-wrapper .contact-form-tabs .contact-form-tab.active {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.heading-section {
  padding: 15rem 0 5rem 0;
}
@media (max-width: 991px) {
  .heading-section {
    padding: 10rem 0 5rem 0;
  }
}
@media (max-width: 768px) {
  .heading-section {
    padding: 5rem 0 5rem 0;
  }
}
@media (min-width: 768px) {
  .heading-section .heading-wrapper {
    width: 70%;
  }
}

.contact-img-section img {
  width: 100%;
  height: 80rem;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 1024px) {
  .contact-img-section img {
    height: 50rem;
  }
}

.team-2-section {
  padding: 15rem 0 13rem 0;
}
@media (max-width: 991px) {
  .team-2-section {
    padding: 10rem 0 8rem 0;
  }
}
@media (max-width: 767px) {
  .team-2-section {
    padding: 5rem 0 5rem 0;
  }
}
.team-2-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .team-2-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.team-2-section .slider-header .headings {
  flex: 0.7;
}
.team-2-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.team-2-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.team-2-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.team-2-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.team-2-section .swiper {
  width: 100%;
  height: 100%;
}
.team-2-section .team-swiper {
  overflow: visible;
}
.team-2-section .swiper-slide {
  padding: 0.2rem;
}
.team-2-section .team-member-2 {
  background-color: var(--color-dark-2);
  padding: 1.7rem 1.7rem 3.5rem 1.7rem;
  border: 0.3rem solid transparent;
  transition: all var(--anim-duration) ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-2-section .team-member-2-image {
  max-width: 100%;
  height: 35.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-2-section .team-member-2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-2-section .team-member-2-small-thumbnail {
  width: 8rem;
  height: 8rem;
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  transform: translateX(calc(-1*(-1*(-1 * (100% + 1.6rem)))));
}
.team-2-section .team-member-2-small-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-2-section .team-member-2-content {
  width: 80%;
  margin: 0 auto;
}
.team-2-section .team-member-2-content-inner-2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding-bottom: 3rem;
  transform: translateY(3rem);
}
.team-2-section .team-member-2-content-inner-1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.team-2-section .team-member-2-content h4 {
  display: inline;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.46;
  font-weight: 500;
}
.team-2-section .team-member-2-content p.mini-paragraph {
  display: inline;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
}
.team-2-section .team-member-2-content ul {
  margin: 2.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.team-2-section .team-member-2-content li {
  list-style: none;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: var(--color-dark-1);
  color: var(--color-grey);
  fill: var(--color-grey);
  display: inline-block;
  transition: all var(--anim-duration) ease;
}
.team-2-section .team-member-2-content li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  font-size: 1.8rem;
  border-radius: inherit;
  padding: 10px;
  fill: inherit;
}
.team-2-section .team-member-2-content li a * {
  max-width: 90%;
}
.team-2-section .team-member-2-content li:hover, .team-2-section .team-member-2-content li:focus {
  color: var(--color-black);
  fill: var(--color-black);
  background-color: var(--color-primary);
}
@media (max-width: 991px) {
  .team-2-section .team-member-2-content li {
    width: 3.5rem;
    height: 3.5rem;
  }
  .team-2-section .team-member-2-content li a {
    font-size: 1.4rem;
  }
}
.team-2-section .team-member-2-icon {
  position: relative;
  text-align: center;
  padding-top: 3rem;
}
.team-2-section .team-member-2-icon-border {
  --animated-border-width: calc(100% - 9rem);
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-border-2);
  position: absolute;
  top: 0;
  right: 0;
}
.team-2-section .team-member-2-icon svg {
  height: 2.9rem;
  fill: var(--color-primary);
}
.team-2-section .team-member-2-icon .active-icon {
  position: absolute;
  top: calc(50% + 1.5rem);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.team-2-section .team-member-2:hover {
  border-color: var(--color-primary);
}
@media (max-width: 991px) {
  .team-2-section .team-member-2-image {
    width: 100%;
  }
  .team-2-section .team-member-2-image img {
    object-position: top;
  }
}

.expertise-detail-section {
  padding: 15rem 0;
}
.expertise-detail-section .heading {
  margin-bottom: 2rem;
}

.growla-tabs {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .growla-tabs {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.growla-tabs-options {
  width: 45%;
}
@media only screen and (max-width: 991px) {
  .growla-tabs-options {
    display: none;
  }
}
.growla-tabs-options li {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  cursor: pointer;
}
.growla-tabs-options li:nth-child(n+2) {
  margin-top: 1rem;
}
.growla-tabs-options li span {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-grey-2);
  width: calc(100% - 9.2rem);
}
.growla-tabs-options li .icon {
  width: 7rem;
  height: 6.6rem;
  background-color: var(--color-dark-2);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-tabs-options li .icon svg {
  height: 3rem;
  fill: var(--color-grey);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-tabs-options li.growla-tab-option-active .icon, .growla-tabs-options li:hover .icon {
  background-color: var(--color-primary);
}
.growla-tabs-options li.growla-tab-option-active .icon svg, .growla-tabs-options li:hover .icon svg {
  color: var(--color-black);
}
.growla-tabs-options li.growla-tab-option-active span, .growla-tabs-options li:hover span {
  color: var(--color-white);
}
.growla-tabs-select {
  display: none;
}
@media only screen and (max-width: 991px) {
  .growla-tabs-select {
    display: block;
  }
}
.growla-tabs-select select {
  opacity: 0;
  visibility: hidden;
}
.growla-tabs-select .icon svg {
  height: 3rem;
  fill: var(--color-primary);
}
.growla-tabs-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.growla-tabs-content img {
  width: 100%;
  height: auto;
}
.growla-tabs-content span {
  text-decoration-thickness: 0.2rem !important;
  text-underline-offset: 0.9rem;
  text-decoration-color: var(--color-primary) !important;
}
.growla-tabs-content .title {
  font-size: 4rem;
  margin-top: 2rem;
}
.growla-tabs-content ul li {
  color: var(--color-paragraph);
}
.growla-tabs-content .growla-tab {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}
.growla-tabs-content .growla-tab:not(.growla-tab-active) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(50px);
}
.growla-tabs .growla-tab-content {
  margin-top: 3rem;
}

.selectify {
  max-width: 100%;
  position: relative;
}
.selectify .active {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-dark);
  background-color: var(--color-dark-2);
  cursor: pointer;
}
.selectify .active * {
  pointer-events: none;
}
.selectify .active-wrapper {
  position: relative;
}
.selectify .active-wrapper .arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  fill: var(--color-paragraph);
  pointer-events: none;
  transform-origin: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.selectify .active-wrapper .arrow-icon svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  fill: inherit;
}
.selectify ul {
  position: absolute;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  max-height: 50rem;
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--color-dark-2);
  list-style: none;
  pointer-events: none;
  z-index: 999999;
  margin: 1rem 0 0 0;
  padding: 2rem 0;
  font-size: 1.8rem;
  color: var(--color-black);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.selectify ul li {
  padding: 1.5rem 2rem;
  gap: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: var(--color-paragraph);
  margin: 0 0.75rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  line-height: 1;
}
.selectify ul li * {
  pointer-events: none;
}
.selectify ul li:hover, .selectify ul li:focus {
  background-color: var(--color-white);
}
.selectify ul li.selected {
  background-color: var(--color-dark-2);
  font-weight: 600;
  color: var(--color-white);
}
.selectify-wrapper select {
  height: 0;
}
.selectify.shown .active-wrapper .arrow-icon {
  transform: translateY(-50%) rotate(180deg);
}
.selectify.shown ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.blog-section {
  padding: 14rem 0rem 15rem 0rem;
}
@media (max-width: 991px) {
  .blog-section {
    padding: 10rem 0rem 10rem 0rem;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 5rem 0rem 5rem 0rem;
  }
}
.blog-section .blog-card-wrapper {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .blog-section .blog-card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .blog-section .blog-card-wrapper {
    grid-template-columns: 1fr;
  }
}
.blog-section .sub--heading {
  font-size: var(--md-title-font-size);
  font-family: var(--font-family-spartan);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 2.5rem;
}
.blog-section .sub--heading::after {
  content: "";
  width: 4.3rem;
  height: 0.2rem;
  display: block;
  margin-top: 1rem;
  background-color: var(--color-primary);
}
.blog-section .blog-section-wrapper {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .blog-section .blog-section-wrapper {
    grid-template-columns: auto;
  }
}
.blog-section .blog-section-wrapper .news-card-wrapper {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .blog-section .blog-section-wrapper .news-card-wrapper {
    grid-template-columns: auto;
  }
}
.blog-section .blog-section-wrapper .pagination .page-numbers {
  margin-left: 0;
}
.blog-section .blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.blog-section .blog-sidebar .search {
  position: relative;
  background-color: var(--color-dark-2);
}
.blog-section .blog-sidebar .search input {
  height: 6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-paragraph);
  border: 0;
  width: 100%;
  padding: 0 5rem 0 3rem;
  outline: none;
  background-color: var(--color-dark-2);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.blog-section .blog-sidebar .search input::placeholder {
  color: var(--color-paragraph-1);
  font-size: 1.6rem;
  font-weight: 500;
}
.blog-section .blog-sidebar .search input:focus-visible {
  outline: 2px solid var(--color-primary);
}
.blog-section .blog-sidebar .search button {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--global-color-primary);
}
.blog-section .blog-sidebar .search button svg {
  height: 1.6rem;
  fill: var(--color-primary);
}
.blog-section .blog-sidebar .categories {
  background-color: var(--color-dark-2);
  padding: 3.8rem;
}
.blog-section .blog-sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog-section .blog-sidebar .categories li {
  transition: all 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-family-spartan);
  font-size: var(--sm-heading-font-size);
  font-weight: 500;
  color: var(--color-paragraph);
}
.blog-section .blog-sidebar .categories li a {
  font-size: var(--paragraph-font-size);
  font-weight: 600;
  color: var(--color-paragraph);
  display: flex;
  line-height: 3rem;
  padding: 1.2rem 0;
  flex: 1;
  position: relative;
  text-transform: capitalize;
  padding-right: 1rem;
  transition: all 0.25s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0);
}
.blog-section .blog-sidebar .categories li a:hover {
  color: var(--color-white);
  text-decoration-color: var(--color-white);
}
.blog-section .blog-sidebar .categories li:nth-child(n+2) {
  border-top: 1px solid var(--color-grey);
}
.blog-section .blog-sidebar .post-block {
  background-color: var(--color-dark-2);
  padding: 3.8rem;
}
.blog-section .blog-sidebar .post-block ul {
  list-style: none;
  padding: 0;
}
.blog-section .blog-sidebar .post-block li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.blog-section .blog-sidebar .post-block li a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-paragraph);
  padding: 1.2rem 0;
  flex: 1;
  position: relative;
  text-transform: capitalize;
  padding-right: 1rem;
  transition: all 0.25s ease;
}
.blog-section .blog-sidebar .post-block li .post-img {
  width: 7rem;
  height: 7rem;
  position: relative;
  overflow: hidden;
}
.blog-section .blog-sidebar .post-block li .hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 60%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}
.blog-section .blog-sidebar .post-block li .hover svg {
  fill: var(--color-white);
  height: 2.5rem;
}
.blog-section .blog-sidebar .post-block li h6 {
  font-family: var(--font-family-spartan);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-paragraph);
  line-height: 2.6rem;
  margin-bottom: 0;
}
.blog-section .blog-sidebar .post-block li:hover .hover {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.blog-section .blog-sidebar .post-block li:hover h6 {
  color: var(--color-white);
}
.blog-section .blog-sidebar .post-block li:nth-child(n+2) {
  border-top: 1px solid var(--color-grey);
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-top: 9.2rem;
}
@media (max-width: 991px) {
  .pagination {
    margin-top: 3rem;
  }
}
.pagination .page-numbers {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pagination li,
.pagination span,
.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 4.4rem;
  text-decoration: none;
  height: 4.4rem;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--manrope-font-family);
  color: var(--color-paragraph) !important;
  fill: var(--color-paragraph);
  background-color: var(--color-dark-2);
  transition: all 0.25s ease;
}
.pagination li *.current {
  color: var(--color-black) !important;
  background-color: var(--color-primary);
}
.pagination li *.next {
  background-color: var(--color-primary);
  fill: var(--color-dark-2);
  transition: all 0.25s ease;
}
.pagination li svg {
  width: 2rem;
  transition: all 0.25s ease;
}
[dir=rtl] .pagination li svg {
  transform: rotate(180deg);
}
.pagination li:hover a,
.pagination li:focus a {
  fill: var(--color-dark-2);
  color: var(--color-dark-2) !important;
  background-color: var(--color-primary);
}

.blog-detail-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .blog-detail-section {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .blog-detail-section {
    padding: 50px 0;
  }
}
.blog-detail-section .blog-detail-thumbnail {
  position: relative;
}
.blog-detail-section .blog-detail-thumbnail .post-thumbnail {
  width: 100%;
  max-width: 100%;
  height: 54.7rem;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .blog-detail-section .blog-detail-thumbnail .post-thumbnail {
    height: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-detail-section .blog-detail-thumbnail .post-thumbnail {
    height: 30rem;
  }
}
.blog-detail-section .blog-detail-thumbnail .post-thumbnail a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.blog-detail-section .blog-detail-thumbnail .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease;
}
.blog-detail-section .blog-detail-thumbnail .date {
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
  overflow: hidden;
  width: max-content;
  min-width: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blog-detail-section .blog-detail-thumbnail .date a {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}
.blog-detail-section .blog-detail-thumbnail .date a span {
  display: block;
}
.blog-detail-section .blog-detail-thumbnail .date a .wrapper {
  padding: 1.9rem 2.1rem 1rem 2.1rem;
}
.blog-detail-section .blog-detail-thumbnail .date a .wrapper .day {
  font-size: 3rem;
}
.blog-detail-section .blog-detail-thumbnail .date a .wrapper .month {
  font-weight: 600;
  text-transform: uppercase;
}
.blog-detail-section .border-bottom {
  border-bottom: 1px solid var(--color-border);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.blog-detail-section .project-description {
  font-weight: 600;
  font-size: var(--lg-title-font-size);
  color: var(--color-primary);
  line-height: 1.5;
}
.blog-detail-section .about-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
  list-style: none;
}
.blog-detail-section .about-list .list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5.5px 0;
}
.blog-detail-section .about-list .list-item .list-icon {
  min-height: 20px;
  max-width: 20px;
  fill: var(--color-primary);
  margin-right: 7.5px;
}
.blog-detail-section .about-list .list-item .list-title {
  font-family: var(--manrope-font-family);
  font-size: var(--paragraph-font-size);
  color: var(--color-paragraph);
  font-weight: 500;
  line-height: 18px;
  padding-left: 5px;
  line-height: 30px;
}
.blog-detail-section .blog-detail-img {
  width: 100%;
  max-width: 100%;
  height: 54rem;
  overflow: hidden;
  /* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
  /* Styles the close link, adds the slide down transition */
  /* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
}
@media screen and (max-width: 991px) {
  .blog-detail-section .blog-detail-img {
    height: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-detail-section .blog-detail-img {
    height: 30rem;
  }
}
.blog-detail-section .blog-detail-img .blogdetail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease;
}
.blog-detail-section .blog-detail-img .lightbox-target {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* Hide by default */
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.blog-detail-section .blog-detail-img .lightbox-target.active {
  display: flex; /* Show when active */
}
.blog-detail-section .blog-detail-img .lightbox-target img {
  margin: auto;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.blog-detail-section .blog-detail-img .lightbox-target img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in;
  transform-origin: center;
  transition: transform 0.2s ease; /* Smooth zoom effect */
}
.blog-detail-section .blog-detail-img a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  z-index: 999;
  top: 70px;
  right: 50px;
  border-radius: 50px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .blog-detail-section .blog-detail-img a.lightbox-close {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .blog-detail-section .blog-detail-img a.lightbox-close {
    width: 34px;
    height: 34px;
  }
}
.blog-detail-section .blog-detail-img a.lightbox-close svg {
  width: 35px;
  height: 35px;
  fill: var(--color-black);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .blog-detail-section .blog-detail-img a.lightbox-close svg {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .blog-detail-section .blog-detail-img a.lightbox-close svg {
    height: 25px;
    width: 25px;
  }
}
.blog-detail-section .blog-detail-img .lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.blog-detail-section .blog-detail-img .lightbox-target img {
  max-width: 70%;
  max-height: 70%;
}
.blog-detail-section .blog-detail-img .lightbox-target:target a.lightbox-close {
  top: 70px;
}
.blog-detail-section .main-heading {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 991px) {
  .blog-detail-section .main-heading {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.blog-detail-section .title {
  margin-bottom: 3rem;
  font-weight: 600;
}
.blog-detail-section .blog-swiper-section {
  padding-top: 15rem;
}
@media screen and (max-width: 991px) {
  .blog-detail-section .blog-swiper-section {
    padding-top: 5rem;
  }
}
.blog-detail-section .blog-swiper-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .blog-detail-section .blog-swiper-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.blog-detail-section .blog-swiper-section .slider-header .headings {
  flex: 0.7;
}
.blog-detail-section .blog-swiper-section .slider-header .headings .main-heading {
  padding: 0;
}
.blog-detail-section .blog-swiper-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.blog-detail-section .blog-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.blog-detail-section .blog-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.blog-detail-section .blog-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.blog-detail-section .blog-detail-wrapper {
  max-width: 77rem;
  margin: auto;
}
@media (max-width: 991px) {
  .blog-detail-section .blog-detail-wrapper {
    max-width: 100%;
    margin: auto;
  }
}
.blog-detail-section .blog-detail-wrapper .margin-top {
  margin-top: 3rem;
}

.blog-comment-wrapper {
  max-width: 77rem;
  margin: auto;
}
@media (max-width: 991px) {
  .blog-comment-wrapper {
    max-width: 100%;
  }
}

.comments-area .comments-title {
  margin-bottom: 4.5rem;
}
.comments-area .comments-title::after {
  content: "";
  display: block;
  width: 7.8rem;
  height: 0.3rem;
  margin-top: 1rem;
  background-color: var(--color-primary);
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  font-family: var(--manrope-font-family);
}
.comments-area .comment-list .comment {
  position: relative;
}
.comments-area .comment-list .comment:not(:first-child) {
  margin-top: 5rem;
}
.comments-area .comment-list .parent--comment {
  display: flex;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 3.9rem;
}
@media (max-width: 991px) {
  .comments-area .comment-list .parent--comment {
    padding-bottom: 3.6rem;
  }
}
@media (max-width: 500px) {
  .comments-area .comment-list .parent--comment {
    display: block;
  }
}
.comments-area .comment-list .comment--avatar {
  margin-right: 3.8rem;
  border-radius: 1rem;
}
.comments-area .comment-list .comment--avatar img {
  border-radius: inherit;
}
@media (max-width: 500px) {
  .comments-area .comment-list .comment--avatar {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.comments-area .comment-list .comment--content {
  width: 85%;
}
.comments-area .comment .comment-inner-wrapper {
  margin-bottom: 2rem;
}
.comments-area .comment .comment-inner-wrapper a {
  text-decoration: none;
}
.comments-area .comment .comment-inner-wrapper .name {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.2rem;
  position: relative;
  width: max-content;
  max-width: 70%;
  transition: all 0.25s ease;
  text-decoration-color: rgba(0, 0, 0, 0) !important;
}
.comments-area .comment .comment-inner-wrapper .name:hover {
  text-decoration: underline !important;
  text-decoration-color: var(--color-primary) !important;
  text-decoration-thickness: 2px !important;
}
.comments-area .comment .comment-inner-wrapper .date {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: var(--color-paragraph);
  letter-spacing: initial;
  background: none;
  text-align: left;
}
.comments-area .comment--content p a {
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.25s ease;
}
.comments-area .comment--content p a:hover {
  color: var(--color-white);
}
.comments-area .comment--content > *:nth-child(n+2) {
  margin-top: 1.5rem;
}
.comments-area .comment-list .comment--content .reply-button {
  margin-top: 1.5rem;
}
.comments-area .reply-button a {
  display: inline-block;
  text-decoration: none;
  padding: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.4rem;
  background-color: transparent;
  color: var(--color-primary) !important;
  cursor: pointer;
  transition: all 0.25s ease;
}
.comments-area .reply-button a:hover {
  color: var(--color-white) !important;
}
.comments-area .comment-list .comment .comment .parent--comment {
  padding-left: 15%;
}
@media (max-width: 991px) {
  .comments-area .comment-list .comment .comment .parent--comment {
    padding-left: 2.5%;
  }
}
@media (max-width: 991px) {
  .comments-area .comment-list .comment .comment {
    margin-left: 3.5%;
  }
}

.comment-form--wrapper {
  padding: 10rem 0 14rem 0;
}
@media (max-width: 991px) {
  .comment-form--wrapper {
    padding: 5rem 0 7rem 0;
  }
}
@media (max-width: 767px) {
  .comment-form--wrapper {
    padding: 5rem 0 5rem 0;
  }
}
.comment-form--wrapper .main-heading {
  font-size: 3.4rem;
  margin-bottom: 6.2rem;
}
.comment-form--wrapper .main-heading a {
  color: var(--color-primary);
  text-decoration: none;
}
.comment-form--wrapper .comment-form .form-floating {
  height: 100%;
  position: relative;
}
.comment-form--wrapper .comment-form .form-floating .form-control {
  height: 4.8rem;
  font-family: var(--manrope-font-family);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-paragraph);
  padding: 1rem 0.75rem;
  line-height: 1.25;
  border-radius: none;
  width: 100%;
  border: 0;
  outline: none;
  border-bottom: 1px solid var(--color-grey);
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}
.comment-form--wrapper .comment-form .form-floating .form-control:focus {
  box-shadow: none;
  border-color: var(--color-primary);
  outline: none;
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.comment-form--wrapper .comment-form .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  font-family: var(--manrope-font-family);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem 0.75rem;
  pointer-events: none;
  color: var(--color-paragraph);
  border: 1px solid transparent;
  transform-origin: 0% 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.comment-form--wrapper .comment-form .comment-form .textarea-group {
  margin-top: 2rem;
}
.comment-form--wrapper .comment-form .comment-form .textarea-group textarea {
  width: 100%;
  height: 100%;
  height: 11rem;
  resize: none;
}
.comment-form--wrapper .comment-form .cookies-consent {
  width: 100%;
  margin-top: 2.4rem;
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.6rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
@media (max-width: 250px) {
  .comment-form--wrapper .comment-form .cookies-consent {
    padding-left: 0;
    padding-top: 35px;
  }
}
@media (max-width: 991px) {
  .comment-form--wrapper .comment-form .cookies-consent {
    margin-top: 5rem;
  }
}
.comment-form--wrapper .comment-form .cookies-consent input {
  height: initial;
  margin-right: 1rem;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.comment-form--wrapper .comment-form .cookies-consent .paragraph {
  font-size: inherit;
  color: var(--color-paragraph);
  line-height: initial;
  cursor: pointer;
}
@media (max-width: 575px) {
  .comment-form--wrapper .comment-form .cookies-consent .paragraph {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.comment-form--wrapper .comment-form .cookies-consent .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  background-color: transparent;
  border: 2px solid var(--color-grey);
}
.comment-form--wrapper .comment-form .cookies-consent input:checked ~ .checkmark {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.comment-form--wrapper .comment-form .cookies-consent .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.comment-form--wrapper .comment-form .cookies-consent input:checked ~ .checkmark:after {
  display: block;
}
.comment-form--wrapper .comment-form .cookies-consent .checkmark:after {
  content: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>check</title><path d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\" /></svg>");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comment-form--wrapper .comment-form .comment-form .flex-input {
  display: flex;
  gap: 2rem;
}
.comment-form--wrapper .comment-form .comment-form .flex-input .field-group {
  width: 100%;
}
@media (max-width: 991px) {
  .comment-form--wrapper .comment-form .comment-form .flex-input {
    flex-direction: column;
  }
}
.comment-form--wrapper .comment-form .comment-submit {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  fill: var(--color-primary);
  border: none;
  outline: none;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.7rem 3.7rem 1.7rem 4rem;
  font-family: var(--manrope-font-family);
  font-size: var(--sm-paragraph-font-size);
  font-weight: 600;
  letter-spacing: 0.2rem;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: var(--color-primary);
  transition: all 0.25s ease;
  margin-top: 3rem;
  width: 100%;
}
.comment-form--wrapper .comment-form .comment-submit:hover, .comment-form--wrapper .comment-form .comment-submit:focus {
  color: var(--color-white);
  fill: var(--color-white);
  border-color: var(--color-white);
}
.comment-form--wrapper .comment-form .form-floating > .form-control ~ label,
.comment-form--wrapper .comment-form .form-floating > .form-control ~ label {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}
.comment-form--wrapper .comment-form .form-floating > .form-control:focus ~ label {
  transform: scale(0.85) translateY(-2rem) translateX(0.15rem);
  top: 0;
  opacity: 0.65;
}
.comment-form--wrapper .comment-form-container {
  max-width: 77rem;
  margin: auto;
}
@media (max-width: 991px) {
  .comment-form--wrapper .comment-form-container {
    max-width: 100%;
  }
}

.hero-slider-section {
  position: relative;
}
.hero-slider-section .swiper {
  height: 100%;
  width: 100%;
}
.hero-slider-section .hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}
.hero-slider-section .hero-slide .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-slider-section .hero-slide .hero-slide-bg .hero-slide-video-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-slider-section .hero-slide .hero-slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider-section .hero-slide .hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.hero-slider-section .hero-slide .container {
  height: 100%;
}
.hero-slider-section .hero-slide .hero-slide-content {
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  padding: 26.8rem 25px 33.2rem 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-slider-section .hero-slide .hero-slide-content {
    padding: 17.8rem 25px 25rem 25px;
  }
}
@media (max-width: 767px) {
  .hero-slider-section .hero-slide .hero-slide-content {
    padding: 17.8rem 0px 25rem 0px;
  }
}
.hero-slider-section .hero-slide .hero-slide-content .hero-content-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero-slider-section .hero-slide .hero-slide-content .hero-content-inner .main-heading {
  font-size: 7rem;
  font-weight: 400;
  line-height: 9rem;
}
@media (max-width: 1024px) {
  .hero-slider-section .hero-slide .hero-slide-content .hero-content-inner .main-heading {
    font-size: 4rem;
    line-height: 1.5;
  }
}
.hero-slider-section .hero-slide .hero-slide-content .hero-content-inner .btn-block {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-slider-section .hero-slide .hero-slide-content .hero-content-inner .btn-block {
    flex-direction: column;
  }
  .hero-slider-section .hero-slide .hero-slide-content .hero-content-inner .btn-block .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .hero-slider-section .hero-slide .hero-slide-content .hero-content-inner {
    width: 60%;
  }
}
.hero-slider-section .hero-slide .hero-illustration {
  z-index: 1;
}
.hero-slider-section .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
}
.hero-slider-section .slider-nav-btn:hover {
  opacity: 1;
}
.hero-slider-section .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.hero-slider-section .slider-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 991px) {
  .hero-slider-section .slider-nav {
    margin-top: 0;
  }
}
.hero-slider-section .slider-nav-wrapper {
  position: absolute;
  left: 0;
  bottom: 10rem;
  width: 100%;
  z-index: 10;
}
.hero-slider-section .slider-nav-text div {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: var(--color-white);
}
.hero-slider-section .slider-nav-text div.slider-nav-separator {
  opacity: 0.4;
}
.hero-slider-section .hero-slider-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-nav {
    padding: 0 2.5rem;
  }
}
.hero-slider-section .hero-slider-nav .slider-caption {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  margin-right: auto;
}
[dir=rtl] .hero-slider-section .hero-slider-nav .slider-caption {
  margin-left: 0;
}

.illustration-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  --line-color: var(--color-primary);
  --color-secondary: var(--color-white);
}
.illustration-lines .illustration-lines-canvas-1 {
  width: 166px;
  height: 75%;
  position: absolute;
  bottom: 0;
}
[dir=rtl] .illustration-lines .illustration-lines-canvas-1 {
  right: 0;
}
@media (max-width: 1600px) {
  .illustration-lines .illustration-lines-canvas-1 {
    left: -60px;
  }
}
@media (max-width: 1400px) {
  .illustration-lines .illustration-lines-canvas-1 {
    left: -100px;
  }
}
@media (max-width: 1300px) {
  .illustration-lines .illustration-lines-canvas-1 {
    display: none;
  }
}
.illustration-lines .illustration-lines-canvas-2 {
  width: 166px;
  height: 20%;
  position: absolute;
  top: 0;
}
[dir=rtl] .illustration-lines .illustration-lines-canvas-2 {
  right: 0;
}
@media (max-width: 1600px) {
  .illustration-lines .illustration-lines-canvas-2 {
    left: -60px;
  }
}
@media (max-width: 1400px) {
  .illustration-lines .illustration-lines-canvas-2 {
    display: none;
  }
}
.illustration-lines .illustration-lines-canvas-3 {
  width: 250px;
  height: 75%;
  position: absolute;
  top: 0;
  right: 0;
}
[dir=rtl] .illustration-lines .illustration-lines-canvas-3 {
  left: 0;
}
@media (max-width: 1600px) {
  .illustration-lines .illustration-lines-canvas-3 {
    display: none;
  }
}
.illustration-lines .illustration-lines-canvas-4 {
  width: 166px;
  height: 20%;
  position: absolute;
  bottom: 0;
  right: 0;
}
[dir=rtl] .illustration-lines .illustration-lines-canvas-4 {
  left: 0;
}
@media (max-width: 1300px) {
  .illustration-lines .illustration-lines-canvas-4 {
    display: none;
  }
}
.illustration-lines .illustration-lines-canvas-inverse {
  transform: scale(-1);
}
.illustration-lines .illustration-lines-canvas-color-secondary {
  --line-color: var(--color-secondary);
}
.illustration-lines .line-type-1 {
  fill: var(--color-primary);
}
.illustration-lines .line-type-2 {
  fill: var(--color-secondary);
}
.illustration-lines .line-1 {
  width: 17rem;
  transform: translateX(-15%);
  stroke: var(--color-secondary);
  fill: transparent;
}
.illustration-lines .line-1-svg {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .illustration-lines .line-1-svg {
    display: none;
  }
}
.illustration-lines .line-2 {
  width: 17rem;
  stroke: var(--color-primary);
  fill: transparent;
}
.illustration-lines .line-2-svg {
  position: absolute;
  left: -25%;
  bottom: 0;
  width: 100%;
  height: 50rem;
}
@media only screen and (max-width: 991px) {
  .illustration-lines .line-2-svg {
    display: none;
  }
}
.illustration-lines .line-3 {
  stroke: var(--color-primary);
  fill: transparent;
}
.illustration-lines .line-3-svg {
  position: absolute;
  top: -50%;
  right: -43%;
  max-height: initial;
}
@media only screen and (max-width: 991px) {
  .illustration-lines .line-3-svg {
    display: none;
  }
}
.illustration-lines .line-4 {
  stroke: var(--color-secondary);
  fill: transparent;
}
.illustration-lines .line-4-svg {
  position: absolute;
  right: -10%;
  bottom: -20%;
}
@media only screen and (max-width: 991px) {
  .illustration-lines .line-4 {
    display: none;
  }
}

.page-header .illustration-lines {
  z-index: initial;
}
.page-header .illustration-lines .line-1-svg {
  height: 150%;
  max-height: initial;
  top: -75%;
}
.page-header .illustration-lines .line-2-svg {
  bottom: -50%;
}
.page-header .illustration-lines .line-3-svg {
  top: -175%;
  right: -45%;
}
.page-header .illustration-lines .line-4-svg {
  bottom: -70%;
}

.waves-illustration {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -30px;
  display: flex;
  width: 200vw;
}
@media only screen and (max-width: 991px) {
  .waves-illustration {
    width: 500%;
  }
}
@media only screen and (max-width: 757px) {
  .waves-illustration {
    width: 1000%;
  }
}
.waves-illustration .first-wave,
.waves-illustration .second-wave {
  flex: 1;
}
.waves-illustration path {
  stroke: var(--color-primary) !important;
}

.illustration-boxes-1-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: absolute;
}
.illustration-boxes-1-grid-left {
  top: 2rem;
  left: 2rem;
}
@media only screen and (max-width: 991px) {
  .illustration-boxes-1-grid-left {
    display: none;
  }
}
@media only screen and (max-width: 1700px) {
  .illustration-boxes-1-grid-left {
    display: none;
  }
}
.illustration-boxes-1-grid-right {
  bottom: 2rem;
  right: 2rem;
  transform: rotate(180deg);
}
@media only screen and (max-width: 1700px) {
  .illustration-boxes-1-grid-right {
    left: 2rem;
    right: unset;
    transform: scaleY(-1);
  }
}
.illustration-boxes-1-row {
  display: flex;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
}
.illustration-boxes-1-row--1 {
  margin-top: 0.8rem;
}
@media only screen and (max-width: 1400px) {
  .illustration-boxes-1-row--1 {
    display: none;
  }
}
.illustration-boxes-1-item {
  --box-color: var(--color-primary);
  border: 0.2rem solid var(--box-color);
  width: 4.5rem;
  height: 4.5rem;
}
.illustration-boxes-1-item--1 {
  transform: translate(1.4rem, 1.2rem);
}
.illustration-boxes-1-item--2 {
  transform: translate(2.4rem, 0.3rem);
}
.illustration-boxes-1-item--3 {
  transform: translate(0.9rem, 0);
}
.illustration-boxes-1-item--4 {
  transform: translate(-1rem, 5.9rem);
}
.illustration-boxes-1-item--5 {
  transform: translate(-1.6rem, 0.3rem);
}
.illustration-boxes-1-item--6 {
  transform: translate(2.7rem, 3.2 rem);
}

.illustration-boxes-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.illustration-boxes-2-item {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.illustration-boxes-2-item--filled {
  background-color: var(--color-primary);
}
.illustration-boxes-2-item--border {
  border: 0.3rem solid var(--color-primary);
}
.illustration-boxes-2-item--border-thick {
  border: 0.6rem solid var(--color-primary);
}
@media only screen and (max-width: 991px) {
  .illustration-boxes-2-item--hide-in-mobile {
    display: none;
  }
}
.illustration-boxes-2-item--1 {
  top: 12.3rem;
  left: 9.1rem;
  width: 2.1rem;
  height: 2.1rem;
}
.illustration-boxes-2-item--2 {
  width: 9.7rem;
  height: 9.7rem;
  left: 10rem;
}
.illustration-boxes-2-item--3 {
  width: 18.8rem;
  height: 18.8rem;
  top: 5.8rem;
  left: -4.4rem;
}
.illustration-boxes-2-item--4 {
  width: 4rem;
  height: 4rem;
  left: 4rem;
  bottom: 6rem;
}
.illustration-boxes-2-item--5 {
  width: 6rem;
  height: 6rem;
  top: -8rem;
  left: -8rem;
}
.illustration-boxes-2-item--6 {
  width: 30.2rem;
  height: 30.2rem;
}
.illustration-boxes-2-item--7 {
  width: 9.7rem;
  height: 9.7rem;
  top: 6.2rem;
  left: -7.2rem;
}
.illustration-boxes-2-item--8 {
  width: 18.8rem;
  height: 18.8rem;
  top: -7.3rem;
}
.illustration-boxes-2-item--9 {
  width: 2.1rem;
  height: 2.1rem;
  top: 6.1rem;
  left: 22rem;
}
.illustration-boxes-2-item--10 {
  width: 6.2rem;
  height: 6.2rem;
}
.illustration-boxes-2-item--11 {
  width: 17.8rem;
  height: 17.8rem;
  top: 7.4rem;
  left: 7.7rem;
}
.illustration-boxes-2-item--12 {
  width: 26.4rem;
  height: 26.4rem;
  top: 10.4rem;
  left: 17.6rem;
}
.illustration-boxes-2-item--13 {
  width: 2.2rem;
  height: 2.2rem;
  top: 30rem;
  left: 7.7rem;
}
.illustration-boxes-2-item--14 {
  width: 17.8rem;
  height: 17.8rem;
  top: -15.2rem;
  right: 2.5rem;
}
.illustration-boxes-2-item--15 {
  width: 2.1rem;
  height: 2.1rem;
  top: 8rem;
  right: 23rem;
}
.illustration-boxes-2-item--16 {
  width: 48.2rem;
  height: 48.2rem;
  top: 14rem;
  right: -21.9rem;
}
.illustration-boxes-2-item--17 {
  bottom: 4rem;
  right: 6rem;
  width: 2.1rem;
  height: 2.1rem;
}
.illustration-boxes-2-item-wrapper {
  position: absolute;
}
.illustration-boxes-2-item-wrapper--1 {
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}
.illustration-boxes-2-item-wrapper--2 {
  bottom: 15rem;
  left: 15%;
}
.illustration-boxes-2-item-wrapper--3 {
  top: 0;
  left: 40%;
}
.illustration-boxes-2-item-wrapper--4 {
  top: 55%;
  right: 40%;
  transform: translateY(-50%);
}
.illustration-boxes-2-item-wrapper--5 {
  top: 0;
  right: 0;
}

.navigation-menu {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  z-index: 9999;
}
.navigation-menu-wrapper {
  height: 100%;
}
.navigation-menu ul {
  margin: 0;
}
.navigation-menu > li > a {
  padding: 0 25px;
}
.navigation-menu > li > a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navigation-menu > li > a:hover::after {
  width: 100%;
  opacity: 1;
}
.navigation-menu li {
  height: 100%;
  list-style: none;
}
.navigation-menu a {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  outline: 0;
  position: relative;
}
.navigation-menu a .icon {
  width: 6px;
  height: 11px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.navigation-menu a .icon svg {
  vertical-align: top;
}
.navigation-menu .menu-item-has-children {
  position: relative;
}
.navigation-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  padding: 2rem 0;
  min-width: 28rem;
  margin-top: 15px;
  margin-left: -25px;
}
.navigation-menu .sub-menu li a {
  opacity: 0;
  visibility: hidden;
  padding: 1.4rem 3rem 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.navigation-menu .sub-menu li a svg {
  fill: var(--color-white);
}
.navigation-menu .sub-menu li:hover > a,
.navigation-menu .sub-menu li.current-menu-item > a {
  background-color: var(--color-primary);
  color: var(--color-black);
}
.navigation-menu .sub-menu li:hover > a svg,
.navigation-menu .sub-menu li.current-menu-item > a svg {
  fill: var(--color-black);
}
.navigation-menu .sub-menu .sub-menu {
  top: 0;
  left: calc(100% - 1px);
  background-color: var(--color-black);
  box-shadow: inset 25px 0px 25px -25px rgba(0, 0, 0, 0.2), 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
  margin-left: 0;
}
.navigation-menu .sub-menu .sub-menu a {
  color: var(--color-white);
}
.navigation-menu > .menu-item-has-children {
  position: relative;
}
.navigation-menu > .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
}
.navigation-menu > .menu-item-has-children .menu-item-has-children {
  position: static;
}

.nav-dropdown-bg {
  position: absolute;
  background-color: var(--color-black);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  transform-origin: center center;
  pointer-events: none;
  display: block;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.nav-dropdown-bg-icon,
.nav-dropdown-bg .icon {
  position: absolute;
  top: -16px;
  left: 50px;
  z-index: inherit;
  transform: scale(1);
  display: block;
  pointer-events: none;
}
.nav-dropdown-bg-icon svg,
.nav-dropdown-bg .icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-black);
}
.nav-dropdown-bg-icon {
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.nav-dropdown-bg .icon {
  opacity: 0;
}

.sticky-nav {
  position: fixed !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.sticky-nav .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.sticky-nav.scrolled {
  top: 0 !important;
  background-color: #000000 !important;
}
.sticky-nav.scrolled .nav-wrapper {
  height: 60px;
}
.sticky-nav .elementor-container,
.sticky-nav .e-con-inner {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.elementor-widget-growla_menu .elementor-widget-container {
  height: 100%;
}

.header-wrapper {
  z-index: 9999;
}
@media (max-width: 991px) {
  .header-wrapper.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .header-wrapper.mobile {
    display: none;
  }
}

.mobile.navigation-menu {
  display: block;
  position: relative;
  padding: 0;
  --item-font-size: 18px;
  --item-font-weight: 500;
  --item-line-height: 60px;
  --item-color-normal: var(--color-paragraph);
}
.mobile.navigation-menu li {
  width: 100%;
  height: auto;
  display: block;
}
.mobile.navigation-menu li.menu-item a {
  padding-right: 0;
  padding-left: 0;
  font-size: var(--item-font-size);
  font-weight: var(--item-font-weight);
  line-height: var(--item-line-height);
  color: var(--item-color-normal);
}
.mobile.navigation-menu li.menu-item a::after {
  display: none;
}
.mobile.navigation-menu li:hover,
.mobile.navigation-menu li:focus,
.mobile.navigation-menu li:active,
.mobile.navigation-menu li.current-menu-item,
.mobile.navigation-menu li.current-menu-ancestor {
  color: var(--color-white);
}
.mobile.navigation-menu li:hover > a,
.mobile.navigation-menu li:focus > a,
.mobile.navigation-menu li:active > a,
.mobile.navigation-menu li.current-menu-item > a,
.mobile.navigation-menu li.current-menu-ancestor > a {
  background-color: transparent;
  color: inherit !important;
}
.mobile.navigation-menu li:hover > a .icon,
.mobile.navigation-menu li:focus > a .icon,
.mobile.navigation-menu li:active > a .icon,
.mobile.navigation-menu li.current-menu-item > a .icon,
.mobile.navigation-menu li.current-menu-ancestor > a .icon {
  fill: var(--color-primary);
}
.mobile.navigation-menu .icon {
  fill: var(--item-color-normal);
  width: 25px;
  height: 30px;
  pointer-events: none;
}
.mobile.navigation-menu .menu-item-has-children {
  position: static;
}
.mobile.navigation-menu .sub-menu {
  top: 0;
  width: 100%;
  left: 100%;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  min-width: 100%;
}
.mobile.navigation-menu .sub-menu li a {
  padding: 0;
  font-size: var(--item-font-size);
  font-weight: var(--item-font-weight);
  line-height: var(--item-line-height);
  color: var(--item-color-normal);
}
.mobile.navigation-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  background-color: transparent;
  box-shadow: none;
}
.mobile.navigation-menu .back-button a {
  justify-content: initial;
  align-items: center;
  color: var(--color-paragraph) !important;
}
.mobile.navigation-menu .back-button a .icon {
  transform: rotate(180deg);
  fill: var(--color-primary);
  margin-right: 0.8rem;
  width: 25px;
  height: 25px;
}
.mobile.navigation-menu .back-button a .icon svg {
  fill: var(--color-paragraph);
}
.mobile.navigation-menu .back-button:hover > a {
  color: var(--color-white) !important;
}
.mobile.navigation-menu .back-button:hover > a .icon svg {
  fill: var(--color-white);
}

.desktop.navigation-menu {
  padding: 0;
}
.desktop.navigation-menu > li {
  display: flex;
  align-items: center;
}
.desktop.navigation-menu > li > a {
  height: unset;
}
.desktop.navigation-menu > li > a::after {
  bottom: -5px;
}
.desktop.navigation-menu > .menu-item-has-children > a::after {
  display: none;
}
.desktop.navigation-menu > .menu-item-has-children > a .icon {
  width: 9px;
  height: auto;
  margin-left: 0.5rem;
  fill: var(--color-primary);
  display: inline-flex;
}
.desktop.navigation-menu > li {
  position: relative;
}
.desktop.navigation-menu > .current-menu-ancestor::after,
.desktop.navigation-menu > .current-menu-item::after {
  display: block;
}
.desktop.navigation-menu > li {
  padding: 0;
  padding-right: 4.5rem;
}
.desktop.navigation-menu > li > a {
  justify-content: flex-start;
  padding: 0;
}

.desktop-wrapper.navigation-menu-wrapper.swiper-container {
  max-width: 100%;
  overflow: visible;
}
.desktop-wrapper.navigation-menu-wrapper.swiper-container:not(.swiper-backface-hidden) {
  clip-path: inset(0 0 -100vw 0);
}
.desktop-wrapper.navigation-menu-wrapper.swiper-container .swiper-wrapper {
  max-width: 100%;
}
.desktop-wrapper.navigation-menu-wrapper.swiper-container .swiper-slide:last-child::after {
  width: calc(85% + 3rem);
  left: calc(50% + 1rem);
}
.desktop-wrapper.navigation-menu-wrapper .swiper-slide {
  width: auto;
}
.desktop-wrapper.navigation-menu-wrapper .swiper-slide:last-child {
  margin-right: 0 !important;
  padding-right: 0;
}
.desktop-wrapper.navigation-menu-wrapper .swiper-slide-active,
.desktop-wrapper.navigation-menu-wrapper .swiper-slide-active ~ .swiper-slide {
  opacity: 1;
  visibility: visible;
}

.navigation-menu {
  flex-wrap: unset;
}

.default-navigation {
  width: 80%;
}

.navigation-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.menu-slider-nav {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-top: -0.2rem;
  cursor: pointer;
}
.menu-slider-nav svg {
  height: 20px;
  fill: var(--color-white);
}
.menu-slider-nav-prev {
  margin-right: 3rem;
}
.menu-slider-nav-next {
  margin-left: 3rem;
}
.menu-slider-nav.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.menu-slider-nav .swiper-button-lock {
  display: none;
}

.desktop-nav-wrapper {
  position: fixed;
  top: 50vh;
  right: 0;
  z-index: 99999;
}

.growla-full-screen-nav-trigger {
  position: relative;
  z-index: 99999999;
}
.growla-full-screen-nav-trigger-bar {
  width: 0.2rem;
  min-height: 4.5rem;
  flex: 1;
  background-color: var(--color-white);
  transform-origin: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.growla-full-screen-nav-trigger-bar-wrapper {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  margin-right: 5rem;
}
.growla-full-screen-nav-trigger-bar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.3rem;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}
.growla-full-screen-nav-trigger.animated-state .growla-full-screen-nav-trigger-bar-text {
  opacity: 0;
  visibility: hidden;
}
.growla-full-screen-nav-trigger.animated-state .growla-full-screen-nav-trigger-bar-first {
  transform: rotate(-45deg) translateX(8px);
}
.growla-full-screen-nav-trigger.animated-state .growla-full-screen-nav-trigger-bar-second {
  transform: rotate(45deg) translateX(-8px);
}
.growla-full-screen-nav-content {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 9999999;
  background-color: var(--color-primary);
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.growla-full-screen-nav-content-inner {
  width: calc(100% - 8px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0.4rem;
  background-color: var(--color-black);
  transform: translateX(-100%);
  z-index: -1;
}
.growla-full-screen-nav-content-container {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
}
.growla-full-screen-nav-content-container > * {
  flex: 1;
}
.growla-full-screen-nav-content-wrapper {
  padding: 10rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.growla-full-screen-nav-content-logo {
  max-height: 20rem;
}
.growla-full-screen-nav-content-logo img {
  max-height: 20rem;
  object-fit: contain;
}
.growla-full-screen-nav-content-image {
  position: absolute;
  top: 0;
  right: 4px;
  width: 40vw;
  height: 100vh;
  transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
}
[dir=rtl] .growla-full-screen-nav-content-image {
  transform: translateX(50%);
}
.growla-full-screen-nav-content-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.growla-full-screen-nav-content-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.growla-full-screen-nav-content-menu li a {
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: block;
  text-decoration: none;
}
.growla-full-screen-nav-content-menu li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.growla-full-screen-nav-content-menu li a:hover::after {
  width: 100%;
  opacity: 1;
}
.growla-full-screen-nav-content-menu li a:hover {
  color: var(--color-primary);
}
.growla-full-screen-nav-content-menu ul > li {
  position: relative;
  width: 20rem;
}
.growla-full-screen-nav-content-menu ul > li.animated > a {
  color: var(--color-primary);
}
.growla-full-screen-nav-content-menu ul > li.animated > a::after {
  width: 100%;
  opacity: 1;
}
.growla-full-screen-nav-content-menu > ul > li > .sub-menu {
  margin: 0;
  position: absolute;
  top: 0;
  left: 110%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2.5rem);
}
.growla-full-screen-nav-content-menu > ul > li > .sub-menu > li {
  width: 30rem;
}
.growla-full-screen-nav-content-menu > ul > li > .sub-menu > li a {
  font-size: 2rem;
  font-weight: 500;
  text-decoration: 0.2rem underline transparent;
  text-underline-offset: 0.5rem;
}
.growla-full-screen-nav-content-menu > ul > li > .sub-menu > li a:hover::after {
  width: 0;
  opacity: 0;
}
.growla-full-screen-nav-content-menu > ul > li > .sub-menu > li a:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
.growla-full-screen-nav-content .growla-button {
  width: max-content;
  padding: 0;
}
.growla-full-screen-nav-content .growla-button::before {
  display: none;
}
.growla-full-screen-nav-content .growla-button:hover {
  --color: var(--color-white);
}
.growla-full-screen-nav .btn-arrow {
  justify-content: flex-start;
}

.hamburger-icon {
  cursor: pointer;
}
.hamburger-content {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  transition: all 0.5s ease-in-out;
}
.hamburger.direction-left .hamburger-content {
  transform: translateX(-100%);
}
.hamburger.direction-right .hamburger-content {
  right: -100%;
}
.hamburger.shown.direction-left .hamburger-content {
  transform: translateX(0);
}
.hamburger.shown.direction-right .hamburger-content {
  right: 0;
}
.hamburger-close {
  font-size: 22px;
  height: 22px;
  color: var(--color-white);
  fill: var(--color-white);
  cursor: pointer;
}
.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-dark-rgba-60);
  opacity: 0;
  visibility: hidden;
  z-index: 9999999;
  transition: all 0.5s ease-in-out;
}
.hamburger.shown .hamburger-overlay {
  opacity: 1;
  visibility: visible;
}

.hamburger-content {
  --padding-left: 3.8rem;
  --padding-right: 3.8rem;
}
.hamburger-content a {
  text-decoration: none;
}
.hamburger-content-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  display: flex;
  flex-direction: column;
  padding: 2.3rem 0;
}
.hamburger-content-header {
  display: flex;
  justify-content: space-between;
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
}
.hamburger-content-main {
  margin-top: 5.5rem;
}
.hamburger-content-main .navigation-menu > li::after {
  display: none;
}
.hamburger-content-main .navigation-menu > li > a {
  padding: 0 0;
}
.hamburger-content-main .navigation-menu .sub-menu {
  margin-top: 0;
  margin-left: 3.8rem;
}
.hamburger-content-main ul {
  padding: 0 var(--padding-left) 0 var(--padding-right) !important;
}
.hamburger-content-footer {
  margin-top: auto;
}
.hamburger-content-footer .btn-block {
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
  margin-top: 20px;
}
.hamburger-content-footer .hamburger-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
  margin-top: 20px;
}
.hamburger-content-social ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hamburger-content-social li {
  width: 3.1rem;
  height: 3.1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-dark-3);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.hamburger-content-social li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-content-social li .icon {
  font-size: 1.4rem;
  height: 1.4rem;
  color: var(--color-paragraph-1);
  fill: var(--color-paragraph-1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.hamburger-content-social li:hover, .hamburger-content-social li:focus, .hamburger-content-social li:active {
  background-color: var(--color-primary);
}
.hamburger-content-social li:hover .icon, .hamburger-content-social li:focus .icon, .hamburger-content-social li:active .icon {
  color: var(--color-white);
  fill: var(--color-white);
}
.hamburger-content .bottom-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  color: var(--color-paragraph-1);
  margin-top: 2.3rem;
}
.hamburger-content .hamburger-inner-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  border-style: solid;
  border-width: 0px 3px 0px 3px;
  border-color: var(--color-primary);
  padding-top: 5rem;
}

body.elementor-editor-active .hamburger.shown .hamburger-content {
  left: 0;
}

.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999999;
  padding: 1.5rem;
  background-color: var(--color-black);
  fill: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.back-to-top-inner {
  width: 2rem;
  height: 2rem;
  fill: inherit;
}
.back-to-top svg {
  width: 100%;
  height: 100%;
  fill: inherit;
}
.back-to-top.scrolled {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--color-primary);
  fill: var(--color-black);
}

.clients-swiper-section {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .clients-swiper-section {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .clients-swiper-section {
    padding: 5rem 0;
  }
}
.clients-swiper-section .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10rem;
  gap: 3rem;
}
@media (max-width: 991px) {
  .clients-swiper-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
.clients-swiper-section .slider-header .headings {
  flex: 0.7;
}
.clients-swiper-section .slider-header .slider-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.clients-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-white);
  fill: var(--color-white);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
  opacity: 0.4;
  transition: all 0.25s ease;
}
.clients-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn svg {
  height: 4rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.clients-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn:hover {
  fill: var(--color-primary);
  opacity: 1;
}
.clients-swiper-section .slider-header .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.1;
}
.clients-swiper-section .swiper {
  width: 100%;
  height: 100%;
}
.clients-swiper-section .swiper-slide {
  border-left: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.clients-swiper-section .swiper-slide:not(.swiper-slide-active) {
  border-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .clients-swiper-section .swiper-slide {
    border: none;
  }
}

.client-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 11.7rem;
}
.client-slide a {
  display: inherit;
  justify-content: inherit;
  align-items: inherit;
  width: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.client-slide img {
  opacity: 0.2;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.client-slide:hover img, .client-slide:focus img {
  opacity: 1;
}

.error-page {
  background-image: url(aff5be3752adbb29474c.jpg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15rem 0;
}
.error-page .error-page-content {
  width: 70%;
}
@media (max-width: 767px) {
  .error-page .error-page-content {
    width: 100%;
  }
}
.error-page .error-page-content .main-heading {
  font-size: 7rem;
  line-height: 1.28;
  font-weight: 400;
}
@media (max-width: 991px) {
  .error-page .error-page-content .main-heading {
    font-size: 4.5rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .error-page .error-page-content .main-heading {
    font-size: 3rem;
    line-height: 1.6;
  }
}
.error-page .error-page-content .main-heading.top-heading {
  color: var(--color-primary);
}
.error-page .error-page-content .btn-block {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.error-page .illustration-lines {
  z-index: 0;
}

.project-card-vertical, .project-list-wrapper.project-list-vertical .project-card {
  flex-direction: column;
}
.project-card-vertical .project-content, .project-list-wrapper.project-list-vertical .project-card .project-content {
  text-align: center;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 7rem;
  gap: 2rem;
}
.project-card-vertical .project-content .categories, .project-list-wrapper.project-list-vertical .project-card .project-content .categories {
  display: block;
}
@media only screen and (max-width: 991px) {
  .project-card-vertical .project-content, .project-list-wrapper.project-list-vertical .project-card .project-content {
    padding: 3rem;
  }
}

.project-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.project-list-wrapper.project-list-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .project-list-wrapper.project-list-vertical {
    grid-template-columns: 1fr;
  }
}
.project-list-wrapper.project-list-horizontal .project-content {
  padding-top: 5rem !important;
  padding-bottom: 7rem !important;
}
.project-list-header {
  margin-bottom: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  .project-list-header {
    flex-direction: column;
    margin-bottom: 3rem;
    align-items: initial;
  }
}
.project-list-header .headings {
  flex: 0.6;
}
@media only screen and (max-width: 991px) {
  .project-list-header .headings {
    flex: 1;
  }
}
.project-list-layout-switcher {
  display: flex;
  justify-content: flex-end;
  flex: 0.4;
}
@media only screen and (max-width: 991px) {
  .project-list-layout-switcher {
    justify-content: flex-start;
    flex: 1;
    width: 100%;
  }
}
.project-list-layout-switcher svg {
  fill: inherit;
  height: 2.4rem;
}
.project-list-layout-horizontal, .project-list-layout-vertical {
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 1rem;
  fill: var(--color-paragraph);
}
.project-list-layout-horizontal:hover, .project-list-layout-horizontal.project-list-layout-active, .project-list-layout-vertical:hover, .project-list-layout-vertical.project-list-layout-active {
  fill: var(--color-primary);
}

.project-card {
  width: 100%;
  text-decoration: none;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .project-card {
    flex-direction: column;
  }
}
.project-card .project-thumbnail {
  width: 100%;
  min-height: 45.6rem;
  max-height: 45.6rem;
  flex: 1.3;
  overflow: hidden;
}
.project-card .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--anim-duration) ease;
}
@media only screen and (max-width: 991px) {
  .project-card .project-thumbnail {
    min-height: 3rem;
  }
}
.project-card .project-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-dark-1);
  font-size: 2rem;
  color: var(--color-white);
  transition: all 0.5s ease;
}
[dir=rtl] .project-card .project-icon {
  right: 0;
}
.project-card .project-icon svg {
  fill: var(--color-paragraph);
  width: 2.5rem;
  transition: inherit;
}
[dir=rtl] .project-card .project-icon svg {
  transform: rotate(180deg);
}
.project-card .project-content {
  position: relative;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  flex: 1;
  background-color: var(--color-dark-2);
  gap: 2rem;
}
.project-card .project-content h4 {
  color: var(--color-white);
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .project-card .project-content h4 {
    width: 90%;
  }
}
.project-card:hover .project-icon, .project-card:focus .project-icon {
  background-color: var(--color-primary);
}
.project-card:hover .project-icon svg, .project-card:focus .project-icon svg {
  fill: var(--color-black);
}
.project-card:hover .post-thumbnail img, .project-card:focus .post-thumbnail img {
  transform: scale(1.1);
}
.project-card.hidden {
  display: none;
}

.load-more-row {
  margin-top: 5rem;
  text-align: center;
}

.project-list-section {
  padding: 12rem 0 15rem 0;
}
@media (max-width: 991px) {
  .project-list-section {
    padding: 8rem 0 10rem 0;
  }
}
@media (max-width: 767px) {
  .project-list-section {
    padding: 5rem 0 10rem 0;
  }
}

.work-detail-section {
  padding: 15rem 0;
}
.work-detail-section .heading {
  margin-bottom: 4.5rem;
}
.work-detail-section .heading .heading-title {
  font-size: 5rem;
  line-height: 1.4;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .work-detail-section .heading .heading-title {
    font-size: 3rem;
    line-height: 1.6;
  }
}
.work-detail-section .heading .heading-subtitle span {
  padding: 0 15px;
}
.work-detail-section .post-thumbail a {
  display: block;
  width: 100%;
  height: 60rem;
}
.work-detail-section .post-thumbail a img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .work-detail-section .content-block {
    width: 100%;
  }
}
.work-detail-section .content-block .title {
  margin-bottom: 3rem;
  font-weight: 600;
}
.work-detail-section .content-block .border-bottom {
  border-bottom: 1px solid var(--color-border);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.work-detail-section .content-block .project-discription {
  font-weight: 600;
  font-size: var(--lg-title-font-size);
  color: var(--color-primary);
  line-height: 1.5;
}
.work-detail-section .content-block .about-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
  list-style: none;
}
.work-detail-section .content-block .about-list .list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5.5px 0;
}
.work-detail-section .content-block .about-list .list-item .list-icon {
  min-height: 20px;
  max-width: 20px;
  fill: var(--color-primary);
  margin-right: 7.5px;
}
.work-detail-section .content-block .about-list .list-item .list-title {
  font-family: var(--manrope-font-family);
  font-size: var(--paragraph-font-size);
  color: var(--color-paragraph);
  font-weight: 500;
  line-height: 18px;
  padding-left: 5px;
  line-height: 30px;
}
.work-detail-section .content-block .margin-top {
  margin-top: 3rem;
}
.work-detail-section .image-carousle-swiper {
  position: relative;
  overflow: visible;
  width: 100vw;
  margin-top: 5rem;
}
.work-detail-section .swiper-slide-inner {
  height: 405px;
  width: 100%;
}
.work-detail-section .swiper-slide-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.work-detail-section .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.work-detail-section .lightbox img {
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-in;
}
@media (max-width: 991px) {
  .work-detail-section .lightbox img {
    max-width: 75%;
    max-height: 75%;
  }
}
.work-detail-section .close-lightbox {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 30px;
  cursor: pointer;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50px;
}
.work-detail-section .close-lightbox svg {
  width: 35px;
  height: 35px;
  fill: var(--color-black);
}
@media (max-width: 991px) {
  .work-detail-section .close-lightbox svg {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .work-detail-section .close-lightbox svg {
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 991px) {
  .work-detail-section .close-lightbox {
    right: 20px;
    padding: 5px;
  }
}
.work-detail-section .lightbox-prev,
.work-detail-section .lightbox-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
.work-detail-section .lightbox-prev {
  left: 40px;
}
@media (max-width: 991px) {
  .work-detail-section .lightbox-prev {
    left: 0;
  }
}
.work-detail-section .lightbox-next {
  right: 40px;
}
@media (max-width: 991px) {
  .work-detail-section .lightbox-next {
    right: 0;
  }
}
.work-detail-section .lightbox-prev svg,
.work-detail-section .lightbox-next svg {
  width: 40px;
  height: 40px;
}
.work-detail-section .lightbox-prev:hover svg,
.work-detail-section .lightbox-next:hover svg {
  opacity: 0.7;
}
.work-detail-section .slider-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
}
.work-detail-section .slider-btn-wrapper .slider-nav-btn {
  cursor: pointer;
  color: var(--color-primary);
  fill: var(--color-primary);
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  font-size: 3rem;
}
.work-detail-section .slider-btn-wrapper .slider-nav-btn svg {
  height: 5rem;
  fill: inherit;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.work-detail-section .slider-btn-wrapper .slider-nav-btn.swiper-button-disabled {
  opacity: 0.3;
}
.work-detail-section .work-wraper {
  display: flex;
  gap: 3rem;
}
@media (max-width: 991px) {
  .work-detail-section .work-wraper {
    flex-direction: column;
  }
}
.work-detail-section .work-wraper .work-inner {
  width: 100%;
}
@media (min-width: 991px) {
  .work-detail-section .work-wraper .work-inner {
    width: 70%;
  }
}
.work-detail-section .work-wraper .work-inner .work-detail-wrapper .main-heading {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 991px) {
  .work-detail-section .work-wraper .work-inner .work-detail-wrapper .main-heading {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.work-detail-section .work-wraper .detail-sidebar {
  width: 100%;
  padding-top: 5rem;
}
@media (min-width: 991px) {
  .work-detail-section .work-wraper .detail-sidebar {
    width: 30%;
  }
}
