/* General css start */
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
/* General css start */
:root {
  --clr-0F1016: #0f1016;
  --clr-01325C: #01325c;
  --clr-024B85: #024b85;
  --clr-0A7DCC: #0a7dcc;
  --clr-E9EAEE: #e9eaee;
  --clr-A2A7B2: #a2a7b2;
  --clr-083F6E: #083f6e;
  --clr-FFFFFF: #ffffff;
  --clr-048AE5: #048ae5;
  --clr-4C4C4C: #4c4c4c;
  --clr-7F7F7F: #7f7f7f;
  --clr-ECB154: #ecb154;
  --clr-71cdf7: #71cdf7;

  --red-hat-font: "Red Hat Display", sans-serif;
  --Forum-font: "Forum", serif;

  --fs-80: 80px;
  --fs-52: 52px;
  --fs-48: 48px;
  --fs-40: 40px;
  --fs-35: 35px;
  --fs-30: 30px;
  --fs-28: 28px;
   --fs-66: 66px;
  --fs-25: 25px;
  --fs-24: 24px;
  --fs-22: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-15: 15px;
}
@media (max-width: 1399.98px) {
  :root {
    --fs-80: 72px;
    --fs-52: 46px;
    --fs-48: 42px;
    --fs-40: 36px;
    --fs-35: 32px;
 --fs-66: 55px;
    --spc-100: 80px;
    --spc-50: 40px;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --fs-80: 60px;
    --fs-52: 40px;
    --fs-48: 38px;
    --fs-40: 32px;
    --fs-35: 30px;
    --fs-30: 28px;
    --fs-28: 26px;

    --spc-100: 70px;
    --spc-50: 35px;
     --fs-66: 50px;
  }
  .container {
    padding: 0 30px !important;
  }
}
@media (max-width: 991.98px) {
  :root {
     --fs-66: 45px;
    --fs-80: 50px;
    --fs-52: 36px;
    --fs-48: 32px;
    --fs-40: 30px;
    --fs-35: 28px;
    --fs-30: 26px;
    --fs-28: 25px;
    --fs-25: 23px;
    --fs-24: 22px;
    --fs-22: 20px;
    --fs-20: 18px;
    --fs-18: 17px;

    --spc-100: 60px;
    --spc-50: 30px;
  }
}

@media (max-width: 767.98px) {
  :root {
     --fs-66: 30px;
    --fs-80: 30px;
    --fs-52: 28px;
    --fs-48: 27px;
    --fs-40: 26px;
    --fs-35: 25px;
    --fs-30: 22px;
    --fs-28: 20px;
    --fs-25: 20px;
    --fs-24: 19px;
    --fs-22: 18px;
    --fs-20: 17px;
    --fs-18: 16px;
    --fs-16: 15px;

    --spc-100: 40px;
    --spc-50: 30px;
  }
  .container {
    padding: 0 15px !important;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--red-hat-font);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
h1 {
  font-size: var(--fs-52);
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
body,
p,
li {
  font-size: var(--fs-18);
  color: var(--clr-FFFFFF);
  line-height: 1.5;
  font-weight: 400;
}

a {
  text-decoration: none;
  display: inline-block;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

:is(h1, h2, h3, h4, h5, h6, p, a, li) {
  margin: 0;
  padding: 0;
}
:is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--Forum-font);
  font-weight: 400;
}
.container {
  width: 1440px;
  max-width: 100%;
  padding: 0 50px;
}
.btn_wrapper  {
  border-radius: 12px;
  background: rgba(0, 120, 255, 0.08);
  /* backdrop-filter: blur(15px); */
  /* transition: 0.3s; */
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn_wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: transparent;
  bottom: 100%;
  box-shadow: 0 8px 30px #06609e;
  border-radius: 12px;
}
.btn_wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: transparent;
  top: 100%;
  box-shadow: 0 -8px 20px #06609e;
  border-radius: 12px;
}

.btn img {
  margin-left: 10px;
}
.btn,  .main-header .btn_wrapper a{
  position: relative;
  padding: 15px 40px;
  font-size: var(--fs-18);
  color: var(--clr-FFFFFF);
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 12px;
  width: 100%;
}
.main-header .btn_wrapper a{
  padding-right: 70px;
}
.main-header .btn_wrapper li:after{
  content: '';
  width: 11px;
  height: 11px;
  position: absolute;
background-image: url('../images/button-arrow.svg');
  
  background-repeat: no-repeat;
 right: 40px;
 top: calc(50% - 5px);
 z-index: 2;
}
.btn:hover {
  color: var(--clr-FFFFFF);
}
.btn_wrapper.btn_wrapper2 , .main-footer  .contact li:last-child .btn_wrapper{
  background: rgba(201, 107, 0, 0.08);
}
.btn_wrapper.btn_wrapper2::after , .main-footer  .contact li:last-child .btn_wrapper:after{
  box-shadow: 0 8px 30px #a85f00;
}
.btn_wrapper.btn_wrapper2::before , .main-footer  .contact li:last-child .btn_wrapper:before{
  box-shadow: 0 -8px 20px #a85f00;
}
.btn.btn2::before , .main-footer  .contact li:last-child a:before{
  background: linear-gradient(
    92.32deg,
    #ecb154 1.95%,
    #ad6a21 22.36%,
    #ffe7c2 46.63%,
    #ad6a21 76.56%,
    #d49a4f 98.05%
  );
}
.btn.btn2::after , .main-footer  .contact li:last-child a:after{
  background: linear-gradient(180deg, #f5bd74 29.47%, #915617 65.84%);
}

.btn::before ,.main-header .btn_wrapper a::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(95.25deg, #4ebdff 0.49%, #0281ce 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.btn::after ,.main-header .btn_wrapper a::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4ebdff 0%, #015b92 106.33%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}

.btn:hover::after, .main-header .btn_wrapper a:hover:after {
  transform: scaleX(1);
}

.icon-text {
  padding: 10px;
}
.icon-text span {
  font-size: var(--fs-18);
  color: var(--clr-048AE5);
  margin-left: 12px;
}

.list ul{
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 510px;
  margin: 30px auto;
}

 .list ul li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
  font-size: var(--fs-24);
  font-weight: 400;
}

 .list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 44px;
  height: 44px;

  background: url("../images/check-mark.svg") no-repeat center;
  background-size: contain;
}
/* header start */

