/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("../fonts/stylesheet.css");

/* Theme Color */
:root {
  --clr-primary: #16412e;
  --clr-secondary: #ad5024;
  --clr-title: #202020;
  --clr-white: #ffff;
  --clr-black: #000000;
  --clr-text: #8b8b8b;
  --clr-bg: #f5ede1;
  --section-bg: #fef9ef;

  --ff-primary: "Marcellus", serif;
  --ff-body: "Neue Montreal", sans-serif;
  --transition: all 0.4s ease-in-out;
}

/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::selection {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}

section {
  position: relative;
  z-index: 1;
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text);
}

p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--ff-body);
  letter-spacing: 0.36px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
  font-weight: 500;
  text-transform: unset;
  color: var(--clr-title);
}

h4 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -2%;
  color: var(--clr-title);
}

h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -2%;
}

h6 {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--ff-body);
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1660px;
}

.overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.24) 22.65%);
  z-index: 1;
  top: 0;
  left: 0;
}

.custom_pad {
  padding: 80px 0;
}

.gene__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.gene__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.img__radius {
  border-radius: 16px;
  overflow: hidden;
}

.bg-green {
  background-color: var(--clr-primary);
}

.bg-green h2,
.bg-green h3,
.bg-green h4,
.bg-green p {
  color: var(--clr-white);
}

.bg-green .gene__heading h2 {
  color: var(--clr-white);
}

.bg-offwhite {
  background-color: var(--clr-bg);
}

.section-bg {
  background-color: var(--section-bg);
}

.text-white {
  color: var(--clr-white);
}

.gene__heading h1 {
  font-weight: 400;
  font-size: 65px;
  line-height: 80px;
}

.gene__heading h2 {
  font-weight: 400;
  font-size: 72px;
  line-height: 80px;
  color: var(--clr-title);
}

.text__orange {
  color: var(--clr-secondary);
  display: inline-flex;
}

.text__green {
  color: var(--clr-primary);
  display: inline-flex;
}

.gene__btn {
  background-color: var(--clr-bg);
  padding: 5px 5px 5px 25px;
  font-size: 20px;
  text-transform: unset;
  border-radius: 35px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  transition: var(--transition);
  color: var(--clr-secondary);
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}


.gene__btn .gene__btn-text {
  position: relative;
}

.gene__btn .gene__btn-text .char {
  display: inline-block;
  will-change: transform;
}

.gene__btn .gene__btn-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  transition:
    transform 0.2s,
    opacity 0.2s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  white-space: nowrap;
}

.gene__btn:hover .gene__btn-text::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.gene__btn .gene__btn-text>* {
  white-space: nowrap;
  display: inline-block;
  padding: 0;
  opacity: 0;
  transform: translate3d(0, -14px, 0);
  transition:
    transform 0.2s,
    opacity 0.2s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  line-height: normal;
}

.gene__btn:hover .gene__btn-text>* {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gene__btn:not(:hover) .gene__btn-text>* {
  transition-delay: 0s !important;
}

.gene__btn .gene__btn-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background-color: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  transition: var(--transition);
  border-radius: 50%;
}

.gene__btn .gene__btn-icon img {
  height: 35px;
  object-fit: contain;
  transition: var(--transition);
}

.gene__btn:hover .gene__btn-icon img {
  transform: rotate(45deg);
  transition: var(--transition);
}
.gene__btn.gene__btn-green {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.gene__btn.gene__btn-green .gene__btn-icon {
  background-color: var(--clr-white);
}

.gene__btn.gene__btn-green .gene__btn-icon img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(14%) saturate(1776%) hue-rotate(101deg) brightness(100%) contrast(94%);
}

.gene__btn.gene__btn-orange {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}

.gene__btn.gene__btn-orange .gene__btn-icon {
  background-color: var(--clr-white);
}

.gene__btn.gene__btn-orange .gene__btn-icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(27%) saturate(1716%) hue-rotate(339deg) brightness(94%) contrast(90%);
}

.gene__headwrap {
  margin-bottom: 40px;
}

.gene__headwrap>*:not(:last-child) {
  padding-bottom: 20px;
}

/* keyframes */

@-webkit-keyframes headerSticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes headerSticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* keyframes */

