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

/* Colors */
:root {
  --primary: #121212;
  --secondary: #555555;
  --black: #000;
  --white: #fff;
  --white-2: #999999;
  --border: #e7e7e7;
}

@font-face {
  font-family: 'Parsa';
  src: url('../fonts/parsa1.3.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Yekan';
  src: url('../fonts/YekanBakhFaNum-SemiBold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
h2{
  font-family: 'Parsa', sans-serif !important;
}
*:not(h2) {
  font-family: 'Yekan', sans-serif; !important;
}
.text{
  direction: rtl;
}

html {
  scroll-behavior: smooth;
}

:root {
  --font_estedad: "estedad";
  --font_euclid: "euclid-circular-b";
  --font_awesome: "Font Awesome 6 Free";
}

body {
  font-family: "euclid-circular-b";
  line-height: 1;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.6;
  font-style: normal;
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-weight: 500;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.wc-btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s;
  font-weight: 600;
  color: var(--primary);
  padding: 21px 30px;
  border: 2px solid transparent;
  overflow: hidden;
  z-index: 0;
  background-color: #c9f31d;
  border-radius: 50px;
  cursor: pointer;
}

@media (max-width: 1919px) {
  .wc-btn-default {
    padding: 16px 25px;
  }
}

@media (max-width: 767px) {
  .wc-btn-default {
    border-width: 1px;
  }
}

.wc-btn-default:hover {
  background-color: var(--primary);
  color: var(--white);
}

.wc-btn-default.bordered {
  background-color: transparent;
  border-color: var(--primary);
}

.btn-hover-cropping {
  overflow: hidden;
  position: relative;
  transition: all 1s;
  z-index: 1;
}

.btn-hover-cropping::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(25deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}

.btn-hover-cropping:hover::after {
  height: 400%;
  opacity: 1;
}

.p-relative {
  position: relative;
}

/* container style  */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* page styles  */
.section-title {
  font-size: 50px;
}

@media only screen and (max-width: 1919px) {
  .section-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 50px;
  }
}

.section-spacing {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .section-spacing {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* progress style  */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background-color: #c9f31d;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: url(../imgs/icon/arrow-up.png);
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: #121212;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: #121212;
  stroke-width: 3;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* menu style  */
.main-menu > ul {
flex-direction: row-reverse;
  display: flex;
  justify-content: center;
}
@media (max-width: 994px)   {
  .header__inner > *:nth-child(1) {
    margin-right: auto !important;
    margin-left: 0 !important;
  }
}

.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  left: 0px;
}
.arrow-icon{
  transform: rotate(116deg);
}
.main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  left: 100%;
}

.main-menu li {
  direction: rtl;
  position: relative;
}

.main-menu li a {
  direction: rtl;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  padding: 32px 15px;
  display: inline-block;
  text-transform: capitalize;


  @media (max-width: 1400px) {
    padding: 32px 10px;
  }
}

.main-menu li a:hover {
  color: var(--white);
}

.main-menu .dp-menu {
  background: #1c1c1c;
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  right: 0 !important;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
  top: 100%;
}

.dp-menu.col-2 {
  column-count: 2;
  width: 550px;
}

.dp-menu.col-2 .title {
  text-align: right;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
}

.dp-menu.col-4 {
  column-count: 4;
  width: 1080px;
}

.has-mega-menu .dp-menu {
  left: calc(50% + 10px) !important;
  transform: translateX(-50%);
}

.has-mega-menu:hover .dp-menu {
  left: calc(50%) !important;
}

.main-menu .dp-menu ul {
  background: var(--black-2);
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}

.main-menu .dp-menu li {
  position: relative;
  padding: 0 20px;
}

.main-menu .dp-menu li:hover > a {
  color: var(--white);
  letter-spacing: 0.5px;
}

.main-menu .dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}

.main-menu .dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  padding: 10px 12px;
  display: block;
  transition: all 0.5s;
  text-align: right;
  cursor: pointer;
}

.main-menu .has-mega-menu {
  position: static;
}

.main-menu li:has(ul) > a:after {
  content: url("../imgs/icon/angle-down.png");
  margin-right: 5px;
  font-weight: 600;
  filter: brightness(100);
}

.main-menu .mega-menu {
  background-color: #1c1c1c;
  padding: 10px 10px;
  width: 100%;
  position: absolute;
  left: -5px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0px 0px;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
  top: 80px;
  border-radius: 5px;
  max-height: calc(100vh - 80px);
  overflow-y: scroll;
}

@media (min-width: 1921px) {
  .main-menu .mega-menu {
    max-width: 1920px;
    margin: 0 calc((100% - 1920px) / 2);
  }
}

.main-menu .mega-menu::-webkit-scrollbar {
  width: 0px;
}

.main-menu .mega-menu img {
  width: 100%;
}

.main-menu .mega-menu li:has(ul) > a:after {
  content: "";
}

.main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  padding: 12px;
  display: block;
  align-items: center;
  gap: 8px;
  background: var(--black-2);
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.main-menu .mega-menu li a:hover {
  color: var(--white);
  letter-spacing: 0.5px;
}

.main-menu .mega-menu .title {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #333337;
  padding-bottom: 20px;
  margin-bottom: 20px;
  pointer-events: none;
  border-radius: 0;
}

.offcanvas__icon {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .offcanvas__icon {
    display: block;
  }
}

/*
OFFCANVAS STYLES
*/
.offcanvas-area {
  background-color: #1c1c1c;
  padding: 30px;
  position: fixed;
 right: -100%;
  top: 0;
  z-index: 100;
  width: 360px;
  max-width: 360px;
  transition: 0.7s;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  overflow-y: scroll;
  z-index: 200;
}

