* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  transition: color ease 0.2s;
}
a:hover {
  color: #f1f1f1;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 12px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
button:focus {
  box-shadow: none !important;
}
body {
  direction: rtl;
  font-family: Vazir;
}
main {
  transition: all ease-in-out 0.5;
}
/* Option Menu */
#option-menu {
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.2s;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
#option-menu.active {
  visibility: visible;
  opacity: 1;
}
#option-menu-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 380px;
  height: max-content;
  border-radius: 10px;
  transition: background-color ease-in-out 0.2s;
}
#option-menu-close {
  transition: all ease-in-out 0.2s;
  position: absolute;
  right: -16px;
  top: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
}
#option-menu-btn {
  position: fixed;
  left: 50px;
  bottom: 50px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 28px;
  color: #f1f1f1;
  z-index: 9;
}
#back-to-top-btn.active {
  visibility: visible;
  opacity: 1;
}
#back-to-top-btn {
  transition: all ease-in-out 0.2s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 50px;
  bottom: 130px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 28px;
  color: #f1f1f1;
  z-index: 9;
}
#dark-switch {
  cursor: default;
  padding: 24px 12px;
  border-radius: 5px;
  transition: background-color ease-in-out 0.2s;
}
.opt-title {
  font-size: 18px;
  font-weight: 600;
}
.opt-title .isax {
  font-size: 20px;
}
.opt-checkbox input {
  cursor: pointer;
  -webkit-appearance: none;
  width: 50px;
  height: 4px;
  position: relative;
  border-radius: 10px;
  transition: background-color ease-in-out 0.2s;
}
.opt-checkbox input:checked::before {
  right: calc(100% - 25px);
}
.opt-checkbox input::before {
  border: 2px solid;
  transition: all ease 0.2s;
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 0;
  top: -11px;
}
#choose-color {
  transition: background-color ease-in-out 0.2s;
  border-radius: 5px;
  padding: 12px;
  cursor: default;
}
.color-card {
  border-radius: 50%;
  cursor: pointer;
}
.color-card .color-icon {
  font-size: 24px;
}
.color-card span {
  display: none;
}
.color-card.active span {
  display: flex;
}
.color-green {
  background-color: #21c6cb;
}
.color-red {
  background-color: #fe676e;
}
.color-purple {
  background-color: #a44db8;
}
.color-yellow {
  background-color: #fcd04d;
}
.color-navy {
  background-color: #02416c;
}

/* Mobile Menu */
.mobile-menu-sec {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.2s;
  z-index: 11;
  position: fixed;
  height: 100vh;
  width: 100%;
}
.mobile-menu-sec.active {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.mobile-menu-sec.active .mobile-menu {
  right: 0;
}
.mobile-menu {
  transition: all ease-in-out 0.2s;
  position: absolute;
  z-index: 12;
  width: 280px;
  height: 100%;
  right: -280px;
  top: 0;
}
.mobile-menu-close {
  opacity: 0.5;
  font-size: 28px;
}
.mobile-menu-list li {
  display: flex;
  margin: 6px 0;
}
.mobile-menu-list li a {
  transition: all ease-in-out 0.2s;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  height: 100%;
}

/* Header */
header {
  transition: all ease-in-out 0.2s;
  z-index: 8;
  padding: 1rem 0;
}
header.scroll {
  backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
#logo img {
  width: 100px;
  height: auto;
  transition: all ease-in-out 0.2s;
}
header.scroll #logo img {
  padding: 4px 0 !important;
  width: 60px;
}
.mobile-toggle .toggle-icon {
  font-size: 24px;
}
#top-menu ul {
  position: relative;
}
.menu-marker {
  position: absolute;
  height: 2px;
  bottom: 0;
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
}
#top-menu .nav-link {
  display: flex;
  align-items: center;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
