@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');


:root {
  --black: #000;
  --white: #fff;
  --theme-main: #4D76CD;
  --text-light: #a3aed0;
  --text-dark: #2b3674;
  --text-medium: #030229;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  font-family: "Onest", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  text-decoration: none;
  list-style: none;
  margin-bottom: 0px;
}

a,
.transition,
input[type="submit"] {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

a,
a:hover {
  color: var(--blue-light);
  cursor: pointer;
  text-decoration: none;
}

input[type="submit"] {
  backface-visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

textarea,
input,
select {
  border-radius: 0;
  resize: none;
  box-sizing: border-box;
  width: 100%;
}

table,
tr,
td,
th {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

table {
  width: 100%;
}

.w-160 {
  width: 160px;
}

.background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
}

p {
  font-size: 16px;
  color: var(--black);
  line-height: 26px;
}

.preloader {
  background-color: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}

.loader {
  width: 35px;
  aspect-ratio: 1;
  --_g: no-repeat radial-gradient(farthest-side, #9B5E41 94%, #fff);
  background: var(--_g) 0 0, var(--_g) 100% 0, var(--_g) 100% 100%,
    var(--_g) 0 100%;
  background-size: 40% 40%;
  animation: spine 0.5s infinite;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@keyframes spine {
  100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }
}

*::-moz-selection {
  background: var(--theme-main);
  color: #fff;
}

*::selection {
  background: var(--theme-main);
  color: #fff;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  background-color: #00000096;
}

.message-wrap {
  height: 400px;
  overflow-y: auto;
}

body {
  font-family: "Onest", sans-serif;
  color: #000;
  /* background-color: #fef8f1; */
  background: linear-gradient(180deg, #FFECD6 0%, #FEF8F1 20.46%);
  overflow-x: hidden;
}

/* .main-container     {
  width: 1440px;
  margin: 0 auto;
\} */

.container {
  /* width: 94%; */
  width: 1312px;
  /* max-width: 100%; */
  margin: 0 auto;
  padding: 0;
}

/* Navbar */
.navbar {
  /* width: 94%; */
  width: 1312px;
  margin: 20px auto;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  padding: 12px 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #D46B3F;
  font-size: 18px;
}

.logo img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.tagline{
    position: absolute;
    top: -30px;
    right: 40px;
  color:#fff;
}
.nav-links a:hover {
  color: #D46B3F;
}

.cta-button {
  text-decoration: none;
  background-color: #A35432;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #8c4121;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-section {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.hero-section:before    {
  content: '';
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.hero-section video   {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
      left: 0;
    right: 0;
    top: 34%;
    z-index: 2;
    padding-left: 30px;
    border-radius: 1rem;
    text-align: left;
    width: 1312px;
    padding-top: 0;
    margin: 0 auto;
}


/* .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 60px;
    border-radius: 1rem;
    text-align: left;
    width: 540px;
    padding-top: 130px;

  } */

.hero-content h1 {
  font-size: 56px;
  font-weight: 500;
  color: #2A2A2A;
}

.hero-content h2 {
  font-size: 40px;
  line-height: 41px;
  font-weight: 500;
  color: #F5F5F5;
  padding-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  line-height: 28px;
  color: #FFF;
  padding-bottom: 30px;
  font-weight: 400;
}

.navbar-glass {
  position: absolute;
  right: 0;
  left: 0;
  top: 20px;
  z-index: 10;
  /* backdrop-filter: blur(5px); */
  /* background-color: rgba(255, 255, 255, 0.3) !important; */
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.3) 80%);
  box-shadow: none;
}

.navbar-nav li a {
  font-size: 16px;
  line-height: 26px;
  color: #2A2A2A;
  text-transform: uppercase;
  font-weight: 400;
}

.navbar-nav li {
  margin-right: 40px;
  position: relative;

}

.navbar-brand img.logo     {
  width: auto;
  height: 40px;
}

.navbar-nav li:hover .htmlcss-arrow,
.navbar-nav li:hover .js-arrow {
  transform: rotate(180deg);
}

.navbar-nav li:hover svg .s0 {
  fill: #9B5E41;
}

.navbar-nav li .arrow {
  /* background: red; */
  height: auto;
  width: 12px;

  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}

.navbar-nav li .sub-menu {
  position: absolute;
  top: 53px;
  left: -23px;
  line-height: 40px;
  /* background: url(../img/submenu_bg.png)no-repeat center center;
  height: auto;
  background-size: cover; */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-width: 1px;
  border-style: solid;
  border-image-source: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%); 
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.7s ease;
  z-index: 2;
  padding: 0;
  width: max-content;
}

.navbar-nav li:hover a {
  color: #9B5E41 !important;
  font-weight: 500;
}


.navbar-nav li:hover .sub-menu,
.navbar-nav li:hover .js-sub-menu {
  /* display: block; */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav li .sub-menu li {
  padding: 11px 24px;
  margin-right: 0;
}

.navbar-nav li .more-sub-menu.sub-menu li {
  padding: 4px 24px;
}

.navbar-nav li .htmlCss-sub-menu.sub-menu li:hover a {
  color: #9B5E41 !important;
  font-weight: 500;
}

.navbar-nav li .htmlCss-sub-menu.sub-menu li:hover svg path {
  fill: #9B5E41 !important;
}

.navbar-nav li .htmlCss-sub-menu.sub-menu li .more-sub-menu.sub-menu li a {
  color: #2A2A2A !important;
}

.navbar-nav li .htmlCss-sub-menu.sub-menu li .more-sub-menu.sub-menu li:hover a {
  color: #9B5E41 !important;
  font-weight: 500;
}

.navbar-nav li .sub-menu li.more:last-child .more-sub-menu.sub-menu {
  top: inherit;
  bottom: 0;
}

.navbar-nav li .sub-menu a {
  color: #2A2A2A !important;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-nav li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar-nav li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}

.navbar-nav li .sub-menu li .sub-menu {
  position: absolute;
  top: -1px;
  left: 100%;
  border-radius: 0 12px 12px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.7s ease;
}

.navbar-nav li .sub-menu li:last-child .sub-menu {
  top: inherit;
  bottom: 0;
}

.navbar-nav li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav>li.menu-item-has-children {
  padding-right: 18px;
}

.navbar-nav>li.menu-item-has-children::after {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  content: "";
  display: inline-block;
  height: 8px;
  right: 0;
  position: absolute;
  top: 6px;
  width: 8px;
  border-color: #2A2A2A;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.8s ease;
}

.navbar-nav>li.menu-item-has-children:hover::after {
  transform: rotate(225deg);
  top: 10px;
  border-color: #9B5E41;

}


.navbar-nav li .sub-menu li:hover svg path {
  fill: #9B5E41 !important;
}

.navbar-nav li .sub-menu li:hover a {
  color: #9B5E41 !important;
  font-weight: 500;
}

.navbar-nav li .sub-menu li .sub-menu li a {
  color: #2A2A2A !important;
}

.navbar-nav li .sub-menu li .sub-menu li:hover a {
  color: #9B5E41 !important;
  font-weight: 500;
}

.btn-consult {
  background-color: #9B5E41;
  /* border: 1px solid white; */
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-weight: 500;
  border: none;
}

.btn-consult:hover {
  color: #FFF;
}

.btn-consult:focus,
.btn-consult2:focus {
  box-shadow: none;
}


.btn-consult span {
  z-index: 5;
  position: relative;
  transition: color 350ms ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-consult:hover span {
  color: #FFF;
}

.btn-consult span svg {
  transition: 0.4s ease-in;
}

.btn-consult:hover span svg {
  transform: translateX(50%);
}

.btn-consult span svg path {
  transition: all 0.5s;
}

.btn-consult::after,
.btn-consult::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ec6e42;
  z-index: -1;
}

.btn-consult::before {
  transform: translateX(-100%);
  z-index: 1;
}

.btn-consult:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.btn-consult::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.btn-consult:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}


.btn-consult2 {
  width: 276px;
  height: 48px;
  border: 1px solid #FFFFFF;
  text-align: center;
  font-size: 16px;
  line-height: 48px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-weight: 500;
}

.btn-consult2:hover {
  color: #FFF;
}

.btn-consult2 span {
  z-index: 5;
  position: relative;
  transition: color 350ms ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-consult2:hover span {
  color: #000;
}

.btn-consult2 span svg {
  transition: 0.4s ease-in;
}

.btn-consult2:hover span svg {
  transform: translateX(50%);
}

.btn-consult2 span svg path {
  transition: all 0.5s;
}

.btn-consult2:hover span svg path {
  fill: #000;
}

.btn-consult2::after,
.btn-consult2::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

.btn-consult2::before {
  transform: translateX(-100%);
  z-index: 1;
}

.btn-consult2:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.btn-consult2::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.btn-consult2:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}

.btn-consult1 {
  background-color: transparent;
  border: 1px solid white;
  color: #fff;
  font-weight: bold;
}

/* .btn-consult:hover {
    background-color: #8c4121;
    color: #fff;
  } */

.img-size {
  width: auto;
  height: 450px;
}

/* 
  .img-size.zoomed {
  transform: scale(1.2); 
} */

.service-content span {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-content span img {
  width: auto;
  height: 40px;
  display: block;
}

.service-content {
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 72px 50px 104px;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.9s ease;
      justify-content: center;
}

.service-content::before {
  content: "";
  position: absolute;
  /* top: 110px; */
  top: calc(100vh - 84vh);
  left: 0;
  width: 100%;
  height: 1px;
  background: url(../img/line_img.png)no-repeat center center;
  z-index: -1;
      background-size: 100%;
}

.service-content::after {
  content: "";
  position: absolute;
  /* bottom: 120px; */
  bottom :calc(100vh - 84vh);
  left: 0;
  width: 100%;
  height: 1px;
  background: url(../img/line_img.png)no-repeat center center;
  z-index: -1;
      background-size: 100%;
}


.service-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #2A2A2A;
  line-height: 30px;
  width: 240px;
  text-align: left;
}
/* 
.services-section {
  padding: 80px 0;
} */

.services-section h2 {
  font-weight: 500;
  line-height: 44px;
  font-size: 40px;
  text-align: center;
  color: #9B5E41;
  margin-bottom: 40px;
}

.service-content p {  
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
  text-align: left;
  width: 270px;
    display: block;
}

.success-content h2 {
  color: white;
  font-weight: 500;
  font-size: 40px;
  line-height: 53px;
}

.success-content p {
  color: #474747;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 22px;
}

.success-content a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.success-content a img {
  transition: 0.2s ease-in;
}

.success-content a:hover img {
  transform: translateX(50%);
}

.success-content {
  width: 96%;
  background-color: #E1C2A0;
  border-radius: 60px;
  margin: 0 auto;
  padding: 60px 65px 30px 110px;
}

.lady-image {
  width: auto;
  height: 630px;
  position: absolute;
  bottom: 0;
  right: 150px;
}

.circle-new {
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.5) 70%);
  padding: 30px 60px;
  width: 784px;
  border: 1px solid #FFF;
  backdrop-filter: blur(10px);
  margin-top: 40px;
  position: relative;
  z-index: 9;
}

.circle-new h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 33px;
  color: #242424;
}

.circle-new h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 26px;
  color: #474747;
  margin: 0;
}

.circle-new p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
  margin: 0;
}

.circle-new h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 30px;
  color: #474747;
  margin: 0;
}

.success-overall {
  width: 346px;
  border-left: 1px solid #545353;
}

.border-bott {
  border-bottom: 1px solid #545353;
}


.border-bott:last-child {
  border-bottom: none;
}

.lady-shadow-image {
  width: auto;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 365px;
  opacity: 40% !important;
  mix-blend-mode: multiply;
  display: block;
}

.mob_shadow_img     {
  display: none;
}

.experience-section {
  margin: 120px 0;
}

.experience-content {
  width: 86.3%;
  margin: 0 auto;
  padding-left: 30px;
}

.experience-content h3 {
  font-weight: 500;
  font-size: 54px;
  line-height: 55px;
  color: #2A2A2A;
  margin-bottom: 46px;
}

.banner-slider {
  position: relative;
}

.slider-nav {
  width: 60px;
  height: auto;
  border-radius: 30px;
  background: #FFFFFF80;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 5px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  z-index: 10;
}

.slick-vertical .slick-slide.thumbnail-image {
  margin-bottom: 24px;
}

.slick-vertical .slick-slide.thumbnail-image:last-child {
  margin-bottom: 0;
}