/* ================= header start ======================= */
.gene__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.gene_header-logo img {
  height: 75px;
  object-fit: contain;
}
.gene__header.fixed__header .gene_header-logo img{height: 55px;}
.gene__header .nav-link {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-white);
  padding: 0 !important;
  position: relative;
  transition: var(--transition);
}

.gene__header .nav-link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  width: 8px;
  height: 8px;
  background-color: var(--clr-white);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.gene__header .nav-link.active {
  color: var(--clr-white);
}

.gene__header .nav-link:hover,
.gene__header.fixed__header .nav-link:hover {
  transition: var(--transition);
  color: var(--clr-secondary);
}

.gene__header .nav-link:hover::before,
.gene__header.fixed__header .nav-link:hover::before {
  background-color: var(--clr-secondary);
  transition: var(--transition);
}

.gene__header .gene__heda-menulist {
  gap: 40px;
}

.gene__header-btn {
  margin-left: 20px;
}

.gene__header .navbar-brand {
  padding: 0;
  margin: 0;
}

.gene__header.fixed__header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.10);
  box-shadow: 0px 6px 35px -12px rgba(35, 35, 35, 0.15);
  -webkit-animation: headerSticky 0.7s ease-in-out;
  animation: headerSticky 0.7s ease-in-out;
  background-color: var(--clr-bg);
}

.gene__header.fixed__header .nav-link {
  color: var(--clr-primary);
}

.gene__header.fixed__header .nav-link::before {
  background-color: var(--clr-primary);
}
.gene_header-logo {
  display: none;
}
.gene_header-logo.gene_header-logo-white {
  display: block;
}

.gene__header.fixed__header .gene_header-logo {
  display: block;
}
.gene__header.fixed__header .gene_header-logo.gene_header-logo-white {
  display: none;
}

.gene__header .offcanvas-header .gene_header-logo {
  display: block;
}
/* ================= header end ======================= */

/* ================= bannner start ======================= */
.gene__banner-bg {
  position: relative;
}

.gene__banner-bg {
  width: 100%;
  height: 100%;
}

.gene__banner-bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gene__banner-wrapper {
  position: absolute;
  width: 100%;
  bottom: 130px;
  left: 0;
  z-index: 2;
}

.gene__banner-contwrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: end;
}

.gene__banner-cont {
  width: 47%;
}



.gene__banner-list {
  width: 30%;
}

.gene__banner-cont> :not(:last-child) {
  padding-bottom: 25px;
}

.gene__banner-list ul li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.gene__bannner-icon {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
}

.gene__bannner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gene__banner-list ul li+li {
  margin-top: 35px;
}

.gene__banner-list ul li h4 {
  padding-bottom: 8px;
}

.gene__banner-list ul li h4 {
  padding-bottom: 10px;
}

.gene__banner-cont h1,
.gene__banner-listcont h4 {
  color: var(--clr-white);
}

/* ================= bannner end ======================= */

/* ================= gene__service start ======================= */

.gene__service-left .gene__headwrap .gene__heading {
  width: 75%;
}

.gene__service-right {
  padding: 15px;
  height: 100%;
}

.gene__service-right .gene__btn {
  margin-top: 10px;
}

.gene__service-right .gene__media {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.gene__service-right .gene__media .gene__img {
  scale: 1.2 !important;
}

.gene__service-left {
  border-right: 1px dashed var(--clr-text);
  padding-right: 10px;
  height: 100%;
}

.gene__service-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 40px;
}

.gene__service-list ul>* {
  width: 49%;
}

.gene__service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.gene__service-name h3 {
  font-weight: 400;
  letter-spacing: -2%;
}

.gene__service-name {
  padding: 20px 0;
  border-bottom: 1px dashed var(--clr-text);
  margin-bottom: 20px;
}

.gene__service-right .gene__content h6 {
  font-family: var(--ff-body);
}

/* ================= gene__service end ======================= */

/* =================  gene__empower start ======================= */
.gene__empower-single {
  padding: 15px;
  height: 100%;
  position: relative;
}

.gene__empower-single h3,
.gene__empower-single p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gene__empower-single img {
  transform: scale(1);
  transition: var(--transition);
}