#start-button {
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  width: max-content;
  height: 100%;
}
/* Main */
.section-title {
  cursor: default;
}
.line-break {
  position: relative;
  width: 200px;
  height: 2px;
}
.line-break-child {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: calc(50% - 3px);
  top: calc(-50% - 3px);
  transform: rotate(45deg);
}
.section-title h3 {
  width: fit-content;
  font-weight: 600;
  font-size: 24px;
}
.section-description {
  cursor: default;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8rem;
}
#home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color ease-in-out 0.2s;
  height: 100vh;
  background-image: url(../img/bg7.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.home-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home-contents {
  cursor: default;
  z-index: 1;
}
.home-head h1 {
  font-size: 4rem;
}
.home-body p {
  font-size: 16px;
}
.home-body a {
  border-radius: 50px;
  width: 170px;
  height: 50px;
  padding: 12px 28px;
}
.about-items,
.comments-items {
  border-radius: 10px;
}
.about-card,
.comments-card {
  cursor: grab;
}
.about-title h3,
.comments-title h3 {
  font-size: 2.6rem;
  font-weight: 600;
}
.about-subtitle,
.comments-subtitle {
  font-size: 18px;
  font-weight: 300;
}
.about-subtitle h3 {
  font-size: 20px;
  font-weight: 500;
}
.about-subtitle span {
  font-size: 20px;
  font-weight: 500;
}
#counts {
  cursor: default;
}
.count-counter {
  font-size: 3rem;
  font-weight: 600;
}
.count-title h4 {
  font-size: 16px;
  font-weight: 400;
}
.comments-subtitle h3 {
  font-size: 18px;
  font-weight: 600;
}
.about-description,
.comments-description {
  font-size: 16px;
  font-weight: 300;
}
.comments-card {
  position: relative;
  margin-top: 50px;
  padding-top: 80px !important;
  border-radius: 10px;
}
.comments-avatar {
  border: 6px solid;
  position: absolute;
  left: calc(50% - 50px);
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.comments-avatar img {
  object-fit: cover;
}
.comments-items .slick-arrow {
  top: calc(50% + 15px);
}
.main-section {
  scroll-behavior: smooth;
  scroll-margin-top: 5rem;
}
.services-cards {
  direction: rtl;
}
.service-card-icon {
  font-size: 2rem;
}
.slick-arrow {
  z-index: 7;
  font-size: 22px;
  position: absolute;
  top: calc(50% - 11px);
}
.slick-arrow.prev-btn {
  right: 0;
}
.slick-arrow.next-btn {
  left: 0;
}
.service-card {
  transition: all ease-in-out 0.2s;
  border-radius: 10px;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-description {
  margin-top: 12px;
  line-height: 1.6rem;
  font-size: 16px;
  font-weight: 300;
}
.service-card-title {
  font-weight: 600;
}
.service-card-title h5 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.example-tabs button {
  font-size: 16px;
  transition: all ease-in-out 0.2s;
  border-radius: 50px;
  padding: 0 24px;
  height: 50px;
  width: max-content;
}
.example-grid {
  transition: all ease-in-out 0.2s;
  direction: rtl;
  width: 80%;
}
.grid-item a:hover .example-hover {
  visibility: visible;
  opacity: 1;
}
.example-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.example-hover {
  transition: all ease-in-out 0.2s;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 500;
  visibility: hidden;
  opacity: 0;
}
.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plans-card {
  overflow: hidden;
  position: relative;
  cursor: default;
  border-radius: 10px;
  height: 600px;
  transition: all ease-in-out 0.2s;
}
.plans-card:hover {
  transform: translateY(-10px) !important;
}
.plans-ribbon {
  position: absolute;
  left: -60px;
  top: 26px;
  background-color: #d1391a;
  color: #f1f1f1;
  width: 200px;
  transform: rotate(-45deg);
  font-size: 14px;
  font-weight: 400;
}
.plans-text {
  font-size: 15px;
  font-weight: 500;
}
.plans-list .success {
  color: #29e100;
}
.plans-list .danger {
  color: #e12500;
}
.plans-description {
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
}
.plans-card-footer button {
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
}
.plans-header-icon {
  font-size: 2.6rem;
}
.plans-title h4 {
  font-size: 22px;
  font-weight: 600;
}
.plans-title span {
  font-size: 12px;
  font-weight: 400;
}
.old-price {
  font-size: 14px;
  font-weight: 400;
}
.new-price span {
  font-size: 22px;
  font-weight: 600;
}
#offer {
  cursor: default;
}
.main-offer-text h3 {
  line-height: 2rem;
  font-size: 1.4rem;
}
.main-offer-cta {
  height: 200px;
}
.main-offer-btn button {
  font-weight: 400;
  font-size: 18px;
  border-radius: 50px;
  height: 50px;
  width: max-content;
  padding: 0 24px;
}
.contact-us-form {
  direction: rtl;
}
.contact-us-form label {
  right: 0;
  transform: translateX(-10px);
  transition: all ease-in-out 0.1s;
}
.contact-us-form input,
.contact-us-form textarea {
  transition: all ease-in-out 0.2s;
  border-radius: 16px;
}
.contact-us-form .form-control:focus ~ label {
  transform: translateX(-10px) translateY(-0.8rem);
  font-size: 14px;
}
.contact-us-form button {
  padding: 0 36px;
  border-radius: 50px;
  height: 50px;
  width: max-content;
}
.contact-info {
  text-align: justify;
  font-size: 16px;
  font-weight: 300;
  /* height: calc(100% - 74px); */
  padding: 1rem 2rem;
  border-radius: 16px;
  line-height: 2.5rem;
  cursor: default;
}
.contact-info a {
  letter-spacing: 0.2rem;
}
.contact-info-title {
  font-weight: 600;
  font-size: 18px;
}
.contact-info-body {
  border-right: 1px solid;
  font-size: 16px;
}
.contact-info-title .isax {
  font-size: 18px;
}
/* Footer */
.social-image {
  width: 24px;
  height: 24px;
}
.copyright-text {
  cursor: default;
  font-size: 14px;
  font-weight: 300;
}
