@charset "UTF-8";

@font-face {
  font-family: "iranyekanx";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/iranyekanx/IRANYekanX-Regular.ttf");
}

@font-face {
  font-family: "iranyekanx";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/iranyekanx/IRANYekanX-DemiBold.ttf");
}

@font-face {
  font-family: "iranyekanx";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/iranyekanx/IRANYekanX-Bold.ttf");
}

@font-face {
  font-family: "iranyekanx";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/iranyekanx/IRANYekanX-Black.ttf");
}

/* reset */
* {
  margin: 0;
  padding: 0;
}

:root {
  --lnd-primary: #1E1E1E;
  --lnd-primary-light: #aac1fc4d;
  --lnd-secondary: #0598bc;
  --lnd-secondary-light: #0598bc1a;
  --lnd-black: #1e1e1e;
  --lnd-white: #ffffff;
  --lnd-gray-light: #f7f5f5;
  --lnd-gray: #eeeeee;
}

body {
  font-family: "iranyekanx";
  transition: 0.2s;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  background-color: #1e1e1e;
}

p,
span,
small,
ul,
li,
ol,
a,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "iranyekanx";
}

p {
  line-height: 2rem;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 0.9rem;
}

ul,
li {
  list-style: none;
  margin: 0;
  transition: 0.2s;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
  transition: 0.2s;
}

form,
input,
select,
textarea {
  max-width: 100%;
  transition: 0.2s;
}

a {
  color: var(--ava-black);
}

a,
a:hover {
  transition: 0.2s;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  transition: 0.2s;
}

hr {
  margin: 2rem 0;
}

/* init classes */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.section-title {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
}

/* text-box */
.text-box {
  background-color: var(--lnd-primary-light);
  color: #1E1E1E;
  padding: 8px 12px;
  border-radius: 8px;
}

.text-box .text {
  font-size: 12px;
  line-height: 16px;
  width: fit-content;
}

.text-box i {
  vertical-align: middle;
}

/* svg-icon */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

.svg-icon.whatsapp {
  background: url(../images/icons/whatsapp.png) no-repeat center;
  background-size: contain;
}
.svg-icon.phone {
  background: url(../images/icons/call.png) no-repeat center;
  background-size: contain;
}

/* header */
header {
  position: relative;
  z-index: 4;
  padding: 2rem 0;
  width: 100%;
  max-width: 500px;
}

header .title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
}

header .title strong {
  font-weight: 900;
}

header .menu-toggle {
  cursor: pointer;
  background-color: #cecece33;
  padding: 0.5rem;
  margin: 0 auto auto 0;
  display: block;
  height: 36px;
  width: 36px;
  border-radius: 40px;
  align-self: flex-end;
  position: relative;
  z-index: 99999;
  line-height: 26px;
}

header .menu-toggle i {
  margin: 0;
  font-size: 1rem;
  line-height: 1rem;
  color: #ffffff;
}

header .menu-toggle i.fa-close {
  position: fixed;
  top: 42px;
  left: calc(50% - 225px);
  color: #464646;
}

@media (max-width: 500px) {
  header .menu-toggle i.fa-close {
    left: 25px;
  }
}

header .menu {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100vh;
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  z-index: 3;
  padding: 2rem 0;
  border-top: 1px solid #cccccc;
}

header .menu ul li {
  line-height: 2rem;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
}

