:root {
  --text-color-darker: rgb(178, 178, 178);
  --text-color-darkest: rgb(130, 130, 130);
  --text-color-dark: #1e1e1e;
  --text-color: #fff;
  --shadow-dark: #1e1e1e84;
  --bg-light: #aaa;
  --bg-dark: #B4945C;
  --bg-light-transparent: #b4945c16;
  --bg-dark-transparent: #b4945c7b;
  --link-text: #02025f;
}

@font-face {
  font-family: "IranSans";
  src: url(fonts/IranSans/IRANSansDN\ [@ClubEdits].ttf);
  src: url(fonts/IranSans/IRANSansDN\ [@ClubEdits].woff);
  src: url(fonts/IranSans/IRANSansDN\ [@ClubEdits].woff2);
}

@font-face {
  font-family: "Vazir";
  src: url(fonts/Vazir/Vazir.eot);
  src: url(fonts/Vazir/Vazir.ttf);
  src: url(fonts/Vazir/Vazir.woff);
  src: url(fonts/Vazir/Vazir.woff2);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-drag: none;
  /* font-size: xx-large;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-shadow: none;
  text-transform: none; */

  font-family:
    "IranSans",
    "Vazir", 
    "Century Gothic",
    sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);

}

body {
  margin: 0;
}

.firstTitle {
  color: var(--text-color-dark);
}

.secondTitle {
  color: var(--bg-dark);
}

#preloader {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: var(--text-color);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#darkMode {
  width: 30px;
  height: 30px;
  appearance: none;
  /* حذف استایل پیش‌فرض چک‌باکس */
  cursor: pointer;

  #darkMode:hover {
    color: var(--text-color);
  }

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 24 24' stroke='%23333333' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

#darkMode:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z'/%3E%3C/svg%3E");

}

/* ================ header ================== */
header {
  display: flex;
  position: sticky;
  top: 0;
  height: 131px;
  justify-content: space-between;
  align-items: center;
  background-color: var(--text-color);
  padding: 10px 20px;
  box-shadow: 0 2px 4px var(--shadow-dark);
  z-index: 10;
  list-style: none;
}

#logo {
  display: flex;
  align-items: center;
}

#logo-img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}

h1 {
  font-size: 24px;
  color: var(--text-color-darkest);
  margin: 0;
  cursor: pointer;
}

#userpass-form {
  margin: 10px;
}

#userpass ul,
#login ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 5px;
  gap: 0px;
  justify-content: right;
}

#userpass li,
#login li {
  margin: 0 0 0 10px;
}

#login {
  flex-direction: column;
}

.input {
  font-size: 12px;
  padding: 10px;
  outline: none;
  border: 1px solid var(--bg-dark);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: var(--bg-dark);
  margin: 0;
  width: 178px;
  height: 41px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}

#password1,
#password2 {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.more {
  width: 100%;


}

#more {
  font-size: 20px;
  font-weight: bolder;
  outline: none;
  /* border: 1px solid var(--bg-dark); */
  /* border-radius: 10px; */
  margin: 0 auto;
  margin-bottom: 30px;
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12); */
  cursor: pointer;
  transition: color 0.3s;
  width: 230px;
  height: 40px;
  display: flex;
  justify-content: space-around;
  background: transparent;
  border: 1px solid var(--text-color-dark);
  color: var(--text-color-dark);
  transition: background 0.3s ease-in-out;

}

#login-username,
#signup-username,
#name {
  width: 209px;
}

#login-username,
#signup-username,
#name {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12); */

}

#login-username ul li,
#signup-username ul li,
#name ul li {
  margin-left: 0;
}

#login,
#signup {
  background-color: var(--bg-dark);
  color: var(--text-color);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 99999;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}

#login:hover,
#signup:hover {
  background-color: var(--bg-dark);
}

.show-password-button1,
.show-password-button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  margin: 0;
  border: 1px solid var(--bg-dark);
  border-right: 0;
  cursor: pointer;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);
}