@media (max-width: 767px) {
  .offcanvas-area {
    width: 100%;
    max-width: 100%;
  }
}

.offcanvas-area.show {
  scrollbar-width: none;
  direction: rtl;
  opacity: 1;
  visibility: visible;
  right: 0;
}

#open_offcanvas {
  border: 0;
  background: #092837;
  padding: 11px 8px 9px;
  outline: 0;
  cursor: pointer;
}

.close-offcanvas {
  cursor: pointer;
  display: inline-block;
}

.offcanvas-area-meta-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-area-meta-wrapper .wc-btn-default {
  padding: 14px 25px;
  font-size: 14px;
}

/* header area style  */
.header__area {
 flex-direction: row-reverse;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #8082e878;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 10;
  transition: all 0.5s;
}

@media only screen and (max-width: 1919px) {
  .header__area {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .header__area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(9, 40, 55);
  z-index: 100;
  transition: all 1s;
}

.header__inner {
  display: flex;
flex-direction: row-reverse;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 80px;
}

@media (max-width: 991px) {
  .header__inner {
    direction: rtl;
    height: 65px;
  }
}

.header__inner > *:nth-child(1) {
  margin-left: auto;
}

.header__menu {
  width: 100%;
}

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

.header__cart {
  text-align: right;
  flex-basis: 165px;
}

@media (max-width: 768px) {
  .header__cart {
    display: none;
  }
}

.header__cart a {
  direction: rtl;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  padding: 14px 20px;
  border-radius: 50px;
  display: inline-block;
  background-color: #c9f31d;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .header__cart a {
    padding: 6px 15px;
  }
}

.header__cart a:hover {
  color: var(--primary);
}

.header__cart a:after {
  background-color: var(--white);
}

.header__cart img {
  margin-right: 5px;
}

/* video area style  */
.video-area {
  position: relative;
  padding-top: 137px;
  background-color: #f9f9fb;
}

@media only screen and (max-width: 1919px) {
  .video-area {
    padding-top: 107px;
  }
}

@media only screen and (max-width: 991px) {
  .video-area {
    padding-top: 77px;
  }
}

@media only screen and (max-width: 767px) {
  .video-area {
    padding-top: 47px;
  }
}

.video-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 31%;
  background-color: #f9f9fb;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.video-area .section-header {
  display: flex;
  gap: 20px 60px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .video-area .section-header {
    flex-direction: column;
  }
}

.video-area .section-header .section-title {
  max-width: 500px;
}

.video-area .section-header .text {
  max-width: 440px;
}

.video-area .video-box-wrapper {
  margin-top: 50px;
}

