* {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 10px;
  width: 10px;
  scrollbar-width: thin;
}

*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #ddc5c589;
}

*::-webkit-scrollbar-track:hover {
  background-color: #233449;
}

*::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: rgb(255, 128, 0);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 222, 59);
}
.header {
  background-color: #233449;
  padding: 20px;
  height: 100px;
  top: 0;
  transition: all 0.5s ease;
  position: sticky;
  z-index: 1000000;
}

/* ?Header-section */
.header-section {
  background-color: #233449;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-inf {
  margin-right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-inf-title {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 100px;
}

.header-inf-title h1 {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
}

.header-inf-title p {
  margin: 0;
  font-size: 22px;
  color: #fdead4;
}

.animation-header {
  width: 450px;
  height: 450px;
  margin-left: 50px;
}

.input-container {
  direction: ltr;
  display: flex;
  background: white;
  border-radius: 1rem;
  background: linear-gradient(135deg, #23272F 0%, #14161a 100%);
  box-shadow: 10px 10px 20px #0e1013, -10px -10px 40px #383e4b;
  padding: 0.3rem;
  gap: 0.3rem;
  width: 75%;
  height: 80px;
  margin-top: 40px;
}
/* .s-input:-internal-autofill-selected {
  background-color: light-dark(rgb(78, 10, 225), rgba(18, 90, 225, 0.4)) !important;
} */

.input-container input {
  border-radius: 0.8rem 0 0 0.8rem;
  background: #23272F;
  box-shadow: inset 5px 5px 10px #0e1013, inset -5px -5px 10px #383e4b, 0px 0px 100px rgba(255, 212, 59, 0), 0px 0px 100px rgba(255, 102, 0, 0);
  width: 100%;
  flex-basis: 75%;
  padding: 1rem;
  border: none;
  border: 1px solid transparent;
  color: white;
  transition: all 0.2s ease-in-out;
  direction: rtl;
}

.input-container input:focus {
  border: 1px solid #ffe53b;
  outline: none;
  box-shadow: inset 0px 0px 10px rgba(255, 102, 0, 0.5), inset 0px 0px 10px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 102, 0, 0.5);
}

.input-container button {
  flex-basis: 25%;
  padding: 1rem;
  background: linear-gradient(135deg, rgb(255, 222, 59) 0%, rgb(255, 128, 0) 100%);
  box-shadow: 0px 0px 1px rgba(255, 222, 59, 0.5), 0px 0px 1px rgba(255, 128, 0, 0.5);
  text-transform: uppercase;
  color: #23272F;
  border: none;
  width: 100%;
  border-radius: 0 1rem 1rem 0;
  transition: all 0.2s ease-in-out;
}

.input-container button:hover {
  background: linear-gradient(135deg, rgb(255, 222, 59) 50%, rgb(255, 128, 0) 100%);
  box-shadow: 0px 0px 100px rgba(255, 222, 59, 0.5), 0px 0px 100px rgba(255, 128, 0, 0.5);
}

.input-container button i {
  color: black;
  font-size: 40px;
}

@media (max-width: 1281px) {
  .header-inf-title h1 {
    font-size: 35px;
  }

  .header-inf-title p {
    font-size: 20px;
  }

  .header-inf {
    margin-right: 90px;
  }
}

@media (max-width: 1149px) {
  .header-inf-title h1 {
    font-size: 30px;
  }

  .header-inf-title p {
    font-size: 17px;
  }

  .input-container {
    width: 80%;
  }

  .header-inf {
    margin-right: 70px;
  }
}

@media (max-width: 1050px) {
  .header-inf {
    margin-right: 50px;
  }

  .header-inf-title h1 {
    font-size: 25px;
  }
}

@media (min-width:930px) and (max-width: 1000px) {
  .header-inf {
    margin-right: 30px;
  }

  .animation-header {
    width: 400px;
    height: 400px;
  }

  .input-container {
    width: 80%;
  }
}

@media (max-width: 930px) {
  .header-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .header-inf-title h1 {
    font-size: 35px;
  }

  .header-inf-title p {
    font-size: 25px;
  }

  .header-inf {
    margin: 0;
  }

  .animation-header {
    margin: 0;
  }

  .input-container {
    width: 80%;
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .header-inf-title h1 {
    font-size: 30px;
  }

  .header-inf-title p {
    font-size: 20px;
  }
}

@media (min-width:420px) and (max-width: 550px) {
  .header-inf-title h1 {
    font-size: 25px;
  }

  .header-inf-title p {
    font-size: 15px;
  }

  .animation-header {
    width: 350px;
    height: 350px;
  }

  .input-container {
    width: 85%;
  }

  .input-container input {
    font-size: 14px;
  }
}

@media (min-width:350px) and (max-width: 420px) {
  .animation-header {
    width: 280px;
    height: 280px;
  }

  .header-inf-title h1 {
    font-size: 20px;
  }

  .header-inf-title p {
    font-size: 13px;
  }

  .input-container {
    width: 90%;
  }

  .input-container input {
    font-size: 12px;
  }
}

@media (min-width:300px) and (max-width: 350px) {
  .animation-header {
    width: 220px;
    height: 220px;
  }

  .header-inf-title h1 {
    font-size: 17px;
  }

  .header-inf-title p {
    font-size: 11px;
  }

  .input-container {
    width: 90%;
  }

  .input-container input {
    font-size: 12px;
  }
}



@media (max-width: 1200px) {
  .slide-container {
    max-width: 900px;
  }

  .slider-title1 {
    margin-left: 330px;
  }

  .title1-more {
    margin-right: 330px;
  }
}

@media (max-width: 1000px) {
  .slide-container {
    max-width: 800px;
  }

  .slider-title1 {
    margin-left: 270px;
  }

  .title1-more {
    margin-right: 270px;
  }
}

@media (max-width: 900px) {
  .slide-container {
    max-width: 600px;
  }

  .slider-title1 {
    margin-left: 230px;
    font-size: 22px;
  }

  .title1-more {
    margin-right: 230px;
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  .slide-container {
    max-width: 500px;
  }

  .slider-title1 {
    margin-left: 200px;
    font-size: 20px;
  }

  .title1-more {
    margin-right: 200px;
    font-size: 13px;
  }
}

@media (max-width: 690px) {
  .slide-container {
    max-width: 450px;
  }

  .slider-title1 {
    margin-left: 160px;
    font-size: 16px;
  }

  .title1-more {
    margin-right: 160px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .slider-title1 {
    margin-left: 130px;
    font-size: 15px;
  }

  .title1-more {
    margin-right: 130px;
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .slider-title1 {
    margin-left: 90px;
  }

  .title1-more {
    margin-right: 90px;
  }
}

@media (max-width:420px) {
  .slider-title1 {
    margin-left: 80px;
    font-size: 13px;
    font-weight: bold;
  }

  .title1-more {
    margin-right: 80px;
    font-size: 9px;
    font-weight: bold;
  }
}

@media (max-width:380px) {
  .slider-title1 {
    margin-left: 70px;
    font-size: 11px;
    font-weight: bold;
  }

  .title1-more {
    margin-right: 60px;
    font-size: 8px;
    font-weight: bold;
  }
}

/* ? End-Header-section */
/* status-style */
.status-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  margin: 60px 0;
  padding: 0;
  background-color: #ddcbb473;
  
}

.status-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 30px 100px;
}

.status {
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  flex: 0 0 23%;
  /* عرض هر کارت */
  height: 200px;
  border-radius: 5px;
}

.status:hover {
  box-shadow: inset 0px 0px 3px rgba(255, 102, 0, 0.5), inset 0px 0px 3px rgba(255, 212, 59, 0.5), 0px 0px 5px rgba(255, 212, 59, 0.5), 0px 0px 3px rgba(225, 164, 123, 0.5);
  background-color: rgb(251, 241, 229);
}

.status img {
  max-width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.status h3 {
  font-size: 22px;
  margin: 10px 0;
}

.status p {
  font-size: 15px;
  color: #777;
}

.status .size {
  height: 90px;
}

@media(max-width:1333px) {
  .status-container {
    margin: 0 80px;
  }

  .status h3 {
    font-size: 20px;
  }
}

@media(max-width:1150px) {
  .status-container {
    margin: 0 60px;
  }
}

@media(max-width:930px) {
  .status-main {
    height: 250px;
  }

  .status .size {
    height: 80px;
  }

  .status h3 {
    font-size: 17px;
  }

  .status p {
    font-size: 13px;
  }

  .status {
    height: 180px;
  }
}

@media(max-width:780px) {
  .status-main {
    height: 230px;
  }

  .status .size {
    height: 70px;
  }

  .status h3 {
    font-size: 15px;
  }

  .status {
    height: 160px;
  }
}

@media(max-width:710px) {
  .status .size {
    height: 60px;
  }

  .status h3 {
    font-size: 12px;
    font-weight: bold;
  }

  .status p {
    font-size: 10px;
  }

  .status {
    height: 150px;
  }

  .status-main {
    height: 210px;
  }
}

@media(max-width:635px) {
  .status .size {
    height: 50px;
  }

  .status h3 {
    font-size: 10px;
    font-weight: bold;
  }

  .status p {
    font-size: 9px;
    font-weight: bold;
  }

  .status {
    height: 130px;
  }

  .status-main {
    height: 190px;
  }
}

@media(max-width:565px) {
  .status .size {
    height: 40px;
  }

  .status h3 {
    font-size: 9px;
    font-weight: bold;
  }

  .status p {
    font-size: 8px;
    font-weight: bold;
  }

  .status {
    height: 115px;
  }

  .status-main {
    height: 170px;
  }
}

@media(max-width:540px) {
  .status-main {
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .status-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    justify-content: space-between;
    width: 410px;
  }

  .status {
    height: 200px;
    width: 200px;
    margin: 10px 0;
  }

  .status-main {
    height: 700px;
  }

  .status .size {
    height: 90px;
  }

  .status h3 {
    font-size: 18px;
  }

  .status p {
    font-size: 12px;
  }
}
@media(max-width:450px){
  .status {
    height: 200px;
    width: 180px;
    margin: 10px 0;
  }
  .status-container {
    width: 380px;
  }
}
@media(max-width:390px) {
  .status-container {
    width: 320px;
  }
  .status {
    height: 200px;
    width: 150px;
  }

  .status .size {
    height: 80px;
  }

  .status h3 {
    font-size: 15px;
  }
}
@media(max-width:330px){
  .status-container {
    width: 290px;
  }
  .status {
    height: 200px;
    width: 130px;
  }
}

/* end-status-stayle */
/* sub list */
.submenu {
  display: none;
  /* منوی زیرشاخه به صورت پیش‌فرض مخفی است */
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ddd1c5;
  max-width: 150px;
  text-align: center;
}

.submenu li {
  padding: 10px;
  border-bottom: 1px solid #444;
}
.submenu li:hover{
  background-color: #ebe2d9;
}
.submenu li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.dropdown-toggle::after {
  content: "\25BC";
  /* پیکان پایین برای نمایش قابلیت کشویی */
  font-size: 10px;
  padding-left: 1px;
  margin-right: 10px;
}

.dropdown-toggle.active::after {
  transform: rotate(180deg);
  /* چرخش پیکان هنگام باز شدن زیرمنو */
}

.nav-item.dropdown:hover .submenu {
  display: block;
}

.submenu.show {
  display: block;
  /* نمایش زیرمنو هنگام کلیک */
  width: 150px;
  /* background-color: #b0898f; */
  text-align: center;
  margin-top: 10px;
  z-index: 2000;
}


/* end sub list */
/* cart */
.floating-cart-btn {
  position: fixed;
  /* موقعیت ثابت برای دکمه شناور */
  bottom: 75px;
  /* فاصله از پایین صفحه */
  left: 20px;
  /* فاصله از سمت چپ */
  z-index: 999;
  /* اطمینان از اینکه دکمه در بالای سایر عناصر قرار می‌گیرد */
  background: #e68804;
  /* رنگ پس‌زمینه دکمه */
  border-radius: 50%;
  /* دکمه گرد */
  padding: 15px;
  /* فاصله داخلی */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  /* سایه برای دکمه */
  transition: all 0.3s ease;
  /* انیمیشن برای تغییرات */
}

.floating-cart-btn:hover {
  background: #1b7e1c;
  /* تغییر رنگ هنگام هاور */
  transform: scale(1.1);
  /* بزرگ‌تر شدن هنگام هاور */
}

.cart-link {
  color: white;
  /* رنگ متن و آیکون */
  text-decoration: none;
  /* حذف زیرخط */
  font-size: 24px;
  /* اندازه آیکون */
  display: flex;
  /* برای قرار دادن آیکون در مرکز */
  align-items: center;
  justify-content: center;
}

.cart-link:hover {
  color: white;
}

/* end cart */

/* scroll up */
.progress-circle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* سمت چپ صفحه */
  display: none;
  /* مخفی کردن به طور پیش فرض */
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.progress-circle .progress-svg {
  transform: rotate(-90deg);
  /* چرخش برای اینکه دایره از بالا شروع شود */
}

.progress-circle .progress-circle-fill {
  fill: none;
  stroke: #d64705;
  /* رنگ پیشرفت */
  stroke-dasharray: 125.6;
  /* محیط دایره */
  stroke-dashoffset: 125.6;
  /* شروع با دایره خالی */
  transition: stroke-dashoffset 0.1s linear;
  /* انیمیشن هنگام تغییر */
}

.progress-circle .progress-circle-bg {
  fill: none;
  stroke: #ddd;
  /* رنگ پس‌زمینه */
}

.progress-circle .scroll-up-link {
  position: absolute;
  color: #29af36;
  /* رنگ متن */
  text-decoration: none;
  /* بدون خط زیر */
  font-size: 30px;
  top: 7px;
}

/* end scroll up */

.header-logo {
  text-align: center;
  /* تصویر لوگو را در مرکز قرار می‌دهد */
}

.header-logo img {
  width: 85px;
  height: auto;
  top: 7px;
  position: absolute;
}


.line {
  color: white;
  font-size: 30px;
  margin-right: 7px;
}

nav ul li {
  padding: 10px;
}

.navbar-toggler {
  display: none;
  /* دکمه همبرگری را مخفی می‌کند */
  position: absolute;
}

/* ///////////////////////////////// */
.header-cta-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  left: 50px;
  top: 39px;
}

.header-cta-container a {
  position: relative;
  background: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 10px 30px;
  transition: 0.5s;
  color: white;
}

.header-cta-container a:hover {
  background: var(--clr);
  /* letter-spacing: 0.25em; */
  color: var(--clr);
  box-shadow: 0 0 35px var(--clr);
}

.header-cta-container a:before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #233449;
}

.header-cta-container a span {
  position: relative;
  z-index: 1;
}

.header-cta-container a i {
  position: absolute;
  inset: 0;
  display: block;
}

.header-cta-container a i::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80%;
  width: 10px;
  height: 4px;
  background: #233449;
  transform: translateX(-50%) skewX(325deg);
  transition: 0.5s;
}

.header-cta-container a:hover i::before {
  width: 20px;
  left: 20%;
}

.header-cta-container a i::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 10px;
  height: 4px;
  background: #233449;
  transform: translateX(-50%) skewX(325deg);
  transition: 0.5s;
}

