@font-face {
  font-family: iransans;
  src: url(../fontawesome-free-6.6.0-web/IRANSans.ttf);
}

@font-face {
  font-family: FontAwesome;
  src: url(../fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2);
}

.align-item-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.overflow-x-hideen {
  overflow-x: hidden !important;
}

.floating-img {
  animation: floating 1.5s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

:root {
  --main-color: #6adc3f;
  --dark-color: #002333;
  --back-light-color: #f3f3f3;

}

.main-color {
  color: var(--main-color);
}

a {
  text-decoration: none;
}

.w-fit {
  width: fit-content;
}

body {
  font-family: iransans;
  /* background-color: #f7f9fd; */

}

/* nav */
.w-logo {
  width: 18% !important;
}

@media(max-width:550px) {

  .w-logo {
    width: 50% !important;
  }
}

/* header */
.border-r {
  border-radius: 3.5rem;
}

.banner-container {
  overflow: hidden;
  border-radius: 3.3rem;
  /* border: 3px solid red; */
}
@media(max-width:768px) {
  .banner-container {
    border-radius: 1.3rem;
  }
}
@media(min-width:768px) {
  .the-px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

.banner .owl-dots {
  position: absolute;
  bottom: 44px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
  width: 100%;
}

.banner .owl-dot {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}


.banner .owl-dot.active {
  width: 30px;
  border-radius: 20px;
  background-color: var(--main-color) !important;
}


.banner .owl-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.owl-theme .owl-dots .owl-dot {
  background-color: white;
}

.banner .owl-dots .owl-dot span {
  display: none !important;
}

/* pic-us */
.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  position: relative;
  width: 80%;
}

.title-container h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 0 15px;
  color: var(--dark-color);
}

@media(max-width:768px) {
  .title-container h2 {
    font-size: 18px;
  }
}

.sub-title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #333;
  /* margin-top: 20px; */
}

.title-container h2::before,
.title-container h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #aaa;
}

.title-container h2::before {
  left: -42%;
}

.title-container h2::after {
  right: -42%;
}

.circle-container {
  gap: 20px;
}

.circle-container a {
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: transform 0.3s, box-shadow 0.3s;
  padding-left: 0;
  padding-right: 0;
}

@media(max-width:768px) {
  .circle-container a {
    width: 68px;
    height: 68px;
  }

  .circle-container {
    gap: 2px;
  }

}

.circle-container a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(90%);
  border-radius: 50%;

}

.circle-container a:hover img,
.circle-container a:focus img,
.circle-container a:active img {
  transform: scale(1.1);
  filter: grayscale(2%);
  /* box-shadow: -1px 7px 4px #0000004f; */
  /* 0px 4px 8px 0px #0000004f */
}

.sub-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
  position: relative;
  width: 80%;
}

.sub-title-container h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

/* demo btn */
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media(min-width:768px) {
  .button-container {
    width: 60%;
    margin: auto;
  }
}

.btn-card {
  position: relative;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  transition: transform 0.3s;
}

.btn-card .icon {
  font-size: 30px;
  margin-bottom: 13px;
  color: #4CAF50;
}

.btn-card span {
  font-size: 14px;
}

.btn-card:hover {
  transform: translateY(-8px);
}

/* دایره‌های کوچک */
.btn-card::before,
.btn-card::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease;
}

.btn-card::before {
  top: 10%;
  left: 50%;
}

.btn-card::after {
  bottom: 10%;
  right: 50%;
}

.btn-card:hover::before {
  opacity: 1;
  transform: scale(1.8) translate(-15px, -15px);
}

.btn-card:hover::after {
  opacity: 1;
  transform: scale(1.8) translate(15px, 15px);
}

/* section1 */
.section-container {
  /* max-width: 600px;
  margin: 0 auto; */
  padding: 20px;
  /* background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  direction: rtl; */
}

.title-container2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.title-container2 .title {
  font-size: 24px;
  margin: 0;
  padding-right: 10px;
  color: var(--dark-color);
}

.title-container2 .title-line {
  width: 40px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 4px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  margin: 10px 0 20px 0;
}

.steps {
  position: relative;
  /* padding-right: 40px; */
  border-right: 2px dashed #ccc;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.circle {
  width: 30px;
  height: 30px;
  /* background-color: var(--main-color); */
  background-color: #4caf50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  right: -15px;
  top: 0;
}

.text {
  padding-right: 50px;
  text-align: justify;
}

.text h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #333;
}

.text p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

@media(max-width:768px) {
  .text p {
    font-size: 14px;
  }
  .text h3{
    text-align: right;
    font-size: 17px;
  }
}

/* product-slider */
.product-card {
  width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0px auto;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px 0;
}

.pr-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  border-radius: 16px;

}

.pr-img-container img {
  max-width: 100%;
  display: block;
}

.product-title {
  font-size: 20px;
  margin: 15px 0 5px;
  color: #333;
}

.product-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

@media(max-width:768px) {
  .product-title {
    font-size: 16px;

  }
  .pr-img-container {
    border-radius: 9px;
  }

  .product-subtitle {
    font-size: 11px;
    text-align: center;

  }
}