/* hero */
.hero {
  background: url(../images/hero3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 103vh;
  max-height: 1000px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  margin-top: -7.2rem;
}

.hero .gradient-layer{
  background: linear-gradient(to bottom, black, #000000bf, transparent);
}

.hero h2 {
  margin-top: 6rem;
}

.hero .title {
  font-size: 30px;
  font-weight: 800;
  line-height: 48px;
}

.hero .title.normal-title {
  color: var(--lnd-primary);
}

.hero .title.gradient-title {
  background: -webkit-linear-gradient(right,
      #EBFBB3,
      #DFF4AA,
      #C8E5A4,
      #B0D8A3,
      #A2CEA4,
      #7EB8B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .request-button a {
  display: inline-block;
  border-radius: 48px;
  font-size: 0.9rem;
  background: linear-gradient(to right, #41d8ff, #0094b8);
  color: #ffffff;
  padding: 16px 30px;
  text-align: center;
  box-shadow: #00d5ff29 0px 0px 24px 4px;
  line-height: 24px;
  vertical-align: middle;
}

.hero p {
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  line-height: 25px;
}

.hero .hero-tags {
  margin-top: 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  overflow-x: auto;
}

.hero .hero-tags::-webkit-scrollbar {
  display: none;
}

.hero .hero-tags .item {
  display: block;
  width: 100%;
  margin: 16px 0;
}

.hero .hero-tags .item .text-box {
  display: inline-block;
  width: fit-content;
  padding: 23px 8px;
  backdrop-filter: blur(22px);
  background-color: #ffffff36;
  color: #ffffff;
  margin: 0 8px;
  border-radius: 50px;
  box-shadow: 0 4px 11px #ffffff40;
}

.hero .hero-tags .item:nth-child(odd) {
  text-align: right;
}

.hero .hero-tags .item:nth-child(even) {
  text-align: left;
}

.hero .hero-tags .item:nth-child(odd) .text-box .text {
  width: fit-content;
  border-right: 3px dashed #ffffff;
  border-radius: 50px;
  padding: 20px 22px;
  background-color: unset;
  color: #ffffff;
}

.hero .hero-tags .item:nth-child(even) .text-box .text {
  width: fit-content;
  border-left: 3px dashed #ffffff;
  border-radius: 50px;
  padding: 20px 22px;
  background-color: unset;
  color: #ffffff;
}

.hero .fixed {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
}

.hero .fixed .notice {
  color: #c2bbc5;
  vertical-align: middle;
  font-size: 12px;
}

.hero .fixed .notice i {
  vertical-align: middle;
  margin-left: 3px;
}

.hero .price-button{
  background-color: #bded00;
  box-shadow: 0 0 24px 4px #00d5ff15;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  padding: 16px 24px;
  width: 100%;
  z-index: 99;
}

/* introduce */
.introduce {
  background: linear-gradient(to bottom,
      #0B1314,
      #141D1B,
      #212B24,
      #0B1314
    );
}

.introduce .service-items {
  position: relative;
  z-index: 3;
}

.introduce .service-items .item {
  background: url(../images/services_item_bg.webp);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12px;
  border-radius: 16px;
  width: 100%;
}

.introduce .service-items .item strong {
  margin-top: 12px;
}

/* methodology */
.introduce .methodology {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.introduce .methodology p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
}

.introduce .methodology .section-title {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.introduce .methodology .section-title-2 {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.introduce .methodology .request-button a {
  display: inline-block;
  border-radius: 48px;
  font-size: 0.9rem;
  background: #ffffff;
  color: #1aafde;
  padding: 16px 30px;
  text-align: center;
  box-shadow: #00d5ff29 0px 0px 24px 4px;
  line-height: 24px;
  vertical-align: middle;
}

.introduce .methodology .shadow-bg-1 {
  position: absolute;
  top: 60px;
  left: 0;
  background: url(../images/shadow.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  transform: scale(2) translate(-40px, 0px);
  width: 100%;
  height: 300px;
  content: "";
  z-index: 0;
}

.introduce .video-box video{
  width: 100%;
  border-radius: 16px;
}

.introduce .call-box {
  position: relative;
  background: url(../images/arrow2.webp) no-repeat;
  background-position: left 70%;
  background-size: 120px;
  padding: 2.5rem 0.5rem;
  text-align: center;
}

.introduce .call-box h2 {
  background: -webkit-linear-gradient(right,
      #705f83,
      #807f85,
      #6c6f70,
      #697865,
      #abb8a3,
      #658655,
      #648d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 800;
  line-height: 38px;
  text-align: center;
}

.introduce .call-box .button {
  margin: 4rem auto 0;
  display: inline-block;
  width: fit-content;
  padding: 16px 32px 16px 32px;
  border-radius: 32px;
  box-shadow: 0px 0px 24px 4px #00d5ff29;
  color: #ffffff;
  background: #1aafde;
}

/* doctor */
.doctor {
  background-color: #1e1e1e;
  margin-bottom: 6rem;
}
.doctor.sec-2{
  margin-bottom: 0;
}

.doctor .image-wrapper {
  position: relative;
}

.doctor .image-wrapper img {
  width: 100%;
}

.doctor .text-wrapper {
  position: absolute;
  bottom: -30px;
  left: 0;
  backdrop-filter: blur(6px);
  background-color: #fff;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  width: 100%;
}

.doctor .text-wrapper .title {
  color: #003962;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.5px;
  text-align: center;
}

.doctor .text-wrapper p {
  color: #003962;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 2rem;
}

.doctor .text-wrapper .button {
  margin: 0 auto -40px;
  display: inline-block;
  width: fit-content;
  padding: 16px 32px 16px 32px;
  border-radius: 32px;
  box-shadow: 0px 0px 24px 4px #00d5ff29;
  color: #003962;
  background: #BDED00;
}

/* banner-1 */
.banner-1 {
  /* background: url(../images/banner-1-bg.webp); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0 120px 0;
}

.banner-1 .banner-wrapper .title {
  font-size: 16px;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  color: #000000;
}

.banner-1 .box-wrapper {
  margin-top: 2rem;
  padding: 8px 16px;
  background: #ffffffe0;
  border-radius: 16px;
  backdrop-filter: blur(14);
}

.banner-1 .banner-wrapper .box {
  text-align: right;
  display: flex;
  margin: 2rem 0;
}

.banner-1 .banner-wrapper .box img {
  vertical-align: middle;
  height: 30px;
  margin-left: 6px;
}

.banner-1 .banner-wrapper .box strong {
  vertical-align: middle;
  line-height: 30px;
}
.banner-1 .box-wrapper .box p{
  font-size: 0.8rem;
  font-weight: 600;
}

/* features */
.features {
  padding: 0;
  background-color: #ffffff;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 3rem;
}

.features .head {
  cursor: pointer;
}

.features .accardion-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 0;
  margin-top: 3rem;
}

.features .accardion-wrapper.special {
  background: url(../images/solu_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0 0;
  margin-top: 2rem;
}

.features .accardion-wrapper.special .title {
  background: -webkit-linear-gradient(right,
      #ffa3d3,
      #ffa1dc,
      #ff92d6,
      #ffb2c1,
      #ffadc3,
      #ffa6cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}

.features .accardion-wrapper img {
  width: 88px;
  height: 88px;
}

.features .solu-image {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.features .accardion-wrapper .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.features .accardion-wrapper .toggle {
  width: 10%;
}

.features .accardion-wrapper .toggle i {
  color: #0598bc;
  cursor: pointer;
  vertical-align: middle;
}

.features .accardion-wrapper .text-wrapper {
  margin-top: 1rem;
}

.features .accardion-wrapper .text-wrapper p {
  margin-top: 6px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 0;
}

.features .accardion-wrapper .text-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
}

/* compare */
.compare {
  overflow-x: hidden;
  /*  background: linear-gradient(to bottom, #1E1E1E, #451E46, #3E1B3E, #1C1220); */
  background-color: #1e1e1e;
  padding: 8rem 0 3rem;
}

.compare .section-title {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.compare .shadow-bg {
  position: relative;
  top: 690px;
  left: 0;
  background: url(../images/shadow.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  transform: scaleX(2) scaleY(5) translate(0, -60px);
  width: 100%;
  height: 300px;
  content: "";
}

.compare .twentytwenty-container {
  width: 100%;
}

.compare .twentytwenty-overlay {
  border-radius: 16px;
}

.compare .box-wrapper img {
  border-radius: 12px;
  width: 100%;
}

.compare .box-wrapper .title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  margin-right: 8px;
  color: #ffffff;
}

/* .compare .loadmore{
  cursor: pointer;
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 1rem 3rem;
  border-radius: 30px;
  border: 1px solid #1A3673;
  color: #1A3673;
  font-weight: 500;
  font-size: 14px;
} */

/* compare */
/* .compare {
  padding: 3rem 0;
}
.compare .box-wrapper .twentytwenty-container {
  width: 280px;
}
.compare .box-wrapper img {
  border-radius: 12px;
  width: 280px;
}
.compare .box-wrapper .title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  margin-right: 8px;
}

.compare .owl-theme .owl-nav button{
  position: absolute;
  font-size: 1.5rem;
  margin: 0 16px;
  color: #1E1E1E;
  background-color: #f2f2f2;
  border-radius: 36px;
}
.compare .owl-theme .owl-nav button span{
  height: 36px;
  display: block;
  width: 36px;
}
.compare .owl-theme .owl-nav button span i{
  vertical-align: middle;
}
.compare .owl-theme .owl-nav button.owl-prev{
  top: 50%;
  right: 0.5rem;
  transform: translate(0, -50%);
}
.compare .owl-theme .owl-nav button.owl-next{
  top: 50%;
  left: 0.5rem;
  transform: translate(0, -50%);
}
.compare  .owl-theme .owl-nav [class*=owl-]:hover{
  color: #ffffff;
  background-color: #1E1E1E;
}
.owl-theme .owl-nav .disabled{
  background-color: unset !important;
} */

/* advantages */
.advantages {
  position: relative;
  background-color: #1e1e1e;
  overflow: hidden;
  padding: 1rem 0 3rem 0;
  margin-top: -55px;
}

.advantages .sup-title {
  font-weight: 400;
}

.advantages .section-title {
  font-size: 21px;
}

.advantages .shadow-bg {
  position: relative;
  top: 150;
  left: 0;
  z-index: 0;
  background: url(../images/shadow.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  transform: scaleX(2) scaleY(2) translate(0, -60px);
  width: 100%;
  height: 300px;
  content: "";
}

.advantages video {
  width: 100%;
  border-radius: 12px;
}

.advantages .container {
  position: relative;
  z-index: 4;
  margin-top: -300px;
}

.advantages img {
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.advantages .box-wrapper {
  border-radius: 16px;
  background-color: #ffffff4d;
  backdrop-filter: blur(32px);
  color: #ffffff;
  padding: 12px 16px;
}

.advantages .box-wrapper .text {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.advantages .box-wrapper i {
  color: #0598bc;
  font-size: 1.5rem;
  vertical-align: middle;
  margin-left: 12px;
}

.advantages .content {
  text-align: justify;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #ffffff;
}

.advantages .slogan-box {
  background-color: #1E1E1E1a;
  border-radius: 16px;
  padding: 32px 24px;
}

.advantages .slogan-box p {
  text-align: center;
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  color: #ffffff;
}

.call-banner .call-box .background {
  /* background: url(../images/call-box.webp); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 12px;
  padding: 4rem 1rem;
}

.call-banner .call-box strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #ffffff;
}

.call-banner .call-box span {
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #ffffff;
}

.call-banner .call-box a {
  display: block;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: #ffffff;
  background-color: #FFFFFF1A;
  backdrop-filter: blur(24px);
  padding: 10px 16px;
  margin: 12px 6px;
}

/* testimonials */
.testimonials {
  margin: 3rem 0;
  background-color: #1e1e1e;
}

.testimonials .box-wrapper {
  background-color: #f5f5f5;
  background: #ffffff4d;
  padding: 16px;
  border-radius: 16px;
  width: 300px;
}

.testimonials .box-wrapper .name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #BDED00;
}

.testimonials .box-wrapper .field {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #e6e6e6ee;
}

.testimonials .box-wrapper p {
  margin-top: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #ffffff;
}

/* testimonials-video */
.testimonials-video {
  padding: 2rem 0;
  border-radius: 12px;
}

.testimonials-video .section-title {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.testimonials-video .flex-wrapper {
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.testimonials-video .box-wrapper {
  width: 80%;
  margin: 0 16px;
}

.testimonials-video .box-wrapper span {
  color: #ffffff;
}

.testimonials-video video {
  width: 100%;
  min-width: 300px;
  max-width: 100%;
  border-radius: 16px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* banner */
.banner {
  padding: 3rem 0;
  background-color: #1E1E1E;
}

.banner img {
  border-radius: 16px;
}

/* banner 2 */
.banner-2 {
  margin: 2rem 0;
}

.banner-2 .banner-wrapper {
  background: linear-gradient(215deg, #c645ccb2, #f2b1f3b2);
  padding: 24px;
  border-radius: 16px;
}

.banner-2 .banner-wrapper strong {
  font-size: 16px;
  line-height: 32px;
}

.banner-2 .banner-wrapper .button {
  margin: 1.5rem auto;
  display: inline-block;
  background-color: #25d366;
  border-radius: 32px;
  padding: 16px 20px;
  box-shadow: 0 0 24px 4px #00d5ff29;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.banner-2 .banner-wrapper .button .svg-icon {
  margin-left: 4px;
  width: 24px;
  height: 24px;
}

.banner-2 .banner-wrapper span {
  font-size: 12px;
}

/* steps */
.steps {
  padding: 3rem 0;
  /* background: linear-gradient(to bottom, #1C1220, #3E1B3E, #1E1E1E); */
  background-color: #1E1E1E;
}

.steps .title strong {
  font-size: 20px;
  font-weight: 800;
}

.steps .box-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
}

.steps .box-wrapper img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 6px;
}

.steps .box-wrapper span {
  font-size: 14px;
  font-weight: 600;
}

/* faq */
.faq {
  position: relative;
  padding: 3rem 0 1rem 0;
  content: "";
  background-color: #1E1E1E;
  width: 100%;
  height: max-content;
}

.faq .section-title {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.faq .accardion-wrapper {
  padding: 24px 16px;
  border-bottom: 1px solid #ffffff33;
}

.faq .head {
  cursor: pointer;
}

.faq .accardion-wrapper .title {
  width: 90%;
}

.faq .accardion-wrapper .title strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}

.faq .accardion-wrapper .title span {
  font-size: 11px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}

.faq .accardion-wrapper .toggle {
  width: 10%;
}

.faq .accardion-wrapper .toggle i {
  color: #ffffff;
  cursor: pointer;
  vertical-align: middle;
}

.faq .accardion-wrapper .text-wrapper {
  display: none;
  margin-top: 8px;
}

.faq .accardion-wrapper .text-wrapper p {
  padding: 8px;
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff;
}

/* methods-table */
.methods-table {
  padding: 1rem 0 0;
}
.methods-table .section-title {
  display: block;
  text-align: center;
  backdrop-filter: blur(32px);
  background-color: #BDED001A;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 10px;
}

.methods-table .table {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  overflow-x: auto;
  direction: rtl;
}

.methods-table .table-item {
  background: linear-gradient(45deg, #464A3C, #41463B, #41443C, #43433C, #454239, #464137);
  border-radius: 16px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 24px;
}

.methods-table .table-header {
  direction: rtl;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  background-color: #CFA244;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.methods-table .table-header strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

.methods-table .table-row {
  direction: rtl;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 24px;
}
.methods-table .table-row div {
  border-radius: 16px;
  text-align: right;
  width: 60%;
  align-content: center;
}
.methods-table .table-row .row-title {
  width: 40%;
  background-color: transparent;
  color: #D5F07A;
  font-weight: bold;
}
.methods-table .table-row .row-content {
  text-align: right;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: right;
}

/* call-buttons */
.call-buttons {
  padding: 2rem 0 4rem;
  background-color: #1E1E1E;
}

.call-buttons a {
  background-color: #ffffff26;
  padding: 14px 24px;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.call-buttons a .svg-icon {
  margin-left: 4px;
}

/* .call-buttons-1 */
.call-buttons-1 {}

/* map */
.map {
  /* background: url(../images/map.webp); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 1rem;
  border-radius: 16px;
}

.map .box-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
}

.map .box-wrapper strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.map .box-wrapper span i {
  margin-left: 4px;
}

.map .box-wrapper a {
  font-size: 14px;
  width: fit-content;
  color: #1E1E1E;
  border: 1px solid #1E1E1E;
  padding: 1rem 1.5rem;
  border-radius: 32px;
}

.map .box-wrapper a i {
  margin-left: 4px;
  vertical-align: middle;
}

/* footer */
footer {
  background: linear-gradient(to bottom, #2A2E25, #302E2A);
  padding: 48px 24px;
  margin-bottom: 0;
  color: #ffffff;
}

footer .main-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

footer .main-subltitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

footer .segment-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

footer .info>div {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
}

footer .social-list ul {
  padding: 0 0 12px;
}

footer .social-list ul li {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 6px;
}

footer .social-list ul li a {
  display: block;
}

footer .social-list ul li a i {
  background-color: #919caf33;
  border-radius: 100%;
  padding: 13px;
  width: 48px;
  height: 48px;
  vertical-align: middle;
}

footer .copy-right {
  border-top: 1px solid #2c0031;
  padding-top: 12px;
  margin-top: 22px;
  font-size: 12px;
}

.sticky-call {
  width: 100%;
  max-width: 500px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99;
  background-color: #919caf45;
  backdrop-filter: blur(15px);
  padding: 16px 12px 16px 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.sticky-call .call-button {
  display: block;
  width: 50%;
  margin-left: 6px;
}

.sticky-call .call-button a {
  display: block;
  width: 100%;
  border-radius: 48px;
  font-size: 0.9rem;
  color: #1E1E1E;
  padding: 16px;
  background-color: #ffffff;
  padding: 18px 12px;
  text-align: center;
  box-shadow: #00d5ff29 0px 0px 24px 4px;
  line-height: 20px;
}

.sticky-call .call-button a i {
  vertical-align: middle;
}

.sticky-call .request-button {
  display: block;
  width: 50%;
}

.sticky-call .request-button a {
  display: inline-block;
  width: 100%;
  border-radius: 48px;
  font-size: 0.9rem;
  background: linear-gradient(to right, #41d8ff, #0094b8);
  color: #ffffff;
  padding: 18px 12px;
  text-align: center;
  box-shadow: #00d5ff29 0px 0px 24px 4px;
  line-height: 20px;
  vertical-align: middle;
}

.sticky-call .request-button a i {
  vertical-align: middle;
}

.sticky-call .whatsapp-button {
  display: block;
  margin-left: 12px;
}

.sticky-call .whatsapp-button a {
  display: block;
  width: 100%;
  border-radius: 4rem;
  color: #ffffff;
  padding: 16px;
  background-color: #00ae00;
  padding: 15px 12px;
  text-align: center;
  line-height: 20px;
  margin-right: 6px;
}

.sticky-call .whatsapp-button a i {
  vertical-align: middle;
  font-size: 1.25rem;
}

/* sticky-call-2 */
.sticky-call-2 {
  width: 100%;
  max-width: 500px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99;
  padding: 12px;
}

.sticky-call-2 .call-button {
  display: block;
  width: 100%;
  margin-left: 12px;
}

.sticky-call-2 .call-button a {
  display: block;
  width: 100%;
  border-radius: 1rem;
  color: #ffffff;
  padding: 16px;
  background-color: #00ae00;
  padding: 18px 12px;
  text-align: center;
  line-height: 20px;
}

.sticky-call-2 .call-button a i {
  vertical-align: middle;
}

.sticky-call-3 {
  width: 100%;
  max-width: 500px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99;
  background-color: #3a044005;
  backdrop-filter: blur(15px);
  padding: 16px 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex !important;
  gap: 10px !important;
}

/* sticky-button */
.sticky-button {
  background-color: #BDED00;
  box-shadow: 0 0 24px 4px #00d5ff15;
  color: #000;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  padding: 16px 24px;
  width: 100%;
  z-index: 99;
}

.sticky-button a {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 1rem;
}

.sticky-button a.left {
  left: 0;
}

.sticky-button a.right {
  right: 0;
}

.sticky-button:hover {
  background-color: rgb(46, 148, 51);
}

.sticky-button i {
  vertical-align: middle;
  font-size: 1.2rem;
  margin-left: 5px;
  animation: shake 2s ease-in-out infinite;
}

.whatsapp-wrapper {
  position: sticky;
  bottom: 114px;
  left: 10px;
  text-align: left;
  z-index: 99999;
}

.whatsapp-wrapper .whatsapp-button a {
  display: inline;
  width: 100%;
  color: #fff;
  background-color: #00ae00;
  border: 2px solid #ffffff;
  text-align: left;
  line-height: 20px;
}

.whatsapp-wrapper .whatsapp-button {
  display: inline;
  margin-left: 12px;
  text-align: left;
}

.whatsapp-wrapper .whatsapp-button a {
  border-radius: 4rem;
  padding: 16px 15px;
  margin-right: 6px;
}

.whatsapp-wrapper .whatsapp-button a i {
  vertical-align: middle;
  font-size: 1.8rem;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  5%,
  15% {
    transform: translateX(-5px);
  }

  10%,
  20% {
    transform: translateX(5px);
  }

  25%,
  100% {
    transform: translateX(0);
  }
}


.horizontal-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scroll-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}


.ce-text-box {
  padding: 17px 29.5px;
  background-color: #BDED00;
  border-radius: 12px;
  font-weight: 700;
}
.ce-text-box p{
  font-weight: 800;
  font-size: 0.8rem;
}

.bg-white {
  background-color: #fff;
}

.text-wrapper h3 {
  font-weight: 900;
  font-size: 16px;
}

.ce-icon-box {
  margin-top: 32px;
}

.ce-row {
  display: flex;
  justify-content: space-around;
}

.ce-text-box-2 {
  background: linear-gradient(45deg, #A59D34, #9E9649, #9E9356, #A39559 , #A59259, #A99051);
  color: #fff;
  border-radius: 16px;
  padding: 1rem 0;

}

.ce-text-box-2 p {
  font-size: 16px;
  font-weight: 700;
}

.ce-btn {
  padding: 16px 32px;
  color: #000;
  background-color: #BDED00;
  box-shadow: 0px 0px 24px 4px #00D5FF29;
  border-radius: 32px;
  display: inline-flex;
  justify-content: center !important;
  margin: 0 auto;
}

.section-title-2 {
  background-color: #BDED001A;
  padding: 24px;
  border-radius: 16px;
}
.ce-way{
  margin-top: 42px;
}
.ce-sin-way{
  margin: 16px 0;
}

.ce-head-way{
  background: linear-gradient(86.07deg, #CFA244 -16.56%, #997832 116.09%);
  border-radius: 12px 12px 0 0;
  padding: 20px ;
}

.ce-head-way h3{
  font-size: 16px;
  font-weight: 700;
}
.ce-text-green{
  color: #D5F07A;
  font-size: 12px;
  font-weight: 500;
}
.ce-body-way{
  background-color: #BDED001A;
}
.ce-bg-2{
  background: url('../images/new/bg-2.webp');
  background-repeat: no-repeat;
  background-size: cover;
}
.ce-bg-2 h2{
  line-height: 2.8rem;
}
.ce-btn-pb{
  padding-bottom: 350px !important;
}