.header-cta-container a:hover i::after {
  width: 20px;
  left: 80%;
}

/* ///////////////////////////////// */
.header-cta-icon {
  font-size: 16px;
  margin-top: 2px;
}

.navbar-collapse {
  left: 600px;
  position: relative;
}

.nav-link {
  color: white;
  position: relative;
}

.nav-link:hover {
  color: white;
}

.nav-flex {
  display: flex;
  align-items: center;
}

.navbar-collapse ul {
  width: 500px;
}

.navbar-collapse {
  left: 500px;

}

@media (max-width: 768px) {
  .s-page button {
    width: 100px;
    height: 35px;
  }

  .s-page svg {
    width: 10px;
  }

  .s-page .text1 {
    font-size: 14px;
  }

  .Explore-Button {
    left: -69.5px;
    margin-top: -7px;
  }

  .header-logo {
    position: absolute;
    /* برای مرکزیت بخشیدن به لوگو در هدر */
    left: 62%;
    transform: translateX(-50%);
    /* لوگو را دقیقاً در مرکز قرار می‌دهد */
    top: -3px;
  }

  .navbar-collapse ul {
    width: 200px;
  }


  .navbar-nav {
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 35%;
    background-color: #cab8a8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 3);
    padding: 20px;
    height: 100%;
  }

  .nav-link:active {
    color: white;
  }

  .navbar-nav .nav-link {
    padding: 5px;
    text-align: center;
    color: black;
  }

  .header-cta-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    left: 20px;
    top: 32px;
  }

  .header-cta-container a {
    position: relative;
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    transition: 0.5s;
    color: white;
  }

  .navbar-toggler {
    display: block;
    position: relative;
    top: -8px;
    background: transparent;
    z-index: 1300;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
  }

  .navbar-toggler.open {
    top: 7px;
    width: 50px;
    height: 30px;
    margin: 0;
    right: 102px;
    z-index: 1300;
  }

  .navbar-collapse .navbar-nav.nav-link {
    text-align: center;
  }

  .navbar-collapse .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-item a:active {
    color: white;
  }

  .navbar-collapse .navbar-nav .nav-item+.nav-item {
    border-top: 1px solid #dee2e6;
  }

  .header-photo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
  }

  .header-link {
    display: none;
  }

  .navbar-toggler-icon {
    background-image: url('pic/menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    background-position: center;
    width: 35px;
    height: 35px;
    bottom: 30px;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler-icon:active {
    transform: rotate(90deg);
    outline: none;
    box-shadow: none;
    border: none;
  }

  .navbar-toggler-icon:before {
    content: "";
  }

  .navbar-collapse.show {
    display: block;
    /* برای نمایش منوی مخفی */
  }

  .header-cta {

    font-size: 5px;
  }

  .navbar-nav .nav-item {
    margin: 10PX 0;
  }

  .navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    /* background-color: rgb(13, 190, 131); */
    overflow-y: auto;
    z-index: 1256;
    margin: 0;
    height: auto;
  }

  .navbar-nav .nav-item+.nav-item {
    border-top: none;
  }

  .navbar-toggler-icon.open {
    transform: rotate(180deg);
    background-image: url('pic/close.png');
    width: 20px;
    top: 13px;
    z-index: 1400;
    position: fixed;
    right: 160px;
  }
}