.main-header {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: var(--clr-FFFFFF);
  z-index: 2;
  transition: all 0.4s;
}

.main-header .container {
  position: relative;
  width: 1920px;
  padding: 0 20px;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header nav {
  display: flex;
  gap: 25px;
}

.main-header nav a {
  font-weight: 500;
  font-size: var(--fs-18);
  color: var(--clr-FFFFFF);
  position: relative;
  transition: all 0.4s;
}
.main-header nav a::before {
  content: "";
  position: absolute;
  width: 0%;
  top: 100%;
  left: 0;
  height: 1px;
  background-color: currentColor;
  transition: all 0.4s;
}
.main-header nav a:hover::before {
  width: 30%;
}

.main-header .logo img {
  width: 100px;
  height: auto;
  transition: all 0.4s;
}

.main-header .right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-header .lang-dropdown {
  position: relative;
  cursor: pointer;
}

.main-header .lang-dropdown .selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  position: relative;
}

.main-header .lang-dropdown .selected::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;

  background: url("../images/dropdown-arrow.svg") no-repeat center;
  background-size: contain;
}

.main-header .lang-dropdown img {
  width: 18px;
}

.main-header .lang-dropdown ul {
  position: absolute;
  top: 120%;
  right: 0;
  background: #111;
  list-style: none;
  padding: 10px;
  margin: 0;
  border-radius: 8px;
  display: none;
  min-width: 140px;
  z-index: 1;
}

.main-header .lang-dropdown ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  color: var(--clr-FFFFFF);
  font-size: 14px;
}

.main-header .lang-dropdown ul li:hover {
  background: #222;
}

.main-header .lang-dropdown.active ul {
  display: block;
}

/* TOGGLE BUTTON */
.main-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
}

.main-header .menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
}
.main-header .menu-close {
  display: none;
}
.main-header nav.menu.active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.main-header.sticky{
  padding: 10px 0;
  background-color: var(--clr-0F1016);
  box-shadow: 0 0 20px rgba(10, 125, 204, 0.4);
}
.main-header.sticky .logo img{
  height: auto;
  width: 60px;
}
/* header end */

/* hero-section start */
.hero-section  .top-sc p{
  font-family: var(--Forum-font);
  text-align: center;font-size: var(--fs-30);
}
.hero-section {
  /* min-height: 100vh; */
  color: var(--clr-FFFFFF);
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: end;
}
.hero-section:not(.landing-hero-section) .container {
  width: 1920px;
  max-width: 100%;
  padding: 0 20px;
  position: relative;
}
.hero-section .hero-content {
  padding-top: 100px;
}
.hero-section h1 {
  font-size: var(--fs-52);
  line-height: 60px;
  margin-bottom: 20px;
  color: var(--clr-FFFFFF);
}
.hero-section.landing-hero-section h1{
  font-size:var(--fs-66)
}
.hero-section.landing-hero-section p{
  padding-bottom: 30px;
  margin-bottom: 20px;position: relative;
}
.hero-section.landing-hero-section p:after{
position: absolute;
  width: 100%;
  height: 1px;
 background: linear-gradient( 90deg, rgba(10, 125, 204, 0) 0%, rgb(255, 215, 120) 49.52%, rgba(10, 125, 204, 0) 100% );
 bottom: 0;
  content: '';
  left: 0;
}
.hero-section .grad-border {
  margin: auto;
  width: 660px;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid transparent;

  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    #ffffff,
    rgba(255, 255, 255, 0)
  );

  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: bottom;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.hero-section .grad-border p {
  width: 100%;color: var(--clr-ECB154);
  font-style: italic;
}
.hero-section p span{
  color: var(--clr-ECB154);font-style: italic;
}
.hero-section p {
  margin: auto;
  width: 600px;
  max-width: 100%;
  font-size: var(--fs-24);
  line-height: 40px;
}
.hero-section .btns .btn.btn2 {
  font-size: var(--fs-22);
}
.hero-section .btns {
  margin-top: 24px;
}

.hero-section .books img {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: -80px;
}

/* hero-section end */

/* truth section start */

.truth-section {
  padding: 100px 0;
  position: relative;
  color: var(--clr-FFFFFF);
}

.truth-section .container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.truth-section .left h2 {
  font-weight: 400;
  font-size: var(--fs-48);
  line-height: 60px;
  margin: 15px 0;
  color: var(--clr-FFFFFF);
}

.truth-section .left p {
  font-size: var(--fs-20);
  margin: 16px auto 30px;
  color: var(--clr-FFFFFF);
  max-width: 406px;
}

.truth-section .right .content {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}
.truth-section .right .content:last-child {
  margin-bottom: 0px;
}

.truth-section .right .content .number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--clr-FFFFFF);
  background-color: var(--clr-0F1016);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.truth-section .right .content .number::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;

  background: linear-gradient(
    90deg,
    rgba(10, 125, 204, 0) -12.45%,
    #0a7dcc 51.16%,
    rgba(10, 125, 204, 0) 116%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  animation: rotateGradient 3s infinite linear;
}
@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.truth-section .right h3 {
  margin-bottom: 20px;
  font-size: var(--fs-30);
  color: var(--clr-FFFFFF);
}