.gene__empower-single .gene__img:hover img {
  transform: scale(1.03);
  transition: var(--transition);
}

.gene__empower-border {
  padding: 40px 0;
  position: relative;
}

.gene__empower-border::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  border: 1px dashed var(--clr-text);
  z-index: -1;
}

.gene__empower-single .gene__img {
  height: unset;
}

.gene__empower-date h6 {
  color: var(--clr-secondary);
  text-transform: uppercase;
}

.gene__empower-date {
  padding: 15px 0;
}

.gene__content> :not(:last-child) {
  margin-bottom: 15px;
}

.gene__empower-wrap .row [class^="col-"]:nth-child(2) .gene__empower-border,
.gene__empower-wrap .row [class^="col-"]:nth-child(3) .gene__empower-border {
  margin-top: 40px;
  height: unset;
}

/* =================gene__empower  end ======================= */

/* =================form start ======================= */
.gene-form {
  background-color: var(--section-bg);
  padding: 35px;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}


.gene-form .form-control::placeholder {
  color: var(--clr-text);
}

.gene-form .form-control,
.gene-form .form-select {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-transform: unset;
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-bg);
  border-radius: 16px;
  color: var(--clr-text);
  padding: 18px 15px;
  transition: var(--transition);
}
.gene-form .form-control{
  color: var(--clr-black);
}
.gene-form .form-control:focus,
.gene-form .form-select:focus {
  background-color: #ad502433;
}

.gene-form .form-control:focus,
.gene-form .form-select:focus {
  box-shadow: inherit;
}

.gene-form .form-button .gene__btn input {
  background-color: transparent;
  border: none;
  color: #fff;
}

.gene-form textarea.form-control {
  resize: none;
  height: 250px;
}

.gene-form .gene__heading {
  margin-bottom: 25px;
}

.form-button .gene__btn {
  padding: 15px 65px 15px 25px;
}

.form-button .gene__btn::after {
  position: absolute;
  align-items: center;
  justify-content: center;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--clr-secondary);
  display: inline-flex;
  width: 45px;
  height: 45px;
  background-color: var(--clr-white);
  border-radius: 50%;
  content: "\f062";
  font-family: Fontawesome;
  rotate: 50deg;
  font-size: 25px;
}
.wpcf7-spinner {
  position: absolute;
}
/* ================= form end ======================= */

/* ================= gene__cta start ======================= */

.gene__cta-bg {
  position: relative;
  overflow: hidden;
}

.gene__cta-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.gene__cta .gene__headwrap {
  margin-bottom: 0;
}

.gene__cta-wrapper .gene__headwrap>*:not(:last-child) {
  padding-bottom: 15px;
}

.gene__cta-wrapper .gene__headwrap h2,
.gene__cta-wrapper .gene__headwrap p,
.gene__cta-wrapper p {
  color: var(--clr-white);
}

.gene__cta-wrapper .gene__headwrap p {
  width: 90%;
}

.gene__cta.gene__cta-wellness .gene__cta-wrapper {
  top: unset;
  bottom: 0;
  right: 0;
}
.gene__cta.gene__cta-wellness .gene__headwrap .gene__heading{
  width: 70%;
}
.gene__cta .gene__cta-wrapper .gene__headwrap> :not(:last-child) {
  padding-bottom: 25px;
}

/* ================= gene__cta end ===================== */

/* ================= footer start ======================= */
.gene__footer {
  padding-top: 50px;
}

.gene__footer-midwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.gene__footer-midwrap>* {
  width: 19%;
}

.gene__footer-logo img {
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.gene__footer-logo {
  padding-bottom: 35px;
}

.gene__footer-col h4 {
  padding-bottom: 15px;
}

.gene__footer-list li {
  position: relative;
}

.gene__footer-col.contact .gene__footer-list li span {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  display: inline-flex;
  align-items: center;
}

.gene__footer-col.contact .gene__footer-list li {
  padding-left: 30px;
}

.gene__footer-list li a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.gene__footer-list li:hover a {
  color: var(--clr-secondary);
  transition: var(--transition);
}

.gene__footer-list ul li+li {
  padding-top: 10px;
}

.gene__footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--clr-text);
  padding: 25px 0;
  margin: 35px 0 0;
}