@media (min-width:991px) {
  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ff9a15;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgb(255, 136, 0);
  }

  .nav-link:hover::before {
    width: 100%;
    visibility: visible;
  }


}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left:0;
  }
}
@media (min-width: 635px) and (max-width: 767.55px) {
  .s-page button {
    width: 80px;
  }

  .s-page svg {
    width: 10px;
  }

  .s-page .text1 {
    font-size: 12px;
  }

  .Explore-Button {
    left: -50.5px;
  }

  .header-logo {
    position: absolute;
    /* برای مرکزیت بخشیدن به لوگو در هدر */
    left: 60%;
    transform: translateX(-50%);
    /* لوگو را دقیقاً در مرکز قرار می‌دهد */
    top: -3px;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 35%;
    /* background-color: rgb(32, 3, 89); */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 3);
    padding: 20px;
    height: 100%;
  }

  .navbar-nav .nav-link {
    padding: 5px;
    text-align: center;
    color: black;
  }

  .header-cta-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    left: 20px;
    top: 32px;
  }

  .header-cta-container a {
    position: relative;
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    transition: 0.5s;
    color: white;
  }

  .navbar-toggler {
    display: block;
    position: relative;
    top: -5px;
    background: transparent;
    z-index: 1350;
    left: 50px;
  }

  .navbar-toggler:focus {
    outline: none;
    border: none;
    box-shadow: none;
  }

  .navbar-nav .nav-item {
    margin: 10PX 0;
  }

  .navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    /* background-color: rgb(22, 1, 76); */
    overflow-y: auto;
    z-index: 1200;
    margin: 0;
    height: auto;
  }


  .navbar-toggler-icon.open {
    transform: rotate(180deg);
    background-image: url('pic/close.png');
    width: 20px;
    height: 30px;
    z-index: 1300;
    position: fixed;
  }

  .navbar-collapse .navbar-nav.nav-link {
    text-align: center;
  }

  .navbar-collapse .navbar-nav .nav-item {
    width: 100%;
  }


  .header-photo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
  }

  .header-link {
    display: none;
  }

  .navbar-toggler-icon {
    width: 40px;
    height: 30px;
    background-image: url('pic/menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler-icon:active {
    transform: rotate(90deg);
  }

  .navbar-toggler-icon:before {
    content: "";
  }

  .header-cta {

    font-size: 5px;
  }

  .navbar-nav .nav-item {
    margin: 10PX 0;
  }
}