.show-password-button1:hover,
.show-password-button2:hover {
  background: var(--text-color-darker);
}

.show-password-button1:active,
.show-password-button2:active {
  background: var(--text-color-darker);
}

#zoom-in1,#zoom-in2 {
  background: transparent;
  margin: auto;
  border: 1px solid var(--text-color-dark);
width: 40px !important;
  transition: all 0.3s;

}

#zoom-in1:hover,#zoom-in2:hover {
  background-color: var(--text-color-dark);
  color: var(--bg-dark);
  

}

.card-footer {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.social-button,
h2 a,
.social-button img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 2px;
  border: 1px solid var(--bg-dark);
  cursor: pointer;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s;
  height: 40px !important;
  width: 40px !important;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);
}

h2 a {
  background-color: white;
  color: black;
  /* width: 100px !important; */
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}

.social-button:hover,
h2 a:hover {
  background: var(--text-color-dark);
}

.social-button:active,
h2 a:active {
  background: var(--text-color-dark);
}

.search div {
  margin-right: 7px;
  width: 100% !important;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}

.search div:last-child {
  margin-right: 0px;
  width: 60px !important;
}



.input:hover,
#more:hover {
  background-color: var(--bg-dark);
  color: var(--text-color-dark);
}

.input:focus,
#more:focus {
  background: var(--text-color-darkest);
}

/* ================ nav bar ================== */
.nav-bar {
  direction: rtl;
  position: sticky;
  top: 131px;
  z-index: 8;
  /* border-bottom: 4px solid var(--text-color); */
}

.breadcrumb {
  position: sticky;
  top: 180px;
  z-index: 7;
  border-top: 4px solid var(--text-color);
}

.breadcrumb ul li {
  padding-left: 20px;
  font-size: smaller;
}

.ti-angle-double-right {
  color: var(--text-color-darker);
}

.active {
  color: var(--text-color-darker);
  cursor: default;
}

a,
p {
  color: var(--text-color-dark);
  text-decoration: none;
}

li a,
li p {
  transition: color 200ms ease-in-out;

}

li a:hover,
li p:hover {
  color: var(--text-color-darker);
}

ul.menu {
  background: var(--bg-dark-transparent);
  margin: 0;
  padding-left: 10px;
}

ul.menu>li {
  display: inline-block;
  list-style: none;
  margin-right: 15px;
}

ul.menu>li a {
  display: block;
  padding: 10px 0;
}

ul.sub-menu li {
  border-radius: 15px;
  padding-left: 10px;
  transition: background 300ms ease-in-out;
}

ul.sub-menu li:hover {
  background: var(--bg-dark);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}

ul.sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  background: var(--bg-light);
  list-style: none;
  padding: 10px;
  width: 150px;
  z-index: 10;

}

.sub-menu {
  z-index: 100;
}

li.dropdown p {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.dropdown ul {
  width: 100%;
}

.dropdown ul li {
  padding-right: 10px;
}

/* ================ side nav bar ================== */
.side-menu {
  display: none;
  z-index: 8;
  top: 150px;
}

aside {
  position: fixed;
  width: 300px;
  background: var(--bg-dark);
  color: var(--text-color);
  height: 100vh;
  left: -300px;
  transition: left 0.5s;
  z-index: 9;

}

aside.active {
  left: 0;
  background: var(--bg-dark);
}

aside.active .toggle-menu-button {
  background: var(--bg-dark);

}

aside ul {
  padding: 10px;

}

a {
  cursor: pointer;
}

aside li {
  list-style: none;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);
  padding: 5px;
  padding-left: 15px;

}

aside a {
  color: var(--text-color);
  text-decoration: none;

}

.toggle-menu-button {
  display: flex;
  position: absolute;
  font-size: 40px;
  right: -60px;
  background: var(--bg-dark);
  padding: 10px;
  cursor: pointer;
  transition: background 500ms;
  z-index: 10;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);
}