.banner-slider .slick-list,
.banner-slider .slick-slider .slick-track {
  height: auto !important;
}

.slider-content img {
  width: 520px;
  height: auto;
  display: block;
  border-radius: 60px;

}

.slider-right-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #474747;
  margin-bottom: 20px;
}

.slider-right-content p:last-child {
  margin-bottom: 0;
}

.slider-right-content {
  width: 46%;
  padding-top: 72px;
}

.slider-content span {
  background: #FFFFFFBF;
  backdrop-filter: blur(6px);
  border-radius: 36px;
  border: 1px;
  position: absolute;
  left: 320px;
  bottom: 75px;
  padding: 19px 40px;
  z-index: 9;
}

[text-split] {
  opacity: 0;
}

html.w-editor [text-split] {
  opacity: 1;
}

.word {
  overflow: hidden;
  padding-bottom: 0.05em;
  margin-bottom: -0.05em;
  transform-origin: bottom;
}


.slider-content span strong {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #9B5E41;
}

.slider-content span small {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #9B5E41;
  padding-left: 4px;
}


.progress-ring {
  position: relative;
  width: 48px;
  height: 48px;
}

.progress-svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.progress-bg,
.progress-circle {
  fill: none;
  stroke-width: 2;
  r: 22;
  cx: 24;
  cy: 24;
}

/* 
.progress-bg {
  stroke: #e0e0e0;
} */

.progress-circle {
  stroke: #9B5E41;
  stroke-dasharray: 138.2;
  /* 2πr for r = 22 */
  stroke-dashoffset: 138.2;
  transition: stroke-dashoffset 0.1s linear;
}

.thumbImg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 5px;
  /* (48 - 40) / 2 = 4 */
  left: 5px;
  z-index: 2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-banner-image .slider-content {
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.slider-banner-image.active .slider-content {
  opacity: 1;
  transform: translateY(0);
}



.take-content {
  width: 100%;
  background-color: #E1C2A0;
  border-radius: 60px;
  margin: 0 auto;
  padding: 0;
}

.take-content img {
  width: 680px;
  height: auto;
  display: block;
}

.take-text {
  padding-left: 122px;
  width: 536px;
}

.take-text h3 {
  color: #2A2A2A;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.take-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 60px;
  margin-bottom: 0;
}

.btn-consult1 {
  width: 276px;
  height: 48px;
  background-color: #2A2A2A;
  color: #fff;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-weight: 500;
  border: none;
}

.btn-consult1:hover {
  color: #FFF;
}

.btn-consult1:focus {
  box-shadow: none;
}

.btn-consult1 img {
  width: 16px;
  height: 12px;

}


.btn-consult1 span {
  z-index: 5;
  position: relative;
  transition: color 350ms ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-consult1:hover span {
  color: #FFF;
}

.btn-consult1 span svg {
  transition: 0.4s ease-in;
}

.btn-consult1:hover span svg {
  transform: translateX(50%);
}

.btn-consult1 span svg path {
  transition: all 0.5s;
}

.btn-consult1::after,
.btn-consult1::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ec6e42;
  z-index: -1;
}

.btn-consult1::before {
  transform: translateX(-100%);
  z-index: 1;
}

.btn-consult1:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.btn-consult1::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.btn-consult1:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}


.footer  {
  padding: 0;
  margin-top: -70px;
}

.footer-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* border-bottom: 1px solid #ccc; */
  padding-bottom: 30px;
  gap: 170px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex: 1;
  min-width: 250px;
}

.qr-code img {
  width: 88px;
  height: 88px;
}

.social-info p {
  margin: 0;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: #2A2A2A;
}

.social-info span {
  color: #B58469;
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
}

.footer-links,
.footer-contact {
  margin-top: 10px;
}

.footer-links a {
  display: block;
  margin-bottom: 0;
  text-decoration: none;
  color: #2A2A2A;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  transition: 0.4s ease-in;
}

.footer-links a:hover   {
  color: #ec6e42;
}

.footer-contact p {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #2A2A2A;
  font-weight: 500;
  font-size: 16px;
}

.footer-links ul,
.footer-contact ul {
  padding-left: 0;
}

.footer-links ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-contact ul li {
  list-style: none;
  margin-bottom: 16px;
}

.footer-contact a     {
    transition: 0.4s ease-in;
}

.footer-contact a:hover   {
  color: #ec6e42;
}

.footer-contact ul li span {
  width: 30px;
  display: inline-block;
  margin-right: 5px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  margin-right: 8px;
  /* color: #c57c52; */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding-top: 20px;
  font-size: 12px;
  align-items: end;
  /* color: #7d6b5d; */
}

.footer-bottom .logo1 img {
  height: 49px;
}

.footer-bottom p,
.footer-bottom p a,
.footer-bottom a {
  font-size: 14px;
  line-height: 20px;
  color: #474747;
  font-weight: 500;
  margin: 0;
}

.footer-bottom p a,
.footer-bottom a {
  text-decoration: auto;
  margin: 0 5px;
  transition: 0.2s ease-in;
}

.footer-contact a:hover   {
  color: #ec6e42;
}

.footer-bottom p a:hover,
.footer-bottom a:hover   {
  color: #ec6e42;
  text-decoration: underline;
}

.footer_cont {
  width: 100%;
  margin: 0 0 35px;
  padding: 180px 0 50px;
  background-color: #F0E6D9;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.footer_bot_cont {
  width: 90%;
  padding: 0;
  margin: 0 auto;
}

.icons {
  padding: 0;
  display: flex;
  gap: 20px;
  margin: 17px 0 0;
}

.icons li {
  list-style: none;
}

.icons li a     {
    transition: 0.4s ease-in;
}

.icons li a:hover svg path   {
  fill: #ec6e42;
}

.icons li:nth-child(4) a:hover svg path:nth-of-type(3),
.icons li:nth-child(4) a:hover svg path:nth-of-type(5) {
  fill: #FFF;
}




/********************* contact page styling *********************/

.contact-hero {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: linear-gradient(180deg, #EDD5C2 0%, #CAA37F 100%);
  min-height: 552px;
  padding: 4rem 0;
  padding-top: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-hero-text {
  max-width: 620px;
}

.contact-hero-text h1,
.contact-hero-text h1 span {
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
  color: #2A2A2A;
}

.contact-hero-text h2,
.contact-hero-text h2 span {
  font-size: 40px;
  line-height: 42px;
  font-weight: 500;
  color: #F5F5F5;
  margin-bottom: 0;
  display: block;
  /* padding: 128px 45px 140px 64px; */
}

.contact-hero-text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #FFF;
  width: 88%;
}

.cta-button-outline {
  width: 276px;
  height: 48px;
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 48px;
  padding: 0;
  border-radius: 30px;
  color: #F5F5F5;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-weight: 500;
}

.cta-button-outline span {
  z-index: 5;
  position: relative;
  transition: color 350ms ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button-outline:hover span {
  color: #FFF;
}

.cta-button-outline span svg {
  transition: 0.4s ease-in;
}

.cta-button-outline:hover span svg {
  transform: translateX(50%);
}

.cta-button-outline span svg path {
  transition: all 0.5s;
}

.cta-button-outline:hover span svg path {
  fill: #FFF
}

.cta-button-outline::after,
.cta-button-outline::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ec6e42;
  z-index: -1;
}

.cta-button-outline::before {
  transform: translateX(-100%);
  z-index: 1;
}

.cta-button-outline:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.cta-button-outline::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.cta-button-outline:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}

.cta-button-outline:hover {
  border: 1px solid #ec6e42 !important;
}

.cta-button-outline:focus {
  border: none;
}


/* ===== RIGHT IMAGE CONTENT ===== */

.contact-hero-image span {
  width: 640px;
  height: 320px;
  border-radius: 160px;
  overflow: hidden;
  display: block;
}

.contact-hero-image video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-hero-image img {
  width: auto;
  height: 307px;
  border-radius: 160px;
  object-fit: cover;
}

.contact-info-content {
  width: 95%;
  margin: 0 auto;
}

.contact-info-content a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #2A2A2A;

}

.contact-info h2 {
  height: auto;
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  color: #242424;
  margin-bottom: 16px;
}

.contact-info small {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2A2A2A;
}

.contact-info strong {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
}

.contact-info-content p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
}

.contact-info-content a {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
    transition: transform 0.5s ease;
}

.contact-info-content a:hover  {
  color: #ec6e42;
}


/* label container */
.radio-button-container {
  color: rgba(0,0,0,0.75);
  display: block;
  position: relative;
  padding-left: 35px;
  padding-right: 40px;
  line-height: 20px;
  margin-bottom: 0;
  margin-left: 0;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-button-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
/* border: 2px solid #9B5E41; */
  background: rgba(255, 255, 255, 0.75);
      transition: all 0.3s;
}

/* On mouse-over, add a grey background color */
.radio-button-container:hover input ~ .checkmark {
  border-color: #9B5E41;
}

/* When the radio button is checked */
.radio-button-container input:checked ~ .checkmark {
  /* background-color: rgba(0,0,0,0);
  border-color: teal; */
      /* border: 2px solid #9B5E41; */
    background-color: #FDF4EA;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-button-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-button-container .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #B58469;
}

.contact-info-content p span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2A2A2A;
}

.contact-info h5 {
  font-weight: 600;
  font-size: 28px;
  line-height: 50px;
  color: #242424;
}

.contact-info-content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
}

.contact-info i {
  color: #b67c55;
  /* or your brand color */
}

.phone-icon {
  width: 26px;
  height: 24px;
  /* margin-right: 8px; */
}


/* Make the first two fields inline */
.form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form {
  width: 96.4%;
}

/* Input styling */
.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  margin-top: 6px;
  outline: none;
  background: #FFFFFFBF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
}



/* Label styling */
.contact-form label {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

.handshake{
      border-top-right-radius: 60px;
      border-bottom-right-radius: 60px;
  }

/* Mobile responsive layout */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


.form-content {
  width: 100%;
  background-color: #E1C2A0;
  border-radius: 60px;
  margin: 0 auto;
  padding: 0;
}

.form-content img {
  height: auto;
  display: block;
}

.form-text {
  /* width: 96.4%; */
  /* padding-left: 122px; */
  padding: 100px 0;
  height: auto;
  margin: 0 auto;
}

.form-text h2 {
  color: #9B5E41;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 40px;
  margin-bottom: 0;
}

.form-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 60px;
  margin-bottom: 0;
}

.contact-btn {
  background: black;
  color: white;
  font-weight: 500;
  border-radius: 24px;
  width: 213px;
  height: 48px;
  font-size: 16px;
  margin-top: 20px;
  /* padding-bottom: 120px; */
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #2A2A2A;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
  /* hide native radio */
}

.custom-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #9B5E41;
  /* outer ring */
  background-color: #FDF4EA;
  /* unselected bg */
  position: relative;
}

.radio-label input[type="radio"]:checked+.custom-radio::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  width: 8px;
  height: 8px;
  background-color: #9B5E41;
  /* inner circle */
  border-radius: 50%;
}

.btn-consult1 {
  width: 276px;
  height: 48px;
  background-color: #2A2A2A;
  color: #fff;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  align-items: center;
  justify-content: center;
}

.btn-consult1:hover {
  color: #FFF;
}

.btn-consult1:focus {
  box-shadow: none;
}

.btn-consult1 img {
  width: 16px;
  height: 12px;

}

/********************* Success Rate page styling *********************/

.success_rate_sect {
  margin: 100px 0;
}

.success_rate_cont h2 {
  font-size: 40px;
  line-height: 42px;
  color: #9B5E41;
  text-align: center;
  margin-bottom: 50px;
}

.success_rate_txt {
  width: 73.1%;
  margin: 0 auto;
  padding-bottom: 14px;
}

.success_rate_txt strong {
  font-size: 80px;
  line-height: 85px;
  font-weight: 500;
  color: #2A2A2A;
}

.success_rate_txt p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #2A2A2A;
  width: 32%;
  display: block;
}

.success_rate_txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url(../img/line_img.png) no-repeat center center;
  z-index: -1;
}

.bord_sect:before {
  content: "";
  position: absolute;
  left: -10px;
  width: 2px;
  height: 108px;
  background: url(../img/icons/vertical_line.svg) no-repeat center center;
  z-index: -1;
  bottom: -14px;
}

.genetic_testing_sect {
  margin-top: 70px;
}

.genetic_testing_sect p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #2A2A2A;
  text-align: center;
  margin-bottom: 47px;
  width: 52%;
  margin: 0 auto;
}