@media (min-width: 769px) and (max-width: 991.55px) {

  .navbar-toggler {
    display: block;
    top: 28px;
    background: transparent;
    z-index: 1100;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    right: 60px;
  }


  .navbar-toggler-icon.open {
    transform: rotate(180deg);
    background-image: url('pic/close.png');
    width: 20px;
    /* height: 40px; */
    position: fixed;
    right: 150px;
    top: 15px;
  }

  .navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: auto;
    background-color: #cab8a8;
    overflow-y: auto;
    z-index: 1250;
  }

  .navbar-collapse.show {
    display: block;
    /* برای نمایش منوی باز شده */
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 55%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 3);
    padding: 20px;
    height: 100%;
  }

  .navbar-collapse ul {
    width: 100%;
  }

  nav ul li {
    padding: 10px;
  }


  .navbar-nav .nav-link {
    text-align: center;
    /* متن در مرکز */
    padding: 10px;
    /* فاصله داخلی */
    color: black;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #dee2e6;
  }

  .header-logo {
    position: absolute;
    /* برای مرکزیت بخشیدن به لوگو در هدر */
    left: 55%;
    transform: translateX(-50%);
    /* لوگو را دقیقاً در مرکز قرار می‌دهد */
    top: 5px;

  }

  .header-cta-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    left: 20px;
    top: 32px;
  }

  .header-cta-container a {
    position: relative;
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    transition: 0.5s;
    color: white;
  }

  .navbar-toggler.open {
    top: 1px;
    right: -300px;
    margin: 0;
    width: 50px;
    height: 30px;
    position: absolute;
    z-index: 1300;
  }

  .navbar-toggler-icon {
    width: 40px;
    height: 40px;
    background-image: url("pic/menu.png");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    top: 80px;
  }

  .navbar-toggler:focus {
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
  }

  .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler-icon:active {
    transform: rotate(90deg);
  }

  .navbar-toggler-icon:before {
    content: "";
  }

  .nav-flex {
    display: flex;
    align-items: center;
  }

  .c-nav {
    left: 50px;
  }

  .s-page button {
    width: 110px;
    height: 40px;
  }

  .s-page svg {
    width: 10px;
  }

  .s-page .text1 {
    font-size: 16px;
  }

  .Explore-Button {
    left: -69.5px;
    margin-top: -8px;
  }

}