.toggle-menu-button:hover {
  background: var(--bg-dark);
}

/* =============== accordion (داخل سایدبار) ================= */
.has-accordion {
  margin-bottom: 20px !important;
  /* تنظیم فاصله */
}

.accordion-container {
  margin-top: 15px;
  font-size: 18px;
}

.accordion {
  width: 100%;
}

.item {
  /* border: 3px solid var(--bg-light); */
  /* box-shadow: 0 4px 8px 5px var(--shadow-dark); */
  border-radius: 15px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

  margin-bottom: 10px;
}


.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  /* border: 1px solid var(--bg-light); */
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-color);
}

.heading:hover {
  background: var(--bg-dark);
}

.heading p {
  margin: 0;
}

.content {
  display: none;
  padding: 10px 20px;
  color: var(--text-color-darker);
}

.heading i {
  transition: all 0.9s;
}

.item.active .heading i {
  transform: rotate(180deg);
}

/* sideNav CSS */

#sideNav a {
  position: fixed;
  top: 300px;
  width: 140px;
  height: 40px;
  align-content: center;
  z-index: 6;
  right: -130px;
  text-decoration: none;
  background-color: var(--bg-dark);
  color: var(--text-color);
  font-weight: bold;
  font-size: 12px;
  padding: 5px 50px 5px 0px;
  border-radius: 20px 0px 0px 20px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12);

}


#sideNav a:hover,
#sideNav a.hasActive {
  background-color: var(--bg-dark);
  color: var(--text-color);
  right: -40px;
}

h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
      margin-bottom: 20px;

}

/* =============== footer ================= */
footer {
  display: flex;
  /* تغییر از none به flex */
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--text-color-dark);
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: var(--bg-light);
  text-decoration: underline;
}

footer p {
  color: var(--bg-light);

}

/* =============== slider ================= */
.container {
  display: flex;
  width: 100%;
  min-height: 80vh;
  /* جایگزین height:100vh */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  /* حداکثر عرض */
  height: auto;
  /* ارتفاع بر اساس تصویر */
}

.slider .items {
  position: relative;
  width: 100%;
  padding-top: 65.7%;
  /* نسبت 700/460 ≈ 65.7% برای حفظ نسبت تصویر */
}

.slider .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.slider .item.active {
  transform: scaleY(1);
  transform-origin: top;
}

.slider img {
  width: 100%;
  height: 109%;
  object-fit: contain;
  border: 2px solid var(--bg-dark);
  box-sizing: border-box;
  border-radius: 10px;

}

.card-title h6 {
  white-space: pre-wrap;
    line-height: 30px;

}

.slider h2.title {
  font-size: 20pt;
  position: absolute;
  margin: 0;
  bottom: 0;
  background: var(--shadow-dark);
  color: var(--text-color);
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  /* border-radius: 10px; */
}

#backToHome {
  list-style: none;

}

.slider .prev,
.slider .next {
  position: absolute;
  background: var(--bg-dark);
  color: var(--text-color);
  font-size: 22px;
  border: none;
  padding: 6px;
  z-index: 2;
  cursor: pointer;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
}

.slider .next {
  right: 1px;
}

.slider .prev {
  left: 1px;
}

.slider .next:hover {
  background: var(--bg-dark);
}

.slider .prev:hover {
  background: var(--bg-dark);
}

.images {
  display: flex;
  width: 100%;
  max-width: 700px;
  margin-top: 10px;
  gap: 5px;
}

.images .item {
  flex: 1;
}

.images img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.3s;
}

.images img:hover {
  filter: sepia(50%);
}

/* =============== cards ================= */
.card-container {
  display: flex;
  width: 100%;
  min-height: 80vh;
  /* جایگزین height:100vh */
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  /* تغییر از space-between برای ریسپانسیو */
  gap: 30px;
  padding-top: 30px;
  margin-left: 50px;
  margin-right: 50px;
}