.price-btn {
  display: inline-block;
  padding: 10px 20px;
  /* background: linear-gradient(135deg, #007bff, #0056d2); */
  background: linear-gradient(135deg, #6adc3f, #49a328);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.price-btn:hover {
  /* background: linear-gradient(135deg, #0056d2, #003e99); */
  background: linear-gradient(135deg, #5ac733, #419a20);
  transform: translateY(-2px);
}

@media(max-width:768px) {
  .w-small-70 {
    width: 70%;
  }

  .product-card {
    width: 100%;
  }

  .dir-small-col {
    flex-direction: column;
  }

}

/* دکمه های ناوبری   */
.pr-slider .owl-prev::before {
  font-family: FontAwesome !important;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 50%;
  background-color: transparent;
  font-size: 23px !important;
  content: "\f105" !important;
}

.pr-slider .owl-next::before {
  font-family: FontAwesome !important;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 50%;
  background-color: transparent;
  font-size: 23px !important;
  content: "\f104" !important;
}

.pr-slider .owl-prev,
.pr-slider .owl-next {
  background-color: transparent !important;
  /* color: #00233374 !important; */
  color: #0000002e !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pr-slider .owl-prev {
  position: absolute;
  right: 30px;
  top: 40%;
}

/* .pr-slider.owl-prev:hover,
.pr-slider.owl-next:hover {
  color: var(--color-1) !important;
} */

.pr-slider .owl-next {
  position: absolute;
  left: 30px;
  top: 40%;
}

@media(max-width:768px) {
  .pr-slider .owl-prev {
    right: 20px;

  }

  .pr-slider .owl-next {
    left: 20px;
  }
}

/*  */
.toggle-btn {
  display: none;
  padding: 10px 15px;
  border: none;
  font-size: 12px;
  background-color: transparent;
  color: var(--main-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.3s ease;
}

.toggle-btn .icon {
  margin-right: 5px;
  transition: transform 0.3s ease;
  animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(4px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.toggle-section {
  display: none;
  align-items: center;
}

@media (min-width: 768px) {
  .toggle-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .toggle-btn {
    display: none;
  }

  .gap-larg-4 {
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .toggle-btn {
    display: inline-block;
  }
}

/*  collapse */
.collapse-btn {
  background-color: white !important;
  color: #484848;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  padding-right: 1.7rem;
  padding-left: 1.7rem;
  box-shadow: 0px 15px 85px -21px rgba(0, 0, 0, 0.366) !important;
  font-size: 15px;
}

@media(max-width:768px) {
  .collapse-btn {
    font-size: 13px;
  }
  .question-title{
    width: 90%;
    line-height: 24px;
  }
}

.card-header {
  padding: 0 !important;
}

.collapse-btn:focus {
  outline: none;
}

.collapse-icon {
  color: var(--main-color);
  font-size: 30px;
  transition: transform 0.3s ease;
}

.card-body {
  padding-right: 1.7rem;
  padding-left: 1.7rem;
  color: #959595;
  background-color: white !important;
  border-radius: 0 0 1rem 1rem !important;
  font-size: 15px;
  text-align: justify;
}
.linktoorder{
color: var(--main-color);
display: block;
}
@media(max-width:768px) {
  .card-body {
    font-size: 13px;
    line-height: 24px;
  }
}

.accordion {
  background-color: transparent !important;
}

.card {
  --bs-card-bg: transparent !important;
  --bs-card-bg: #ffffff00 !important;
  --bs-card-border-color: rgb(0 0 0 / 0%) !important;
}

.card-header,
.collapse-btn {
  background-color: transparent !important;
  box-shadow: none;
}

.car-insurance-img {
  width: 75%;
}

@media (max-width: 768px) {
  .mt-small-2 {
    margin-top: 2rem;
  }
}

/* social media */

.social-container a {
  text-decoration: none;
  color: white;
  /* background-color: #333; */
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 35px;
  transition: all 0.3s ease;
}
.social-container a img{
  width: 50px;
}
@media(max-width:768px) {
  .social-container a {
    width: 50px;
    height: 50px;
    font-size: 28px;

  }
  .social-container a img{
    width:38px;
  }
}


.social-container a:hover {
  transform: scale(1.1);
}

.social-container .telegram {
  background-color: #0088cc;
}

.social-container .eitaa {
  /* background-color: #ff8202; */
  background: radial-gradient(circle at 30% 30%, #e87400, #ff8202, #ff8b17);
}

.social-container .instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}

/* footer */
.footer-container {
  background-color: #f9f9f9;
  box-shadow: -3px 20px 4px #0000001c;
  padding-bottom: 0 !important;
}

.footer {
  /* background-color: #222; */
  padding: 0;
  text-align: center;
}

.footer-top {
  color: white;
  background-color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-top-right .sub-title {
  font-size: 12px;
  color: #a7a7a7;
  display: block;
}

.footer-top .icon {
  margin-left: 5px;
  font-size: 28px;
  color: #f9f9f9;
}

.footer-top-left{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer-top-left a {
  color: var(--main-color);
  text-decoration: none;
  
}
.footer-top-left span {
  direction: ltr;
  color: #f9f9f9;
  font-size: 12px;
}

/* .footer-top-left a:hover {
  text-decoration: underline;
} */

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.footer-section-image {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.footer-section-image .img-container {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 5px 12px #adadad73;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.footer-section-images h3 {
  margin-bottom: 10px;
  color: var(--main-color);
  font-size: 16px;
}

.footer-section i {
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 10px;
}

.footer-section p {
  text-align: justify;
  color: rgb(87, 87, 87);
  font-size: 13px;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: var(--main-color);
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #5a5a5a;
  text-decoration: none;
  font-size: 14px;
}

/* .footer-section ul li a:hover {
  text-decoration: underline;
} */

.footer-section.images img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  margin: 0 5px;
  object-fit: cover;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom i {
  margin-left: 5px;
  color: #ffd700;
}
@media(max-width:768px){
  .footer-top-left a {
   font-size: 12px;
  }
  .footer-section h3{
    margin-bottom: 0;
  }
  .footer-section .license{
    margin-bottom:20px;
  }

}
/* .footer-section.icon-text {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .footer-section.icon-text {
    grid-column: span 1; 
  }
} */