@media (min-width: 992px) and (max-width: 1199.55px) {

  .header-logo {
    text-align: center;
    /* تصویر لوگو را در مرکز قرار می‌دهد */
  }

  .navbar-collapse {
    right: 90px;
  }


  .header-logo img {
    width: 80px;
    height: auto;
    top: 7px;
    position: absolute;
    right: 50px;
  }

  .line {
    color: white;
    font-size: 30px;
    margin-right: 7px;
  }



  .navbar-toggler {
    display: none;
    /* دکمه همبرگری را مخفی می‌کند */
    position: absolute;
  }

  .header-cta {
    text-decoration: none;
  }

  .header-cta-icon {
    font-size: 16px;
    margin-top: 2px;
  }

  .nav-link {
    color: white;
    position: relative;
  }

  .nav-link:hover {
    color: white;
  }

  .nav-flex {
    display: flex;
    align-items: center;
  }

  .navbar-collapse ul {
    width: 600px;
  }

  .s-page button {
    width: 110px;
  }

  .s-page svg {
    width: 10px;
  }

  .s-page .text1 {
    font-size: 16px;
  }

  .Explore-Button {
    left: -69.5px;
  }

}

@media (min-width: 1200px) and (max-width: 1400.55px) {
  .header {
    background-color: #233449;
    padding: 20px;
    height: 100px;
    top: 0;
    transition: all 0.5s ease;
  }

  .header.sticky {
    position: sticky;
    top: 0;
    /* هدر استیکی در بالای صفحه */
    z-index: 1050;
    /* ز-ایندکس بالا برای قرارگیری روی سایر عناصر */
    transform: translateY(-100px);
    /* انیمیشن از پایین به بالا */
    opacity: 0;
    /* شروع انیمیشن از شفافیت صفر */
  }

  .navbar-collapse {
    right: -550px;
  }

  .header.sticky-visible {
    transform: translateY(0);
    /* بازگشت به موقعیت اصلی */
    opacity: 1;
    /* بازگشت به شفافیت کامل */
  }

  .header-logo {
    text-align: center;
    /* تصویر لوگو را در مرکز قرار می‌دهد */
  }

  .header-logo img {
    width: 80px;
    height: auto;
    top: 7px;
    position: absolute;
    right: 40px;
  }

  .line {
    color: white;
    font-size: 30px;
    margin-right: 7px;
  }

  nav ul li {
    padding: 10px;
  }

  .navbar-toggler {
    display: none;
    /* دکمه همبرگری را مخفی می‌کند */
    position: absolute;
  }

  .header-cta {
    text-decoration: none;
  }

  .header-cta-icon {
    font-size: 16px;
    margin-top: 2px;
  }

  .navbar-collapse {
    left: 600px;
    position: relative;
  }

  .nav-link {
    color: white;
    position: relative;
  }

  .nav-link:hover {
    color: white;
  }

  .nav-flex {
    display: flex;
    align-items: center;
  }

  .navbar-collapse ul {
    width: 500px;
  }

  .navbar-collapse {
    margin-right: 70px;
  }
}


/* ?--footer-style-- */

.footer {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, auto));
  gap: 3.5rem;
  background: #233449;
  /* margin-top: 100%; */

}

section#footer-sec {
  padding: 80px 13% 50px;
  direction: rtl;
}

.footer-content {
  max-width: 220px;
  min-width: 160px;
}

.footer-content h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 16px;
}

.footer-img {
  width: 120px;
}

#email {
  background: #c8c8c831;
  padding: 10px;
  border-radius: 10px;
  color: #f0b690;
  font-weight: 500;
  display: flex;
  justify-content: center;
}

.footer-content li {
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 30px;
}

.footer-content li a {
  text-decoration: none;
  display: block;
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 400;
  transition: all .40s ease;
}

.footer-content li a:hover {
  transform: translateY(-3px) translateX(-5px);
  color: #f1d6c5;
}

.footer-content p {
  color: white;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 20px 0;
  line-height: 30px;
}

.footer-content p i {
  font-size: 22px;
}

