@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Regular.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Medium.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-SemiBold.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Bold.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}

/* base  */

:root {
  --color1: #9505CD;
  --color2: #00CCFF;
  --back: #fff;
  --font1: pinar;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
  direction: rtl;
  background-color: var(--back);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color1)
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 767px) {
  .d-m-none {
    display: none !important;
  }

}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid,
  .navbar-expand-md>.container-lg,
  .navbar-expand-md>.container-md,
  .navbar-expand-md>.container-sm,
  .navbar-expand-md>.container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* navbar */

.navbar-custom {
  height: 140px;
  padding: 0;
  z-index: 1000;
  transition: 0.3s;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -100px;
  margin-top: 100px;
  transition: transform 0.5s ease-out, top 0.5s ease-out;
}

.navbar-custom.fixed {
  top: 0;
  margin-top: 0;
  position: fixed;
  height: 86px;
  box-shadow: 0px 0px 12px 0px #0000002b;
  background: #ffffffc4;
  backdrop-filter: blur(6px);
  border-radius: 0 0 15px 15px;
}

.navbar-fill {
  height: 140px;
}

.navbar-logo img {
  height: 78px;
  object-fit: contain;
}

.navbar-custom.fixed .navbar-logo img {
  height: 60px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.nav-item {
  margin-left: 20px;
  white-space: nowrap;
}

.nav-item a.active {
  background: var(--color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 40px;
  padding: 0 15px;
}

.nav-item a.active:hover {
  color: #fff !important;
  background: var(--color1);
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.nav-item.dropdown {
  margin-top: -2px;
}

/* border hover  */

@media (min-width:768px) {
  .nav-item a {
    display: inline-block;
  }

  .nav-item:not(.dropdown) a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00CCFF, #9505CD);
    transition: width .2s;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: -5px;
  }

  .nav-item:not(.dropdown) a:hover::after {
    width: 100%;
    transition: width .3s;
  }
}

.nav-item a:hover {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.navbar-right {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 10px;
}

.gradient-text {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* login */

.btn-text {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 16px;
  position: relative;
}

.btn-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: -1;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
}

.btn-text:hover::before {
  opacity: 1;
}

/* sign */

.btn-gradient {
  color: #fff;
  font-weight: 700;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 16px;
  min-width: 184px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.btn-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent !important;
  background-image: linear-gradient(white, white),
    linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%) !important;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: 0.4s ease;
  border-radius: 16px;
  z-index: -2;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%) !important;
  transition: 0.4s ease;
  z-index: -1;
}

.btn-gradient:hover::before {
  opacity: 0;
}

.btn-gradient:hover {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* border */

.btn-border {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 16px;
  min-width: 184px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.btn-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: 0.4s ease;
  border-radius: 16px;
  z-index: -2;
}

.btn-border::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  transition: 0.4s ease;
  z-index: -1;
  opacity: 0;
}

.btn-border:hover::before {
  opacity: 0.1;
}

.btn-border:hover {
  color: #fff;
}


/* responsive navbar all size */

@media (max-width:767.5px) {

  .navbar-custom {
    height: 70px;
    padding: 10px 0;
  }

  .navbar-fill {
    height: 70px;
  }

  .navbar-custom.fixed {
    height: 70px;
    backdrop-filter: unset;
    background: #fff;
  }

  .navbar-logo {
    margin-left: 0;
  }

  .navbar-logo img {
    height: 50px;
  }

  .navbar-custom.fixed .navbar-logo img {
    height: 50px;
  }

  .navbar-right {
    width: auto;
  }

  .navbar-left {
    width: auto;
    gap: 5px;
  }

  .navbar-custom .btn-gradient {
    min-width: auto;
    border-radius: 12px;
    height: 38px;
    font-size: 14px;
  }


  .navbar-custom .btn-text {
    min-width: auto;
    border-radius: 12px;
    height: 38px;
    font-size: 14px;
  }

}


/* dropdown */
.dropdown a::after {
  margin-top: -2px;
  margin-right: 10px;
  border: 0;
  font-family: "raya-icon";
  content: '\f107';
}

.dropdown ul li a::after {
  content: unset;
}

.dropdown .dropdown>a:after {
  display: block;
  content: " ";
  float: left;
  border: 0;
  font-family: "raya-icon";
  content: '\f104';
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown ul {
  left: 0;
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  position: absolute;
  border: 0;
  border-radius: 5px;
  margin-top: 0px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  min-width: 200px;
  border-radius: 8px;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
  right: 0;
}

.dropdown ul li a {
  color: #444;
  font-size: 16px;
  display: block;
  white-space: nowrap;
  width: 100%;
  padding: 7px 14px;
  font-weight: normal;
}

.dropdown ul li a:hover {
  color: var(--color1);
}



@media (min-width:767.5px) {
  .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    transform: translateX(-50%) rotate(180deg);
    border-top: 10px solid var(--color1);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  .dropdown .dropdown ul::before {
    content: unset;
  }

  .dropdown .dropdown {
    position: relative;
  }

  .dropdown .dropdown>ul {
    top: 0;
    right: 100%;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
  }

  #overlay.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }
}

/* offcanvas */
@media (max-width: 767.5px) {
  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f104';
    font-size: 16px;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    align-items: center;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .dropdown ul {
    left: unset;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .dropdown ul.active {
    right: 0;
  }

  .offcanvas-nav.active {
    right: 0;
  }


  .offcanvas-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color1);
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .nav-item {
    padding: 10px 20px;
    margin-left: 0px;
    display: flex;
  }

  .dropdown ul li a {
    padding: 10px 20px;
  }

  .nav-item a {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--color1) !important;
    display: flex;
    margin-left: 10px;
  }
}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}