.truth-section .right p {
  font-size: var(--fs-20);
  color: var(--clr-FFFFFF);
  margin-right: 10px;
}

/* truth section end */

/* split-hero section start */

.split-hero {
  min-height: 100vh;
  color: var(--clr-FFFFFF);
  position: relative;
  padding: 100px 0;
}

.split-hero .top h2 {
  font-family: var(--red-hat-font);
  font-size: var(--fs-80);
  font-weight: 600;
  color: var(--clr-FFFFFF);
}
.split-hero .top h2 span {
  color: var(--clr-71cdf7);
}

.split-hero .center-content {
  margin-top: 200px;
}

.split-hero h3 {
  font-size: var(--fs-40);
  margin-bottom: 20px;
  color: var(--clr-FFFFFF);
}

.split-hero p {
  font-size: var(--fs-22);
}
.split-hero p span {
  color: var(--clr-ECB154);
}

/* split-hero section end */

/* architecture-section start */

.architecture-section {
  padding: 100px 0;
  position: relative;
  color: var(--clr-FFFFFF);
}

.architecture-section .image-box img {
  width: 100%;
  border-radius: 15px;
}

.architecture-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin: 15px 0;
}

.architecture-section p {
  max-width: 450px;
}

.architecture-section .btn_wrapper {
  margin-top: 30px;
}

.architecture-section .icons {
  display: flex;
  gap: 0px;
  position: absolute;
  right: 36px;
  bottom: 100px;
  justify-content: flex-end;
}

.architecture-section .icons .icon-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 28%;
  align-items: center;
}

.architecture-section .icons img {
  width: 40px;
  margin-bottom: 10px;
}

.architecture-section .icons p {
  font-size: var(--fs-25);
  font-family: var(--Forum-font);
  width: 80%;
  margin: auto;
}

.architecture-section .content-gap {
  gap: 60px;
}

/* architecture-section end */

/* journey-section start */

.journey-section {
  padding-bottom: 100px;
  color: #fff;
  position: relative;
}

.journey-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-top: 10px;
}

.journey-section .card-box {
  position: relative;
  border-radius: 20px;
  padding: 40px 25px;
  background: #0f101633;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;

  height: 100%;
}
.journey-section .card-box .btn_wrapper {
  margin-top: auto;
}
.journey-section .card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;

  background: linear-gradient(
    90deg,
    rgba(10, 125, 204, 0) -12.45%,
    #0a7dcc 51.16%,
    rgba(10, 125, 204, 0) 116%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}
.journey-section .card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(10, 125, 204, 0.4);
}

.journey-section .card-box h3 {
  font-size: var(--fs-52);
  font-family: var(--red-hat-font);
  font-weight: 700;
  background: linear-gradient(180deg, #d2e9f7 0%, #2f78d4 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  font-style: italic;
}

.journey-section .card-box h4 {
  font-size: var(--fs-35);
  color: var(--clr-FFFFFF);
  margin-bottom: 10px;
}

.journey-section .card-box p {
  margin: 20px auto 40px;
  width: 82%;
}

/* journey-section end */

/* books-section START */

.books-section {
  color: #fff;
  position: relative;
}

.books-section .gx-4 {
  --bs-gutter-x: 30px;
}

.books-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-top: 10px;
}

.books-section .book-card {
  text-align: left;
}
.books-section .book-card a {
  display: inline;
}

.books-section .book-card img {
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(10, 125, 204, 0.4);
}

.books-section h4 {
  font-size: var(--fs-30);
  color: var(--clr-FFFFFF);
  margin-bottom: 10px;
}

.books-section p {
  margin-bottom: 10px;
}

.books-section .btn3 {
  display: inline-block;
  text-decoration: none;
  color: var(--clr-048AE5);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-048AE5);
  margin-top: 20px;
  transition: 0.3s;
}
.books-section .btn3 img {
  margin-left: 12px;
  height: 10px;
  width: 10px;
  margin-bottom: 0px;
  transition: 0.3s ease;
}
.books-section .btn3:hover {
  color: var(--clr-FFFFFF);
  border-bottom:1px solid var(--clr-FFFFFF)
}

.books-section .btn3:hover img {
  filter: brightness(0) invert(1);
  animation: diagonalOnce 0.7s ease;
}

@keyframes diagonalOnce {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, -4px); 
  }
  100% {
    transform: translate(0, 0);
  }
}
/* books-section END */

/* future-section start */

.future-section {
  min-height: 1030px;
  color: var(--clr-FFFFFF);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 0;
}

.future-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-bottom: 20px;
}

.future-section .content p {
  margin: 20px 0;
}

.future-section p span {
  text-shadow: 0 0 10px var(--clr-048AE5);
}

.future-section .content p:nth-child(1) {
  font-size: var(--fs-28);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.future-section .content p:nth-child(2) {
  font-size: var(--fs-24);
  font-weight: 400;
}

.future-section .content p:nth-child(3) {
  font-size: var(--fs-24);
  font-weight: 400;
}

.future-section .content p:nth-child(4) {
  font-size: var(--fs-28);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.future-section .content p:nth-child(5) {
  font-size: var(--fs-24);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.future-section .content p:nth-child(6) {
  font-weight: 600;
  font-size: var(--fs-28);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* future-section end */

/* membership-section start */

.membership-section {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
}

.membership-section span {
  margin-bottom: 10px;
}

.membership-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-bottom: 20px;
}

.membership-section p {
  font-size: var(--fs-24);
  font-weight: 400;
  margin: 25px 0;
}
/* .membership-section .top-content p:nth-child(1),
.membership-section .top-content p:nth-child(4) {
  font-size: var(--fs-28);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
} */

.membership-section .top-content p {
  font-size: var(--fs-28);
  font-weight: 500;
  /* text-shadow: 0 0 10px rgba(255, 255, 255, 1); */
}
.membership-section .top-content .btm-sc p a{
  color: var(--clr-ECB154);
}
.membership-section .top-content p a:hover{
  text-shadow: 0 0 10px rgba(236, 177, 84,0.8), 0 0 20px rgba(236, 177, 84,0.6);
}
.membership-section .top-content p  a{color: white;}
.membership-section .top-content p:nth-child(3) {
  width: 43%;
  margin: 20px auto;
}

.membership-section .list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 510px;
  margin: 30px auto;
}

.membership-section .list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
  font-size: var(--fs-24);
  font-weight: 400;
}

.membership-section .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 44px;
  height: 44px;

  background: url("../images/check-mark.svg") no-repeat center;
  background-size: contain;
}