.footer-content .icon a {
  display: inline-block;
  font-size: 25px;
  color: #a4a4a4;
  margin-right: 17px;
  transition: all .40s ease;
}

.footer-content .icon a:hover {
  color: rgb(47, 155, 201);
  transform: translateY(-5px);
}

#copy-right {
  background: #233449;
  direction: rtl;
  display: flex;
  justify-content: center;

}

#copy-right p {
  letter-spacing: 1px;
  font-size: 14px;
  padding: 10px;
  color: #9b9b9b;
}

hr#hr-footer {
  position: absolute;
  width: 100%;
  margin: 0;
  color: #a5a5a584;

}

@media (max-width:1120px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 2.5rem;
  }
}

@media (max-width:700px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, auto));
    gap: 2rem;
  }
}

@media (max-width:450px) {
  #copy-right p {
    font-size: 10px;
  }

  .footer-content h4 {
    font-size: 14px;
  }

  .footer-content p,
  .footer-content li,
  .footer-content li a {
    font-size: 12px;
  }

}

/* ?--end-footer-- */

/* !slider-style */

.slider-title {
  display: flex;
  align-items: center;
}

.slider-title h5 {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.icon-title-slider {
  background-color: #2e4560;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.icon-title-slider i {
  font-size: 30px;
  color: rgb(255, 166, 0);
}

.slider-button {
  width: 35px;
  height: 35px;
  background-color: #2e4560;
  border-radius: 3px;
  color: #7a92ae;
  border: none;
  margin: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-button i {
  font-size: 20px;
}

.slider-button:hover {
  background-color: #3c516a;
}

.btn-see-more {
  background-color: #233449;
  border: 1px solid rgb(255, 187, 0);
  border-radius: 3px;
  width: 95px;
  height: 35px;
  color: rgb(255, 187, 0);
  font-size: 12px;
  margin-right: 10px;
}

.btn-see-more:hover {
  color: rgb(255, 213, 43);
  box-shadow: inset 0px 0px 10px rgba(255, 102, 0, 0.5), inset 0px 0px 10px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 40px rgba(255, 102, 0, 0.5);

}

.main-slider-con {
  background-color: #233449;
  margin: 60px 0;
  width: 100%;
}

.slider-area {
  padding: 40px 100px;
  width: 100%;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  cursor: grab;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 calc(25% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
  background-color: #3c516a;
  min-height: 200px;
  min-width: 250px;
  max-width: 300px;
}

.card .s-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: white;
}

.card-title {
  text-align: center;
  padding: 15px;
  border-bottom: 1px dashed #7a92ae;
  color: white;
  font-size: 12px;
}

.card-text {
  font-size: 15px;
  font-weight: bold;
  color: white;
}

.card-slider {
  overflow: hidden;
}

.card-inf {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.btn-more-inf {
  font-size: 12px;
  background-color: #233449;
  border: 1px solid rgb(255, 187, 0);
  border-radius: 3px;
  width: 120px;
  height: 40px;
  color: rgb(255, 187, 0);
  padding: 5px;
}

.btn-more-inf:hover {
  color: rgb(255, 213, 43);
  box-shadow: inset 0px 0px 10px rgba(255, 102, 0, 0.5), inset 0px 0px 10px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 40px rgba(255, 102, 0, 0.5);

}

@media (max-width:1333px) {
  .slider-area {
    padding: 40px 80px;
  }
}

@media (max-width:1292px) {
  .card-text {
    font-size: 12px;
  }
}

@media (max-width:1270px) {

  .card {
    min-width: 200px;
  }
}

@media (max-width:1230px) {
  .btn-more-inf {
    width: 100px;
    font-size: 11px;
  }

  .card-text {
    font-size: 10px;
  }
}

@media (max-width:1150px) {
  .card-title {
    font-size: 10px;
  }

  .slider-area {
    padding: 40px 60px;
  }

  .btn-more-inf {
    width: 95px;
  }
}

@media (max-width:1055px) {
  .card {
    flex: 0 0 calc(33.33% - 20px);

  }
}

@media (max-width:817px) {
  .card {
    flex: 0 0 calc(50% - 20px);
  }

  .slider-area {
    padding: 40px 85px;
  }

  .slider-title h5 {
    font-size: 15px;
  }

  .icon-title-slider {
    width: 40px;
    height: 40px;
  }

  .icon-title-slider i {
    font-size: 25px;
  }

  .btn-see-more {
    width: 90px;
  }

  .btn-more-inf {
    width: 120px;
  }

  .card-text {
    font-size: 12px;
  }

  .card-title {
    font-size: 12px;
  }
}

@media (max-width:705px) {
  .slider-area {
    padding: 40px 40px;
  }
}

@media (max-width:616px) {
  .btn-more-inf {
    width: 100px;
  }
}

@media (max-width:575px) {

  .btn-more-inf {
    width: 85px;
    font-size: 9px;
  }

  .card-text {
    font-size: 10px;
  }

  .card-title {
    font-size: 10px;
  }

  .btn-see-more {
    font-size: 10px;
  }

  .slider-button {
    width: 30px;
    height: 30px;
  }

  .slider-button {
    display: none;
  }
}

@media (max-width:524px) {
  .card {
    flex: 0 0 calc(100% - 20px);
  }

  .slider-area {
    padding: 40px 100px;
  }

  .btn-more-inf {
    width: 120px;
    font-size: 11px;
  }

  .card-text {
    font-size: 12px;
  }

  .card-title {
    font-size: 12px;
  }

  .btn-see-more {
    width: 70px;
    height: 30px;
    font-size: 8px;
  }

  .slider-title h5 {
    font-size: 12px;
  }

  .icon-title-slider {
    width: 35px;
    height: 35px;
    margin-left: 5px;
  }

  .slider-button {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
}

@media (max-width:470px) {
  .btn-more-inf {
    width: 100px;
  }

  .slider-area {
    padding: 40px 70px;
  }
}

@media (max-width:390px) {
  .btn-more-inf {
    width: 90px;
    font-size: 10px;
  }

  .slider-title h5 {
    font-size: 11px;
  }

  .card-text {
    font-size: 10px;
  }

  .card-title {
    font-size: 10px;
  }

  .btn-see-more {
    width: 60px;
  }

  .slider-area {
    padding: 40px 40px;
  }
}

/* !end-slider-style */

/* book */

.book-header {
  gap: 1111px;
  padding: 20px 0;
  background-color: #233449;
}

.book-title1 {
  display: flex;
  align-items: center;
}

.book-title1 h5 {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.icon-title-book {
  background-color: #2e4560;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.icon-title-book i {
  font-size: 30px;
  color: rgb(255, 166, 0);
}

.btn-see-more {
  background-color: #233449;
  border: 1px solid rgb(255, 187, 0);
  border-radius: 3px;
  width: 95px;
  height: 35px;
  color: rgb(255, 187, 0);
  font-size: 12px;
  margin-right: 10px;
}

.btn-see-more:hover {
  color: rgb(255, 213, 43);
  box-shadow: inset 0px 0px 10px rgba(255, 102, 0, 0.5), inset 0px 0px 10px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 40px rgba(255, 102, 0, 0.5);

}

#max {
  max-width: 1000px;
}

.book-area {
  background: #ddcab270;
  width: 100%;
  margin: 70px 0;
}

.c-book {
  background-color: white;
  width: 210px;
  height: 350px;
}

.c-book:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-img-top {
  height: 250px;
  width: 210px;
  object-fit: cover;
}
.s-img{
    height: 250px;
    object-fit: contain;
    background-color: white;
}

.custom-card .card-body {
  text-align: center;
  padding: 10px;
}
.card-body a{
  text-decoration: none;
  color: black;
}
.card-body a:hover{
  color: #eeac30;
}

.book-title {
  font-size: 1rem;
}

.book-text {
  font-size: 0.9rem;
}

@media screen and (max-width: 1500px) and (min-width:1100px) {
  .book-header {
    gap: 800px;
  }
}

@media screen and (max-width: 1100px) and (min-width:992px) {
  .book-header {
    gap: 770px;
  }
}

@media screen and (max-width: 992px) and (min-width:800px) {
  #max {
    max-width: 700px;
  }

  .book-header {
    gap: 500px;
  }
}

@media screen and (max-width: 800px) and (min-width:700px) {
  #max {
    max-width: 500px;
  }

  .book-header {
    gap: 400px;
  }

  .book-title1 h5 {
    font-size: 15px;
  }

  .icon-title-book {
    width: 40px;
    height: 40px;
  }

  .icon-title-book i {
    font-size: 25px;
  }
}

@media screen and (max-width: 700px) and (min-width:600px) {
  #max {
    max-width: 500px;
  }

  .book-header {
    gap: 350px;
  }

  .book-title1 h5 {
    font-size: 15px;
  }

  .icon-title-book {
    width: 40px;
    height: 40px;
  }

  .icon-title-book i {
    font-size: 25px;
  }
}

@media screen and (max-width: 600px) and (min-width:400px) {
  #max {
    max-width: 350px;
  }

  .book-header {
    gap: 250px;
  }

  .book-title1 h5 {
    font-size: 15px;
  }

  .icon-title-book {
    width: 40px;
    height: 40px;
  }

  .icon-title-book i {
    font-size: 25px;
  }
}