.gene__footer-copylist ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.gene__footer-copylist ul li a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text);
  transition: var(--transition);
}

.gene__footer-copylist ul li:hover a {
  color: var(--clr-secondary);
  transition: var(--transition);
}

/* ================= footer end ======================= */

/* ================= gene__story start ======================= */
.gene__story .gene__headwrap .gene__content p {
  width: 70%;
  margin: 0 auto;
}

.gene__empower .gene__headwrap {
  margin-bottom: 10px;
}

.gene__story-wrapper .gene__btnwrap {
  margin-top: 25px;
}

.gene__story-single {
  background-color: #fef9ef;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.gene__story-nameplate {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gene__story-iocn {
  width: 100px;
  height: 100px;
}

.gene__story-content {
  padding: 20px 0;
}

.gene__story-content p {
  max-height: 90px;
  overflow-y: auto;
}

.gene__story-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
}

.gene__story-name p {
  font-style: Italic;
}

/* ================= gene__story end ======================= */

/* ================= gene__cta-journeywrp start ======================= */
.gene__cta-journey .gene__headwrap h2 {
  width: 80%;
}

.gene__cta-journeywrp {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.gene__cta-journeywrp::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right,
      var(--clr-white) 0 8px,
      transparent 8px 18px);
  z-index: -1;
  animation: dashMove 1s linear infinite;
}

.gene__cta-journeybox .number {
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -2%;
  position: relative;
}

.gene__cta-journeybox .number::before {
  position: absolute;
  content: "";
  top: 40px;
  left: 26px;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom,
      var(--clr-white) 0 8px,
      transparent 8px 18px);
  animation: dashMoveVertical 1s linear infinite;
}

.gene__cta-journeywrp .gene__cta-journeybox:nth-child(2n) .number::before {
  top: -35px;
}

.gene__cta-journeybtn span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  background-color: var(--clr-white);
  border-radius: 25px;
  padding: 10px 25px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.gene__cta-journeybtn span:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  transition: var(--transition);
}

.gene__cta-journeybox {
  display: flex;
  flex-direction: column;
  gap: 35px;
  row-gap: 40px;
  position: relative;
}

.gene__cta-journeywrp .gene__cta-journeybox:nth-child(2n) {
  flex-direction: column-reverse;
  margin-top: 75px;
}

.gene__content.gene__cta-journeybottom {
  margin-top: 75px;
}

.gene__content.gene__cta-journeybottom p {
  width: 95%;
  margin-bottom: 35px;
}

.gene__cta-journey .gene__cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
}

.gene__cta-journey .gene__cta-wrapper {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  z-index: 2;
}

@keyframes dashMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 18px 0;
  }
}

@keyframes dashMoveVertical {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 18px;
  }
}

/* ================= gene__cta-journeywrp end ======================= */

/* ================= gene__transform  start ======================= */

.gene__headwrap-flex {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.gene__headwrap.gene__headwrap-flex> :not(:last-child) {
  padding-bottom: 0;
}

.gene__transform .gene__headwrap .gene__heading {
  width: 60%;
  flex: 0 0 auto;
}

.gene__transform .gene__headwrap .gene__heading h2 {
  margin-bottom: 15px;
}

.gene__transform {
  overflow: hidden;
}

.gene__transformwrap,
.gene__transformmain {
  overflow: hidden;
}

/* .gene__transform-swiper {
  overflow: unset;
} */

.gene__transformbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.gene__transformimg {
  position: relative;
  width: 100%;
  height: 100%;
}

.gene__transformimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gene__transformcont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 15px;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  z-index: 1;
}

.gene__transformhead {
  border-bottom: 1px solid var(--clr-white);
  padding-bottom: 15px;
}