.membership-section .btn_wrapper {
  margin-top: 30px;
}
.main-footer .bottom a img {
  margin-left: 10px;
}
/* membership-section end */

/* footer start */

.main-footer {
  color: var(--clr-FFFFFF);
  padding: 50px 0 15px;
  position: relative;
}

.main-footer * {
  position: relative;
  z-index: 1;
}
/* .main-footer:after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
} */
.main-footer .top-bar {
  margin-bottom: 50px;
}

.main-footer .logo img {
  height: 120px;
}

.main-footer .menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.main-footer .menu a {
  color: var(--clr-FFFFFF);
}

.main-footer hr {
  border-color: var(--clr-4C4C4C);
}

.main-footer h4 {
  font-size: var(--fs-28);
  color: var(--clr-FFFFFF);
  margin-bottom: 24px;
}

.main-footer p {
  color: var(--clr-FFFFFF);
  font-size: var(--fs-20);
}
.main-footer .footer-content p {
  margin-bottom: 25px;
}
.main-footer .footer-content p:last-child {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}
.main-footer .contact ul li {
  margin-bottom: 20px;
}

.main-footer .contact ul li:nth-child(1) .btn_wrapper {
  width: 370px;
}
.main-footer .contact ul li:nth-child(1) .btn_wrapper .btn {
  font-size: var(--fs-22);
}
.main-footer .contact ul li:nth-child(2) .btn_wrapper {
  width: 305px;
}

/* .main-footer .contact ul li:nth-child(3) .btn_wrapper {
  width: 255px;
} */
.main-footer .contact .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-footer .social a {
  margin-top: 20px;
  margin-right: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.main-footer .social a img {
  height: 22px;
  width: 22px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}
.main-footer .social a:hover img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(2000%)
    hue-rotate(180deg);
}
.main-footer .newsletter {
  display: flex;
  border-bottom: 1px solid var(--clr-7F7F7F);
  margin-top: 30px;
  margin-bottom: 20px;
}
.main-footer .newsletter input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.main-footer input::placeholder {
  color: var(--clr-FFFFFF);
  opacity: 1;
}
.main-footer .newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--clr-FFFFFF);
  padding: 0;
}

.main-footer .newsletter button {
  background: none;
  border: none;
  padding-right: 0;
}

.main-footer .bottom {
  border-top: 1px solid var(--clr-4C4C4C);
  padding-top: 15px;
}
.main-footer .bottom p {
  font-size: var(--fs-16);
}
.main-footer .bottom span {
  font-size: var(--fs-15);
}
/* footer end */

/*** customizer css***/
.site-content .ast-container{
	display:block;
	max-width:100%;
	padding:0
}
.admin-bar #page{
	min-height:unset
}
.primary_menu {
  display: flex;
  gap: 20px;
}
.main-header nav a:hover {
  color: var(--clr-048AE5);
}
.main-footer .menu a:hover {
  color: var(--clr-048AE5);
}
.main-header .btn_wrapper a{
	display:block
}



/******************** Landing page start ********************/

/* landing-hero-section start */

.landing-hero-section .books img{
  position: static;
  width: 100%;
}
.landing-hero-section p{
margin: 0;
width: 100%;
}
.landing-hero-section .text p{
  font-size: var(--fs-18);
  line-height: 30px;
  margin: 0;
}

.landing-hero-section .grad-border2 {
    position: relative;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    z-index: 1;
}

.landing-hero-section  .grad-border2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px; 
    background: linear-gradient(
        90deg,
        rgba(10, 125, 204, 0) -12.45%,
        #0A7DCC 51.16%,
        rgba(10, 125, 204, 0) 116%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@media (max-width: 1420px) and (min-width: 1310px) {
  .landing-hero-section .hero-content .btn {
    padding: 13px 26px;
  }
}

@media (max-width: 1309px) and (min-width: 1215px) {
  .landing-hero-section .hero-content .btn {
    padding: 12px 20px;
  }
}

/* landing-hero-section end */

/* humai-section start */


.humai-section.truth-section .container{
      flex-direction: column;
}
.humai-section h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-bottom: 15px;
}

.humai-section .humai-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(72, 135, 202, 0.3) 0 0 90px 33px;
}

.humai-section .humai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.humai-section .humai-content h3 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  margin-bottom: 15px;
}

.humai-section .humai-content p {
  margin-bottom: 40px;
}
.humai-section .list ul{
  margin: 30PX 0;
}
.humai-section .list ul li{
  font-size: var(--fs-18);
  margin-bottom: 25px;
}


.humai-section .top-bar {
  position: relative;
  padding: 50px;
}

.humai-section .top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(10, 125, 204, 0) 0%,
    #0A7DCC 49.52%,
    rgba(10, 125, 204, 0) 100%
  );
}

.humai-section .top-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(10, 125, 204, 0) 0%,
    #0A7DCC 49.52%,
    rgba(10, 125, 204, 0) 100%
  );
}

/* humai-section end */

/* roadmap-section start */

