@font-face {
  font-family: vazir;
  src: url("../fonts/vazir/Vazir-Light.woff");
}
@font-face {
  font-family: vazir_B;
  src: url("../fonts/vazir/Vazir-Bold.woff");
}
.fjalla-one-regular {
  font-family: "Fjalla One", sans-serif;
  font-weight: 600;
  text-align: center;
  font-style: normal;
  background: linear-gradient(
    90deg,
    rgba(53, 0, 62, 1) 0%,
    rgba(103, 5, 127, 1) 36%,
    rgba(255, 0, 254, 1) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light {
  --mainColor: #64bcf4;
  --hoverColor: #000000;
  --backgroundColor: rgb(47, 93, 191);
  --darkOne: #73cff4;
  --darkTwo: #45424b;
  --lightOne: #c2c2c2;
  --lightTwo: #ffffff;
}

.dark {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.big-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(4, 17, 153, 1) 0%,
    rgba(5, 63, 127, 1) 36%,
    rgba(0, 159, 255, 1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}
.title-container {
  height: 95vh;
}

header {
  position: relative;
  z-index: 70;
  margin-top: 20px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 10px;
}

.logo img {
  width: 150px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  margin-left: 3.5rem;
  display: inline-block;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  transition: all 0.55s ease;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
  border-bottom: 2px solid rgb(6, 6, 6);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}
.showcase-area {
  background: linear-gradient(
    90deg,
    rgba(4, 17, 153, 1) 0%,
    rgba(5, 63, 127, 1) 36%,
    rgba(0, 159, 255, 1) 100%
  );
}

.big-title {
  font-size: 22px;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.input-h3 {
  text-align: center;
  font-size: 25px;
  color: #000000;
}

.text {
  color: var(--lightOne);
  font-size: 1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(54, 198, 227, 0.696);
}

.person {
  width: 123%;
  margin-bottom: 40px;
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
  display: none;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}
.con {
  background: #f1f8fc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.con-img {
  background: #f1f8fc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3% 0 3% 0;
  width: 1000px;
  gap: 40px;
}
.conwrapper {
  width: 24vmin;
  height: 24vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2em 0;
  position: relative;
  font-size: 16px;
  border-radius: 10%;
  background-color: #4184cd;
}
i {
  color: #ffffff;
  font-size: 2.5em;
  text-align: center;
}
span.num {
  color: #ffffff;
  display: grid;
  margin-top: 10px;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
span.text {
  color: #e0e0e0;
  font-size: 1em;
  margin-top: 15px;
  text-align: center;
  font-weight: 400;
  line-height: 0;
}

.slider {
  height: 400px;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f1f8fc;
}
.slide-track {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 50s linear infinite;
}
.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 10));
  }
}

.slide {
  height: 200px;
  width: 400px;
  display: flex;
  align-items: center;
  padding: 20px;
  perspective: 100px;
}
.slide img {
  width: 300px;
  height: 260px;
  transition: transform 1s;
}
.slide img:hover {
  transform: translateZ(20px);
}
.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  width: 15%;
  position: absolute;
  z-index: 2;
}
.slider::before {
  left: 0;
  top: 0;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}
.pic1 {
  margin-left: 100px;
}
.down {
  background: #75b2f0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facing {
  width: 50%;
}

/* -------------------------------------------------------------------- */

.modes-info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(74, 74, 253);
}
.text-info {
  display: flex;
  color: white;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}
.text-info h3 {
  line-height: 25px;
}
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.mode {
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 200px;
  margin: 30px;
  border: 1px solid white;
  border-radius: 5%;
  align-items: center;
  justify-content: center;
}
.mode img {
  width: 100px;
}
.mode h4 {
  margin-top: 10px;
  color: white;
}