.card-title {
  justify-content: center;
  line-height: 50px;
  align-items: center;
  padding: 50px 200px;
  background-color: var(--bg-dark-transparent);
  height: 100%;
  margin-bottom: 20px;
  color: var(--text-color-dark);
  width: 100vmax;
  direction: rtl;

}
.card-center{
    text-align: center;
}

.description {
  text-align: center;
  background-color: var(--bg-light-transparent);
  margin: 0 70px;
  padding: 50px;
  direction: rtl;
}

.card {
  width: 70%;
  max-width: 231px;
  height: 400px;
  perspective: 1000px;
  margin: 0 auto;
  margin-left: 20px;
  margin-right: 20px;
  /* border: 3px solid #516677; */
  background-color: #b4945c7c;

  /* حذف margin ثابت */
}

.card-back h4 {
  margin-left: 10px;
  margin-right: 10px;
  font-size: large;
}

.card-back h3 {
  margin-left: 10px;
  margin-right: 10px;
  font-size: large;
}

@media (max-width: 1200px) {
  .card-title {
    padding: 50px 100px;
  }

}

@media (max-width: 560px) {
  .card-title {
    padding: 50px;
  }
  .card-center{
    text-align: right;
}
  .card {
    max-height: 400px;

  }
  h6#about-cnt {
      margin-top:20px;
}
}

.card-wrap {
  position: relative;
  width: 100%;
  height: 80%;
  justify-self: center;
  transform-style: preserve-3d;
  /* box-shadow: 0 4px 8px 5px var(--shadow-dark); */
  transition: transform 0.6s;
  justify-content: space-around;

}

.card:hover .card-wrap {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* جلوگیری از نمایش پشت در هنگام چرخش */
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-back {
  background: var(--bg-dark);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}


/* =============== bg scroll ================= */

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* background-image: url("./img/bg.png"); */
  background-color: #F3EFE8;
  background-repeat: repeat;
  background-position-x: 0;
  z-index: -1;
}

/* =============== progress scroll bar ================= */

.progress {
  padding: 0;
  margin: 0;
  top: 121px !important;
  left: 0;
  position: fixed;
  height: 10px;
  background-color: var(--text-color-dark);
  box-shadow: 0 0 10px 0 var(--shadow-dark);
  z-index: 90;
}

#toUp {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease-in-out;
  background-color: var(--bg-dark);
  box-shadow: 0 0 10px 0 var(--shadow-dark);
}

#toUp:hover {
  background-color: var(--bg-light);
  box-shadow: 0 0 10px 0 var(--shadow-dark);

}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
  clear: both;

}

.pagination ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}

.pagination ul li {
  font-size: 20px;
  box-shadow: 0 0 10px 0 var(--shadow-dark);
  border-radius: 5px;


}

.pagination ul li:hover {
  background-color: var(--bg-light);
}

.pagination ul li a {
  display: flex;
  color: var(--text-color);
  text-decoration: none;
  background-color: var(--bg-dark);
  border-radius: 5px;
  transition: all 300ms ease-in-out;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;

}

.pagination ul li a:hover {
  background-color: var(--bg-light);
  color: var(--text-color-darkest);
}

.pagination ul li a.active {
  color: var(--text-color-darkest);
  cursor: default;
  background-color: var(--bg-light);
}