.video-area .features-list {
  display: flex;
  gap: 15px 20px;
  justify-content: center;
  padding: 3px 3px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .video-area .features-list {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .video-area .features-list {
    gap: 15px 10px;
  }
}

.video-area .feature-item {
  text-align: center;
  justify-content: center;
  font-family: euclid_Circular_B, Sans-serif;
  font-size: 22px;
  font-weight: 500;
  fill: #121212;
  color: #121212;
  border-style: none;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 33px;
  position: relative;
  box-shadow: 0 30px 50px 0 rgba(20, 23, 56, 0.12);
  background: #fff;
}

@media (max-width: 1919px) {
  .video-area .feature-item {
    font-size: 18px;
    padding: 13px 27px;
  }
}

@media (max-width: 767px) {
  .video-area .feature-item {
    padding: 8px 13px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .video-area .feature-item {
    font-size: 14px;
    padding: 6px 8px;
  }
}

.video-area .feature-item:before {
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: 0 0;
  content: "";
  z-index: -1;
  top: -3px;
  left: -3px;
  border-radius: 50px;
  transition: all 0.3s;
  background: linear-gradient(
    109deg,
    #aac7ff 0.71%,
    #d781ff 50.36%,
    #ffb8d2 100%
  );
}

@media (max-width: 575px) {
  .video-area .feature-item:before {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
  }
}

.video-area .feature-item:nth-child(2):before {
  background: linear-gradient(
    109deg,
    #cfea84 0.71%,
    #8be8b6 50.36%,
    #5e7eee 100%
  );
}

.video-area .feature-item:nth-child(3):before {
  background: linear-gradient(
    109deg,
    #ffd5a4 0.71%,
    #f3a3eb 50.36%,
    #ac8eff 100%
  );
}

.video-area .video-box {
  border-radius: 10px;
  background: linear-gradient(
    109deg,
    #aac7ff 0.71%,
    #d781ff 50.36%,
    #ffb8d2 100%
  );
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .video-area .video-box {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .video-area .video-box {
    padding: 8px;
  }
}

.video-area .video-box iframe {
  width: 100%;
  aspect-ratio: 100/56;
  height: auto;
}

/* features area style  */
.features-area {
  background-color: #f9f9fb;
  padding-top: 27px;
}

@media only screen and (max-width: 1919px) {
  .features-area {
    padding-top: 27px;
  }
}

@media only screen and (max-width: 991px) {
  .features-area {
    padding-top: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .features-area {
    padding-top: 27px;
  }
}

.features-area .section-header {
  text-align: center;
}

.features-area .section-header .section-title {
  max-width: 650px;
  margin: 0 auto;
}

.features-area .section-header .text {
  max-width: 620px;
  margin: 0 auto;
}

.features-area .section-header .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .features-area .section-header .text-wrapper {
    margin-top: 19px;
  }
}

.features-area .features-list-wrapper {
  margin-top: 63px;
}

@media (max-width: 1919px) {
  .features-area .features-list-wrapper {
    margin-top: 43px;
  }
}

@media (max-width: 1200px) {
  .features-area .features-list-wrapper {
    margin-top: 23px;
  }
}

.features-area .features-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991px) {
  .features-area .features-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .features-area .features-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .features-area .features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-area .feature-item {
  text-align: center;
  padding: 35px 20px 27px;
  background-color: var(--white);
  border-radius: 10px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .features-area .feature-item {
    padding: 25px 20px 17px;
  }
}

@media (max-width: 575px) {
  .features-area .feature-item {
    padding: 15px 5px 10px;
  }
}

.features-area .feature-item:hover {
  box-shadow: 0px 30px 70px rgba(18, 22, 57, 0.08);
}

.features-area .feature-item:hover .icon svg * {
  fill: #8256ff;
}

.features-area .feature-item .text {
  font-size: 18px;
  line-height: 1.44;
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .features-area .feature-item .text {
    font-size: 14px;
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  .features-area .feature-item .text {
    font-size: 13px;
    margin-top: 10px;
  }
}

/* demo area style  */
.demo-area {
  padding-top: 137px;
}

@media only screen and (max-width: 1919px) {
  .demo-area {
    padding-top: 107px;
  }
}

@media only screen and (max-width: 991px) {
  .demo-area {
    padding-top: 77px;
  }
}

@media only screen and (max-width: 767px) {
  .demo-area {
    padding-top: 47px;
  }
}

.demo-area .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.demo-area .section-header .section-title {
  max-width: 900px;
  margin: 0 auto;
}

.demo-area .section-header .text {
  max-width: 620px;
  margin: 0 auto;
}

.demo-area .section-header .text-wrapper {
  margin-top: 30px;
}

.demo-area .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

#demos {
  min-height: 100vh;
}

.demo__wrapper {
  transition: all 0.5s;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1920px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .demo__wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .demo__wrapper {
    padding: 0 15px;
    margin-right: auto;
    margin-left: auto;
  }
}

.demo__list {
  display: grid;
  grid-gap: 70px 50px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 63px;
  justify-content: center;
}

@media (max-width: 1919px) {
  .demo__list {
    grid-gap: 40px 30px;
    margin-top: 43px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .demo__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 450px) {
  .demo__list {
    grid-template-columns: 1fr;
  }
}

.demo__item {
  text-align: center;
}

.demo__item-thumb {
  position: relative;
}

.demo__item-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.demo__item-thumb:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (hover: none) {
  .demo__item-thumb:before {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.65);
  }
}

.demo__item-thumb:hover .demo__buttons-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: none) {
  .demo__item-thumb .demo__buttons-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.demo__item img {
  max-width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
}

.demo__item h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 13px;
  text-transform: capitalize;
  color: var(--primary);
}

.demo__buttons-wrapper {
  position: absolute;
  bottom: 43%;
  width: 100%;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}

.demo__buttons {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.demo__link-btn {
  padding: 9px 15px;
  border-radius: 30px;
  border: 1.5px solid #fff;
  color: #fff;
  transition: 0.6s;
  font-size: 14px;
  display: inline-flex;
}

@media (max-width: 768px) {
  .demo__link-btn {
    padding: 7px 15px;
    font-size: 12px;
  }
}

.demo__link-btn:hover {
  background: #fff;
  color: #121212;
}

.demo__text p strong {
  color: #121212;
}

.demo__btn {
  float: right;
  position: relative;
  display: inline-block;
  background-color: #ebebed;
  border-radius: 25px;
}

.demo__btn button {
  color: #121212;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 25px;
  border: 0;
  outline: none;
  padding: 10px 23px;
  background-color: transparent;
}

.demo__btn img {
  width: 0;
}

.demo__btn .active {
  background-color: #fff;
}

.demo__btn .active img {
  width: 19px;
}

.demo__btn::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 60px;
  right: 65px;
  bottom: -80px;
  background-repeat: no-repeat;
  background-image: url(../imgs/arrow.png);
}

.demo__btm {
  text-align: center;
  margin-top: 70px;
  position: relative;
  margin-left: 100px;
  margin-right: 100px;
}

@media only screen and (max-width: 1199px) {
  .demo__btm {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .demo__btm {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.demo__btm:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  left: 0;
  bottom: 20px;
  z-index: -1;
}

.demo__btm p {
  color: #555;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
  background: #fff;
  display: inline-block;
  padding: 8px 20px;
}

.demo__btm p img {
  margin-bottom: -5px;
}

/* plugin area style  */
.plugin-area .section-content {
  direction: rtl;
  max-width: 430px;
}

.plugin-area .section-content .title-wrapper {
  margin-top: 22px;
}

.plugin-area .section-content .text {
  max-width: 370px;
}

.plugin-area .section-content .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .plugin-area .section-content .text-wrapper {
    margin-top: 19px;
  }
}

.plugin-area .section-content .feature-list {
  margin-top: 15px;
}

.plugin-area .section-content .feature-list li {
  line-height: 1.625;
  color: var(--primary);
}

.plugin-area .section-content .feature-list li img {
  margin-left: 10px;
}

.plugin-area .section-content .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  background-color: #1afff1;
  padding: 17px 20px;
  display: inline-block;
  border-radius: 14px;
  line-height: 1;
  position: relative;
}

.plugin-area .section-content .section-subtitle:before {
  position: absolute;
  content: url(../imgs/shape/shape-s-1.png);
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.plugin-area .section-content .section-subtitle:after {
  position: absolute;
  content: url(../imgs/shape/shape-s-2.png);
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.plugin-area .plugins-wrapper-box {
  max-width: 660px;
  width: 100%;
}

@media (max-width: 1919px) {
  .plugin-area .plugins-wrapper-box {
    max-width: 570px;
  }
}

@media (max-width: 991px) {
  .plugin-area .section-content .section-subtitle:before,
  .plugin-area .section-content .section-subtitle:after {
    display: none;
  }
}
.video-area-inner{
  direction: rtl;
}
.elements-wrapper{
  direction: rtl;
}
.plugin-area-inner {
  direction: rtl;
  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .plugin-area-inner {
    flex-direction: column;
  }
}

.plugin-item {
  display: flex;
  gap: 25px;
  align-items: center;
}

.plugin-item .plugin-icon img {
  width: 78px;
}

@media (max-width: 767px) {
  .plugin-item .plugin-icon img {
    width: 58px;
  }
}

.plugin-item .title {
  font-size: 24px;
  line-height: 1.08;
}

@media (max-width: 767px) {
  .plugin-item .title {
    font-size: 20px;
  }
}

.plugin-item .plugin-content {
  display: grid;
  gap: 10px 25px;
  grid-template-columns: 200px auto auto 110px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 767px) {
  .plugin-item .plugin-content {
    grid-template-columns: auto auto;
  }
}

.plugin-item .tag {
  font-size: 14px;
  font-weight: 500;
  padding: 2px 9px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
}

.plugin-item .text {
  color: var(--primary);
  line-height: 1.4;
}

.plugin-item:not(:first-child) {
  padding-top: 40px;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .plugin-item:not(:first-child) {
    padding-top: 20px;
    margin-top: 20px;
  }
}

/* elementor area style  */
.elementor-area {
  border-bottom: 1px solid rgba(18, 18, 18, 0.07);
}

.elementor-area .section-content {
  max-width: 470px;
}

.elementor-area .section-content .title-wrapper {
  margin-top: 39px;
}

.elementor-area .section-content .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .elementor-area .section-content .text-wrapper {
    margin-top: 19px;
  }
}

.elementor-area .section-content .feature-list {
  margin-top: 15px;
}

.elementor-area .section-content .feature-list ul {
  display: grid;
  gap: 0 20px;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .elementor-area .section-content .feature-list ul {
    grid-template-columns: 1fr;
  }

  filter-buttons-wrapper label {
    padding: 5px 8px;
    border-radius: 50px;
    font-size: 13px;
  }

  .filter-buttons-wrapper {
    gap: 5px;
    margin-top: 36px;
  }
}

.elementor-area .section-content .feature-list li {
  line-height: 1.625;
  color: var(--primary);
}

.elementor-area .section-content .feature-list li img {
  margin-left: 10px;
}

.elementor-area .section-content .btn-wrapper {
  margin-top: 45px;
}

.elementor-area-inner {
  direction: rtl;
  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .elementor-area-inner {
    flex-direction: column;
  }
}

.elementor-thumb {
  margin-bottom: -8%;
  max-width: 762px;
}

@media (min-width: 1401px) {
  .elementor-thumb {
    width: 762px;
  }
}

@media (max-width: 1400px) {
  .elementor-thumb {
    max-width: 662px;
  }
}

.elementor-thumb img {
  width: 100%;
}

/* gsap area style  */
.gsap-area {
  border-bottom: 1px solid rgba(18, 18, 18, 0.07);
}

.gsap-area .section-content {
  max-width: 440px;
}

.gsap-area .section-content .title-wrapper {
  margin-top: 28px;
}

.gsap-area .section-content .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .gsap-area .section-content .text-wrapper {
    margin-top: 19px;
  }
}

.gsap-area .section-content .feature-list {
  margin-top: 15px;
}

.gsap-area .section-content .feature-list ul {
  display: grid;
  gap: 0 20px;
  grid-template-columns: auto;
  justify-content: space-between;
}

.gsap-area .section-content .feature-list li {
  line-height: 1.625;
  color: var(--primary);
}

.gsap-area .section-content .feature-list li img {
  margin-left: 10px;
}

.gsap-area .section-content .btn-wrapper {
  margin-top: 45px;
}

.gsap-area .video-box {
  border-radius: 10px;
  background: linear-gradient(180deg, #def0bc 0%, rgba(222, 240, 188, 0) 100%);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .gsap-area .video-box {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .gsap-area .video-box {
    padding: 8px;
  }
}

.gsap-area .video-box iframe {
  width: 100%;
  aspect-ratio: 100/74;
  height: auto;
}

.gsap-area .video-box img {
  width: 100%;
}

.gsap-area .video-box-wrapper {
  width: 100%;
  max-width: 660px;
}

@media (max-width: 1919px) {
  .gsap-area .video-box-wrapper {
    max-width: 650px;
  }
}

.gsap-area-inner {
  direction: rtl;
  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .gsap-area-inner {
    flex-direction: column-reverse;
  }
}

/* elements area style  */
.elements-area {
  background-color: var(--primary);
}

.elements-area .section-header {
  text-align: center;
}

.elements-area .section-header .section-title {
  max-width: 470px;
  margin: 0 auto;
  color: var(--white);
}

.elements-area .section-header .text {
  max-width: 560px;
  margin: 0 auto;
  color: var(--white-2);
}

.elements-area .section-header .text span {
  color: var(--white);
}

.elements-area .section-header .section-subtitle {
  font-weight: 900;
  font-size: 300px;
  line-height: 0.75;
  background: linear-gradient(180deg, #222222 0%, rgba(18, 18, 18, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

}

@media (max-width: 1919px) {
  .elements-area .section-header .section-subtitle {
    font-size: 250px;
  }
}

@media (max-width: 991px) {
  .elements-area .section-header .section-subtitle {
    font-size: 200px;
  }
}

@media (max-width: 767px) {
  .elements-area .section-header .section-subtitle {
    font-size: 130px;
  }
}

.elements-area .section-header .title-wrapper {
  margin-top: -135px;
}

@media (max-width: 767px) {
  .elements-area .section-header .title-wrapper {
    margin-top: -95px;
  }
}

.elements-area .section-header .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .elements-area .section-header .text-wrapper {
    margin-top: 19px;
  }
}

.elements-area .elements-wrapper-box {
  margin-top: 63px;
}

@media (max-width: 1919px) {
  .elements-area .elements-wrapper-box {
    margin-top: 43px;
  }
}

.elements-area .element-card {
  background-color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 12px;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-2);

}

@media (max-width: 1919px) {
  .elements-area .element-card {
    padding: 19px 25px;
  }
}

@media (max-width: 991px) {
  .elements-area .element-card {
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .elements-area .element-card:nth-child(20) ~ * {
    display: none;
  }
}

.elements-area .element-card img {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .elements-area .element-card img {
    margin-right: 10px;
    max-height: 15px;
  }
}

.elements-area .elements-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0 -150px;
}

@media (max-width: 1919px) {
  .elements-area .elements-wrapper {
    margin: 0 0px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .elements-area .elements-wrapper {
    gap: 12px;
  }
}

/* header footer area style  */
.header-footer-area .section-content {
  max-width: 380px;
}

.header-footer-area .section-content .text {
  max-width: 560px;
}

.header-footer-area .section-content .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .header-footer-area .section-content .text-wrapper {
    margin-top: 19px;
  }
}

.header-footer-area .section-content .btn-wrapper {
  margin-top: 45px;
}

.header-footer-inner {

  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .header-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.header-footer-thumb {
  border-radius: 10px;
  background: linear-gradient(123.58deg, #f2e5de 0.66%, #e9deff 100%);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 630px;
}

@media (max-width: 1919px) {
  .header-footer-thumb {
    max-width: 530px;
  }
}

@media (max-width: 1199px) {
  .header-footer-thumb {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .header-footer-thumb {
    padding: 8px;
  }
}

.header-footer-thumb img {
  width: 100%;
}

/* layout area style  */
.layout__area .section-header {
  text-align: center;
}

.layout__area .section-header .section-title {
  max-width: 410px;
  margin: 0 auto;
}

.layout__area .section-header .text {
  max-width: 500px;
  margin: 0 auto;
}

.layout__area .section-header .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .layout__area .section-header .text-wrapper {
    margin-top: 19px;
  }
}

.layout__inner {
  text-align: center;
  border-radius: 20px;
  padding: 90px 100px 100px;
  background: linear-gradient(101.34deg, #d8e2ff 0%, #f3c1ff 147.26%);
  position: relative;
}

@media (max-width: 1919px) {
  .layout__inner {
    padding: 70px 20px 80px;
  }
}

.layout__inner .shape {
  position: absolute;
  top: 65px;
  left: 130px;
}

@media (max-width: 991px) {
  .layout__inner .shape {
    display: none;
  }
}

.layout__inner .shape-2 {
  position: absolute;
  right: 26%;
  bottom: 0;
}

.layout__list {
  display: grid;
  gap: 30px 0;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .layout__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.layout__list-box {
  margin-top: 63px;
}

@media (max-width: 1919px) {
  .layout__list-box {
    margin-top: 43px;
  }
}

.layout__item {
  position: relative;
}

.layout__item::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #121212;
}

@media (max-width: 767px) {
  .layout__item::before {
    display: none;
  }
}

.layout__item:last-child::after {
  display: none;
}

.layout__item img {
  margin-bottom: 30px;
}

.layout__item .title {
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.layout__item p {
  font-size: 14px;
  line-height: 1.3;
  color: #121212;
  padding-top: 10px;
}

/* template area style  */
.template__area {
  background-color: #121212;
  text-align: center;
  position: relative;
  padding: 200px 0px;
}

@media only screen and (max-width: 1399px) {
  .template__area {
    padding: 120px 0px;
  }
}

@media only screen and (max-width: 991px) {
  .template__area {
    padding: 90px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .template__area {
    display: none;
  }
}

.template__area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    #121212 5.87%,
    rgba(18, 18, 18, 0) 76.38%
  );
}

.template__area:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #121212 5.87%, rgba(18, 18, 18, 0) 76.38%);
}

.template__area .section-header {
  text-align: center;
  position: sticky;
  position: -webkit-sticky;
  top: 330px;
}

@media only screen and (max-width: 1399px) {
  .template__area .section-header {
    top: 260px;
  }
}

@media only screen and (max-width: 1199px) {
  .template__area .section-header {
    top: 180px;
  }
}

.template__area .section-header .section-subtitle {
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  background: linear-gradient(
    90.07deg,
    #d0ff4b 0.11%,
    #89f9de 53.57%,
    #b8d0ff 102.75%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 1919px) {
  .template__area .section-header .section-subtitle {
    font-size: 18px;
  }
}

.template__area .section-header .section-title {
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}

.template__area .section-header .title-wrapper {
  margin-top: 15px;
}

.template__area .section-header .btn-wrapper {
  margin-top: 40px;
}

.template__area .section-header .wc-btn-default:hover {
  color: var(--primary);
}

.template__area .section-header .wc-btn-default:after {
  background-color: var(--white);
}

.template__area .section-header .wc-btn-default.bordered {
  border-color: var(--white);
  color: var(--white);
}

.template__area .section-header .wc-btn-default.bordered:hover {
  background-color: var(--white);
  color: var(--primary);
}

.template__inner .image {
  width: 100%;
}

.template__content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  padding-top: 330px;
  padding-bottom: 330px;
}

@media only screen and (max-width: 1399px) {
  .template__content {
    padding-top: 260px;
    padding-bottom: 260px;
  }
}

@media only screen and (max-width: 1199px) {
  .template__content {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

/* Rectangle 1214 */
/* offcanvas area style  */
.offcanvas__area .section-content {
  max-width: 440px;
}

.offcanvas__area .section-content .section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #14cda1;
}

.offcanvas__area .section-content .title-wrapper {
  margin-top: 37px;
}

.offcanvas__area .section-content .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .offcanvas__area .section-content .text-wrapper {
    margin-top: 19px;
  }
}

.offcanvas__area .section-content .btn-wrapper {
  margin-top: 45px;
}

.offcanvas__area .offcanvas-thumb {
  max-width: 600px;
}

@media (max-width: 1919px) {
  .offcanvas__area .offcanvas-thumb {
    max-width: 500px;
  }
}

.offcanvas__area .offcanvas-thumb img {
  width: 100%;
}

.offcanvas-inner {
  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .offcanvas-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* testimonial area style  */
.testimonial__area {
  padding-top: 137px;
  background-color: #f9f9fb;
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
}

@media only screen and (max-width: 1919px) {
  .testimonial__area {
    padding-top: 107px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial__area {
    padding-top: 77px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial__area {
    padding-top: 47px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.testimonial__area::after {
  position: absolute;
  content: "";
  border-radius: 88px;
  background: linear-gradient(180deg, rgba(249, 249, 251, 0) 0%, #f9f9fb 75%);
  width: 100%;
  height: 1000px;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .testimonial__area:after {
    height: 600px;
  }
}

.testimonial__area .section-header {
  text-align: center;
}

.testimonial__area .section-header .section-title {
  max-width: 520px;
  margin: 0 auto;
}

.testimonial__area .section-header .text {
  max-width: 510px;
  margin: 0 auto;
}

.testimonial__area .section-header .text-wrapper {
  margin-top: 29px;
}

@media (max-width: 1919px) {
  .testimonial__area .section-header .text-wrapper {
    margin-top: 19px;
  }
}

.testimonial__list-wrapper {
  margin-top: 63px;
}

@media (max-width: 1919px) {
  .testimonial__list-wrapper {
    margin-top: 43px;
  }
}

.testimonial__list {
  -moz-column-count: 4;
  column-count: 4;
  gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .testimonial__list {
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial__list {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .testimonial__list {
    -moz-column-count: 1;
    column-count: 1;
  }
}

@media (max-width: 1199px) {
  .testimonial__list > *:nth-child(10) ~ * {
    display: none;
  }
}

@media (max-width: 991px) {
  .testimonial__list > *:nth-child(6) ~ * {
    display: none;
  }
}

.testimonial__item {
  padding: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(17, 19, 40, 0.04);
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 991px) {
  .testimonial__item {
    padding: 20px;
  }
}

.testimonial__item p {
  font-size: 18px;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 575px) {
  .testimonial__item p {
    font-size: 16px;
  }
}

.testimonial__item .type {
  color: #121212;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonial__item .author {
  font-size: 16px;
}

.testimonial__item .author img {
  margin-right: 6px;
}

.testimonial__review p {
  color: #121212;
  font-size: 14px;
  text-align: center;
}

.testimonial__review .btn {
  max-width: 220px;
  border-radius: 39px;
  border: none;
  background: linear-gradient(135deg, #daf393 0%, #9bec7f 41.15%, #29b2ff 100%);
  gap: 10px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: auto;
  margin-top: 5px;
}

.testimonial__review .left {
  color: #121212;
  font-size: 50px;
  line-height: 1;
  font-weight: 600;

  position: relative;
  top: 3px;
}

.testimonial__review {
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

/* support area style  */
.support-area .support-card {
  padding: 35px 37px 37px;
  box-shadow: 7px 7px 0px var(--primary);
  margin-right: 7px;
  margin-bottom: 7px;
  background: linear-gradient(115.47deg, #f7eea5 0%, #ffd0b6 101.86%);
  border: 3px solid var(--primary);
  border-radius: 15px;
}

.support-area .support-card .title {
  font-size: 30px;
}

.support-cards-wrapper {
  position: relative;
  z-index: 999;
}

@media (max-width: 575px) {
  .support-area .support-card .title {
    font-size: 26px;
  }
}

.support-area .support-card .text {
  font-size: 16px;
  line-height: 1.375;
  margin-top: 13px;
}

.support-area .support-card .wc-btn-default {
  margin-top: 35px;
  padding: 16px 25px;
  border-radius: 10px;
  color: var(--white);
  background-color: var(--primary);
}

.support-area .support-card .wc-btn-default:hover {
  color: var(--primary);
  border-color: var(--white);
  background-color: var(--white);
}

.support-area .support-card .wc-btn-default:after {
  background-color: var(--white);
}

.support-area .support-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.support-area .support-cards > *:nth-child(1) {
  background: linear-gradient(115.47deg, #f7eea5 0%, #ffd0b6 101.86%);
}

.support-area .support-cards > *:nth-child(2) {
  background: linear-gradient(115.6deg, #9df4ca 0%, #f8ffa3 101.8%);
}

.support-area .support-cards > *:nth-child(3) {
  background: linear-gradient(116.02deg, #d4c5ff 0%, #fec5ff 102.31%);
}

.support-area .note {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.support-area .note .text {
  font-size: 14px;
}

.support-area .note-wrapper {
  margin-top: 40px;
}

/* purchase area style  */
.purchase__area {
  position: relative;
}

.purchase__area .section-content {
  max-width: 450px;
}

.purchase__area .section-content .section-title {
  color: var(--white);
}

.purchase__area .section-content .text {
  max-width: 400px;
  color: var(--white);
}

.purchase__area .section-content .text-wrapper {
  margin-top: 20px;
}

.purchase__area .section-content .btn-wrapper {
  margin-top: 45px;
}

.purchase__area .section-content .wc-btn-default {
  padding: 20px 34px;
  border-radius: 10px;
  color: var(--white);
  background-color: var(--primary);
}

.purchase__area .section-content .wc-btn-default:hover {
  color: var(--primary);
  border-color: var(--white);
  background-color: var(--white);
}

.purchase__area .section-content .wc-btn-default:after {
  background-color: var(--white);
}

.purchase__area .bg {
  width: 100%;
  height: 250px;
  background-color: #121212;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.purchase__inner {
  padding: 80px 80px;
  border-radius: 10px;
  background-color: #004e50;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../imgs/purchase-bg.png);
  z-index: 99;
  position: relative;
  display: flex;
  gap: 40px 60px;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .purchase__inner {
    padding: 80px 50px;
  }
}

@media only screen and (max-width: 991px) {
  .purchase__inner {
    padding: 60px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .purchase__inner {
    padding: 30px 25px;
    flex-direction: column;
  }
}

.purchase__thumb {
  position: relative;
  max-width: 556px;
  width: 100%;
}

@media (max-width: 1919px) {
  .purchase__thumb {
    max-width: 456px;
  }
}

.purchase__thumb .image-2 {
  margin-left: 55px;
}

@media only screen and (max-width: 1199px) {
  .purchase__thumb .image-2 {
    width: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .purchase__thumb .image-2 {
    width: 240px;
  }
}

@media only screen and (max-width: 767px) {
  .purchase__thumb .image-2 {
    width: 75%;
  }
}

@media (max-width: 575px) {
  .purchase__thumb .image-2 {
    margin-left: 25px;
  }
}

.purchase__thumb .image {
  position: absolute;
  top: 42%;
  z-index: 1;
  left: 0;
}

.purchase__thumb .image-3 {
  margin-left: auto;
  display: block;
  margin-top: -178px;
  width: 76%;
}

@media only screen and (max-width: 1199px) {
  .purchase__thumb .image-3 {
    margin-top: -108px;
  }
}

/* footer area style  */
.footer__area {
  padding: 40px 0;
  background: #121212;
}

@media only screen and (max-width: 1199px) {
  .footer__area {
    padding: 30px 0;
  }
}

.footer__inner {
  display: grid;
  grid-gap: 100px;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .footer__inner {
    grid-gap: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__inner {
    grid-gap: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__inner {
    grid-gap: 30px 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__item {
  gap: 20px;
  display: flex;
  align-items: center;
  position: relative;
}



@media only screen and (max-width: 1399px) {

}

@media only screen and (max-width: 1199px) {

}

@media (max-width: 991px) {
  .footer__item::before {
    display: none;
  }
}

.footer__item:first-child::before {
  display: none;
}

.footer__item img {
  max-width: 60px;
}

@media only screen and (max-width: 1199px) {
  .footer__item img {
    max-width: 50px;
  }
}

.footer__item p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;

}

/* side-links area style  */
#side-links {
  position: fixed;
  top: 0;
  padding: 20px 5px;
  background-color: #fff;
  width: 100px;
  right: -100px;
  transition: all 0.5s;
  z-index: 99999;
  font-weight: inherit;
  bottom: 0;
}

#side-links .options {
  background-color: var(--white);
  width: 43px;
  position: absolute;
  top: 250px;
  left: -43px;
  cursor: pointer;
  border-left: 0;
  border-radius: 0;
  padding: 0;
  border-radius: 12px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: 1px solid var(--border);
  border-right: 0;
  box-sizing: border-box;
}

#side-links .options .custom-tooltip {
  transition: all 0.5s;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}

#side-links .options .custom-tooltip:last-child {
  border-bottom: none;
}

#side-links .options .custom-tooltip:hover .wc-tooltip {
  opacity: 1;
  right: 55px;
  visibility: visible;
  transform: scale(1);
}

#side-links .options .custom-tooltip:hover svg path {
  fill: var(--primary);
}

#side-links .options .icon {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  display: block;
  height: 41px;
  line-height: 41px;
  color: var(--e-global-color-text);
  transition: all 0.5s;
}

#side-links .options svg {
  width: 18px;
  height: 18px;
}

#side-links .options svg,
#side-links .options svg path {
  fill: var(--e-global-color-text);
  transition: all 0.5s;
}

#side-links .options .wc-tooltip {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  position: absolute;
  line-height: 12px;
  background-color: #fff;
  border: 1px solid var(--border);
  font-size: 14px;
  margin: 0;
  padding: 12px;
  font-family: inherit;
  width: auto;
  font-weight: 500;
  display: block;
  right: 10px;
  top: 2px;
  white-space: nowrap;
  border-radius: 0;
  transition: all 0.5s;
  border-radius: 12px;
  color: var(--primary);
}

#side-links .options .wc-tooltip .triangle-tooltip {
  display: block;
  position: absolute;
  right: -6px;
  margin-top: -6px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid var(--primary);
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  opacity: 0.08;
}

#side-links .options .wc-tooltip:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: var(--primary);
  opacity: 0.08;
  display: none;
}

@media (max-width: 1023.98px) {
  #side-links {
    display: none;
  }
}

/* accordion style  */
.accordion {
  width: 100%;
  max-width: 360px;
  margin: 30px auto 40px;
  border-radius: 4px;
}

.accordion .link {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(49, 49, 49, 0.3764705882);
  position: relative;
  transition: all 0.4s ease;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li .angle-down {

  margin-right: auto;
  transition: all 0.4s ease;
}

.accordion li.open .link {
  color: var(--white);
}

.accordion li.open .angle-down {
  transform: rotate(180deg);
}

/**
   * Submenu
   -----------------------------*/
.submenu {
  display: none;
  background: transparent;
  font-size: 14px;
}

.submenu li {
  border-bottom: 1px solid rgba(49, 49, 49, 0.3764705882);
  margin-right: 15px;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  padding: 10px 0px;
  transition: all 0.25s ease;
}

.submenu a:hover {
  background: transparent;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */

/* hero area-2 style  */

.hero-area-2 {
  background-color: rgba(117, 120, 231, 1);
  position: relative;
  z-index: 1;

  .container {
    max-width: 1610px;
  }

  .area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .hero-area-inner {
    padding-top: 116px;
    padding-bottom: 112px;
    position: relative;

    @media (max-width: 767px) {
      padding-top: 100px;
      padding-bottom: 52px;
    }
  }

  .section-title {
    font-size: 90px;
    line-height: 1.1;
    font-weight: 600;
    max-width: 850px;
    color: var(--white);
    margin-inline: auto;

    @media (max-width: 1919px) {
      font-size: 125px;
    }

    @media (max-width: 1400px) {
      font-size: 70px;
    }

    @media (max-width: 991px) {
      font-size: 100px;
    }

    @media (max-width: 767px) {
      font-size: 70px;
    }
  }

  .section-content {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: -50%;
    top: 33%;
    z-index: 1;

    @media (max-width: 1200px) {
      position: static;
      transform: none;
      margin-right: 0;
    }

    .text {
      font-size: 20px;
      line-height: 1.4;
      color: var(--white);
      max-width: 650px;
      margin-inline: auto;

      @media (max-width: 991px) {
        font-size: 16px;
      }
    }

    .text-wrapper {
      margin-top: 24px;
    }

    .wc-btn-default.bordered {
      background-color: transparent;
      border-color: var(--white);
      color: var(--white);

      &:hover {
        border-color: transparent;
      }
    }

    .btn-wrapper {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }
  }

  .link-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    .icon {
      width: 70px;
      height: 70px;
      background-color: #8082e8;
      border: 1px solid #a2a5ef;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
    }

    .link-text {
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      line-height: 1;
      padding: 15px 18px;
      background-color: #8082e8;
      display: inline-flex;
      border: 1px solid #a2a5ef;
      border-radius: 15px;
      position: relative;

      &:before {
        position: absolute;
        content: "";
        width: 11px;
        height: 11px;
        background-color: #8082e8;
        border: 1px solid #a2a5ef;
        inset-inline-start: -7px;
        z-index: 1;
        border-top: transparent;
        border-right: transparent;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
      }
    }
  }

  .link-list {
    display: flex;
    flex-direction: column;
    gap: 40px;

    @media (max-width: 991px) {
      gap: 10px;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    > * {
      &:nth-child(1) {
        margin-inline-start: 160px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(2) {
        margin-inline-start: 90px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(3) {
        margin-inline-start: 35px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(4) {
        margin-inline-start: 0px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(5) {
        margin-inline-start: 35px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(6) {
        margin-inline-start: 90px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }

      &:nth-child(7) {
        margin-inline-start: 160px;

        @media (max-width: 991px) {
          margin-inline-start: 0px;
        }
      }
    }
  }

  .links-wrapper {
    display: flex;
    justify-content: space-between;

    @media (max-width: 767px) {
      flex-direction: column;
    }
  }

  .links-last {
    direction: rtl;

    .link-text {
      &:before {
        transform: translateY(-50%) rotate(-135deg);
      }
    }
  }

  .links-wrapper-box {
    position: relative;

    @media (max-width: 1200px) {
      margin-top: 50px;
    }

    @media (max-width: 991px) {
      display: none;
    }

    &:before {
      position: absolute;
      content: "";
      width: 69%;
      aspect-ratio: 100/100;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      top: 50%;
    }

    @media (max-width: 991px) {
      &:before {
        display: none;
      }
    }
  }
}

/*
--------------------
btn-text-flip
--------------------
*/

.btn-text-flip {
  perspective: 1000px;

  &:hover {
    span {
      transform: rotateX(90deg) translateY(-12px);
      color: inherit;
    }
  }

  span {
    position: relative;
    display: inline-block;
    padding: 0;
    transition: transform 0.3s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;

    &:before {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      content: attr(data-text);
      transition: color 0.3s;
      transform: rotateX(-90deg);
      transform-origin: 50% 0;
      text-align: center;
    }
  }
}

.buttons-container {
  position: relative;
  z-index: 99999;
  text-align: center;
}

.filter-buttons-wrapper {
  direction: rtl;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9f31d;
  border-radius: 100px;
  background-color: #c9f31d;

  @media (max-width: 767px) {
    border-radius: 10px;
  }
}

.filter-buttons-wrapper {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  margin-inline: 15px;

  input {
    display: none;

    &:checked + label {
      background-color: var(--primary);
      color: var(--white);
    }
  }

  label {
    padding: 9px 25px;
    border-radius: 30px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    transition: 0.6s;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
    font-weight: 600;

    @media (max-width: 991px) {
      padding: 7px 17px;
    }

    @media (max-width: 767px) {
      padding: 7px 13px;
      font-size: 15px;
    }
  }
}

.buttons-container label:hover {
  background: var(--primary);
  color: #ffffff;
}