.detail-odd {
  display: flex;
  background: #f1f8fc;
  height: 70vh;
  align-items: center;
  transition: 0.5s;
}
.detail-even {
  display: flex;
  background: rgb(63, 63, 255);
  height: 70vh;
  align-items: center;
  transition: 0.5s;
}
.left-side-odd {
  flex-grow: 1;
  display: grid;
  justify-content: center;
  margin-right: -200px;
}
.left-side-odd * {
  padding-bottom: 10px;
}
.left-side-odd p {
  width: 500px;
  color: rgb(55, 55, 55);
}
.right-side-odd {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-side-odd img {
  width: 400px;
  border-radius: 2%;
}

.right-side-even {
  flex-grow: 1;
  display: grid;
  justify-content: center;
  margin-left: -200px;
  color: #73cff4;
}
.right-side-even * {
  padding-bottom: 10px;
}
.right-side-even p {
  width: 500px;
  color: #d7d6d6;
}
.left-side-even {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-side-even img {
  width: 400px;
  border-radius: 2%;
}
.features {
  background: #f1f8fc;
  display: flex;
  height: 70vh;
  align-items: center;
  transition: 0.5s;
}
.feature {
  margin-left: 20px;
  margin-top: 10px;
}
.right-side-even-text {
  flex-grow: 1;
  display: grid;
  justify-content: center;
  align-items: center;
  margin-left: -100px;
}
.right-side-even-text p {
  width: 500px;
  color: #000000;
  display: flex;
  align-items: center;
}
.right-side-even-text h1 {
  margin-bottom: 10px;
}
.checkbox {
  color: rgb(34, 117, 233);
  margin-left: -20px;
}

/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */

@media (max-width: 1025px) {
  .big-title h1 {
    font-size: 30px;
  }
  .text {
    font-size: 14px;
  }
  .btn {
    padding: 0.8rem 1.3rem;
  }
  .logo img {
    width: 110px;
  }
  .modes {
    margin-top: -25px;
  }
  .wrapper {
    width: 85vw;
  }
  .conwrapper {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
  .left-side-even img {
    width: 300px;
  }
  .right-side-even p,
  .right-side-even h1,
  .right-side-even h3 {
    width: 400px;
  }
  .right-side-odd img {
    width: 300px;
  }
  .left-side-odd p,
  .left-side-odd h1,
  .left-side-odd h3 {
    width: 400px;
  }
  .right-side-even-text {
    font-size: 13px;
    margin-left: 0;
  }
  .right-side-even-text p {
    width: 400px;
  }
}

@media screen and (max-width: 871px) {
  .hamburger-menu {
    display: flex;
  }
  header .container {
    padding: 1rem 3rem;
  }
  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0 0 0;
  }

  .links .btn {
    background: none;
  }
  .title-container {
    height: auto;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0 0 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
  .wrapper {
    width: 55vw;
    height: 35vw;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 150px;
    margin-top: 50px;
  }
  .conwrapper {
    width: calc(50% - 40px);
    height: 30vmin;
    font-size: 14px;
  }
  .mode {
    margin: 20px;
  }
  .detail-odd {
    flex-direction: column;
    height: 90vh;
  }
  .detail-even {
    flex-direction: column-reverse;
    height: 90vh;
  }
  .right-side-even p,
  .right-side-even h1,
  .right-side-even h3 {
    width: 700px;
  }
  .left-side-odd p,
  .left-side-odd h1,
  .left-side-odd h3 {
    width: 700px;
  }
  .right-side-even {
    margin-left: 0;
    display: flex;
    flex-direction: column;
  }
  .left-side-odd {
    margin-right: 0;
    display: flex;
    flex-direction: column;
  }
  .right-side-odd {
    display: block;
  }
  .left-side-even {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  .wrapper {
    margin-bottom: 50px;
  }
  .conwrapper {
    width: 20vmin;
    height: 20vmin;
    font-size: 12px;
  }
  .right-side-even-text p {
    width: 300px;
  }
  .left-side-odd p,
  .right-side-even p {
    width: 600px;
    font-size: 17px;
  }
  .right-side-even h1,
  .left-side-odd h1 {
    font-size: 17px;
    width: 600px;
  }
}
@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }
  .logo img {
    width: 90px;
  }
  .big-title h1 {
    font-size: 25px;
  }
  .hamburger-menu {
    width: 1.5rem;
    height: 1.5rem;
  }
  .text {
    margin: 1.1rem 0 1.5rem;
    font-size: 12px;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }
  .wrapper {
    gap: 15px;
    margin-top: -350px;
  }
  .conwrapper {
    width: 80%;
    height: 30vmin;
    font-size: 10px;
  }
  .down {
    height: 90vh;
  }
  .facing {
    width: 80%;
  }
  .con {
    height: 600px;
  }
  .slider {
    margin-top: 50px;
  }
  .features {
    flex-direction: column-reverse;
    height: 100vh;
  }
  .pic1 {
    margin-left: 0;
  }
  .text-info h3 {
    font-size: 15px;
  }
  .modes {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .modes-info {
    height: 140vh;
  }
  .left-side-odd p,
  .right-side-even p {
    width: 350px;
    font-size: 16px;
  }
  .right-side-even h1,
  .left-side-odd h1 {
    font-size: 18px;
    width: 350px;
  }
  .right-side-even h3,
  .left-side-odd h3 {
    width: 350px;
    font-size: 18px;
  }
}

@media screen and (max-width: 430px) {
  .slider {
    margin-top: 0;
  }
  .facing {
    width: 90%;
  }
  .right-side-even-text {
    margin-top: 20px;
  }
  .mode {
    margin: 10px;
    width: 160px;
    height: 160px;
  }
  .modes-info {
    height: 110vh;
  }
  .right-side-even p,
  .left-side-odd p {
    width: 300px;
    font-size: 12px;
  }
}

@media screen and (max-width: 376px) {
  .big-title h1 {
    font-size: 22px;
  }
  .wrapper {
    gap: 15px;
    margin-top: -200px;
  }
  .conwrapper {
    width: 60%;
    height: 30vmin;
    font-size: 8px;
  }
  .con {
    height: 450px;
  }
  .slider {
    margin-top: 120px;
  }
  .right-side-even-text h1 {
    margin-top: 20px;
  }
  .mode {
    width: 150px;
    height: 150px;
    margin: 15px;
  }
  .modes-info {
    height: 110vh;
  }
  .mode h4 {
    font-size: 15px;
  }
  .right-side-even p,
  .left-side-odd p {
    width: 300px;
    font-size: 12px;
  }
  .right-side-even h3,
  .left-side-odd h3 {
    width: 300px;
    font-size: 15px;
  }
  .right-side-even h1,
  .left-side-odd h1 {
    font-size: 17px;
    width: 300px;
  }
  .facing {
    width: 100%;
  }
}
