:root {
  --primary: #5b172c;
  --dark-primary: rgba(45, 12, 22, 1);
  --primary-light: #faecf0;
  --secondary: #f2f2f7;
  --white: #ffffff;
  --black: #000000;
  --tertiary: #737373;

  --line_primary: #dfdfdf;
  --sub-text: #292929;

  --f12: 12px;
  --f14: 14px;
  --f16: 16px;
  --f18: 18px;
  --f20: 20px;
  --f22: 22px;
  --f32: 32px;
}

.ltr {
  direction: ltr;
}

body {
  background: white;
  direction: rtl;
  line-height: 24px;
  margin: 0;
  font-family: IRANYekanX;
}
.splide__pagination__page.is-active {
  background: var(--primary) !important;
}
.splide.temp-four ul > li.is-active.is-visible{
transform: scale(1.1);
}
.custom-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 350px) {
  .font32 {
    font-size: var(--f22);
  }
}
@media (min-width: 1600px) {
  .custom-container {
    max-width: 1600px;
  }
}
@media (min-width: 1900px) {
  .custom-container {
    max-width: 1900px;
  }
}
@media (min-width: 768px) {
  .custom-container {
    width: 750px;
  }
  .font32 {
    font-size: var(--f32);
  }
}
@media (min-width: 992px) {
  .custom-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .custom-container {
    width: 1180px;
  }
  .services-items {
    background: var(--dark-primary);
    background: linear-gradient(
      180deg,
      var(--dark-primary) 0%,
      var(--primary) 100%
    );
  }
}

.splide__arrow {
  background-color: var(--primary) !important;
  width: 3rem !important;
  height: 3rem !important;
  top: 60% !important;
}

.splide__arrow svg {
  fill: white !important;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

main .banner {
  padding: 3rem 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.banner-hero {
  width: 100%;
}
.banner > .banner-image {
  text-align: center;
  gap: 1rem;
  margin: 0 auto;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Navbar */
nav.navbar {
  display: flex;
  position: relative;
}
nav.navbar > img {
  height: 100%;
}
.navbar ul {
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.navbar .nav-buttons {
  position: absolute;
  left: 10px;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
/* Navbar */

.why-us {
  overflow: hidden;
  position: relative;
}
.why-us > img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
.why-us > .why-us-row {
  display: flex;
  height: 100%;
}
.why-us-row > .overlay {
  justify-content: center;
  align-items: center;
  display: flex;
  border: 1px solid #ffffff48;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.why-us-row > .content {
  display: flex;
  gap: 1rem;
  position: absolute;
}

.why-us-row > .content .card-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Main-Button */
.btn {
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 16px;
}

.round-btn {
  border: none;
  padding: 18px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
}
/* .styled-button:hover {
  background-color: var(--primary);
  transform: scale(1.05);
}

.styled-button:active {
  background-color: var(--primary);
  transform: scale(0.95);
} */
/* Main-Button */

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* .dropbtn:hover,
.dropbtn:focus {
  background-color: var(--primary);
} */

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* .dropdown-content a:hover {
  background-color: #f1f1f1;
} */

.dropdown:hover .dropdown-content {
  display: block;
}
/* Dropdown */

/* Cards */
.card {
  padding: 16px;
  width: 330px;
  height: 330px;
  border-radius: 16px;
  position: relative;
}

.card > img {
  width: 90%;
  height: 50%;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}

.card-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 9rem;
}

.card-main-title {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  margin: 8px 0;
}

.card-main-content {
  font-size: 14px;
  text-align: right;
  max-height: 150px;
  overflow: auto;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-icon {
  width: 100%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
  border-radius: 16px;
  color: var(--white);
  gap: 16px;
}

.card-option {
  border: 1px solid var(--line_primary);
  border-radius: 16px;
  padding: 1rem;
}

.card-options {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.card-option-header {
  text-align: center;
  border-radius: 16px;
}

.card-body {
  border: 1px solid var(--primary);
  border-radius: 16px;
}

.card-item {
  text-align: center;
}

.card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards */

/* Avatar */
.avatar {
  margin-right: 20px;
}

.avatar-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
/* Avatar */

.services {
  border-radius: 16px;
}

.services-items {
  display: flex;
  gap: 2rem;
}

.services-items > .card-icon:hover {
  cursor: pointer;
  box-shadow: 0px 4px 33.3px 0px #00000040;
  transition-duration: 0.1s;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* border: 1px solid var(--line_primary); */
  border-radius: 16px;
  padding: 1rem;
}
.accordion-item {
  position: relative;
  border: 1px solid var(--line_primary);
  /* background: var(--white); */
  border-radius: 16px;
}
.accordion-body {
  opacity: 0;
  position: absolute;
  transition: all 0.2s ease-in-out;
}
.accordion-body.active {
  opacity: 1;
  position: relative;
}
.accordion-header {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
.accordion-body {
  color: var(--sub-text);
  font-size: 14px;
  font-weight: 700;
}

.accordion-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-light);
}
/* Accordion */

.faq-tabs.active {
  border-bottom: 5px solid var(--primary);
}

.faq-tabs-content {
  display: none;
}

.faq-tabs-content.active {
  display: block;
}

.feature-tabs {
  cursor: pointer;
}
.feature-tabs.active {
  border-bottom: 4px solid var(--primary);
  color: var(--primary);
  padding-bottom: 0.5rem;
}

.feature-tabs-content {
  display: none;
}

.feature-tabs-content.active {
  display: flex;
}

/* Hero-title */
.hero-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  gap: 1rem;
}
.hero-title .title {
  font-weight: bold;
}

.hero-title > .title::after {
  display: inline-block;
  transform: rotateY(180deg);
}
/* Hero-title */

/* List */
.list-title {
  margin: 1rem 0;
}
.list-item {
  color: var(--sub-text);
  margin: 10px;
}
/* List */

/* Dividers */
.horizontal-divider {
  width: 100%;
  height: 1px;
  background: var(--line_primary);
  margin: 0.5rem 0;
}
/* Dividers */

/* Colors */
.bg-gradient-primary {
  background: var(--dark-primary);
  background: linear-gradient(
    180deg,
    var(--dark-primary) 0%,
    var(--primary) 100%
  );
}

.bg-primary {
  background: var(--primary);
}

.border-primary {
  border-color: var(--primary);
}

.bg-light-primary {
  background: var(--primary-light);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-white {
  background: var(--white);
}

.bg-black {
  background: var(--black);
}
/* Colors */

/* Button Colors */
.btn-primary {
  color: var(--white);
  background: var(--primary);
}

.btn-secondary {
  color: var(--sub-text);
  background: var(--secondary);
}

.btn-default {
  color: var(--primary);
  background: var(--primary-light);
}

/* Button Colors */

/* Text colors */
.text-tertiary {
  color: var(--tertiary);
}
.text-primary {
  color: var(--primary);
}
.text-light-primary {
  color: var(--primary-light);
}

.text-secondary {
  color: var(--sub-text);
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--black);
}
/* Text colors */

/* Font Sizes */
.font12 {
  font-size: var(--f12);
}

.font14 {
  font-size: var(--f14);
}

.font16 {
  font-size: var(--f16);
}

.font18 {
  font-size: var(--f18);
}

.font20 {
  font-size: var(--f20);
}
/* Font Sizes */