.scroll-section {
  position: relative;
  height: auto;
}

.curve-section {
  position: relative;
  height: auto;
   min-height: 100vh;
  margin-top: 47px;
}

/* .svg-wrapper {
  position: relative;
  height: 1600px;
  width: 100%;
} */

.curve-svg {
  width: 100%;
  height: 100%;
}

.dot-group {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dot-line {
  width: 2px;
  height: 100px;
  background-image: repeating-linear-gradient(to bottom,
      #b58469,
      #b58469 5px,
      transparent 5px,
      transparent 10px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: #b58469;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  /* margin-top: 6px; */
}

.dot-group .label {
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  gap: 18px
}

.dot-group .label span {
  width: 97px;
  height: 60px;
  border-radius: 40px;
  background: #FFFFFF99;
  border: 1px solid #FFF;
  backdrop-filter: blur(4px);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  color: #2A2A2A;
  font-weight: 600;
}

.dot-group .label p {
  width: max-content;
  font-size: 20px;
  color: #474747;
  font-weight: 500;
}

.genetic_testing_sect ul {
  padding-left: 0;
  width: 73%;
  margin: 53px auto 0;
}

.genetic_testing_sect ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 20px;
  color: #474747;
  font-weight: 400;
  margin-bottom: 5px;
}

.genetic_testing_sect ul li::marker {
  font-size: 14px;
  color: #474747;
}

.svg-wrapper {
  position: relative;
  height: 1600px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/********************* Success Rate page styling *********************/

.why_choose_sect {
  margin: 100px 0;
}

.why_choose_cont {
  width: 68.3%;
  margin: 0 auto;
  padding: 0;
}

.why_choose_cont h2 {
  font-size: 40px;
  line-height: 42px;
  color: #9B5E41;
  text-align: center;
  margin-bottom: 50px;
}

.why_choose_cont .accordion-button {
  background: #E1C2A0B2;
  border-radius: 60px !important;
  box-shadow: none;
  border-bottom: none !important;
  padding: 38px 60px 14px;
  font-size: 32px;
  line-height: 40px;
  color: #FFF;
  font-weight: 500;
}

.why_choose_cont .accordion-button.collapsed {
  padding: 38px 60px;
}

.why_choose_cont .accordion-header {
  margin-bottom: 0 !important;
}

.why_choose_cont .accordion-item {
  border-radius: 60px !important;
  margin-bottom: 12px;
  background: #E1C2A0B2;
  border: none;
}

.why_choose_cont .accordion-button:not(.collapsed),
.why_choose_cont .accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
  color: #FFF;
}

.why_choose_cont .accordion-button.collapsed::after {
  background-color: var(--bs-gray-300);
}

.why_choose_cont .accordion-body {
  padding: 60px;
  gap: 80px;
}

.why_choose_cont .accordion-body h3 {
  font-size: 32px;
  line-height: 40px;
  color: #FFF;
  font-weight: 500;
  margin-bottom: 14px;
}

.why_choose_cont .accordion-body p {
  font-size: 16px;
  line-height: 26px;
  color: #474747;
  font-weight: 400;
  margin-bottom: 0;
}

.why_choose_cont .accordion-body img {
  width: 200px;
  height: 200px;
  display: block;
}

.why_choose_cont .accordion-button::after {
  display: none;
}

.why_choose_cont .accordion-button.collapsed {
  display: block;
}

.why_choose_cont .accordion-button {
  display: none;
}

.why_choose_cont .accordion-collapse.collapse {
  transition: height 0.85s ease;
}

.progress_bar_new {
  width: 100%;
  height: 2px;
  background-color: #D881274D;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 32px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #D88127;
  transition: width 0.5s linear;
}

.cta-button-outline.btn-new {
  border: 1px solid #9B5E41;
  color: #9B5E41;
  margin: 40px auto 0;
}

.next_step_sect {
  margin: 100px 0;
}

.next_step_cont {
  width: 97%;
  margin: 0 auto;
  padding: 0;
}

.next_step_cont h2,  .next_step_cont h3 {
  font-size: 40px;
  line-height: 42px;
  color: #9B5E41;
  text-align: left;
  margin-bottom: 50px;
}

.next_step_cont .collapsible-link {
  font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

.next_step_cont .card-header:first-child {
  padding: 17px 40px;
}

.next_step_cont .card-body {
  padding: 18px 40px;
}

.next_step_cont .card-body p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}


/********************* FAQ page styling *********************/

.faq-hero {
  margin-top: 100px;
}

.searchbar {
  width: 641px;
  margin: 0 auto;
}

.faq-hero-text {
  text-align: center;
}

.faq-hero-text h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #2A2A2A;
  text-align: center;
}

.faq-hero-content {
  width: 96%;
  margin: 0 auto;
  padding: 0;
}

.faq-hero-content input[type="text"] {
  font-weight: 400;
  /* background: #2A2A2A80; */
  width: 100%;
  max-width: 641px;
  padding: 12px 63px 12px 16px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  /* margin-top:  21px; */
  align-items: center;
  justify-content: center;
  outline: none;
  background: #FFFFFFBF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
  height: 60px;
  padding-left: 30px;
}

.search-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.card-body p {
  color: #2A2A2A;
}

.collapsible-link {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  position: relative;
  color: #2A2A2A !important;
}

.collapsible-link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  font-size: 20px;
  content: "\f107";
  /* down arrow */
  margin-left: 0.5rem;
  display: none;

}

.collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
  /* up arrow */
}

.collapsible-link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 20px;
}

.collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
}

.collapsible-link:focus {
  outline: none;
  box-shadow: none;
}

.card-header:first-child {
  width: 100%;
  height: auto;
  border-radius: 60px;
  background-color: #EBE5DF;
  padding: 18px 20px 18px 30px;
  border-bottom: none;
}

.card {
  background-color: transparent;
  background-clip: inherit;
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
}

.card-body {
  padding: 18px 20px 18px 30px;
}

.faq-accordion {
  margin-top: 60px;
  margin-bottom: 120px;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.collapsible-link[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}

.collapsible-link[aria-expanded="false"] .faq-toggle-icon {
  transform: rotate(0deg);
}




/********************* service page styling *********************/


.services-info {
  width: 100%;
  margin: 0 auto;
  padding: 76px 0 0;
}

.services-info-text {
  width: 442px;
  margin: 0;
}

.services-hero {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: linear-gradient(180deg, #EDD5C2 0%, #CAA37F 100%);
  min-height: 552px;
  padding: 4rem 0;
  padding-top: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.services-hero-text {
  max-width: 620px;
  width: 100%;
}

.services-hero-text h1,
.services-hero-text h1 span {
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
  color: #2A2A2A;
}

/* .services-hero-text h2,
.services-hero-text h2 span {
  font-size: 40px;
  line-height: 42px;
  font-weight: 500;
  color: #F5F5F5;
  margin-bottom: 0;
  display: block;
  /* padding: 128px 45px 140px 64px; */
/* } */
/* 
.services-hero-text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #FFF;
      width: 88%;
} */

.services-cta-button-outline {
  width: 276px;
  height: 48px;
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 48px;
  padding: 0;
  border-radius: 30px;
  color: #F5F5F5;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  justify-content: center;
}


/* ===== RIGHT IMAGE CONTENT ===== */

.services-hero-image img {
  width: auto;
  height: 307px;
  border-radius: 160px;
  object-fit: cover;
}


.services-info-content {
  /* width: 95%; */
  margin: 0 auto;
  padding-bottom: 0;
  /* padding-top: 740px; */
}


.services-info-content h2,
.services-info-content h2 span {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #9B5E41;
}

.services-info-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #474747;
  padding-top: 8px;
}

.parents-image {
  width: 560px;
  margin-bottom: -84px;
}

.benefit-section {
  background-color: #E1C2A0;
}

.benefit-content {
  padding-top: 180px;
  padding-bottom: 80px;
}

.benefit-content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #FFFFFF;
  padding-bottom: 11px;
}

.benefit-content h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #474747;
  padding-bottom: 32px;
}

.benefit-content li {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.benefit-content ul {
  padding: 0;
  margin: 0;
}

.benefit-list p {
  width: 485px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474747;
  padding-left: 16px;
}

.benefit-list img {
  width: 40px;
  height: 40px;
  /* padding-bottom: 80px; */
  border-radius: 12px !important;
}

.benefit-image {
  height: 480px;
  object-fit: cover;
}

.services-faq-content {
  width: 100%;
}

.next_step_cont.services-faq-content h2 {
  width: 100%;
}
.next_step_cont.services-faq-content h3 {
  width: 100%;
}


.services-faq-content h5 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #9B5E41
}

.services-card-body p {
  color: #2A2A2A;
}

.services-collapsible-link {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  font-weight: 400;
  cursor: pointer;
  font-size: 20px;
  line-height: 25px;
  position: relative;
  color: #2A2A2A !important;
}

.services-collapsible-link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  font-size: 20px;
  content: "\f107";
  /* down arrow */
  margin-left: 0.5rem;
  display: none;

}

.services-collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
  /* up arrow */
}

.services-collapsible-link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f107";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 20px;
}

.services-collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
}

.services-collapsible-link:focus {
  outline: none;
  box-shadow: none;
}

.services-card-header:first-child {
  width: 100%;
  height: auto;
  border-radius: 60px;
  background-color: #EBE5DF;
  /* padding: 12px 20px 18px 30px; */
  padding: 14px 24px;
  border-bottom: none;
}

.services-card {
  background-color: transparent;
  background-clip: inherit;
  border: none;
  border-radius: 0;
  margin-bottom: 12px;
}

.services-card-body {
  padding: 18px 20px 18px 30px;
}

.services-faq-accordion {
  margin-top: 60px;
  margin-bottom: 120px;
}

.services-faq-toggle-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.services-collapsible-link[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}

.services-collapsible-link[aria-expanded="false"] .faq-toggle-icon {
  transform: rotate(0deg);
}

.scroll_section {
  background-color: #EBE5DF;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.circle_item {
  pointer-events: none;
}

.circle_link {
  pointer-events: auto;
}

.circle_item.current .circle_description {
  transition-delay: 500ms;
  opacity: 1;
}

.circle_item.current .circle_dot {
  background-color: #ffb937;
}

.circle_link:hover .circle_dot {
  transform: scale(0.7);
}

.circle_link:hover .circle_date {
  opacity: 0.7;
}

/* .circle_item {
  transition: opacity 0.4s ease;
  opacity: 0;
}
.circle_item.current {
  opacity: 1;
} */


.circle_item {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.circle_item.current,
.circle_item.visible {
  opacity: 1;
  pointer-events: auto;
}

.circle_wrap {
  flex: none;
  /* width: 82em;
  height: 48.5em; */
  width: calc(100% - 5%);
  height: calc(100vh - 34vh);
  margin-top: auto;
}

.circle_wrapper {
  width: 100%;
  height: 100%;
}

.circle_list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.circle {
  text-align: center;
  border: 2px solid #B58469;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.4s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.circle_item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  transform: rotate(0);
}

.page-wrapper {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.container.is-timeline {
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 25vh 0 0;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.circle_height {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.project-css {
  display: none;
}

.circle_link-2 {
  margin-top: -2.1em;
  display: block;
  position: relative;
}

.circle_date {
  color: var(--white);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid;
  border-image-source: linear-gradient(88.6deg, #FFFFFF -6.54%, rgba(255, 255, 255, 0) 50.07%, #FFFFFF 106.68%);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  color: #474747;
  transition: opacity 0.3s;
  display: flex;
}

.circle_dot {
  background-color: var(--white);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.2s;
  display: block;
}

.circle_description {
  opacity: 0;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 85vh; */
  height: calc(100vh - 49vh);
  margin-top: 1.3em;
  transition: opacity 0.45s ease-in-out;
  display: flex;
  position: absolute;
      top: 0;
    left: 0;
}

.circle_line {
  /* background-color: #B58469; */
  border: 1px dashed #B58469;
  width: 1px;
  height: 55%;
  margin-top: 1em;
  transform: rotate(180deg);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0 0% auto;
}

.circle_p {
  color: #ffffffb3;
  letter-spacing: -0.03em;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.4;
}

.circle_p.headline_circle {
  color: #2A2A2A;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
}

.circle_p.base_txt {
  color: #474747;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0
}

.scroll_track {
  /* height: 510vh; */
    height: calc(100vh * 7); 
  padding-top: 0;
  padding-bottom: 0;
}

.txt_circle {
  /* grid-column-gap: 8px; */
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 10.5em;
  display: flex;
  padding: 30px 56px;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.5) 70%);
  border: 1px solid;
  border-image-source: linear-gradient(88.6deg, rgba(255, 255, 255, 0.5) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.5) 106.68%);
  backdrop-filter: blur(24px);
  border-radius: 100px;
  width: 770px;

}

.heading_world {
  position: absolute;
  top: 5.5em;
  left: 32px;
}

.black_intro {
  background-color: #010101;
  width: 100vw;
  height: 90vh;
}

.success_subscribe {
  color: var(--white);
  letter-spacing: 0.01em;
  background-color: #f1f1f100;
  border: 1px dashed #f1f1f140;
  border-radius: 14px;
  padding: 12px;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1.5;
}

.error_message {
  color: #ec3737;
  letter-spacing: 0.01em;
  background-color: #ffdede00;
  margin-top: 12px;
  padding: 0;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.2;
}

._5_cubes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  display: flex;
}

.cube_1 {
  background-color: var(--white);
  border-radius: 2px;
  width: 10px;
  height: 10px;
}

.cube_1.last_cube {
  opacity: 0.45;
}

._4_cubes,
._3_cubes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  display: flex;
}