@media screen and (max-width: 480px) and (min-width:400px) {
  #max {
    max-width: 300px;
  }

  .book-header {
    gap: 160px;
  }

  .book-title1 h5 {
    font-size: 12px;
  }

  .icon-title-book {
    width: 40px;
    height: 40px;
  }

  .icon-title-book i {
    font-size: 25px;
  }
}

@media screen and (max-width: 400px) and (min-width:300px) {
  #max {
    max-width: 260px;
  }

  .book-header {
    gap: 110px;
  }

  .book-title1 h5 {
    font-size: 12px;
  }

  .icon-title-book {
    width: 35px;
    height: 35px;
  }

  .icon-title-book i {
    font-size: 25px;
  }
}

/* end-book */

/* search-page */
.Explore-Button {
  width: fit-content;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  gap: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  background: linear-gradient(135deg, rgb(255, 222, 59) 40%, rgb(255, 128, 0) 80%);
  top: 17px;
}

.IconContainer1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

.telescope {
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: all 1s;
  transform: rotate(20deg);
}

.tripod {
  width: 60%;
  height: auto;
}

.text1 {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.Explore-Button:hover .telescope {
  transform: rotate(-35deg);
}

.s-page {
  position: absolute;
  right: 70%;
  z-index: 1;
}

/* end */
/* modal */
.modal-search {
  display: none;
  /* پنهان کردن مودال به صورت پیش‌فرض */
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  /* پس‌زمینه نیمه شفاف */
  backdrop-filter: blur(5px);
  /* تار کردن پس‌زمینه */
}

.modal-search-content {
  background-color: #233449;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  /* height: 300px; */
}

.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -10px;
  max-width: 30px;
}