/* .gene__transformhead h3 {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: var(--clr-white);
} */
.gene__transformhead h3 {
  font-family: var(--ff-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 40px;
  color: var(--clr-white);
}

.gene__transformbox .gene__content p {
  color: var(--clr-white);
}

.gene__transformimg.overlay::before {
  background: #0003;
}

.gene__swiper-navigation>* {
  position: relative;
  display: flex;
  inset: 0;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: var(--clr-secondary);
  border-radius: 5px;
  padding: 4px;
  opacity: 1;
}

.gene__swiper-navigation .swiper-button-next::after,
.gene__swiper-navigation .swiper-button-prev::after {
  display: none;
}

.gene__swiper-navigation {
  display: flex;
  gap: 5px;
}

.gene__swiper-navigation svg {
  width: 26px;
  object-fit: contain;
}

.gene__cta.gene__cta-wellness {
  overflow: hidden;
}

/* ================= gene__transform  end ======================= */

/* ====================== modal start ========================= */

.gene__modal .gene-form {
  background-color: transparent;
  padding: 0;
}

.gene__modal .gene-form textarea.form-control {
  height: 120px;
}

.gene__modal .gene_close-btn {
  position: relative;
  border: none;
}

.gene_close-btn::before {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 5px;
  z-index: 9;
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: var(--clr-secondary);
  font-weight: 900;
  color: var(--clr-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* ============= modal end =============== */

/* ================= gene__treatment start ======================= */
.gene__treatment .gene__headwrap .gene__content p {
  width: 60%;
  margin: 0 auto;
}

.gene__treatment-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}

.gene__treatment-list ul>* {
  width: 32%;
  text-align: center;
  /* position: relative; */
}

/* .gene__treatment-list ul li .gene__treatment-single::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 192px;
  width: 80%;
  height: 2px;
  background-color: var(--clr-white);
} */

.gene__treatment-single {
  text-align: center;
  /* position: relative; */
}

.gene__treatment-line.gene__treatment-line-top {
  position: absolute;
}

.gene__treatment-line.gene__treatment-line-top {
  position: absolute;
  left: 0;
  top: 20px;
}

.gene__treatment-list ul li:nth-child(1) .gene__treatment-line.gene__treatment-line-top {
  left: 200px;
}

.gene__treatment-list ul li:nth-child(2) .gene__treatment-line.gene__treatment-line-top {
  left: 525px;
}

.gene__treatment-list ul li:nth-child(3) .gene__treatment-line.gene__treatment-line-top {
  display: none;
}

.gene__treatment-content h3 {
  width: 70%;
  margin: 0 auto;
}

.gene__treatment-list ul li:nth-child(2) .gene__treatment-single {
  margin: 0 auto;
}

.gene__treatment-list ul li:nth-child(3) .gene__treatment-single {
  margin-left: auto;
}

.gene__treatment-list ul li:nth-child(3) .gene__treatment-single::before {
  display: none;
}

.gene__treatment-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 8px;
}

.gene__treatment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gene__treatment-no {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--clr-white);
  border-radius: 50%;
  color: var(--clr-white);
  margin: 0 auto;
  background-color: transparent;
  transition: var(--transition);
}

.gene__treatment-single:has(.gene__treatment-content:hover) .gene__treatment-no {
  background-color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  transition: var(--transition);
}

.gene__treatment-single .content> :not(:last-child) {
  margin-bottom: 8px;
}

.gene__treatment-linewrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  height: 100%;
}

.gene__treatment-linewrap span {
  display: inline-flex;
  width: 70px;
  height: 2px;
  background-color: var(--clr-white);
}

.gene__treatment-dot {
  width: 20px;
  height: 20px;
  background-color: var(--clr-white);
  border-radius: 50%;
  margin: 15px auto;
}

.gene__treatment-line {
  margin: 0 auto 20px;
  transition: all 0.4s ease-in-out;
}

.gene__treatment-line svg {
  margin: 0 auto 20px;
}

.gene__treatment-line svg {
  overflow: visible;
}