/* =============== responsive ================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: stretch;
    height: 150px;


  }

  #logo {
    justify-content: center;
    margin-bottom: 10px;
  }

  #userpass ul {
    justify-content: center;
  }

  .nav-bar {
    display: none;
  }

  .slider {
    max-width: 100%;
  }

  .images {
    max-width: 100%;
  }

  .side-menu {
    display: block;
  }

  .breadcrumb {
    display: none;
  }

  .progress {
    display: none;
  }

  .card {
    margin: 0 auto;
  }

  footer {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  aside {
    width: 85%;
    left: -85%;
  }

  .toggle-menu-button {
    right: -50px;
    font-size: 30px;
  }
}

#mask {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background-color: black;
  opacity: 0.6;
  left: 0;
  top: 0;
  transition: opacity 0.3s ease;
}

#login_form,
#signup_form {
  display: none;
  position: fixed;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  flex-direction: row;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
  height: 350px;
  background-color: var(--text-color);
  color: var(--text-color-darkest);
  border: 1px solid var(--bg-dark);
  border-radius: 20px;
  z-index: 99999;

}

.error {
  position: fixed;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-self: center;
  flex-direction: row;
  top: calc(50% - 30px);
  left: calc(50% - 200px);
  width: 400px;
  height: 60px;
  border: 1px solid var(--bg-dark);
  border-radius: 20px;
  z-index: 99999;
  display: flex !important;
  background-color: var(--text-color);
  color: red;
}

.welcome {
  display: flex !important;
  position: fixed;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-self: center;
  flex-direction: column;
  top: calc(50% - 30px);
  left: calc(50% - 200px);
  width: 400px;
  height: 60px;
  border: 1px solid var(--bg-dark);
  border-radius: 20px;
  z-index: 99999;
  background-color: var(--text-color);
  color: green;
}

#login_form ul,
#signup_form ul {
  list-style: none;

}

#login_form ul li,
#signup_form ul li {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  align-self: center;

}

#login_form ul li i,
#signup_form ul li i {
  display: block;

}

#pass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  align-items: start;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.ti-eye {
  height: 39px;
  align-content: center;
}

#signup_header,
#login_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  top: 0 !important;
  left: 0 !important;
  text-align: center;
  align-content: center;
  border-radius: 15px 15px 0 0;
  height: 50px;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-color);
}

#signup_header li,
#login_header li {
  margin: 0;
  left: 0;
}

#authMenu {
  padding: 0 !important;
}

#authMenu li i,
.social-button li i,
li.social-button,
li.social-button i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;

}

#authMenu li i:hover,
.social-button li i:hover,
li.social-button:hover,
li.social-button i:hover {
  color: var(--text-color);
}

.ti-import {
  transform: rotate(90deg);
  display: block;
}

.ti-export {
  transform: rotate(90deg);
  display: block;

}

#backToHome {
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  clear: both;
  width: 100%;

}

.clearfix {
  clear: both;
}

#backToHome li a {
  width: 100%;
  display: flex;
  /* flex-direction: row; */
  /* flex-wrap: nowrap; */
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

#backToHome li a i {
  color: black;
}



.card a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bolder;
  outline: none;
  /* border-radius: 10px; */
  /* background-color: var(--bg-dark); */
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.24), inset 0px 1px 0.5px rgba(255, 255, 255, 0.12); */
  cursor: pointer;
  transition: background-color 0.3s;
  height: 40px;
  background: transparent;
  border: 1px solid var(--text-color-dark);
  color: var(--text-color-dark);

}

#order1, #order2, #order3{
      width: 130px !important;
}

.card a:hover {
  background-color: var(--text-color-dark);
  color: var(--bg-dark);

}

.card a:focus {
  background: var(--text-color-darkest);
  color: var(--text-color);

}

.ti-arrow-up {
  color: var(--text-color);

}

.menu-items {
  direction: rtl;

}

.menu-items ul li a,
.menu-items li a {
  font-size: smaller;
  display: block;
}

.card-front img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

#about-row{
    display: flex;
    flex-wrap: wrap;
    flex-direction:row;
    margin: auto 0 ;
    justify-content: center;
    align-items: end;
};

h6#about-cnt {
    text-align: right !important;
      justify-content: center !important;

}

img#about-img {
    margin-left: 20px !important;
    border-radius: 20px;
    align-items:end;
}