.close:hover,
.close:focus {
  color: #d00808;
  text-decoration: none;
  cursor: pointer;
}

.input__container--variant {
  background: linear-gradient(to bottom, #F3FFF9, #F3FFF9);
  border-radius: 30px;
  max-width: 13em;
  padding: 1em 1em;
  margin: 0 auto;
}

.shadow__input--variant {
  filter: blur(25px);
  border-radius: 30px;
  background-color: #F3FFF9;
  opacity: 0.5;
}

.input__button__shadow--variant {
  border-radius: 15px;
  background-color: rgb(255, 128, 0);
  padding: 10px;
  border: none;
  width: 100%;
}

.input__button__shadow--variant:hover {
  background: linear-gradient(135deg, rgb(255, 222, 59) 40%, rgb(255, 128, 0) 80%);
}

.input__search--variant {
  width: 13em;
  align-items: center;
  border-radius: 13em;
  outline: none;
  border: none;
  padding: 0.8em;
  font-size: 1.2em;
  color: #002019;
  background-color: transparent;
}

.input__search--variant::placeholder {
  color: #002019;
  opacity: 0.7;
}

.input__container--variant {
  background: linear-gradient(to bottom, #F3FFF9, #F3FFF9);
  border-radius: 1.5em;
  max-width: 18em;
  padding: 1em;
  box-shadow: 0em 1em 3em #beecdc64;
}

.l-search {
  font-size: medium;
  font-weight: bold;
  color: white;
  position: relative;
  right: 105px;
  margin-bottom: 20px;
  bottom: 40px;
}

/* end modal */
@media (min-width:500px) and (max-width:634px) {
  .s-page button {
    width: 70px;
    height: 35px;
  }

  .s-page svg {
    width: 10px;
  }

  .s-page .text1 {
    font-size: 10px;
  }

  .Explore-Button {
    left: -15.5px;
    margin-top: -8px;
  }
  .l-search {
    font-size: 15px;
    right: 80px;
    margin-bottom: 20px;
    bottom: 10px;
    width: 400px;
  }
}

@media (min-width:200px) and (max-width:350px) {
  input:-internal-autofill-selected {
    max-width: 200px;
  }
  .l-search {
    font-size: 10px;
    right: 40px;
    margin-bottom: 20px;
    bottom: 20px;
    width: 400px;
  }
  .s-page button {
    width: 20px;
    height: 35px;
  }

  .s-page svg {
    width: 15px;
    margin-right: 15px;
  }

  .s-page .text1 {
    font-size: 0;
  }

  .Explore-Button {
    left: -0.1px;
    margin-top: -8px;
    margin-left: 55px;
  }

  .header-logo img {
    width: 50px;
    top: 20px;
    left: 5px;
  }

  .navbar-toggler {
    left: 30px;
  }

  .modal-search-content {
    height: 350px;
  }
}

@media (min-width:350px) and (max-width:400px) {
  input:-internal-autofill-selected {
    max-width: 220px;
  }
  .l-search {
    font-size: 12px;
    right: 40px;
    margin-bottom: 20px;
    bottom: 10px;
    width: 400px;
  }
  .modal-search-content {
    height: 350px;
  }

  .s-page button {
    width: 40px;
    height: 35px;
  }

  .s-page svg {
    width: 19px;
    margin-right: 15px;
  }

  .s-page .text1 {
    font-size: 0;
  }

  .Explore-Button {
    left: -0.1px;
    margin-top: -8px;
    margin-left: 55px;
  }

  .header-logo img {
    width: 50px;
    top: 20px;
    left: 5px;
  }

  .navbar-toggler {
    left: 30px;
  }
}

@media (min-width:401px) and (max-width:499.5px) {
  .s-page button {
    width: 80px;
    height: 35px;
  }
  .l-search {
    font-size: 13px;
    right: 40px;
    margin-bottom: 20px;
    bottom: 10px;
    width: 400px;
  }
  .s-page svg {
    width: 11px;
    /* margin-right: 5px; */
  }

  .s-page .text1 {
    font-size: 5;
  }

  .Explore-Button {
    left: -0.1px;
    margin-top: -8px;
    margin-left: 40px;
  }

  .header-logo img {
    width: 50px;
    top: 20px;
    left: 5px;
  }

  .navbar-toggler {
    left: 30px;
  }
}

/* ad */
.horizontal-card {
  width: 100%;
  height: 300px;
  /* ارتفاع مورد نظر را تنظیم کنید */
  background-color: #ddcab24f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-text {
  color: white;
}

.card-ad-content {
  padding: 20px;
  background-color: #192433;
  border-radius: 15px;
  width: 90%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Ensure relative positioning for absolute pseudo-element */
}
.card-ad-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 15px;
  animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8),
      0 0 20px rgba(255, 0, 0, 0.6),
      0 0 30px rgba(255, 0, 0, 0.4),
      0 0 40px rgba(255, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8),
      0 0 30px rgba(0, 255, 0, 0.6),
      0 0 40px rgba(0, 255, 0, 0.4),
      0 0 50px rgba(0, 255, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.8),
      0 0 20px rgba(0, 0, 255, 0.6),
      0 0 30px rgba(0, 0, 255, 0.4),
      0 0 40px rgba(0, 0, 255, 0.2);
  }
}

@media (max-width:510px) {
  .ad-text {
    font-size: 20px;
  }
}

@media (min-width:100px) and (max-width:360px) {
  .ad-text {
    font-size: 15px;
  }
}

/* ad */



