/* SPACING SYSTEM (px) 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px) 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 /
  62 / 74 / 86 / 98

  colors
  main color: #FFFFFF
  tints:  #1d1e1c
  shades: #d3f985
  greys

  font-size
  400(regular)
  500 (medium) 
  600(semi bold) 
  700(bold)
  1rem=10px 
  
  setup
  10px=1rem */

@import url("https://cdn-uicons.flaticon.com/2.2.0/uicons-bold-rounded/css/uicons-bold-rounded.css");
@import url("https://cdn-uicons.flaticon.com/2.2.0/uicons-bold-straight/css/uicons-bold-straight.css");

:root {
  --color-text: #1d1e1c;
  --color-background: #ffffff;
  --color-primary: #319bff;
}

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

body {
  position: relative;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  line-height: mormal;
  background-color: var(--color-background);
  color: var(--color-text);
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
  /* overflow-x: hidden; */
  scroll-behavior: smooth;
}

.reusable-heading {
  font-size: 5rem;
  margin: 4rem auto;
}

::-moz-selection {
  color: var(--color-background);
  background: var(--color-text);
}

::selection {
  color: var(--color-background);
  background: #000;
}

/* resuable code */
.container {
  max-width: 140rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--colums--1 {
  align-items: center;
  grid-template-columns: 1fr;
}

.grid--colums--2 {
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.grid--colums--3 {
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.grid--colums--4 {
  /* align-items: center; */
  grid-template-columns: repeat(4, 1fr);
}

.grid--colums--5 {
  /* align-items: center; */
  grid-template-columns: repeat(5, 1fr);
}

.grid-center-v {
  align-items: center;
}

/* resuable stylesss */
.why-heading {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 5rem;
  margin: 8rem auto;
}

.resuable-subheading {
  font-size: 3rem;
}

/*/////////////////////////////////  */
/* navbar */
.sticky {
  position: fixed;
  background-color: var(--color-background);
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  margin: 0rem !important;
  z-index: 999;
  box-shadow: 0 1.2rem 3rem rgb(0, 0, 0, 0.03);
  transition: all 0.5s;
}

.navbar-wrap h1 {
  display: none;
}

.icon-nav {
  font-size: 3rem;
  display: none;
}

.nav-icon-wrap {
  border: none;
  background-color: transparent;
}

.nav-icon-wrap {
  display: none;
}

.navbar-wrap {
  /* max-width: 140rem; */
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  padding: 3.2rem;
  align-items: center;
}

.navbar-wrap ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  cursor: pointer;
}

.navbar-wrap li a:link,
.navbar-wrap li a:visited {
  text-decoration: none;
  color: var(--color-text);
}

.navbar-wrap ul a:hover,
.navbar-wrap ul a:active {
  opacity: 0.9;
}

.nav-btn {
  z-index: -1;
  padding: 1.8rem;
  border-radius: 20px;
  background-color: var(--color-text);
  color: var(--color-background) !important;
}

/* ////////////////////// */
/* hero */
.hero {
  max-width: 150rem;
  padding: 0 3.2rem;
  align-items: center;
  margin: 6rem auto;
}

.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3rem;
  border-radius: 20px;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  align-self: start;
  z-index: -1;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
}

.hero-h1 h1 {
  font-weight: 700;
  font-size: 5.2rem;
}

.hero-text-p p {
  font-size: 2.4rem;
  letter-spacing: -0.1px;
  line-height: 1.3;
  color: var(--color-text);

  text-align: center;
}

.hero-cta a {
  display: inline-block;
  font-size: 2rem;
  text-decoration: none;
}

.vector-text {
  position: relative;
  display: inline-block;
  z-index: -1;
}

.vector {
  width: 120%;
  position: absolute;
  top: -30px;
  left: -10px;
  z-index: -1;
}

/* /////////////////////////////// */
/* why us */
.why-section h1 {
  font-size: 5rem;
  margin: 4rem auto;
  align-items: center;
}

.rectangle {
  display: inline-block;
  transform: translateY(10px);
}

.why-section {
  margin: 10rem auto;
}

.why {
  grid-template-columns: repeat(3, 1fr);
  padding: 3.2rem 1rem;
  margin-top: 3.2rem;
  margin-bottom: 16rem;
}

.why-wrap {
  display: flex;
  flex-direction: column;
}

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  /* position: relative; */
}

.icon {
  font-size: 8rem;
}

.why ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.why-title {
  font-weight: 600;
  font-size: 2.4rem;
}

.why-context {
  font-size: 1.8rem;
  text-align: center;
}

.icon-span {
  position: relative;
}

.icon-round {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  z-index: -939292;
  margin-left: 20px;
}

.icon-1 {
  background-color: var(--color-primary);
}

.icon-2 {
  background-color: #d3f985;
}

.icon-3 {
  background-color: #fcbedc;
  /* background-color: #a6e8f6;/ */
}

/* ////////////////////////////////////// */
/* About */
.about {
  /* margin: 16rem auto;/ */
  /* margin: 7rem auto; */
}

.about-heading {
  font-size: 5rem;
  font-weight: 700;
  margin: 10rem auto;
}

.about-title {
  font-size: 4.4rem;
  font-weight: 500;
  margin: 1.2rem auto;
}

.about-context {
  text-align: justify;
  font-size: 2.4rem;
}

.about-img {
  width: 100%;
  border-radius: 20px;
}

/* //////////////////////////////////////////////////////// */
/* boxxxxxxxxx */
.box-a:link,
.box-a:visited {
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.5s;
}

.box-a:hover,
.box-a:active {
  scale: 1.5;
}

.box-a {

  z-index: 10000000000000000000000000000000000000;
}

.box-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.box {
  position: relative;
  width: 20rem;
  height: 20rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}

.img-box {
  position: absolute;
  width: 70%;
  height: 70%;
  bottom: 30.15px;
  background-image: url(../assest/Futexx100x100.svg);
  background-size: cover;
  border-radius: 50%;
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.text span {
  /* margin: auto 3px; */
  position: absolute;
  font-size: 1.8rem;
  font-weight: 600;
  left: 50%;
  transform-origin: 0 10rem;
}

.hiddenBox {
  opacity: 0;
}

.section {
  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

/*  */
.section-left {
  transition: transform 1s, opacity 1s;
}

.left--hidden {
  opacity: 0;
  transform: translateX(-10rem);
}

.section-right {
  transition: transform 1s, opacity 1s;
}

.right--hidden {
  opacity: 0;
  transform: translateX(10rem);
}

/* /* SPACING SYSTEM (px) 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px) 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 /
  62 / 74 / 86 / 98 */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-text);
}