.scroll_section h2 {
  font-size: 40px;
  line-height: 40px;
  color: #9B5E41;
  font-weight: 500;
}

.scroll_section .heading_grid {
  position: absolute;
  /* top: 4.5em; */
  top: calc(100vh - 90vh);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.scroll_section small {
  position: absolute;
  /* top: 7em; */
  top: calc(100vh - 81vh);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #474747;
  font-weight: 400;
}

.services-section.desk_dis_block {
  height: 100vh;
  /* height: calc(100vh * 4); */
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
  transform: translate(0, 0);
  display: block;
}

.services-section.mob_dis_block     {
  display: none;
}

.panel-wrapper {
  height: calc(100vh - 342px);
   /* height: 100%; */
  width: 100%;
  position: relative;
  /* overflow: hidden; */
}

.service-content {
  position: absolute;
  /* top: 52%; */
  top: calc(100vh - 71vh);
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  text-align: center;
  transition: all 0.5s ease;
  padding: 0;
  width: 1063px;

  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 80px; */

}

.service-content.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.service-content .img-size {
  width: auto;
  /* height: 700px; */
  height: calc(100vh - 35vh);
}

.service-txt    {
  width: 46%;
}

.lightpick__day.is-start-date,
.lightpick__day.is-end-date {
  background-color: #9B5E41;
  border-radius: 50%;
  background-image: none;
}

.lightpick__day.is-today {
  background-image: url(../img/dott_img.svg);
  background-size: 18.8% auto;
  background-position: center bottom;
  color: #9b5e41;
}

.lightpick__day.is-start-date:hover,
.lightpick__day.is-end-date:hover {
  background-color: #ec6e42;
  border-radius: 50%;
  background-image: none;
}

.lightpick__previous-action,
.lightpick__next-action,
.lightpick__close-action {
  background-color: #ec6e42;
  color: #FFF;
  font-size: 16px;
  line-height: 32px;
}

.lightpick__toolbar {
  margin: 10px 10px 0 0;
}

.lightpick {
  border-radius: 15px;
}

#menu-navigation .current-menu-item>a,
#menu-navigation .current-menu-parent>a,
#menu-navigation .current-menu-ancestor>a {
  color: #9B5E41 !important;
  font-weight: 500;
}

.navbar-nav>li.current-menu-ancestor::after       {
  border-color: #9B5E41;
}

/* 
.curve-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#curveSVG {
  width: 100%;
  height: 100%;
}

#movingDot {
  transform: translate(-10px, -10px);
}

.labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.label {
  position: absolute;
  color: #0073ff;
  opacity: 0;
  font-size: 18px;
  font-weight: bold;
  transition: opacity 0.3s ease;
} */


.success-section {
  opacity: 0;
  transition: opacity 0.6s ease;

}
.success-section.visible {
  opacity: 1;
  margin-top: 60px;
}


.benefit-image {
  border-radius: 60px;
}

.benefit-wrapper .benefit-section:nth-of-type(even) {
  background-color: #fdf7f1; 
}
.benefit-wrapper .benefit-section:nth-of-type(even) h5 {
  color:#9B5E41; 
}

 .copy-right{
        display: flex;
  
    gap: 10px;
    flex-direction: column;
    align-items: start;
  }

.mobile-menu, .hamburger-icon,.mobile-timeline      {
  display: none;
}

#breadcrumbs      {
padding: 20px 0 0;
font-size: 14px !important;
}


/******************** Responsive Start Here **************************/


@media screen and (max-width: 1920px) and (max-height: 1080px) {
  
.service-content      {
    top: calc(100vh - 62vh);
}

.service-content .img-size      {
  height: calc(100vh - 25vh);
}
.service-content      {
    width: 1320px;
}

.scroll_section small     {
    top: calc(100vh - 84vh);
}

.circle_wrap      {
    width: calc(100% - 1%);
    height: calc(100vh - 28vh);
}

.circle_description     {
  height: calc(100vh - 31vh);
}


}

@media screen and (max-width: 1820px) and (max-height: 809px) {
  
.service-content      {
    top: calc(100vh - 68vh);
}

.service-content .img-size      {
  height: calc(100vh - 33vh);
}
.service-content      {
    width: 1320px;
}

.scroll_section small     {
    top: calc(100vh - 84vh);
}

.circle_wrap      {
    width: calc(100% - 1%);
    height: calc(100vh - 28vh);
}

.circle_description     {
  height: calc(100vh - 31vh);
}


}

@media screen and (max-width: 1600px) and (max-height: 900px) {
.panel-wrapper {
    height: calc(100vh - 306px);
}
/* .service-content      {
  top: 50%;
} */
/* .service-content .img-size {
    width: auto;
    height: 592px;
} */
/* .service-content     {
      padding: 0 155px;
} */
/* .circle_wrap {
    width: 77em;
    height: 38.5em;
} */
/* .circle_description   {
      height: 75vh;
} */

    .service-content .img-size {
        height: calc(100vh - 28vh);
    }
    .service-content {
        top: calc(100vh - 65vh);
    }

}

@media screen and (max-width: 1536px) and (max-height: 730px) {
.panel-wrapper {
    height: calc(100vh - 306px);
}
/* .service-content      {
  top: 50%;
} */
/* .service-content .img-size {
    width: auto;
    height: 500px;
} */
/* .service-content     {
      padding: 0 188px;
} */
/* .circle_wrap {
    width: 77em;
    height: 30em;
} */
/* .circle_description   {
      height: 75vh;
} */

.service-content .img-size {
        height: calc(100vh - 34vh);
    }
    .service-content {
        top: calc(100vh - 67vh);
    }

}

@media screen and (max-width: 1440px) and (max-height: 900px) {

.panel-wrapper {
    height: calc(100vh - 306px);
}
/* .service-content      {
  top: 50%;
} */
/* .service-content .img-size {
    width: auto;
    height: 590px;
} */
/* .service-content     {
      padding: 0 155px;
} */
/* .circle_wrap {
    width: 77em;
    height: 38.5em;
} */
/* .circle_description   {
      height: 75vh;
} */

.service-content .img-size {
        height: calc(100vh - 30vh);
    }
  .service-content {
        top: calc(100vh - 66vh);
    }

}

@media screen and (max-width: 1366px) and (max-height: 607px) {
    
    .next_step_cont h2 ,  .next_step_cont h3{
    font-size: 36px;
    line-height: 38px;
}  


.panel-wrapper {
    height: calc(100vh - 306px);
}

.navbar     {
  width: 90%;
}
.hero-content     {
  width: 1140px;
}

.slider-content img {
    width: 480px; 
}

.txt_circle     {
  width: 600px;
}
.circle_p.base_txt      {
    font-size: 16px;
    line-height: 23px;
}


.dot-group:nth-child(2)      {
    top: -21px !important;
    left: 590px !important;
}
.dot-group:nth-child(3)      {
    top: 353px !important;
    left: 210px !important;
}
.dot-group:nth-child(4)      {
    top: 695px !important;
    left: 640px !important;
}
.dot-group:nth-child(5)      {
    top: 1048px !important;
    left: 180px !important;
}
.dot-group:nth-child(6)      {
    top: 1399px !important;
    left: 600px !important;
}

.service-content .img-size {
        height: calc(100vh - 35vh);
    }
  .service-content {
        top: calc(100vh - 71vh);
    }

  .scroll_section .heading_grid     {
    top: calc(100vh - 92vh);
  }

.circle_description {
        height: calc(100vh - 37vh);
    }

.next_step_cont h2,  .next_step_cont h3 {
    font-size: 36px;
    line-height: 37px;
}
/* .next_step_cont .collapsible-link {
    font-size: 22px;
} */
.services-section     {
  padding: 70px 0;
}

.lady-image       {
  right: 34px;
}

.lady-shadow-image      {
  right: 255px;
} 

.circle-new     {
  width: 734px;
  padding: 30px 40px;
  /* right: 237px; */
}

}

@media screen and (max-width: 1280px) and (max-height: 720px) {
      .hero-content     {
        width: 1140px;
      }

      .navbar     {
  width: 94%;
}


}

@media screen and (max-width: 1024px) and (max-height: 768px) {

.navbar     {
  width: 96%;
}

.navbar-brand img     {
      width: 190px;
}

.navbar-nav li a    {
      font-size: 15px;
              width: 100%;
        display: block;
}

.navbar-nav li {
    margin-right: 20px;
}
.btn-consult span   {
  font-size: 15px;
}
.container      {
      width: 97%;
}
.panel-wrapper {
    height: calc(100vh - 306px);
}

.txt_circle  {
  width: 620px;
}
.success-content      {
  padding: 60px 45px 30px 40px;
}
.lady-image   {
  right: 0;
}
.circle-new     {
    padding: 20px 40px 20px 30px;
    width: 665px;
}
.circle-new h3, .circle-new h5     {
          font-size: 22px;
        line-height: 27px;
}
.lady-shadow-image      {
      right: 210px;
}
.experience-content {
    width: 91%;
}
.experience-content h3    {
  font-size: 45px;
    line-height: 50px;
}
.slider-content img {
    width: 50%;
}
.slider-right-content     {
  padding-top: 40px;
}

.slider-content span      {
  bottom: 55px;
}
.take-text {
    padding-left: 0;
    width: 70%;
    margin: 0 auto;
}
.take-text p    {
      padding-bottom: 40px;
}

.footer-container, .footer_bot_cont {
    width: 85%;
        gap: 75px;
}

.footer-bottom p, .footer-bottom p a   {
  margin: 0 0 5px;
}

.contact-hero-image span    {
  width: 100%;
  height: auto;
}
.contact-hero-image     {
  width: 100%;
}
.success_rate_txt {
    width: 93%;
 }
.genetic_testing_sect p     {
      width: 72%;
}

.why_choose_cont .accordion-body {
    padding: 40px;
    gap: 60px;
}
.next_step_cont h2,  .next_step_cont h3 {
    font-size: 30px;
    line-height: 33px;
}
.next_step_cont .card-header:first-child,
.next_step_cont .card-body {
    padding: 19px 30px;
}
/* .next_step_cont .collapsible-link {
    font-size: 20px;
} */

.dot-group:nth-child(2)      {
      top: 27px !important;
    left: 440px !important;
}
.dot-group:nth-child(3)      {
    top: 401px !important;
    left: 30px !important;
}
.dot-group:nth-child(4)      {
    top: 682px !important;
    left: 500px !important;
}
.dot-group:nth-child(5)      {
    top: 1022px !important;
    left: 60px !important;
}
.dot-group:nth-child(6)      {
    top: 1337px !important;
    left: 560px !important;

}
.experience-content h3 {
        font-size: 42px;
        line-height: 46px;
    }

.slider-content span      {
  padding: 14px 28px;
  bottom: 66px;
}

.slider-content span strong     {
  font-size: 21px;
  line-height: 21px;
}

.slider-right-content p     {
      font-size: 16px;
    line-height: 26px;
}
.contact-hero-image img     {
  width: 462px;
  height: auto;
}

.services-hero-text h1, .services-hero-text h1 span {
    font-size: 38px;
    line-height: 41px;
}

.benefit-content h2  {
  font-size: 36px;
    line-height: 36px;
}


}