.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.navbar-btn-badge {
  background: var(--color4);
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 0px;
  color: #fff;
  font-size: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 1px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}

#overlay-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -20;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
  visibility: visible;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0s, 0s;
  background: rgba(72, 72, 72, 0.6);
  z-index: 1000;
}


/* swiper */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-5 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-6 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}


.swiper-pagination-bullet {
  border-radius: 20px;
  width: 10px;
  height: 10px;
}


.swiper-pagination-bullet-active {
  width: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.swiper-button-next {
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-button-prev {
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-button-next:hover {
  background: var(--color2);
}

.swiper-button-prev:hover {
  background: var(--color2);
}

.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev:hover::after {
  color: #fff;
}




@media (max-width:767px) {
  .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}


/* animate */
.myAnim1 {
  animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
  animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
  animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
  animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
  animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim2 {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

@keyframes myAnim3 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim4 {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
  will-change: opacity, transform;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

b,
strong {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradient-rotate 5s linear infinite;
  background-size: 200% 200%;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* home */


.home-hero {
  position: relative;
  height: calc(100vh - 210px);
  display: flex;
  align-items: center;
}

.home-hero::before {
  content: '';
  width: 419px;
  height: 419px;
  position: absolute;
  background: linear-gradient(82.68deg, #965EFF 0%, rgba(0, 140, 255, 0.9) 109.08%);
  right: 0;
  left: 0;
  top: -250px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
  max-width: 100%;
}

.home-wrap-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.home-wrap-text {
  font-size: 24px;
  font-weight: 400;
  color: #121212;
  margin-top: 25px;
  line-height: 1.8;
  text-align: center;

}

.home-wrap-text b,
.home-wrap-text strong {
  -webkit-text-fill-color: unset;
  color: #000 !important;
}

.home-wrap-btn-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}


.home-section {
  position: relative;
  padding-block: 75px;
}

.home-section::before {
  content: '';
  width: 350px;
  height: 350px;
  position: absolute;
  background: linear-gradient(82.68deg, #965EFF 0%, rgba(0, 140, 255, 0.9) 109.08%);
  right: 0;
  left: 0;
  top: 250px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
  max-width: 100%;
}

.home-card {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 0px 14px 4px #0000001A;
  background: #fff;
}

.home-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #121212;
  margin-top: 20px;
}

.home-card-text {
  color: #121212;
  font-size: 19px;
  margin-top: 15px;
  margin-bottom: 20px;
}


.home-section-img {
  width: 100%;
  border-radius:20px;
}


.home-row-item-title {
  font-size: 28px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 25px;
}

.home-row-item-text {
  font-size: 18px;
  color: #121212;
  line-height: 2;
}

.home-row-item {
  margin-bottom: 40px;
}

.home-row-item:last-child {
  margin-bottom: 0;
}

.plan-card {
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 23px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  color: #121212;
}

.plan-card-title {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
}

.plan-card-text {
  font-size: 19px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  line-height: 1.8;
}

.plan-card-price {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  border-block: 1px solid #121212;
  padding: 20px 0;
  margin-top: 20px;
}

.plan-card-list {
  margin-block: 28px;
  line-height: 2.5;
}

.plan-card-item::before {
  content: '\e8b5';
  color: #80FF80;
  font-family: "raya-icon";
  margin-left: 10px;
}

.plan-card.active {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  color: #fff;
}

.plan-card.active .btn-text {
  background: #fff;
  z-index: 1;
  position: relative;
}


.home-wrapper {
  margin-top: 75px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.home-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000004a;
  z-index: -2;
  backdrop-filter: blur(4px);
}

.home-wrapper-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.home-wrapper-text {
  font-size: 24px;
  color: #fff;
  margin-top: 25px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.home-wrapper-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-comment {
  background: #9360FF1A;
  position: relative;
  padding-block: 95px;
}

.card-comment {
  box-shadow: 0px 0px 4px 0px #00000040;
  padding: 24px;
  background: #ffff;
  border-radius: 24px;
  min-height: 100%;
}

.card-comment-title {
  color: #121212;
  font-size: 22px;
  font-weight: 700;
  height: 35px;
}

.card-comment-text {
  font-size: 16px;
  margin-top: 15px;
  color: #121212;
  line-height: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.card-comment-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.card-comment-user {
  display: flex;
  align-items: center;
}

.card-comment-user img {
  width: 50px;
  height: 50px;
  background-image: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  padding: 2px;
  border-radius: 50px;
  margin-left: 10px;
}

.card-comment-user span {
  color: #121212;
  font-size: 18px;
}

.card-comment-rate i {
  background: linear-gradient(221.68deg, #9505CD 14.76%, #00CCFF 85.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}

.card-comment-rate {
  display: flex;
  direction: ltr;
  align-items: center;
}


/* responsive */
@media (max-width:767px) {

  .btn-border {
    min-width: auto;
    width: 100%;
    font-size: 14px;
    height: 48px;
    border-radius: 14px;
  }

  .btn-border::after {
    border-radius: 14px;
  }

  .btn-gradient {
    min-width: auto;
    width: 100%;
    font-size: 14px;
    height: 48px;
    border-radius: 14px;
  }

  .home-wrap-title {
    font-size: 22px;
  }

  .home-wrap-text {
    font-size: 16px;
  }

  .home-section {
    padding-block: 35px;
  }

  .home-card-title {
    font-size: 20px;
  }

  .home-card-text {
    font-size: 16px;
  }

  .home-row-item {
    margin-bottom: 20px;
    margin-top: 25px;
  }

  .home-row-item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .home-row-item-text {
    font-size: 14px;
  }

  .plan-card-title {
    font-size: 18px;
  }

  .plan-card-text {
    font-size: 16px;
  }

  .plan-card-price {
    font-size: 20px;
    padding: 15px 0;
  }

  .plan-card-list {
    margin-block: 20px;
    line-height: 2;
  }

  .home-wrapper {
    margin-top: 25px;
    padding: 45px 0;
  }

  .home-wrapper-title {
    font-size: 22px;
  }

  .home-wrapper-text {
    font-size: 18px;
  }

  .home-comment {
    padding-block: 50px;
  }

  .card-comment-title {
    font-size: 18px;
    height: auto;
  }

  .card-comment-text {
    font-size: 14px;
  }

  .card-comment-flex {
    margin-top: 15px;
  }

  .card-comment-user img {
    width: 40px;
    height: 40px;
  }

  .card-comment-user span {
    font-size: 14px;
  }

  .card-comment-rate i {
    font-size: 18px;
  }
}




/* footer */


.footer {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
}

.footer-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 204px;
  height: 93px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}


.footer-social .icon-instagram {
  padding-top: 1px;
  padding-right: 2px;
}

.footer-social .icon-telegram {
  font-size: 14px;
}

.footer-social .icon-phone {
  padding-top: 3px;
}

.footer-social a:hover {
  color: #000;
}

.footer-header {
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  color: #000;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 15px;
}

.footer-header::after {
  content: '';
  width: 100%;
  background: #3D3E40;
  height: 1px;
  max-width: 100px;
}

.footer-text {
  text-align: justify;
  font-size: 14px;
  margin-top: 20px;
  max-width: 90%;
  line-height: 1.7;
  color: #040C20;
}

.footer-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.footer-link {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #000;
}

.footer-link:hover {
  color: var(--color1);
}

.footer-link i {
  width: 24px;
  margin-left: 10px;
  display: flex;
  font-size: 16px;
  color: var(--color1);
}

.footer-bottom {
  background: linear-gradient(225.39deg, #9505CD -0.02%, #00CCFF 100%);
  padding: 15px 0px;
}

.footer-bottom-item {
  font-size: 14px;
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

.footer-bottom-item span {
  font-size: 14px;
  color: #fff;
}

.footer-bottom-item a {
  color: #fff;
}

.footer-bottom-item a:hover {
  color: #000;
}

@media (max-width:767px) {
  .footer {
    margin-top: 40px;
    padding: 20px 0;
  }

  .footer-text {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-header {
    font-size: 14px;
  }

  .footer-header::after {
    max-width: 100%;
    height: 0.9px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-bottom-item {
    font-size: 12px;
    justify-content: center;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }


}