.gene__treatment-line path {
  stroke: var(--clr-white);
  stroke-width: 2;
  fill: none;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.gene__treatment-right .gene__treatment-no {
  background-color: var(--clr-white);
}

.gene__treatment-right .gene__treatment-no span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.gene__treatment-right .gene__treatment-no span img {
  width: 30px;
  object-fit: contain;
}

.gene__treatment-single.gene__treatment-right {
  width: 72%;
  margin: 0 auto;
}

/* ================= gene__treatment  end ======================= */

/* ================= gene__dna start ======================= */

.gene__dna-right .gene__headwrap .gene__content {
  width: 85%;
}

.gene__dna-drawn-elem {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.gene__dna::before {
  position: absolute;
  content: "";
  top: 50px;
  right: 0;
  background-image: url("../images/generoots-dna-pattern.png");
  /* background-image: url("../images/dna-pattern.gif"); */
  background-repeat: no-repeat;
  width: 250px;
  height: 430px;
  background-size: cover;
  z-index: -1;
  animation: 0.34s linear infinite gene-hand-drawing;
}

.gene__dna-left>*:not(:last-child) {
  margin-bottom: 15px;
}

.gene__dna-card {
  height: 100%;
}
.gene__process-wrapper>* {
  width: 49%;
}

.gene__process-wrapper {
  display: flex;
  gap: 15px;
}

.gene__dna-btn {
  text-align: center;
}

.gene__dna-btn span {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-secondary);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-bg);
  width: 100%;
  border-radius: 12px;
  padding: 15px 20px;
}

.gene__dna-lefttop {
  background-color: var(--clr-bg);
  padding: 20px;
}

.gene__dna-lefttop .gene__img {
  margin-bottom: 15px;
}

.gene__dna-left .content {
  background-color: var(--clr-bg);
  padding: 20px;
}

.gene__dna-left .content p {
  padding-bottom: 20px;
}

.gene__dna-single>*:not(:last-child) {
  margin-bottom: 25px;
}

.gene__dna-single .gene__dna-icon {
  width: 80px;
  height: 80px;
  background-color: var(--clr-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.gene__dna-icon img {
  height: 50px;
  object-fit: contain;
}

.gene__dna-single {
  text-align: center;
  border: 1px solid var(--clr-text);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 15px;
  background-color: var(--section-bg);
  height: 100%;
}

.gene__dna-single .gene__img {
  height: auto;
}

.gene__dna .gene__img img {
  transform: scale(1);
  transition: var(--transition);
}

.gene__dna .gene__img:hover img {
  transform: scale(1.03);
  transition: var(--transition);
}

.gene__dna-wrap .row [class^="col-"]:nth-child(2) .gene__dna-single .gene__dna-icon {
  background-color: var(--clr-secondary);
}

/* ================= gene__dna end ======================= */

/* ================= gene__process start ======================= */
.gene__process-head {
  text-align: center;
  background-color: var(--clr-bg);
  border-radius: 16px;
  padding: 15px;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}

.gene__process .gene__img img {
  object-fit: contain;
  height: 480px;
}

.gene__process-list li {
  text-align: center;
  background-color: var(--clr-bg);
  border-radius: 16px;
  padding: 25px 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.gene__process-list li h6 {
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--clr-title);
  font-weight: 400;
}

.gene__process-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 10px;
}

.gene__process-post .gene__process-head {
  background-color: var(--clr-secondary);
}

.gene__process-post .gene__process-head h4 {
  color: var(--clr-white);
}

.gene__process-post .gene__process-list li h6 {
  color: var(--clr-white);
}

.gene__process-post .gene__process-list li {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}

.gene__process-main {
  position: relative;
  height: 100%;
}

.gene__process-main::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(to bottom,
      var(--clr-text) 0 8px,
      transparent 8px 18px);
  /* animation: dashMoveVertical 1s linear infinite; */
}

.gene__process-post {
  position: sticky;
  top: 125px;
}

/* ================= gene__process end ======================= */

/* keyframes */



@keyframes gene-hand-drawing {
  0% {
    filter: url(#qode-hand-drawn-1);
  }

  25% {
    filter: url(#qode-hand-drawn-2);
  }

  50% {
    filter: url(#qode-hand-drawn-3);
  }

  75% {
    filter: url(#qode-hand-drawn-4);
  }

  100% {
    filter: url(#qode-hand-drawn-5);
  }
}


/* scrollTop */

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--clr-secondary);
  ;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}

#scrollTop svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop img {
  position: relative;
  z-index: 2;
  transform: rotate(-45deg);
  height: 35px;
  object-fit: contain;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px #da251c63;
  }

  100% {
    box-shadow: 0 0 0 14px #a19f9f0c;
  }
}