.roadmap-section h2 {
  margin-bottom: 20px;
}
.roadmap-section .roadmap-wrapper {
padding-top: 60px;
}

.roadmap-section .roadmap-card {
  position: relative;
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  
}
@media (min-width:1200px){
.roadmap-section .roadmap-card:after{
  content: '';
    position: absolute;
    top: 14px;
    width: calc(100% - 72px);
    height: 0;
    right: 0;
    border-top: 2px solid #0A7DCC;
    border-image-slice: 1;
    /* border-image-source: linear-gradient(90deg, rgba(210, 233, 247, 0) -12.45%, #0A7DCC 51.16%); */

   

}
.roadmap-wrapper  .row > div:nth-child(4) .roadmap-card:before{
  content: '';
  border: none;
  height: 120%;
  background-color: var(--clr-0A7DCC);
  transform: unset;
  width: 2px;

}
.roadmap-section .roadmap-card:before {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #2c7ecb;
  border-right: 3px solid #2c7ecb;
  transform: translateY(-50%) rotate(45deg);
}

.roadmap-wrapper  .row > div:nth-child(6) .roadmap-card:before,
.roadmap-wrapper  .row > div:nth-child(7) .roadmap-card:before,
.roadmap-wrapper  .row > div:nth-child(5) .roadmap-card:before{
    right: calc(100% - 95px);
    transform: translateY(-50%) rotate(-129deg);
}
.roadmap-wrapper  .row > div:nth-child(6) .roadmap-card:after,
.roadmap-wrapper  .row > div:nth-child(5) .roadmap-card:after{
    top: 13px;
    width: calc(100% - 78px);
   
    transform: rotate(180deg);
   
    
}
.roadmap-wrapper  .row > div:nth-child(7) .roadmap-card:after{
top: 13px;
    width: calc(157% - 78px);
    transform: rotate(180deg);
    border-top: 2px solid #2c7ecb;
    border-image: unset;
    right: unset;
    left: 80px;
}
}
.roadmap-section .roadmap-card span {
  font-size: var(--fs-20);
    font-family: var(--red-hat-font);
    font-weight: 700;
    background: linear-gradient(180deg, #d2e9f7 0%, #2f78d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  margin-bottom: 25px;
}

.roadmap-section .roadmap-card h4 {
  font-size: var(--fs-28);
  color: var(--clr-FFFFFF);
  margin-bottom: 20px;
}

.roadmap-section .roadmap-card p {
  /* margin-top: auto; */
}

.roadmap-section .roadmap-card:hover {
  transform: translateY(-5px);
}

/* roadmap-section end */

/* humai-ecosystem start */

.humai-ecosystem h2 {
  margin: 0 50px 10px 0;
}

.humai-ecosystem .ecosystem-header{
margin-top: 60px;
}

.humai-ecosystem .ecosystem-row {
  margin-top: 50px;
  display: flex;
}
@media (min-width: 992px) {
.humai-ecosystem .ecosystem-row .col-lg-5-custom {
    width: 20%;
    flex: 0 0 20%;
  }
  }

.humai-ecosystem .eco-item span {
  width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--clr-FFFFFF);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-weight: 700;
}
.humai-ecosystem .eco-item span::before{
  content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, rgba(10, 125, 204, 0) -12.45%, #0a7dcc 51.16%, rgba(10, 125, 204, 0) 116%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: rotateGradient 3s infinite linear;
}

.humai-ecosystem .eco-item h5 {
 margin-bottom: 20px;
    font-size: var(--fs-30);
    color: var(--clr-FFFFFF);
}
.humai-ecosystem .eco-item h5 a{
  font-size: var(--fs-30);
    color: var(--clr-FFFFFF);
}
.humai-ecosystem .eco-item h5 a:hover{
  color: var(--clr-048AE5);
}

.humai-ecosystem .eco-item p {
 font-size: var(--fs-20);
    color: var(--clr-FFFFFF);
}

/* humai-ecosystem end */


/* humai-cta start */

.humai-cta{
  background-color: var(--clr-0F1016);
  padding:40px 0 80px;
}

.humai-cta h2{
  font-size: var(--fs-48);
    color: var(--clr-FFFFFF);
}
.humai-cta p{
  max-width: 600px;
  margin: 20px auto 50px;
}
/* humai-cta end */
.inner-container-wp{
  padding: 190px 0px 100px 0px;
  background-color: var(--clr-0F1016);
}
.main-header.inner-header{
background-color: var(--clr-0F1016);
}


.humait-sections {
  color: #fff;
  background: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564') no-repeat center/cover;
  background-attachment: fixed;
  font-family: "Segoe UI", sans-serif;
}

