@font-face {
  font-family: "Yekan";
  src: url("../font/IRANYekan_Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../font/IRANYekan_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bgClr: #fff;
  --clr3: #333;
  --clr5: #555;
  --clr7: #777;
  --grey: #6b6b6b;
  --borderClr1: #f1f1f1;
  --orangeClr: #8FC74A;
  --orangeClr2: rgba(143, 199, 74, 0.15);
  --orangeClr3: rgba(143, 199, 74, 0.1);
  --orangeClrOp1: #ff761a27;
  --blueClr1: #1875ff;
}
body,
html {
  background-color: var(--bgClr);
  max-width: 100vw;
  overflow-x: clip;
  direction: rtl;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.customContainer {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}
.flexCenter {
  justify-content: center;
  align-items: center;
}
.flexCol {
  flex-direction: column;
}
.justifyBetween {
  justify-content: space-between;
}
.alignCenter {
  align-items: center;
}
.hideText {
  color: transparent;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.faFont {
  font-family: "Yekan", Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.6em;
}
.bold {
  font-weight: 700;
}
.textClr3 {
  color: var(--clr3);
}
.textClr5 {
  color: var(--clr5);
}
.textClr7 {
  color: var(--clr7);
}
.textClrGrey {
  color: var(--grey);
}
.textClrOrange {
  color: var(--orangeClr);
}
.textClrBlue {
  color: var(--blueClr1);
}
.textSize1 {
  font-size: 1em;
}
.textSize11 {
  font-size: 1.1em;
}
.textSize12 {
  font-size: 1.2em;
}
.textSize14 {
  font-size: 1.35em;
}
.textSize16 {
  font-size: 1.6em;
}
.textSize2 {
  font-size: 2.2em;
}
.centerText {
  text-align: center;
}
.mar20 {
  margin-top: 20px;
}
.mar15 {
  margin-top: 15px;
}
.mar10 {
  margin-top: 10px;
}
.rel {
  position: relative;
}
.gap10 {
  gap: 10px;
}
.gap20 {
  gap: 20px;
}
.justifyText {
  text-align: justify;
}
/* row1Section */
.row1Section {
  margin-top: 20px;
  font-size: 0.85em;
}
.mainLogo svg {
  height: 26px;
  width: 110px;
}
@media screen and (min-width: 450px) {
  .row1Section {
    font-size: 1em;
  }
  .mainLogo svg {
    height: 30px;
    width: 120px;
  }
}
@media screen and (min-width: 450px) {
  .mobile{
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .desktop{
    display: none;
  }
}
/* row2Section */
.row2Section {
  margin-top: 50px;
  font-size: 0.9em;
  gap: 30px;
}
.rightSideDiv {
  gap: 30px;
}
.megaText {
  text-align: center;
  font-size: 2.1em;
  line-height: 1.6em;
  font-weight: 800;
}
.blueBtn {
  color: var(--bgClr);
  background-image: -o-linear-gradient(to bottom, #1f6dff, #083ea3);
  background-image: -moz-linear-gradient(to bottom, #1f6dff, #083ea3);
  background-image: -webkit-linear-gradient(to bottom, #1f6dff, #083ea3);
  background-image: linear-gradient(to bottom, #1f6dff, #083ea3);
  padding: 12px 35px;
  border-radius: 40px;
  box-shadow: 0 7px 20px #1f6dff75;
  position: relative;
  z-index: 10;
}
.blueBtn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--blueClr1);
  opacity: 0;
  transition: all 0.4s;
  border-radius: 40px;
}
.blueBtn:hover::after {
  width: 115%;
  height: 125%;
  left: -7.5%;
  top: -15%;
  opacity: 0.2;
}
.leftSideDiv {
  padding-bottom: 70px;
  max-width: 100vw;
  overflow-x: clip;
}
.orangeGradient {
  position: absolute;
  left: -20%;
  top: -20%;
  width: 140%;
  height: 140%;
  z-index: 1;
}
.orangeGradient svg {
  width: 100%;
  height: 100%;
}
.hasmterImage {
  width: 85%;
  z-index: 5;
}
.videoDiv {
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: -15px;
  z-index: 6;
}
.videoPlayer {
  width: 100%;
}
.videoBtnsDiv {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.wave {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -22.5px;
  margin-top: -22.5px;
  border: 1px solid var(--orangeClr);
  pointer-events: none;
}
.wave1 {
  animation: wave 2.5s linear 0.1s infinite;
}
.wave2 {
  animation: wave 2.5s linear 0.7s infinite;
}
.wave3 {
  animation: wave 2.5s linear 1.3s infinite;
}
.wave4 {
  animation: wave 2.5s linear 1.9s infinite;
}
.playLogo {
  width: 50px;
  height: 50px;
  background-color: var(--orangeClr);
  border-radius: 50%;
}
.hoverPlayText {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 30px;
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.videoBtnsDiv:hover .hoverPlayText {
  opacity: 1;
  transform: translateY(0);
}
/* mouseSection */
.mouseSection {
  margin-top: -40px;
}
.mouseBody {
  width: 30px;
  height: 45px;
  border-radius: 15px;
  border: 3px solid var(--orangeClr);
}
.mouseSroll {
  width: 4px;
  height: 8px;
  background-color: var(--orangeClr);
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -2px;
  border-radius: 10px;
  animation: mouseScroll 1.5s linear infinite;
}
.arrowSpan {
  position: absolute;
  bottom: -25px;
  animation: mouseScroll2 1.5s linear infinite;
}
@keyframes wave {
  from {
    transform: scale(1);
    opacity: 0.6;
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes mouseScroll {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(70%);
    opacity: 0;
  }
}
@keyframes mouseScroll2 {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(50%);
    opacity: 0;
  }
}
@media screen and (min-width: 450px) {
  .row2Section {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 968px) {
  .row2Section {
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-width: 1440px;
    margin: 50px auto 0;
    width: 94%;
    align-items: center;
    gap: 40px;
  }
  .leftSideDiv {
    position: unset;
    width: 90%;
  }
  .rightSideDiv {
    z-index: 4;
  }
  .orangeGradient {
    width: 120%;
    left: -40%;
    opacity: 1;
  }
  .mouseSection {
    margin-top: 0;
  }
  .hoverPlayText {
    bottom: 40px;
  }
}
/* benefitSection */
.benefitSection {
  margin-top: 0px;
}
.benefitGrid {
  gap: 20px;
  width: 100%;
  margin: 25px auto 0;
  max-width: 400px;
}
.benefitItem {
  border: 2px solid var(--borderClr1);
  padding: 25px;
  border-radius: 10px;
  gap: 15px;
}
.benefitItem svg {
  height: 50px;
  width: 50px;
}
@media screen and (min-width: 450px) {
  .benefitGrid {
    margin-top: 40px;
  }
}
@media screen and (min-width: 649px) {
  .benefitGrid {
    max-width: 400px;
    margin: 45px auto 0;
  }
  .benefitItem {
    transition: box-shadow 0.4s;
  }
  .benefitItem:hover {
    box-shadow: 0 0 25px var(--orangeClrOp1);
  }
}
@media screen and (min-width: 868px) {
  .benefitGrid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    justify-content: space-between;
  }
}
/* stepSection */
.stepSection {
  margin-top: 60px;
}
.introStepDiv {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  text-align-last: center;
  gap: 15px;
}
.stepGrid {
  margin-top: 50px;
  gap: 80px;
}
.stepItem {
  gap: 10px;
}
.stepItem::before {
  content: "";
  width: 0;
  height: 40px;
  border-left: 2px dashed var(--orangeClr);
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
}
.stepItem:last-child::before {
  display: none;
}
.largeCircle {
  height: 85px;
  width: 85px;
  background-color: var(--orangeClr3);
  border-radius: 50%;
  opacity: 0.5;
}
.smallCircle {
  height: 65px;
  width: 65px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  background-color: var(--orangeClr2);
  border-radius: 50%;
}
.smallCircle svg {
  width: 35px;
  height: 35px;
}
.stepDesc {
  line-height: 1.6em;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.6);
  }
}
.startSection {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .largeCircle {
    height: 65px;
    width: 65px;
    background-color: var(--orangeClr3);
    border-radius: 50%;
    animation: pulse 1.5s linear infinite;
    opacity: 1;
  }
  .stepSection {
    margin-top: 80px;
  }
  .stepGrid {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
  }
  .stepItem::before {
    width: 40%;
    height: 0;
    border-left: unset;
    border-top: 2px dashed var(--orangeClr);
    position: absolute;
    left: 0;
    bottom: -55px;
    bottom: unset;
    transform: translate(-100%);
    top: 25%;
  }
  .startSection {
    margin-top: 35px;
  }
}
.footerSection {
  margin-top: 20px;
  max-width: 100vw;
  overflow: hidden;
}
.footerGradient {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.footerGradient svg {
  width: 100% !important;
  height: 140% !important;
  transform: translateY(-18%);
}
.footerGrid {
  align-items: center;
  padding: 40px 0 20px;
  z-index: 5;
  width: 100%;
  gap: 30px;
  margin-top: 40px;
}
.footerLinksDiv {
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
.footerLink {
  color: var(--bgClr);
  font-size: 0.9em;
}
.socailItem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border 0.4s;
}
.socailItem:hover {
  border: 1px solid var(--bgClr);
}
.socailItem svg {
  color: var(--bgClr);
}
.copyRightText {
  color: var(--bgClr);
  z-index: 10;
  direction: ltr;
  font-size: 0.85em;
  padding: 10px 0 30px;
}
.socialList {
  gap: 10px;
}
@media screen and (min-width: 450px) {
  .footerSection {
    margin-top: 30px;
  }
  .footerSection .blueBtn {
    margin-top: 20px;
  }
  .footerGrid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    margin: 0 auto;
  }
  .footerLogo {
    flex: auto 0 0;
    order: 2;
  }
  .footerLinksDiv {
    flex: auto 0 0;
    flex-direction: row;
    align-items: center;
  }
  .socialList {
    flex: 100% 0 0;
    order: 3;
  }
  .footerGradient {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .footerGradient svg {
    height: 190% !important;
    margin-top: -10px;
  }
}
@media screen and (min-width: 649px) {
  .footerSection {
    background-image: -o-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: -moz-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: -webkit-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
  }
}
@media screen and (min-width: 968px) {
  .footerSection {
    margin-top: 50px;
  }
  .socialList {
    flex: 30% 0 0;
    order: 2;
  }
  .footerLogo {
    flex: 30% 0 0;
    order: 3;
    justify-content: flex-end;
  }
  .footerLinksDiv {
    flex: 30% 0 0;
  }
  .copyRightText {
    margin-top: 20px;
  }
  .footerGradient svg {
    height: 240% !important;
    margin-top: 10px;
    opacity: 0.9;
  }
  .footerSection {
    margin-top: 20px;
    max-width: 100vw;
    overflow: hidden;
    background-image: -o-linear-gradient(
      to top,
      var(--orangeClr) 15%,
      transparent 85%,
      transparent
    );
    background-image: -moz-linear-gradient(
      to top,
      var(--orangeClr) 15%,
      transparent 85%,
      transparent
    );
    background-image: -webkit-linear-gradient(
      to top,
      var(--orangeClr) 15%,
      transparent 85%,
      transparent
    );
    background-image: linear-gradient(
      to top,
      var(--orangeClr) 15%,
      transparent 85%,
      transparent
    );
  }
}
@media screen and (min-width: 1200px) {
  .footerSection {
    margin-top: 80px;
  }
  .footerGradient svg {
    height: 160% !important;
    margin-top: 25px;
  }
  .footerSection {
    background-image: -o-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: -moz-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: -webkit-linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
    background-image: linear-gradient(
      to top,
      var(--orangeClr) 20%,
      transparent 90%,
      transparent
    );
  }
}