@media screen and (max-width: 820px) and (max-height: 1180px) {
  .navbar     {
    width: 94%;
  }

  .hero-content     {
    width: 90%;
  }

.circle-new     {
  width: 100%;
}
.hero-section video     {
  object-position: 70%;
}

.service-content .img-size {
    width: auto;
    height: 550px;
    margin: 30px auto;
}

.service-content {
    width: 100%;
}
.service-content h3   {
  width: 100%;
  text-align: center;
  padding-top: 14px;
}
.service-content p    {
          width: 410px;
        margin: 0 auto;
        text-align: center;
}
.services-slider {
  overflow: hidden;
}
.service-content {
  padding: 2rem;
}


.services-slider {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000; 
}

.service-content      {
  opacity: 1;
  left: 0;
  top: 0;
  display: block !important;
  position: relative;
      transform: none;
}
.success-section      {
  opacity: 1;
}

.service-content span     {
  margin: 0 auto; 
}

.services-section   {
  height: 100%;
  padding: 100px 0;
  transform: none;
}

.panel-wrapper      {
  height: auto;
  width: 96%;
  margin: 0 auto;
}

.services-section .g-4      {
  --bs-gutter-y: auto;
}

.service-content::before      {
      top: 38.5%;
}

.service-content::after     {
      bottom: 31%;
}

.service-content p br       {
    display: none;
}
.swiper-pagination-bullet     {
    background-color: #D3D3D3;
    opacity: 1;  
}
.swiper-pagination-bullet-active      {
  width: 24px !important;
  height: 8px !important;
  background-color: #B58469 !important;
  border-radius: 4px !important;
}

.success-content      {
  padding: 60px 30px 240px;
}

.success-content h2     {
      text-align: center;
    display: block !important;
}

.success-content p      {
  text-align: center;
}

.success-content a      {
  justify-content: center;
}

.circle-new     {
  display: block !important;
      border-radius: 70px;
          padding: 40px;
}
.mob_chnge_pos      {
  justify-content: left !important;
  margin-bottom: 30px !important;
}

.success-overall      {
  border-left: none;
  margin-top: 20px;
      width: max-content;
}

.border-bott        {
  padding-left: 0 !important;
  display: block !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}

.border-bott:last-child        {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


.border-bott p    {
  text-align: left !important;
}
.circle-new h5      {
  margin-bottom: 10px;
}

.lady-image     {
      right: 40px;
    z-index: 9;
}

.lady-shadow-image  {
  display: none;
}
.mob_shadow_img     {
  display: block;
  width: auto;
  height: 520px;
      width: auto;
    position: absolute;
    bottom: 0;
    right: 250px;
    opacity: 40% !important;
    mix-blend-mode: multiply;
    z-index: 9;
}
.services-section.desk_dis_block    {
  display: none;
}
.services-section.mob_dis_block    {
  display: block;
}
.services-section.mob_dis_block .slick-dots li button:before {
    display: none;

}

.services-section.mob_dis_block .slick-dots li.slick-active button,
.services-section.mob_dis_block .slick-dots li.slick-active  {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: #B58469;
}

.services-section.mob_dis_block.slick-dotted.slick-slider      {
  margin-bottom: 0;
}

.services-section.mob_dis_block .slick-dots li button,
.services-section.mob_dis_block .slick-dots li  {
  width: 8px;
  height: 8px;
          background: #D3D3D3;
        border-radius: 100%;
}


    .experience-content h3 {
        text-align: center;
            margin-bottom: 30px;

    }

    .experience-content {
    width: 90%;
    }
.slider_mob       {
  display: block !important;
}

.slider-content img     {
  width: 640px;
  height: 640px;
}
.slider-nav     {
  width: 160px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: none;
      top: 67%;
          background: rgba(255,255,255,0.9);
}

.slider-content span {
  bottom: inherit;
  top: 56%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
}

.slider-right-content     {
  width:100%;
  text-align: center;
}

.take-content .row    {
  display: block;
}

.take-text {
    width: 80%;
        text-align: center;
        padding: 60px 0;
        margin: 0 auto;
}

.take-content .col-md-6   {
  width: 100%;
}

.btn-consult1     {
  margin: 0 auto;
}

.take-content img   {
  width: 100%;
}


  .footer-container {
    gap: 40px;
    justify-content: left;
  }

.footer-contact     {
  padding-left: 180px;
}

  .footer-contact ul li span {
    display: block;
  }

  .footer-social {
    min-width: auto;
    width: 100%;
        flex: none;
  }

  .footer-bottom .logo1 img {
    height: 69px;
    margin-bottom: 24px;
  }

  .footer-bottom p,
  .footer-bottom p a {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }

  .footer-container {
    padding-bottom: 40px;
  }

  .footer_cont {
    padding: 160px 0 40px;
  }

  .social-info p,
  .social-info span {
    font-size: 16px;
    line-height: 120%;
  }

.mobile-menu {
top:0;
    position: fixed;
    height: 100vh;
    z-index: 9999999999;
    width: 100%;
    padding: 40px 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-wrapper {
    height: 90%;
  }

  .mob-branding {
    background-image: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%);
    padding: 15px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    margin-bottom: 40px;
  }

  .desktop-consult {
    display: none !important;
  }

  .mobile-menu .navbar-nav li {
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0;
    border-right: 0;
  }

  .mobile-menu .navbar-nav li:first-child {
    border-top: 1px solid #d3d3d3;
  }

  .navbar-nav>li.menu-item-has-children::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar-nav li .sub-menu li .sub-menu,
  .navbar-nav li .sub-menu {
    position: relative;
    border-image-source: none;
    background: transparent;
    background-color: transparent;
    border: 0;
    top: auto;
    left: auto;
    z-index: 9999;
  }

  .navbar-nav li:hover .sub-menu,
  .navbar-nav li:hover .js-sub-menu {
    display: block;
  }

  .navbar-nav li .sub-menu li:hover .sub-menu {
    display: block;
  }

  .navbar-nav li .sub-menu li {
    padding: 10px 10px;
  }

  .contact-hero-content {
        flex-direction: column-reverse;
    }

.contact-hero-text .heading_grid     {
    text-align: center;
}

.contact-hero-text p      {
  text-align: center;
      margin: 0 auto;
}

.btn-consult2   {
  margin: 0 auto;
}

.success_rate_txt {
    width: 100%;
}

.success_rate_txt strong {
    font-size: 50px;
    line-height: 65px;
}

.success-stats {
  padding: 0 20px !important;
}
.genetic_testing_sect p     {
  width: 82%;
}
.bord_sect:before     {
      left: -30px;
}    

.curve-section      {
  min-height: 100%;
}
.hamburger-icon     {
  display: block;
}

.svg-wrapper      {
  height: 100%;
}


.dot-group:nth-child(2)      {
            top: -27px !important;
        left: 330px !important;
}
.dot-group:nth-child(3)      {
            top: 231px !important;
        left: 50px !important;
}
.dot-group:nth-child(4)      {
    top: 455px !important;
        left: 340px !important;
}
.dot-group:nth-child(5)      {
            top: 699px !important;
        left: 50px !important;
}
.dot-group:nth-child(6)      {
            top: 937px !important;
        left: 320px !important;
}

.genetic_testing_sect ul {
    width: 80%;
}

.why_choose_cont
 {
    width: 80%;
 }

.dot-line     {
  height: 60px;
}
.accordion .slick-slide {
    margin-bottom: 20px;
  }

.why_choose_cont .accordion-collapse.collapse {
    display: block;
}
.why_choose_cont .accordion-header {
    display: none;
}


.accordion-button {
    display: none;
  }

  .accordion-body, .services-hero-content   {
    flex-direction: column-reverse;
  }

.why_choose_cont .accordion-body {
    padding: 60px;
    gap: 50px;
    text-align: center;
}

.next_step_cont .col-md-6     {
  width: 100%;
}

.next_step_cont h2,  .next_step_cont h3    {
  text-align: center;
}

.services-hero-text h1, .services-hero-text h1 span, .services-hero-text .heading_grid   {
  text-align: center;
}
.services-info-text {
    width: 100%;
    margin: 0;
}
.services-info-content .col-md-6      {
  padding-left: 10px !important;
}

.services-info-content p {
    font-size: 15px;
    line-height: 20px;
}

.scroll_section  {
  height: auto;
}

.circle_description {
        height: 24%;
    }

    .benefit-content {
    padding-top: 110px;
    }


  .mob-branding {
    background-image: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%);
    padding: 15px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    margin-bottom: 20px;
  }
  .mobile-menu .navbar-nav li {
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0;
    border-right: 0;
  }

  .mobile-menu .navbar-nav li:first-child {
    border-top: 1px solid #d3d3d3;
  }
  
  .navbar-nav>li.menu-item-has-children::after {
            top: 46%;
        transform: rotate(45deg) translateY(-50%);
        right: 10px;
  }

  .navbar-nav li .sub-menu li .sub-menu,
  .navbar-nav li .sub-menu {
    position: relative;
    border-image-source: none;
    background: transparent;
    background-color: transparent;
    border: 0;
    top: auto;
    left: auto;
    z-index: 9999;
    display: none;
  }

  .navbar-nav li:hover .sub-menu,
  .navbar-nav li:hover .js-sub-menu {
    display: block;
        backdrop-filter: none !important;
        background: transparent;
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
  }

.mobile-menu .navbar-nav li .sub-menu li a svg    {
  transform: rotate(90deg);
}

.navbar-nav li .sub-menu a      {
  justify-content: normal;
    gap: 15px;
}

.navbar-nav>li.menu-item-has-children::after      {
  transition: none;
}

  .mobile-menu .navbar-nav li .sub-menu li {
      border: none;
      padding: 5px 10px;
    }


  .navbar-nav li .sub-menu li:hover .sub-menu {
    display: block;
  }

  .navbar-nav li .sub-menu li {
    padding: 10px 10px;
  }


.scroll_section {
        height: 100vh;
    }

.page-wrapper {
        padding-top: calc(100vh - 170%);
    }
    .circle_wrap {
        width: calc(100% - -25%);
        height: calc(100vh - 28vh);
    }

    .container.is-timeline {
        height: 100vh;
        padding: 0;
    }
    .circle_description {
        height: 64%;
    }

    .txt_circle {
        width: 530px;
        padding: 20px;
    }

.scroll_track     {
  height: 100vh;
}

.hero-section::before {
        background: linear-gradient(rgba(155, 94, 65, 0) 40.98%, rgb(224, 197, 169) 63.22%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    }

    .hero-section video {
        height: 73%;
    }
    .hero-content {
        padding-top: 230px;
    }
    .heading_grid_h2 {
        text-align: center;
    }
        .hero-content p {
        text-align: center;
    }

    .why_choose_cont .accordion-item {
        border-radius: 32px !important;
        margin: 0 10px;
    }

    .handshake {
        border-radius: 60px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }


.mobile-menu .sub-menu {
  display: none; 
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: block !important;
      opacity: 1;
    visibility: visible;
    transform: none;
            backdrop-filter: none !important;
        background: transparent;
        margin-top: 5px;

}

.mobile-menu .menu-item-has-children > .sub-menu {
  display: none !important;
}

.navbar-nav>li.menu-item-has-children::after      {
  transform: rotate(45deg) !important;
}

.navbar-nav>li.menu-item-has-children.submenu-open::after      {
  transform: rotate(225deg) !important;
          top: 35px;
}

.mobile-menu .navbar-nav li.menu-item-has-children .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li.menu-item-has-children.submenu-open a svg    {
  transform: rotate(-90deg) !important;
}

.navbar-nav li .sub-menu li .sub-menu   {
  transition: none;
}

.navbar-nav > li.menu-item-has-children:hover::after {
        top: 46%;
    }


.mobile-menu .menu-item-has-children {
  position: relative;
}

.mobile-menu .menu-item-has-children > .submenu-toggle {
  position: absolute;
  right: 3px;
  top: 55%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url('../images/arrow-icon.svg') no-repeat center center;
  background-size: 12px;
  z-index: 9;
}

.mobile-menu .menu-item-has-children.submenu-open > .submenu-toggle {
    top: 35px;
}

.navbar-nav li a {
        font-size: 15px;
        width: 80%;
        display: block;
}

.navbar-nav li .sub-menu a      {
          justify-content: space-between;
        gap: 15px;
        width: 97%;
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu   {
  width: 100%;
}


.navbar-nav li .sub-menu a      {
          justify-content: space-between;
        gap: 15px;
        width: 97%;
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu   {
  width: 100%;
}

.mobile-menu .menu-item-has-children.submenu-open > .sub-menu .submenu-toggle {
        top: 14px;
        right: 1px;
    }
  
.mobile-menu .menu-item-has-children.submenu-open > a     {
      color: rgb(155, 94, 65) !important;
    font-weight: 500;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg    {
    transform: rotate(-90deg) !important;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg path  {
    fill: rgb(155, 94, 65);
}

.mobile-menu .menu-item-has-children.submenu-open:after    {
    transform: rotate(-90deg) !important;
        border-color: rgb(155, 94, 65);
}



}


@media screen and (max-width: 768px) and (max-height: 1024px) {
  .navbar     {
    width: 94%;
  }

  .hero-content     {
    width: 90%;
  }

.circle-new     {
  width: 100%;
}
.hero-section video     {
  object-position: 70%;
}

.service-content .img-size {
    width: auto;
    height: 550px;
    margin: 30px auto;
}

.service-content {
    width: 100%;
}
.service-content h3   {
  width: 100%;
  text-align: center;
  padding-top: 14px;
}
.service-content p    {
          width: 410px;
        margin: 0 auto;
        text-align: center;
}
.services-slider {
  overflow: hidden;
}
.service-content {
  padding: 2rem;
}


.services-slider {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000; 
}

.service-content      {
  opacity: 1;
  left: 0;
  top: 0;
  display: block !important;
  position: relative;
      transform: none;
}
.success-section      {
  opacity: 1;
}

.service-content span     {
  margin: 0 auto; 
}

.services-section   {
  height: 100%;
  padding: 100px 0;
  transform: none;
}

.panel-wrapper      {
  height: auto;
  width: 96%;
  margin: 0 auto;
}

.services-section .g-4      {
  --bs-gutter-y: auto;
}

.service-content::before      {
      top: 38.5%;
}

.service-content::after     {
      bottom: 31%;
}

.service-content p br       {
    display: none;
}
.swiper-pagination-bullet     {
    background-color: #D3D3D3;
    opacity: 1;  
}
.swiper-pagination-bullet-active      {
  width: 24px !important;
  height: 8px !important;
  background-color: #B58469 !important;
  border-radius: 4px !important;
}

.success-content      {
  padding: 60px 30px 240px;
}

.success-content h2     {
      text-align: center;
    display: block !important;
}

.success-content p      {
  text-align: center;
}

.success-content a      {
  justify-content: center;
}

.circle-new     {
  display: block !important;
      border-radius: 70px;
          padding: 40px;
}
.mob_chnge_pos      {
  justify-content: left !important;
  margin-bottom: 30px !important;
}

.success-overall      {
  border-left: none;
  margin-top: 20px;
      width: max-content;
}

.border-bott        {
  padding-left: 0 !important;
  display: block !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}

.border-bott:last-child        {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


.border-bott p    {
  text-align: left !important;
}
.circle-new h5      {
  margin-bottom: 10px;
}

.lady-image     {
      right: 40px;
    z-index: 9;
}

.lady-shadow-image  {
  display: none;
}
.mob_shadow_img     {
  display: block;
  width: auto;
  height: 520px;
      width: auto;
    position: absolute;
    bottom: 0;
    right: 250px;
    opacity: 40% !important;
    mix-blend-mode: multiply;
    z-index: 9;
}
.services-section.desk_dis_block    {
  display: none;
}
.services-section.mob_dis_block    {
  display: block;
}
.services-section.mob_dis_block .slick-dots li button:before {
    display: none;

}

.services-section.mob_dis_block .slick-dots li.slick-active button,
.services-section.mob_dis_block .slick-dots li.slick-active  {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: #B58469;
}

.services-section.mob_dis_block.slick-dotted.slick-slider      {
  margin-bottom: 0;
}

.services-section.mob_dis_block .slick-dots li button,
.services-section.mob_dis_block .slick-dots li  {
  width: 8px;
  height: 8px;
          background: #D3D3D3;
        border-radius: 100%;
}


    .experience-content h3 {
        text-align: center;
    }

    .experience-content {
    width: 90%;
    }
.slider_mob       {
  display: block !important;
}

.slider-content img     {
  width: 640px;
  height: 640px;
}
.slider-nav     {
  width: 160px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: none;
      top: 67%;
          background: rgba(255,255,255,0.9);
}

.slider-content span {
  bottom: inherit;
  top: 56%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
}

.slider-right-content     {
  width:100%;
  text-align: center;
}

.take-content .row    {
  display: block;
}

.take-text {
    width: 80%;
        text-align: center;
        padding: 60px 0;
        margin: 0 auto;
}

.take-content .col-md-6   {
  width: 100%;
}

.btn-consult1     {
  margin: 0 auto;
}

.take-content img   {
  width: 100%;
}


  .footer-container {
    gap: 40px;
    justify-content: left;
  }

.footer-contact     {
  padding-left: 180px;
}

  .footer-contact ul li span {
    display: block;
  }

  .footer-social {
    min-width: auto;
    width: 100%;
        flex: none;
  }

  .footer-bottom .logo1 img {
    height: 69px;
    margin-bottom: 24px;
  }

  .footer-bottom p,
  .footer-bottom p a {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }

  .footer-container {
    padding-bottom: 40px;
  }

  .footer_cont {
    padding: 160px 0 40px;
  }

  .social-info p,
  .social-info span {
    font-size: 16px;
    line-height: 120%;
  }

.mobile-menu {
top: 0;
    position: fixed;
    height: 100vh;
    z-index: 9999999999;
    width: 100%;
    padding: 40px 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-wrapper {
    height: 90%;
  }

  .mob-branding {
    background-image: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%);
    padding: 15px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    margin-bottom: 40px;
  }

  .desktop-consult {
    display: none !important;
  }

  .mobile-menu .navbar-nav li {
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0;
    border-right: 0;
  }

  .mobile-menu .navbar-nav li:first-child {
    border-top: 1px solid #d3d3d3;
  }

  .navbar-nav>li.menu-item-has-children::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar-nav li .sub-menu li .sub-menu,
  .navbar-nav li .sub-menu {
    position: relative;
    border-image-source: none;
    background: transparent;
    background-color: transparent;
    border: 0;
    top: auto;
    left: auto;
    z-index: 9999;
  }
/* 
  .navbar-nav li:hover .sub-menu,
  .navbar-nav li:hover .js-sub-menu {
    display: block;
  } */

  /* .navbar-nav li .sub-menu li:hover .sub-menu {
    display: block;
  } */

  .navbar-nav li .sub-menu li {
    padding: 10px 10px;
  }

  .contact-hero-content {
        flex-direction: column-reverse;
    }

.contact-hero-text .heading_grid     {
    text-align: center;
}

.contact-hero-text p      {
  text-align: center;
      margin: 0 auto;
}

.btn-consult2   {
  margin: 0 auto;
}

.success_rate_txt {
    width: 100%;
}

.success_rate_txt strong {
    font-size: 50px;
    line-height: 65px;
}

.success-stats {
  padding: 0 20px !important;
}
.genetic_testing_sect p     {
  width: 82%;
}
.bord_sect:before     {
      left: -30px;
}    

.curve-section      {
  min-height: 100%;
}
.hamburger-icon     {
  display: block;
}

.svg-wrapper      {
  height: 100%;
}


.dot-group:nth-child(2)      {
            top: -27px !important;
        left: 330px !important;
}
.dot-group:nth-child(3)      {
            top: 231px !important;
        left: 50px !important;
}
.dot-group:nth-child(4)      {
    top: 455px !important;
        left: 340px !important;
}
.dot-group:nth-child(5)      {
            top: 699px !important;
        left: 50px !important;
}
.dot-group:nth-child(6)      {
            top: 937px !important;
        left: 320px !important;
}

.genetic_testing_sect ul {
    width: 80%;
}

.why_choose_cont
 {
    width: 80%;
 }

.dot-line     {
  height: 60px;
}
.accordion .slick-slide {
    margin-bottom: 20px;
  }

.why_choose_cont .accordion-collapse.collapse {
    display: block;
}
.why_choose_cont .accordion-header {
    display: none;
}


.accordion-button {
    display: none;
  }

  .accordion-body, .services-hero-content   {
    flex-direction: column-reverse;
  }

.why_choose_cont .accordion-body {
    padding: 60px;
    gap: 50px;
    text-align: center;
}

.next_step_cont .col-md-6     {
  width: 100%;
}

.next_step_cont h2, .next_step_cont h3{
  text-align: center;
}

.services-hero-text h1, .services-hero-text h1 span, .services-hero-text .heading_grid   {
  text-align: center;
}
.services-info-text {
    width: 100%;
    margin: 0;
}
.services-info-content .col-md-6      {
  padding-left: 10px !important;
}

.services-info-content p {
    font-size: 15px;
    line-height: 20px;
}

.scroll_section  {
  height: auto;
}

.circle_description {
        height: 24%;
    }

    .benefit-content {
    padding-top: 110px;
    }


  .mob-branding {
    background-image: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%);
    padding: 15px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    margin-bottom: 20px;
  }
  .mobile-menu .navbar-nav li {
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0;
    border-right: 0;
  }

  .mobile-menu .navbar-nav li:first-child {
    border-top: 1px solid #d3d3d3;
  }
  
  .navbar-nav>li.menu-item-has-children::after {
            top: 46%;
        transform: rotate(45deg) translateY(-50%);
        right: 10px;
  }

  .navbar-nav li .sub-menu li .sub-menu,
  .navbar-nav li .sub-menu {
    position: relative;
    border-image-source: none;
    background: transparent;
    background-color: transparent;
    border: 0;
    top: auto;
    left: auto;
    z-index: 9999;
    display: none;
  }

  .navbar-nav li:hover .sub-menu,
  .navbar-nav li:hover .js-sub-menu {
    display: block;
        backdrop-filter: none !important;
        background: transparent;
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
  }

.mobile-menu .navbar-nav li .sub-menu li a svg    {
  transform: rotate(90deg);
}

.navbar-nav li .sub-menu a      {
  justify-content: normal;
    gap: 15px;
}

.navbar-nav>li.menu-item-has-children::after      {
  transition: none;
}

  .mobile-menu .navbar-nav li .sub-menu li {
      border: none;
      padding: 5px 10px;
    }


  /* .navbar-nav li .sub-menu li:hover .sub-menu {
    display: block;
  } */

  .navbar-nav li .sub-menu li {
    padding: 10px 10px;
  }


.scroll_section {
        height: 100vh;
    }

.page-wrapper {
        padding-top: calc(100vh - 170%);
    }
    .circle_wrap {
        width: calc(100% - -25%);
        height: calc(100vh - 28vh);
    }

    .container.is-timeline {
        height: 100vh;
        padding: 0;
    }
    .circle_description {
        height: 64%;
    }

    .txt_circle {
        width: 530px;
        padding: 20px;
    }

.scroll_track     {
  height: 100vh;
}

.hero-section::before {
        background: linear-gradient(rgba(155, 94, 65, 0) 40.98%, rgb(224, 197, 169) 63.22%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    }

    .hero-section video {
        height: 73%;
    }
    .hero-content {
        padding-top: 190px;
    }
    .heading_grid_h2 {
        text-align: center;
    }
        .hero-content p {
        text-align: center;
    }

    .why_choose_cont .accordion-item {
        border-radius: 32px !important;
        margin: 0 10px;
    }

    .handshake {
        border-radius: 60px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    
.mobile-menu .sub-menu {
  display: none; 
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: block !important;
      opacity: 1;
    visibility: visible;
    transform: none;
            backdrop-filter: none !important;
        background: transparent;
        margin-top: 5px;

}

.mobile-menu .menu-item-has-children > .sub-menu {
  display: none !important;
}

.navbar-nav>li.menu-item-has-children::after      {
  transform: rotate(45deg) !important;
}

.navbar-nav>li.menu-item-has-children.submenu-open::after      {
  transform: rotate(225deg) !important;
          top: 35px;
}

.mobile-menu .navbar-nav li.menu-item-has-children .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li.menu-item-has-children.submenu-open a svg    {
  transform: rotate(-90deg) !important;
}

.navbar-nav li .sub-menu li .sub-menu   {
  transition: none;
}


.navbar-nav li .sub-menu a      {
          justify-content: space-between;
        gap: 15px;
        width: 97%;
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu   {
  width: 100%;
}

.mobile-menu .menu-item-has-children.submenu-open > .sub-menu .submenu-toggle {
        top: 14px;
        right: 1px;
    }
  
.mobile-menu .menu-item-has-children.submenu-open > a     {
      color: rgb(155, 94, 65) !important;
    font-weight: 500;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg    {
    transform: rotate(-90deg) !important;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg path  {
    fill: rgb(155, 94, 65);
}

.mobile-menu .menu-item-has-children.submenu-open:after    {
    transform: rotate(-90deg) !important;
        border-color: rgb(155, 94, 65);
}



}


@media screen and (max-width: 1440px) {
  .experience-content h3      {
        font-size: 48px;
      line-height: 53px;
  }
  
}


@media screen and (max-width: 767px) {
  .hero-content h1,
  .services-section h2{
    font-size: 32px;
    line-height: 100%;
    text-align: center;
  }
  .hero-content p br{
    display: none;
  }
  .experience-content h3{
    font-size: 32px;
    line-height: 100%;
  }
  .hero-content h2{
    font-size: 24px;
    line-height: 100%;
        padding: 8px 0;
  }
  .service-content span{
    width: 48px;
    height: 48px;
  }
  .service-content span img{
    height: 35px;
  }
  .service-content .img-size{
    height: 360px;
  }
  .service-content p{
    text-align: center;
    width: 100%;
    height: 135px;
  }
  .circle-new{
    padding: 24px;
  }
  .success-content{
    border-radius: 32px;
  }
  .success-content h2{
    font-size: 32px;
    line-height: 100%;
  }

.scroll_section {
        height: 100vh;
    }

  .heading_grid_h2{
    text-align: center;
  }
  .take-text{
    padding: 0;
  }
  .service-content h3{
    font-size: 20px;
    line-height: 26px;
            width: 200px;
        margin: 0 auto;
  }

  .services-section {
        height: 100%;
        transform: none;
        padding: 60px 0px 35px;
    }

  .services-section.mob_dis_block .slick-dots     {
        bottom: -5px;
  }

  .success-content{
    padding: 60px 24px 200px;
  }
  .lady-image{
    right: 0;
    height: 520px;
  }
  .experience-content{
    padding-left: 0;
  }
  .slider-content span{
    top: 36%;
  }
  .hero-section:before{
    background: linear-gradient(180deg, rgba(155, 94, 65, 0) 40.98%, #E0C5A9 63.22%),
linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))
  }
  .hero-content{
    padding-top: 140px;
  }
  .slider-nav{
    top: 48%;
  }
  .slider-content img{
    border-radius: 32px;
  }
  .slider-nav{
    width: 115px;
  }
  .success-section.visible{
    margin-top: 0;
  }
  .experience-section{
    margin: 60px 0;
  }
  .slider-content span small,
  .slider-content span strong{
    font-size: 16px;
  }
  .mob_shadow_img{
    right: 156px;
    height: 500px;
  }
  .success-overall{
    width: 170px;
  }
  .circle-new{
    border-radius: 24px;
    border-radius: 52px;
  }
  .mob_chnge_pos img{
    width: 60px;
  }
  .hero-content p{
    text-align: center;
  }
  .mobile-menu {
top: 0;
    position: fixed;
    height: 100vh;
    z-index: 9999999999;
    width: 100%;
    padding: 40px 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
  }

  .take-content {
    border-radius: 32px;
  }

  .why_choose_cont {
    width: 100%;
  }

  .mobile-menu.active {
    display: block;
  }

  .why_choose_cont .accordion-button {
    font-size: 28px;
    line-height: 100%;
    border-radius: 32px !important;
  }

  .success-stats {
    flex-direction: column;
    padding: 0 10px !important;
    text-align: center;
    gap: 8px !important;
  }

  .mobile-wrapper {
    height: 88%;
  }

      .mobile-menu .navbar-nav li .sub-menu li:hover a svg {
        transform: rotate(-90deg);
    }

  .success-content .heading_grid{
    margin-bottom: 16px;
  }
  .hero-section video{
    height: 73%;
  }

  .mob-branding {
    background-image: linear-gradient(88.6deg, rgba(255, 255, 255, 0.6) -6.54%, rgba(255, 255, 255, 0) 50.07%, rgba(255, 255, 255, 0.6) 106.68%);
    padding: 15px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    margin-bottom: 20px;
  }
  .navbar-nav     {
    width: 88%;
            height: 62vh;
        margin: 0 auto;
        overflow-y: scroll;
  }

  .navbar-nav li      {
    margin-right: 0;
  }

  .desktop-consult {
    display: none !important;
  }

  .mobile-menu .navbar-nav li {
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0;
    border-right: 0;
  }

  .mobile-menu .navbar-nav li:first-child {
    border-top: 1px solid #d3d3d3;
  }

  .navbar-nav>li.menu-item-has-children::after {
            top: 46%;
        transform: rotate(45deg) translateY(-50%);
        right: 10px;
  }

  .navbar-nav li .sub-menu li .sub-menu,
  .navbar-nav li .sub-menu {
    position: relative;
    border-image-source: none;
    background: transparent;
    background-color: transparent;
    border: 0;
    top: auto;
    left: auto;
    z-index: 9999;
    display: none;
  }

  .navbar-nav li:hover .sub-menu,
  .navbar-nav li:hover .js-sub-menu {
    display: block;
        backdrop-filter: none !important;
        background: transparent;
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
  }

.mobile-menu .navbar-nav li .sub-menu li a svg    {
  transform: rotate(90deg);
}

.navbar-nav li .sub-menu a      {
  justify-content: normal;
    gap: 15px;
}

.navbar-nav>li.menu-item-has-children::after      {
  transition: none;
}

.next_step_cont .card-body p    {
  font-size: 16px;
  line-height: 24px;
}

.next_step_cont .card-body    {
      padding: 18px 20px;
}

.form-row     {
  gap: 20px;
}

.scroll_track {
    height: calc(100vh * 7); 
}
  .mobile-menu .navbar-nav li .sub-menu li {
      border: none;
      margin: 10px 0 10px 5px;
      padding: 0;
    }


  /* .navbar-nav li .sub-menu li:hover .sub-menu {
    display: block;
  } */

  .navbar-nav li .sub-menu li {
    padding: 10px 10px;
  }

  .services-hero-content {
    flex-direction: column-reverse;
  }

  .services-hero {
    padding-top: 160px;
    padding-bottom: 2.5rem;
  }

  .benefit-list img {
    width: 32px;
    height: 32px;
    margin-top: 5px;
  }

  .services-hero .btn {
    margin: 0 auto;
  }

  .service_mob {
    flex-direction: column-reverse;
  }

  .service_mob .parents-image {
    margin-top: 1.5rem;
  }

  .contact-hero-image span {
    width: 100%;
    height: 196px;
  }
  .faq-hero {
    margin-top: 60px !important;
}

  .success_rate_txt strong {
    font-size: 40px;
    line-height: 100%;
  }

  .success_rate_txt p {
    font-size: 18px;
    line-height: 100%;
    width: 100%;
  }

  .genetic_testing_sect p {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .copy-right {
    /*flex-direction: column-reverse;*/
    justify-content: center;
        gap: 5px;
  }
  
  .copy-right .copy-right-content {
      flex-direction: column-reverse;
       gap: 5px;
  }

  .copy-right p {
    text-align: center;
  }

  .genetic_testing_sect {
    margin-top: 60px;
  }

  .why_choose_cont .accordion-body img {
    width: 132px;
    height: 132px;
  }

  .why_choose_cont .accordion-body h3 {
    font-size: 24px;
    line-height: 120%;
    text-align: center;
  }

  .why_choose_cont h2 {
    font-size: 34px;
    line-height: 100%;
    text-align: center;
  }

  .accordion-flush .accordion-item .accordion-button {
    text-align: center;
  }

  .why_choose_cont .accordion-body p {
    text-align: center;
  }

  .why_choose_cont .accordion-body {
    padding: 40px 24px;
    border-radius: 32px;
    gap: 32px;
  }

  .why_choose_cont .accordion-body {
    flex-direction: column-reverse;
  }

  .services-info-content p {
    text-align: center;
    font-size: 16px;
    line-height: 130%;
  }

  .heading_grid {
    text-align: center;
  }

  .services-hero-text {
    text-align: center;
  }

  .services-info-content p {
    text-align: center;
  }

  .faq-hero-text h1,
  .take-text h3 {
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    padding-bottom: 10px;
  }

  .heading_grid_h2 p    {
    line-height: 120%;
  }

  .timeline     {
        padding: 10px 0 !important;
  }

  .take-content {
    padding-top: 60px;
  }

  .take-text p {
    text-align: center;
    padding-bottom: 40px;
  }

  .take-content .btn {
    margin: 0 auto 40px;
  }

  .handshake {
    border-radius: 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }

  .card-header h2 {
    font-size: 20px;
    line-height: 120%;
  }

  .card {
    margin-bottom: 12px;
  }

  .contact-hero-content {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .contact-hero {
    padding: 2.5rem 0;
    padding-top: 170px;
  }

  .services-hero-text h1,
  .services-hero-text h1 span {
    font-size: 32px;
    line-height: 120%;
  }

  .service_mob .ps-5 {
    padding: 0 20px !important;
    display: flex;
  }

  .mobile-timeline .heading_grid {
    position: static;
    margin-bottom: 10px;
  }

  .txt_circle {
    width: 287px;
    padding: 20px 12px;
    border-radius: 52px;
    margin-top: 220px;
  }

  .services-info {
    padding-top: 60px;
  }

  .scroll_section small {
    display: none !important;
  }

  .circle_description {
    width: 100%;
    left: 0;
  }

  .next_step_cont h2, .next_step_cont h3 {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 2rem;
  }

  .benefit-content h2 {
    font-size: 32px;
    line-height: 100%;
    /* margin-bottom: 10px; */
  }

  .benefit-content li     {
    align-items: start;
  }

  .benefit-content h6 {
    text-align: center;
  }

  .benefit-content {
    padding-top: 90px;
  }

  .benefit-image {
    height: 294px;
  }

  .contact-info-content span {
    display: block;
    text-align: center;
  }

  .contact-hero-text h1,
  .contact-hero-text h1 span {
    font-size: 28px;
    line-height: 100%;
  }

  .contact-hero-image img {
    height: 196px;
    width: auto;
  }

  .contact-hero-text {
    text-align: center;
  }

  .contact-hero-content .btn {
    margin: 0 auto;
  }

  .contact-info h5 {
    text-align: center;
  }

  .contact-info-content p {
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-info-content .mb-4 {
    margin-bottom: 40px !important;
  }


  .contact-info small {
    display: block;
    text-align: center;
  }

  .content-info-content .gap-2 {
    text-align: center;
    justify-content: center !important;
  }

  .form-text {
    padding: 0;
  }

  .form-content {
    padding: 60px 24px;
  }

  .mob_cent {
    justify-content: center;
  }

  .form-text h2 {
    font-size: 32px;
    line-height: 120%;
  }

  .qr-code img {
    width: 136px;
    height: 136px;
    min-width: 136px;
  }

  .scroll_section h2 {
    font-size: 32px;
    line-height: 100%;
  }

  .page-wrapper {
    padding-top: 100px;
  }

  .footer-container {
    gap: 40px;
  }

  .mobile-timeline {
    display: block;
    text-align: center;
  }

  .services-info-text {
    width: 100%;
  }

  .desktop-timeline .heading_grid {
    display: none !important;
  }

  .btn-consult      {
    justify-content: center;
  }

  .desktop-timeline .scroll_section small {
    display: none;
  }

  .scroll_section small {
    position: static;
    top: inherit;
  }

  .footer-contact ul li span {
    display: block;
  }

  .footer-contact {
    padding-left: 0;
  }

  .footer-social {
    min-width: auto;
    width: 100%;
  }

  .why_choose_cont .accordion-item {
    border-radius: 32px !important;
    margin: 0 10px;
  }

  .footer-bottom .logo1 img {
    height: 69px;
    margin-bottom: 24px;
  }

  .footer-bottom p,
  .footer-bottom p a {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }

  .footer-container {
    padding-bottom: 40px;
  }

  .footer_cont {
    padding: 130px 0 40px;
  }

  .social-info p,
  .social-info span {
    font-size: 16px;
    line-height: 100%;
  }

  .faq-accordion {
    margin-bottom: 70px;
  }

  .contact-hero-text h2,
  .contact-hero-text h2 span {
    font-size: 27px;
    line-height: 120%;
  }

.why_choose_sect, .next_step_sect {
    margin: 70px 0;
}

  .card-header:first-child      {
    border-radius: 28px;
  }

  .container {
    width: 92%;
  }

  .form-content {
    border-radius: 32px;
  }

  .footer_cont {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .icons {
    gap: 15px;
    margin: 15px 0 0;
    flex-wrap: wrap;
  }

  .contact-btn {
    display: block;
    margin: 40px auto 0;
  }
  .category-breadcrumb {
    margin-top: 120px !important;
}
#breadcrumbs {
    padding: 20px 0;
}
  .searchbar {
    width: 100%;
    padding: 0;
  }
  .hero-content{
    padding-left: 0 !important;
  }

.slider-nav .slick-track{
    width: 115px !important;
    display: flex;
    align-items: center;
  }
 .slider-nav .slick-slide{
    width: 48px !important;
  }

.container.is-timeline      {
  height: 43vh;
        padding: 5vh 0 0;
}

.circle_p.base_txt      {
  font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.circle_p.headline_circle     {
      font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}

.circle_date      {
      width: 50px;
    height: 50px;
    margin-bottom: 0;
    font-size: 24px;
}

.circle_link-2 {
    margin-top: -1.5em;
}
.circle_description     {
  margin-top: 0.6em;
}

 .contact-hero-text p{
        width: 100%;
      }


  
.dot-group:nth-child(2)      {
            top: -33px !important;
        left: 130px !important;
}
.dot-group:nth-child(3)      {
       top: 100px !important;
        left: 0px !important;
}
.dot-group:nth-child(4)      {
            top: 215px !important;
        left: 140px !important;

}
.dot-group:nth-child(5)      {
         top: 341px !important;
        left: 0 !important;
}
.dot-group:nth-child(6)      {
             top: 459px !important;
        left: 90px !important;
}

    .dot-line {
        height: 40px;
    }

    .dot-group .label span    {
          width: 77px;
    height: 40px;
        font-size: 16px;
    line-height: 40px;
    }
.dot-group .label p     {
  font-size: 15px;
  line-height: 100%;
  width: 50%;
    text-align: left;
}

.dot-group .label     {
  gap: 0;
}
.dot {
    width: 10px;
    height: 10px;
 }

.handshake{
    border-radius: 32px;
      border-top-left-radius: 0 !important;
      border-top-right-radius: 0 !important;
  }

  .navbar-nav > li.menu-item-has-children:hover::after    {
    top: 46%;
  }

  br    {
    display: none;
  }

  .take-content .btn {
        margin: 0 auto 60px;
    }

    .why_choose_cont h2{
    margin-bottom: 32px;
  }

.cta-button-outline.btn-new{
    margin-top: 15px;
  }

  /* .next_step_cont .collapsible-link{
    text-align: left;
    font-size: 16px;
    line-height: 120%;
  } */

  .slider-content img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .footer-contact a,.footer-links a      {
      font-size: 13px;
    }

.scroll_section {
        height: 100vh;
    }

.page-wrapper {
        padding-top: calc(100vh - 170%);
    }
    .circle_wrap {
        width: calc(100% - -78%);
        height: calc(100vh - 28vh);
    }

    .container.is-timeline {
        height: 78vh;
        padding: 0;
    }
    .circle_description {
        height: 64%;
    }

    .txt_circle {
        width: 310px;
        padding: 20px 18px;
    }

        .service-content::before {
        top: 36.2%;
    }

        .service-content::after {
        bottom: 39%;
    }

    .services-section h2      {
      margin-bottom: 20px;
    }
.success_rate_sect {
    margin: 60px 0;
}

.bord_sect:before {
        left: -32px;
    }

.mob_shadow_img     {
  opacity: 100% !important;
}

.mobile-menu .sub-menu {
  display: none; 
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: block !important;
      opacity: 1;
    visibility: visible;
    transform: none;
            backdrop-filter: none !important;
        background: transparent;
        margin-top: 5px;

}

.mobile-menu .menu-item-has-children > .sub-menu {
  display: none !important;
}

.navbar-nav>li.menu-item-has-children::after      {
  transform: rotate(45deg) !important;
}

.navbar-nav>li.menu-item-has-children.submenu-open::after      {
  transform: rotate(225deg) !important;
          top: 35px;
}

.mobile-menu .navbar-nav li.menu-item-has-children .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li a svg    {
  transform: rotate(90deg) !important;
}

.mobile-menu .navbar-nav li.menu-item-has-children.submenu-open .sub-menu li.menu-item-has-children.submenu-open a svg    {
  transform: rotate(-90deg) !important;
}

.navbar-nav li .sub-menu li .sub-menu   {
  transition: none;
}

.benefit-content h6     {
  padding-bottom: 22px;
}

.benefit-content        {
  padding-bottom: 40px;
}

.benefit-section:nth-child(3) .benefit-content,
.benefit-section:nth-child(2) .benefit-content    {
  padding-top: 50px;
}

.navbar-nav li .sub-menu a      {
          justify-content: space-between;
        gap: 15px;
        width: 97%;
}
.mobile-menu .menu-item-has-children.submenu-open > .sub-menu   {
  width: 100%;
}

.mobile-menu .menu-item-has-children.submenu-open > .sub-menu .submenu-toggle {
        top: 14px;
        right: 1px;
    }
  
.mobile-menu .menu-item-has-children.submenu-open > a     {
      color: rgb(155, 94, 65) !important;
    font-weight: 500;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg    {
    transform: rotate(-90deg) !important;
}

.mobile-menu .menu-item-has-children.submenu-open > a svg path  {
    fill: rgb(155, 94, 65);
}

.mobile-menu .menu-item-has-children.submenu-open:after    {
    transform: rotate(-90deg) !important;
        border-color: rgb(155, 94, 65);
}


}     

@media screen and (max-width: 479px) {

.dot-group:nth-child(3) {
        top: 111px !important;
        left: 0px !important;
    }
.dot-group:nth-child(4) {
        top: 191px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 365px !important;
        left: 0 !important;
    }
.dot-group:nth-child(6) {
        top: 489px !important;
        left: 104px !important;
    }

.success-overall {
        width: 140px;
    }

    .mob_shadow_img {
        right: 148px;
        height: 470px;
    }
    .slider-content span small,
  .slider-content span strong{
    font-size: 14px;
  }

  .hero-content h2 {
        font-size: 20px;
        line-height: 100%;
    }

.hero-content p {
    font-size: 15px;
    line-height: 24px;
}

    .lady-image {
        right: -18px;
        height: 520px;
    }
.experience-content h3 {
        font-size: 29px;
        line-height: 100%;
    }

     .slider-nav {
        top: 48%;
    }

    .slider-content span  {
        top: 38%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }


}

@media (max-width: 440px)  {

.dot-group:nth-child(3) {
        top: 119px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 238px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 382px !important;
        left: 0 !important;
    }
  .dot-group:nth-child(6) {
        top: 508px !important;
        left: 104px !important;
    }

  .success_rate_cont h2 {
    font-size: 37px;
    line-height: 100%;
 }

 .cta-button-outline.btn-new {
        margin-top: 20px;
    }

.next_step_cont .card-header:first-child {
    padding: 19px 20px;
}

.bord_sect:before {
        left: -49px;
    }

    .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }



}

@media (max-width: 430px)  {

.dot-group:nth-child(3) {
        top: 113px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 232px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 371px !important;
        left: 0 !important;
    }
  .dot-group:nth-child(6) {
        top: 496px !important;
        left: 104px !important;
    }

  .success_rate_cont h2 {
    font-size: 37px;
    line-height: 100%;
 }

 .cta-button-outline.btn-new {
        margin-top: 20px;
    }

.next_step_cont .card-header:first-child {
    padding: 19px 20px;
}

.bord_sect:before {
        left: -45px;
    }

.slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }



}

@media (max-width: 428px)  {
.dot-group:nth-child(3) {
        top: 112px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 230px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 369px !important;
        left: 0 !important;
    }
  .dot-group:nth-child(6) {
        top: 494px !important;
        left: 104px !important;
    }

  .success_rate_cont h2 {
    font-size: 37px;
    line-height: 100%;
 }

 .cta-button-outline.btn-new {
        margin-top: 20px;
    }

.next_step_cont .card-header:first-child {
    padding: 19px 20px;
}

.bord_sect:before {
        left: -45px;
    }
.slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }



}

@media (max-width: 414px)  {

.dot-group:nth-child(3) {
        top: 105px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 222px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 354px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 475px !important;
        left: 104px !important;
    }

    .bord_sect:before {
        left: -34px;
    }
    .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }

}

@media (max-width: 412px)  {
.dot-group:nth-child(3) {
        top: 103px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 220px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 351px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 473px !important;
        left: 104px !important;
    }

    .bord_sect:before {
        left: -34px;
    }

     .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }

}

@media (max-width: 402px)  {
.dot-group:nth-child(3) {
        top: 99px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 215px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 340px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 460px !important;
        left: 104px !important;
    }

  .success_rate_cont h2 {
    font-size: 37px;
    line-height: 100%;
 }

 .cta-button-outline.btn-new {
        margin-top: 20px;
    }

.next_step_cont .card-header:first-child {
    padding: 19px 20px;
}

 .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }

}

@media (max-width: 400px)  {
.dot-group:nth-child(3) {
        top: 93px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 207px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 327px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 444px !important;
        left: 104px !important;
    }

    .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: max-content;
        padding: 10px 23px;
        text-align: center;
    }

}

@media (max-width: 393px)  {

.dot-group:nth-child(3) {
        top: 95px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 209px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 330px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 448px !important;
        left: 104px !important;
    }
        .bord_sect:before {
        left: -30px;
    }

.slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }


}

@media (max-width: 390px)  {

.dot-group:nth-child(3) {
        top: 93px !important;
        left: 0px !important;
    }
  .dot-group:nth-child(4) {
        top: 207px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 326px !important;
        left: 0 !important;
    }
  .dot-group:nth-child(6) {
        top: 444px !important;
        left: 104px !important;
    }
        .bord_sect:before {
        left: -25px;
    }

    
    .slider-nav {
        top: 46%;
    }

    .slider-content span  {
        top: 36%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }

}

@media (max-width: 384px)  {

.dot-group:nth-child(3) {
        top: 90px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 203px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 320px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 437px !important;
        left: 104px !important;
    }
        .bord_sect:before {
        left: -22px;
    }
    
    .slider-nav {
        top: 44%;
    }

    .slider-content span  {
        top: 34%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }

}

@media (max-width: 380px)  {

.dot-group:nth-child(3) {
        top: 88px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 200px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 315px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 432px !important;
        left: 104px !important;
    }
        .bord_sect:before {
        left: -22px;
    }

    .slider-nav {
        top: 44%;
    }

    .slider-content span  {
        top: 34%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }


}

@media (max-width: 375px)  {

.dot-group:nth-child(3) {
        top: 85px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 197px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 310px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 425px !important;
        left: 104px !important;
    }
        .bord_sect:before {
        left: -22px;
    }

   .slider-nav {
        top: 44%;
    }

    .slider-content span  {
        top: 34%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }



}

@media (max-width: 360px)  {

  .dot-group:nth-child(2) {
        top: -36px !important;
        left: 130px !important;
    }

.dot-group:nth-child(3) {
        top: 77px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 186px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 293px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 406px !important;
        left: 104px !important;
    }

    .bord_sect:before {
        left: -11px;
    }

       .slider-nav {
        top: 44%;
    }

    .slider-content span  {
        top: 34%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
    }


}

@media (max-width: 320px)  {

  .dot-group:nth-child(2) {
        top: -30px !important;
        left: 130px !important;
    }

.dot-group:nth-child(3) {
        top: 70px !important;
        left: 0px !important;
    }
        .dot-group:nth-child(4) {
        top: 167px !important;
        left: 140px !important;
    }
.dot-group:nth-child(5) {
        top: 262px !important;
        left: 0 !important;
    }
        .dot-group:nth-child(6) {
        top: 361px !important;
        left: 104px !important;
    }

    .btn-consult1     {
      width: 100%;
          font-size: 14px;
    }

    .bord_sect:before {
        left: -11px;
    }

    .dot-group .label span {
        width: 57px;
        height: 30px;
        font-size: 14px;
        line-height: 27px;
    }
    .dot-group .label p {
        font-size: 14px;
        line-height: 100%;
        width: 55%;
        text-align: left;
    }

        .slider-nav {
        top: 41%;
    }

        .slider-content span  {
                  top: 31%;
        width: 93%;
        padding: 10px 13px;
        text-align: center;
        }

        .slider-content span small, .slider-content span strong {
        font-size: 13px;
    }

}