/* NAV */
.humait-sections .nav {
  position: sticky;
  top: 0;
  padding: 15px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.humait-sections .nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

.humait-sections .nav a:hover {
  color: #046bd2;
}

/* SECTION */
.humait-sections .section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

/* CARD */
.humait-sections .card {
  max-width: 800px;
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* TEXT */
.humait-sections h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.humait-sections p {
  opacity: 0.85;
  margin-bottom: 25px;
}

/* ORB */
.humait-sections .orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  background: radial-gradient(circle, #046bd2, #000);
  box-shadow: 0 0 25px #046bd2;
}

.humait-sections .orb.gold {
  background: radial-gradient(circle, #a85f00, #000);
  box-shadow: 0 0 25px #a85f00;
}


.humait-sections > section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
@media (max-width:1200px){
  .roadmap-wrapper  .row > div:nth-child(1){
    order: 1;
  }
  .roadmap-wrapper  .row > div:nth-child(2){
    order: 2;
  }
  .roadmap-wrapper  .row > div:nth-child(3){
    order: 3;
  }
  .roadmap-wrapper  .row > div:nth-child(4){
    order: 4;
  }
  .roadmap-wrapper  .row > div:nth-child(7){
    order: 5;
  }
  .roadmap-wrapper  .row > div:nth-child(6){
    order: 6;
  }
  .roadmap-wrapper  .row > div:nth-child(5){
    order: 7;
  }
  .humai-ecosystem .ecosystem-row{
    gap:40px 0px;
  }
}
/******************** Landing page end ***********************/



/* ================= RESPONSIVE ================= */
@media (min-width:1200px){
 
  .main-header nav.menu,.main-header .right{
    width: 40%;
  }
  .main-header .right{
    justify-content: end;
  }
  .main-header .logo{
    width: 20%;text-align: center;
  }
  .landing-hero-section .books img{
    margin-bottom: 0px;
     margin-bottom: -43px;
    max-width: 92%;
  }
}
@media (min-width:768px){
  .architecture-section .rgt-sc{padding-bottom: 140px;}
}
@media (max-width: 991px) {
  /* header start */
  .hero-section.landing-hero-section:before{
content:none
  }
  .hero-section.landing-hero-section h1{margin-bottom: 15px;}
.landing-hero-section .books{
  margin-top: 30px;
}
  .main-header nav {
    gap: 15px;
  }

  .main-header .logo img {
    height: auto;
    width: 50px;
  }
  .main-header.sticky .logo img {
    height: auto;
    width: 50px;
  }

  .main-header .menu-toggle {
    display: flex;
  }

  .main-header nav.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #000;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: 0.4s ease;
    z-index: 999;
  }
  .main-header nav.menu.active {
    left: 0;
  }

  .main-header .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
  }
  /* header end */

  /* hero-section start*/
   .hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  .hero-section {
    text-align: center;
    padding: 100px 0 20px;
  }

  .hero-section p {
    margin: auto;
  }
  .hero-section .books {
    display: flex;
    justify-content: center;
  }
  .hero-section .books img {
    position: static;
    width: 70%;
   
  }

  /* hero-section end */

  /* truth section start */

 .truth-section .left{
    margin-bottom: 40px;
  }
  .truth-section .left p {
    max-width: 100%;
  }
  .truth-section .right h3{
    margin-bottom: 10px;
  }
  .truth-section .right .content{
    margin-bottom: 30px;
  }
  /* truth section END */
    .split-hero {
        min-height: 60vh;
    }
  .split-hero .top {
    text-align: center;
  }

  .split-hero .top .col-lg-6 {
    text-align: center !important;
    margin-bottom: 20px;
  }

  .split-hero .center-content {
    margin-top: 120px;
  }
  .architecture-section .image-box img {
    width: 70%;}
  .architecture-section {
    text-align: center;
    padding: 60px 0;
  }
  .membership-section .top-content p:nth-child(3){
    width: 100%;
  }
  .membership-section{
    padding: 80px 0 40px;
  }
  .architecture-section p {
    margin: auto;
    max-width: 100%;
  }
   .architecture-section .content-gap {
    gap: 30px;
 }
  .architecture-section .icons {
    justify-content: center !important;
  }

  .architecture-section .icons {
    margin-top: 60px;
    justify-content: center;
  }
  .journey-section {
    padding: 60px 0;
  }

  .journey-section .card-box {
    padding: 25px;
  }
  .journey-section .card-box p{
    width: 100%;
    margin: 5px auto 30px;
  }
  .books-section {
    text-align: center;
  }

  .books-section .book-card {
    text-align: center;
  }
  .books-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .future-section {
    min-height: 800px;
  }
  /* footer start */

  .main-footer .bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* footer end */
  .primary_menu{
		flex-direction:column;
	}
}

@media (max-width: 767px) {
  .journey-section.roadmap-section{
overflow-x: hidden;
  }
  .journey-section.humai-ecosystem ul li{
    font-size: 16px;padding-left: 40px;
  }
  .journey-section.humai-ecosystem ul li:before{
    width: 32px;
    height:47px;
  }
  .hero-section.landing-hero-section .books{
    margin-top:50px
  }
  .main-header .btn_wrapper li::after {
   
    width: 7px;
    height: 7px;
  
    right: 10px;
    top: calc(50% - 3px);
    
    background-size: contain;
  }
  .main-header .btn_wrapper a {
   
    padding-right: 27px;
  }
  .main-header .lang-dropdown .selected span{
    font-size: 14px;
  }
  .btn {
    padding: 12px 30px;
  }
  /* header start */

  .main-header .container {
    gap: 15px;
    padding: 0 12px !important;
  }
  .main-header .btn , .main-header .btn_wrapper a{
    padding: 7px 10px;
    font-size: 14px;
  }

  .main-header .logo {
    position: static;
    transform: none;
  }

  .main-header .right {
    justify-content: center;
    gap: 10px;
  }

  /* header end */
 
  .books-section .container{
    position: relative;
  }
  .hero-section .books img {
    width: 90%;
  
  }
  
  .hero-section .hero-content {
    padding-top: 25px;
  }
  .hero-section h1 {
    line-height: 40px;margin: 0;
  }
  .hero-section p {
    line-height: 30px;
  }
  /* truth section start */

  .truth-section {
    padding: 40px 0;
  }
  .truth-section .left h2{
    line-height: 40px;
  }

  

  /* truth section start */

  .journey-section{
    padding: 20px 0 40px;
  }

  .split-hero{
     padding: 40px 0;
     min-height: 50vh;
  }
  .split-hero .center-content {
    margin-top: 60px;
  }

  .architecture-section {
    padding: 40px 0;
  }
  .architecture-section .content-gap{
    gap: 10px;
  }
  .architecture-section .image-box img {
    width: 100%;
  }
  .architecture-section .icons {
    justify-content: center !important;
    gap: 20px;
  }

  .books-section {
    padding: 20px 0;
  }

  .future-section {
    padding: 40px 0 40px;
    min-height: 100%;
  }

  .membership-section{
    padding: 40px 0 20px;
  }
  .membership-section .top-content p:nth-child(3){
    width: 100%;
  }
    .main-footer .contact ul li:nth-child(1) .btn_wrapper {
    width: 100%;
}
.main-footer .top-bar {
    margin-bottom: 25px;
}
.main-footer .menu {
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-footer{
    padding: 40px 0 15px;
  }
  .main-footer .menu{
    gap: 10px;
  }
  .main-footer h4{
    margin-bottom: 20px;
  }
  .main-footer .footer-content p{
    margin-bottom: 15px;
  }
  .main-footer .newsletter{
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .main-footer .bottom{
    gap: 5px;
  }
  .membership-section .btn_wrapper{
    margin-top: 20px;
  }
  .membership-section .list{
    margin: 20px auto;
  }
  .main-footer .logo img{
    width: 80px;
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .main-header .btn, .main-header .btn_wrapper a{
    padding: 7px 10px;
    font-size: 12px;
  }
  .main-header .btn img{
    margin-left: 5px;
    width: 8px;
  }
  .main-header .btn_wrapper a {
   
    padding-right: 27px;
  }
}

@media (max-width: 1350px) {
  .architecture-section .icons {
    position: static;
    margin-top: 50px;
    justify-content: flex-start;
  }
}

@media (min-width: 1700px) {
  .architecture-section .content-gap {
    gap: 100px;
  }
}


/* book hero section   */

.book-hero-section {
  height: 60rem;
  color: var(--clr-FFFFFF);
  position: relative;
  /* padding-top: 160px; */
  padding-bottom: 80px;
  display: flex;
  /* align-items: end; */
}
.book-hero-section .container {
  width: 1800px;
  max-width: 100%;
  padding: 0 50px;
  position: relative;
}
.book-hero-section .hero-content {
  padding-top: 100px;
}

.book-hero-circle {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.book-hero-section::after {
     content: "";
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 66%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    /* top: 0; */
    bottom: -27px;
    z-index: 5;
}

@media (max-width: 1200px) {
}

@media (max-width: 991px) {
  .book-hero-circle {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .book-hero-circle {
    width: 100%;
  }

  .book-hero-section {
    height: 40rem;
  }
}

/* hero-section end */

/* truth section start */

.timeline-section {
  padding: 100px 0;
  position: relative;
  color: var(--clr-FFFFFF);
}

.timeline-section-content {
  position: relative;
  background: #050816;
  padding: 100px 0;
  overflow: visible;
}

.timeline-section-content .container {
  position: relative;
}

.position-relative {
  position: relative;
  overflow: visible;
}

.section-decoration {
  position: relative;
  overflow: visible;

  min-height: 500px; /* fixed minimum height */
  display: flex;
  justify-content: center;
}

.custom-link {
  color: #d4a63d;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  position: relative;
  padding-bottom: 6px;
}

.custom-link::after {
  content: "";
  position: absolute;

  left: 30px;
  bottom: 0;

  width: 80%;
  height: 1px;

  background: #d4a63d;
}

.custom-link .icon-svg {
  width: 22px;
  height: 22px;
}

.timeline-section .middle-part h2 {
  font-size: var(--fs-48);
  color: var(--clr-FFFFFF);
  line-height: 50px;
  margin-bottom: 10px;
}

.middle-part span {
  font-size: var(--fs-20);
  color: var(--clr-4EBDFF);
}

.middle-part p {
  font-size: var(--fs-20);
  color: var(--clr-FFFFFF);
  width: 80%;
  margin-bottom: 20px;
}

.last-part h2 {
  font-size: var(--fs-50);
  color: var(--clr-F3C26A);
}

.left-books-img p {
  font-size: var(--fs-30);
  color: var(--clr-FFFFFF);
  line-height: 25px;
  margin-top: 15px;
  word-break: break-word;
}

.timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.92),
    rgba(3, 7, 18, 0.75),
    rgba(0, 0, 0, 0.88)
  );

  z-index: 1;
}

.timeline-section::after {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #000 71%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  left: 0;
  /* top: 0; */
  bottom: -75px;
  z-index: 1;
}

.timeline-section .container {
  width: 1800px;
  max-width: 100%;
  padding: 0 50px;
  position: relative;
}

.timeline-path {
  position: absolute;
  top: -80px;
  left: 64%;
  transform: translateX(-40%);
  height: calc(100% + 9%);
  z-index: 2;
}

.timeline-path img {
  height: 100%;
  object-fit: contain;
  /* opacity: 0.9; */
}

/* content should stay above line */
.timeline-section .container {
  position: relative;
  z-index: 3;
}

/* .next-part {
  padding-top: 4rem;
} */

.left-books-img {
  position: relative;
  width: 90%;
}

.light-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  z-index: 1;
  opacity: 0.8;
}

.book-img {
  position: relative;
  z-index: 2;
}

.shadow-img {
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 1;
}

.last-part {
  margin-left: 50px;
}

@media (max-width: 1600px) {
  .timeline-path {
    position: absolute;
    top: -80px;
    left: 61%;
    transform: translateX(-34%);
    height: calc(100% + 8%);
    z-index: 2;
  }
  .last-part {
    margin-left: 30px;
  }

  /* .next-part {
    padding-top: 4rem;
  } */

  .last-part h2 {
    font-size: 40px;
    margin-left: 20px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .middle-part p {
    font-size: 18px;
  }

  .timeline-section .middle-part h2 {
    font-size: 30px;
  }

  .middle-part span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1390px) {
  .timeline-path {
    position: absolute;
    top: -66px;
    left: 57%;
    transform: translateX(-24%);
    height: calc(100% + 8%);
    z-index: 2;
  }

  .next-part {
    padding-top: 4rem;
  }

  .timeline-section {
    padding: 50px 0;
  }

  .last-part {
    margin-left: 40px;
  }

  .last-part h2 {
    font-size: 35px;
    margin-left: 40px;
  }
}

@media (max-width: 1200px) {
  .timeline-path {
    display: none;
  }
  .middle-part p {
    width: 100%;
  }
  .next-part {
    padding-top: 4rem;
  }
  .section-decoration {
 

  min-height: auto; /* fixed minimum height */
 
}
}

@media (max-width: 767.98px) {
  .middle-part {
    text-align: center;
  }
  .middle-part p {
    width: 100%;
  }
  .last-part h2 {
    text-align: center;
    margin-top: 10px;
  }
  .timeline-section .middle-part h2 {
    line-height: 36px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .timeline-section {
    padding: 40px 0;
  }
  .next-part {
    padding-top: 4rem;
  }

  .shadow-img {
    position: absolute;
    bottom: -20%;
  }

  .left-books-img {
    margin: 0 auto;
    width: 70%;
  }
  .action-links {
    justify-content: center;
  }
  .last-part {
    margin-left: 0px;
  }

  .last-part h2 {
    margin-left: 0px;
  }
}

/* future-section start */

.book-future-section {
  min-height: 45vw;
  color: var(--clr-FFFFFF);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}

.book-future-section .container {
  width: 1500px;
  max-width: 100%;
  padding: 0 50px;
  position: relative;
}

.book-future-section-content h2:nth-of-type(1) {
  font-size: var(--fs-52);
  color: var(--clr-FFFFFF);
}

.book-future-section-content h2:nth-of-type(2) {
  font-size: var(--fs-52);
  color: var(--clr-4EBDFF);
}

.book-future-section-content p {
  font-size: var(--fs-20);
}

@media (max-width: 767.98px) {
  .book-future-section {
    min-height: 300px;
  }
}

@media (max-width: 1200px) {
  .glow-circle2 {
    display: none;
  }

  .bottom-line2 {
    display: none;
  }

  /* Curve line */
  .curve-light2 {
    display: none;
  }

  /* Glow circle */

  /* Bottom horizontal line */
  .bottom-line {
    display: none;
  }

  /* Curved light image */
  .curve-light {
    display: none;
  }

  .glow-circle {
    display: none;
  }

  .curve-light3 {
    display: none;
  }

  .glow-circle3 {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1380px) {
  .glow-circle2 {
    position: absolute;
    right: 8%;
    bottom: -110px;
    width: 20%;
    z-index: 3;
  }

  .bottom-line2 {
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curve line */
  .curve-light2 {
    position: absolute;
    right: 8%;
    bottom: 20px;
    height: 100%;
    z-index: 2;
  }

  /* Glow circle */

  /* Bottom horizontal line */
  .bottom-line {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curved light image */
  .curve-light {
    position: absolute;
    right: 12%;
    bottom: 9%;
    height: 100%;
    z-index: 2;
  }

  .glow-circle {
    position: absolute;
    right: 7.5%;
    bottom: -29%;
    z-index: 3;
    width: 20%;
  }

  .curve-light3 {
   position: absolute;
        right: 12%;
        bottom: -30%;
        height: 37rem;
        z-index: 2;
  }

  .glow-circle3 {
    position: absolute;
    right: 15%;
    bottom: -62%;
    z-index: 3;
    width: 20%;
  }

  .book-future-section {
    min-height: 50vw;
  }
}

@media (min-width: 1380px) and (max-width: 1600px) {
  /* Bottom line */
  .bottom-line2 {
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curve line */
  .curve-light2 {
    position: absolute;
    right: 12%;
    bottom: 20px;
    height: 100%;
    z-index: 2;
  }

  /* Glow circle */
  .glow-circle2 {
    position: absolute;
    right: 11%;
    bottom: -130px;
    width: 20%;
    z-index: 3;
  }

  /* Bottom horizontal line */
  .bottom-line {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curved light image */
  .curve-light {
    position: absolute;
    right: 16%;
    bottom: 9%;
    height: 100%;
    z-index: 2;
  }

  .glow-circle {
    position: absolute;
    right: 10.5%;
    bottom: -34%;
    z-index: 3;
    width: 20%;
  }

  .curve-light3 {
   position: absolute;
        right: 17.1%;
        bottom: -35%;
        height: 29rem;
        z-index: 2;
  }

  .glow-circle3 {
    position: absolute;
    right: 16.2%;
    bottom: -83%;
    z-index: 3;
    width: 20%;
  }
}

@media (min-width: 1600px) {
  .glow-circle2 {
    position: absolute;
    right: 10.3%;
    bottom: -154px;
    width: 20%;
    z-index: 3;
  }

  /* Bottom line */
  .bottom-line2 {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curve line */
  .curve-light2 {
    position: absolute;
    right: 13%;
    bottom: 20px;
    height: 100%;
    z-index: 2;
  }

  /* Bottom horizontal line */
  .bottom-line {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  /* Curved light image */
  .curve-light {
    position: absolute;
    right: 16%;
    bottom: 10%;
    height: 100%;
    z-index: 2;
  }

  .glow-circle {
    position: absolute;
    right: 10%;
    bottom: -41%;
    z-index: 3;
    width: 20%;
  }

  .curve-light3 {
   position: absolute;
        right: 17.2%;
        bottom: -36%;
        height: 32rem;
        z-index: 2;
  }

  .glow-circle3 {
    position: absolute;
    right: 16.2%;
    bottom: -94%;
    z-index: 3;
    width: 20%;
  }
  .last-part h2 {
    font-size: var(--fs-40);
    margin-left: 40px;
  }
}
