body {
  font-family: var(--third-font, "Inter"), sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--secondary-font, "Apfel Grotezk"), sans-serif;
}

.font-1,
.intro-title,
.s-title,
.section-title .title,
.wg-blog .content .title,
.wg-counter .counter {
  font-family: var(--secondary-font, "Apfel Grotezk"), sans-serif;
}

.font-2,
.wg-counter .counter {
  font-family: var(--primary-font, "EB Garamond"), serif;
}

.font-3,
.text-body,
.text-body-2,
.text-body-3 {
  font-family: var(--third-font, "Inter"), sans-serif;
}

.wg-work a.work-image {
  display: block;
}

.tf-btn-action .text,
.tf-btn-action .icon {
  color: var(--button-text-color, #000000);
}

.dark-mode .tf-btn-action .text,
.dark-mode .tf-btn-action .icon {
  color: var(--button-text-color, #000000);
}

.ck-content h1, .ck-content h2, .ck-content h3, .ck-content h4, .ck-content h5, .ck-content h6 {
  margin-bottom: 1rem;
}
.ck-content p {
  margin-bottom: 1rem;
}
.ck-content img {
  max-width: 100%;
  height: auto;
}
.ck-content ul, .ck-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.section-post .post-header {
  margin-bottom: 2rem;
}
.section-post .post-title {
  margin-bottom: 1rem;
}
.section-post .post-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-post .post-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.section-post .post-image img {
  width: 100%;
}
.section-post .post-content {
  margin-bottom: 2rem;
}
.section-post .post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.section-post .post-tags .tag-item {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
.section-post .post-tags .tag-item:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.related-posts .section-title {
  margin-bottom: 1.5rem;
}
.related-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.related-posts .post-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}
.related-posts .post-card:hover {
  transform: translateY(-4px);
}
.related-posts .post-card .post-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-posts .post-card .post-card-content {
  padding: 1rem;
}
.related-posts .post-card .post-card-title {
  margin-bottom: 0.5rem;
  font-size: 22px;
  line-height: 30px;
}
.related-posts .post-card .post-card-title a {
  text-decoration: none;
}

.section-blog-list .blog-list-header {
  margin-bottom: 2rem;
  text-align: center;
}
.section-blog-list .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.section-blog-list .post-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}
.section-blog-list .post-card:hover {
  transform: translateY(-4px);
}
.section-blog-list .post-card .post-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blog-list .post-card .post-card-content {
  padding: 1.25rem;
}
.section-blog-list .post-card .post-card-category {
  margin-bottom: 0.5rem;
}
.section-blog-list .post-card .post-card-category a {
  text-decoration: none;
  color: var(--primary-color);
}
.section-blog-list .post-card .post-card-title {
  margin-bottom: 0.75rem;
  font-size: 22px;
  line-height: 30px;
}
.section-blog-list .post-card .post-card-title a {
  text-decoration: none;
}
.section-blog-list .post-card .post-card-excerpt {
  margin-bottom: 0.75rem;
}
.section-blog-list .post-card .post-card-meta {
  margin-top: auto;
}
.section-blog-list .blog-pagination {
  margin-top: 3rem;
}
.section-blog-list .no-posts-message {
  text-align: center;
  padding: 3rem 0;
}

.pagination-nav {
  display: flex;
  justify-content: center;
}
.pagination-nav .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-nav .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-nav .page-item.active .page-link {
  background-color: var(--primary-color);
  color: #fff;
}
.pagination-nav .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.pagination-nav .page-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.section-project .project-header {
  margin-bottom: 2rem;
}
.section-project .project-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.section-project .project-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.section-project .project-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.section-project .project-description {
  margin-bottom: 2rem;
}
.section-project .project-action {
  margin-top: 2rem;
}

.section-service-detail .service-header {
  margin-bottom: 2rem;
}
.section-service-detail .service-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.section-service-detail .service-description {
  margin-bottom: 2rem;
}
.section-service-detail .service-action {
  margin-top: 2rem;
}

.page-title {
  margin-bottom: 0;
}

.page-content {
  margin-bottom: 2rem;
}

.section-pricing .sect-subtitle {
  max-width: 600px;
}
.section-pricing .pricing-grid {
  gap: 24px;
}
.section-pricing .pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--black-08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.section-pricing .pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.section-pricing .pricing-card.is-popular {
  border-color: var(--primary);
}
.section-pricing .pricing-card.is-popular .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--black);
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.section-pricing .pricing-header {
  margin-bottom: 24px;
  text-align: center;
}
.section-pricing .pricing-header .pricing-name {
  margin-bottom: 8px;
}
.section-pricing .pricing-header .pricing-description {
  margin: 0;
}
.section-pricing .pricing-price {
  text-align: center;
  margin-bottom: 8px;
}
.section-pricing .pricing-price .price {
  color: var(--black-72);
}
.section-pricing .pricing-price .duration {
  margin-left: 4px;
}
.section-pricing .pricing-annual {
  text-align: center;
  margin-bottom: 24px;
}
.section-pricing .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.section-pricing .pricing-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--black-08);
}
.section-pricing .pricing-features .feature-item:last-child {
  border-bottom: none;
}
.section-pricing .pricing-features .feature-item .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.section-pricing .pricing-features .feature-item.available .icon {
  color: var(--primary);
}
.section-pricing .pricing-features .feature-item.unavailable {
  opacity: 0.5;
}
.section-pricing .pricing-features .feature-item.unavailable .icon {
  color: var(--black-50);
}
.section-pricing .pricing-features .feature-item.unavailable span {
  text-decoration: line-through;
}
.section-pricing .pricing-action {
  margin-top: auto;
}
.section-pricing .pricing-action .tf-btn-action {
  justify-content: center;
}

.dark-mode .section-pricing .pricing-card {
  background: var(--black-08);
}
.dark-mode .section-pricing .pricing-price .price {
  color: var(--white);
}

.section-package .package-header {
  margin-bottom: 2rem;
}
.section-package .package-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.section-package .package-image img {
  width: 100%;
}
.section-package .package-description {
  margin-bottom: 2rem;
}
.section-package .package-content {
  margin-bottom: 2rem;
}

.section-gallery .gallery-detail {
  max-width: 1200px;
  margin: 0 auto;
}
.section-gallery .gallery-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-gallery .gallery-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-gallery .gallery-title {
    font-size: 2rem;
  }
}
.section-gallery .gallery-description {
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-gallery .gallery-images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  height: auto !important;
  position: static !important;
}
@media (max-width: 991px) {
  .section-gallery .gallery-images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .section-gallery .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.section-gallery .gallery-image-item {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}
.section-gallery .gallery-image-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.section-gallery .gallery-image-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M14 10l6.1-6.1M9 21H3v-6M10 14l-6.1 6.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}
.section-gallery .gallery-image-item a {
  display: block;
}
.section-gallery .gallery-image-item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.section-gallery .gallery-image-item:hover::before {
  opacity: 1;
}
.section-gallery .gallery-image-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.section-gallery .gallery-image-item:hover img {
  transform: scale(1.05);
}

.section-galleries .galleries-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-galleries .galleries-header .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-galleries .galleries-header .section-title {
    font-size: 2rem;
  }
}
.section-galleries .galleries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .section-galleries .galleries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.section-galleries .gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-galleries .gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.section-galleries .gallery-card:hover .gallery-card-image img {
  transform: scale(1.05);
}
.section-galleries .gallery-card:hover .gallery-card-image::after {
  opacity: 1;
}
.section-galleries .gallery-card:hover .gallery-card-title a {
  color: var(--primary-color);
}
.section-galleries .gallery-card .gallery-card-image {
  position: relative;
  overflow: hidden;
}
.section-galleries .gallery-card .gallery-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.section-galleries .gallery-card .gallery-card-image a {
  display: block;
}
.section-galleries .gallery-card .gallery-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-galleries .gallery-card .gallery-card-content {
  padding: 1.25rem 1.5rem;
}
.section-galleries .gallery-card .gallery-card-title {
  margin-bottom: 0.375rem;
  font-size: 1.25rem;
  line-height: 1.4;
}
.section-galleries .gallery-card .gallery-card-title a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.section-galleries .gallery-card .gallery-card-author {
  margin: 0;
  font-size: 0.875rem;
}
.section-galleries .no-galleries-message {
  text-align: center;
  padding: 4rem 0;
}
.section-galleries .no-galleries-message p {
  font-size: 1.125rem;
}

.section-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-404 .error-content {
  max-width: 500px;
}
.section-404 .error-code {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.section-404 .error-title {
  margin-bottom: 1rem;
}
.section-404 .error-desc {
  margin-bottom: 2rem;
}

.dark-mode .post-tags .tag-item {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .post-tags .tag-item:hover {
  color: #000;
}
.dark-mode .related-posts {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .related-posts .post-card {
  background: rgba(255, 255, 255, 0.03);
}
.dark-mode .section-blog-list .post-card {
  background: rgba(255, 255, 255, 0.03);
}
.dark-mode .pagination-nav .page-link {
  background: rgba(255, 255, 255, 0.05);
}
.dark-mode .section-galleries .gallery-card {
  background: rgba(255, 255, 255, 0.03);
}
.dark-mode .section-galleries .gallery-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.dark-mode .section-gallery .gallery-image-item {
  background: rgba(255, 255, 255, 0.03);
}
.dark-mode .section-gallery .gallery-image-item::after {
  background-color: rgba(255, 255, 255, 0.9);
}

.brand-slider-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-mode: alpha;
  mask-repeat: no-repeat;
}
@media (min-width: 992px) {
  .brand-slider-wrap {
    max-width: 464px;
  }
}
.brand-slider-wrap .brand-slider .slick-track {
  display: flex;
  align-items: center;
}
.brand-slider-wrap .brand-slider .slick-slide {
  margin: 0 14px;
}
.brand-slider-wrap .brand-slider .brand-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 142px;
}
.brand-slider-wrap .brand-slider .brand-item img {
  width: 142px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.offcanvas-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas-menu-list .offcanvas-menu-item {
  position: relative;
}
.offcanvas-menu-list .offcanvas-menu-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.offcanvas-menu-list .offcanvas-menu-item > a svg, .offcanvas-menu-list .offcanvas-menu-item > a i {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.offcanvas-menu-list .offcanvas-menu-item > a:hover {
  color: var(--primary-color);
}
.offcanvas-menu-list .offcanvas-menu-item > a:hover svg, .offcanvas-menu-list .offcanvas-menu-item > a:hover i {
  opacity: 1;
}
.offcanvas-menu-list .offcanvas-menu-item:last-child > a {
  border-bottom: none;
}
.offcanvas-menu-list .offcanvas-menu-item.active > a {
  color: var(--primary-color);
}
.offcanvas-menu-list .offcanvas-menu-item.has-children > a {
  padding-right: 26px;
}
.offcanvas-menu-list .offcanvas-menu-item.has-children > .menu-expand {
  position: absolute;
  right: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.offcanvas-menu-list .offcanvas-menu-item.has-children > .menu-expand i {
  font-size: 12px;
  transition: transform 0.3s;
}
.offcanvas-menu-list .offcanvas-menu-item.has-children.expanded > .menu-expand i {
  transform: rotate(180deg);
}
.offcanvas-menu-list .offcanvas-sub-menu {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 0;
  display: none;
}
.offcanvas-menu-list .offcanvas-sub-menu .offcanvas-menu-item > a {
  font-size: 13px;
  padding: 7px 0;
}
.offcanvas-menu-list .offcanvas-menu-item.expanded > .offcanvas-sub-menu {
  display: block;
}

.offcanvas-language-list {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 0.5rem;
}
.offcanvas-language-list .offcanvas-menu-item > a img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

.dark-mode .offcanvas-language-list {
  border-top-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .offcanvas-menu-list .offcanvas-menu-item > a {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.language-dropdown .language-dropdown-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: inherit;
  transition: all 0.3s;
}
.language-dropdown .language-dropdown-button:hover, .language-dropdown .language-dropdown-button:focus, .language-dropdown .language-dropdown-button.show {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
  color: inherit;
  box-shadow: none;
}
.language-dropdown .language-dropdown-button::after {
  margin-left: 4px;
  border-top-color: currentColor;
}
.language-dropdown .language-dropdown-button img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.language-dropdown .dropdown-menu {
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.language-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: inherit;
  transition: all 0.2s;
}
.language-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}
.language-dropdown .dropdown-menu .dropdown-item img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

.dark-mode .language-dropdown .language-dropdown-button {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .language-dropdown .language-dropdown-button:hover, .dark-mode .language-dropdown .language-dropdown-button:focus, .dark-mode .language-dropdown .language-dropdown-button.show {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}
.dark-mode .language-dropdown .dropdown-menu {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.dark-mode .language-dropdown .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
}
.dark-mode .language-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(var(--primary-color-rgb), 0.15);
}

.service-title-link,
.project-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.service-title-link:hover,
.project-title-link:hover {
  color: var(--primary-color);
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-detail-link:hover {
  gap: 10px;
}
.service-detail-link svg {
  width: 16px;
  height: 16px;
}

.newsletter-popup .modal-dialog {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-4);
}
.newsletter-popup .modal-dialog .newsletter-popup-bg {
  background-color: var(--surface);
  padding: 0;
}
.newsletter-popup .modal-dialog .newsletter-popup-bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.newsletter-popup .modal-dialog .modal-content {
  border: none;
  background: transparent;
}
.newsletter-popup .modal-dialog .modal-content .btn-close {
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  background-color: var(--surface);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 10;
}
.newsletter-popup .modal-dialog .modal-content .btn-close:hover {
  opacity: 1;
  background-color: var(--bg);
}
.newsletter-popup .modal-dialog .modal-content .newsletter-popup-content {
  padding: 2rem;
}
@media (min-width: 768px) {
  .newsletter-popup .modal-dialog .modal-content .newsletter-popup-content {
    padding: 3rem 2.5rem;
  }
}
.newsletter-popup .modal-dialog .modal-content .modal-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.newsletter-popup .modal-dialog .modal-content .modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .newsletter-popup .modal-dialog .modal-content .modal-title {
    font-size: 2rem;
  }
}
.newsletter-popup .modal-dialog .modal-content .modal-text {
  font-size: 15px;
  color: var(--black-56) !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.newsletter-popup .modal-dialog .modal-content form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--black-72);
  margin-bottom: 0.5rem;
}
.newsletter-popup .modal-dialog .modal-content form label.required:after {
  content: " *";
  color: var(--error);
}
.newsletter-popup .modal-dialog .modal-content form input[type=email],
.newsletter-popup .modal-dialog .modal-content form input[type=text] {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--black-15);
  border-radius: 12px;
  background-color: var(--white);
  color: var(--black);
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}
.newsletter-popup .modal-dialog .modal-content form input[type=email]::-moz-placeholder, .newsletter-popup .modal-dialog .modal-content form input[type=text]::-moz-placeholder {
  color: var(--black-40);
}
.newsletter-popup .modal-dialog .modal-content form input[type=email]::placeholder,
.newsletter-popup .modal-dialog .modal-content form input[type=text]::placeholder {
  color: var(--black-40);
}
.newsletter-popup .modal-dialog .modal-content form input[type=email]:focus,
.newsletter-popup .modal-dialog .modal-content form input[type=text]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.1);
  outline: none;
}
.newsletter-popup .modal-dialog .modal-content form button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background-color: var(--primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.newsletter-popup .modal-dialog .modal-content form button[type=submit]:hover {
  background-color: #00c548;
  transform: translateY(-1px);
}
.newsletter-popup .modal-dialog .modal-content form button[type=submit]:active {
  transform: translateY(0);
}
.newsletter-popup .modal-dialog .modal-content form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.newsletter-popup .modal-dialog .modal-content form .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--black-15);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.newsletter-popup .modal-dialog .modal-content form .form-check label {
  font-size: 13px;
  color: var(--black-56);
  margin-bottom: 0;
  line-height: 1.5;
}
.newsletter-popup .modal-dialog .modal-content .button-loading {
  background-color: var(--bg) !important;
  border: 1px solid var(--black-15);
  cursor: not-allowed;
  color: transparent !important;
  position: relative;
}
.newsletter-popup .modal-dialog .modal-content .button-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  border-bottom-color: transparent;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  animation: newsletter-spinner 0.8s linear infinite;
}
.newsletter-popup .modal-dialog .modal-content .button-loading:hover {
  transform: none;
}
.newsletter-popup .modal-dialog .modal-content .newsletter-message {
  margin: 0 0 1rem 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
  width: 100%;
  border-left: none;
}
.newsletter-popup .modal-dialog .modal-content .newsletter-message.newsletter-success-message {
  background-color: rgba(0, 222, 81, 0.1);
  border: 1px solid rgba(0, 222, 81, 0.3);
  color: var(--success);
}
.newsletter-popup .modal-dialog .modal-content .newsletter-message.newsletter-error-message {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: var(--error);
}
.newsletter-popup .modal-dialog .modal-content .captcha-disclaimer {
  font-size: 11px;
  color: var(--black-40);
  padding: 8px 0 !important;
}

@keyframes newsletter-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fob-comment-form-section .fob-comment-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.fob-comment-form-section .fob-comment-form-note {
  font-size: 14px;
  color: var(--black-56);
  margin-bottom: 1.5rem;
}
.fob-comment-form-section form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--black-72);
  margin-bottom: 0.5rem;
}
.fob-comment-form-section form label.required:after {
  color: var(--error);
}
.fob-comment-form-section form input[type=email],
.fob-comment-form-section form input[type=text],
.fob-comment-form-section form input[type=url],
.fob-comment-form-section form textarea {
  height: auto;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--black-15) !important;
  border-radius: 12px !important;
  background-color: var(--white) !important;
  color: var(--black);
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}
.fob-comment-form-section form input[type=email]::-moz-placeholder, .fob-comment-form-section form input[type=text]::-moz-placeholder, .fob-comment-form-section form input[type=url]::-moz-placeholder, .fob-comment-form-section form textarea::-moz-placeholder {
  color: var(--black-40);
}
.fob-comment-form-section form input[type=email]::placeholder,
.fob-comment-form-section form input[type=text]::placeholder,
.fob-comment-form-section form input[type=url]::placeholder,
.fob-comment-form-section form textarea::placeholder {
  color: var(--black-40);
}
.fob-comment-form-section form input[type=email]:focus,
.fob-comment-form-section form input[type=text]:focus,
.fob-comment-form-section form input[type=url]:focus,
.fob-comment-form-section form textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.1);
  outline: none;
}
.fob-comment-form-section form textarea {
  min-height: 120px;
  resize: vertical;
}
.fob-comment-form-section form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background-color: var(--primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fob-comment-form-section form button[type=submit]:hover {
  background-color: #00c548;
  transform: translateY(-1px);
}
.fob-comment-form-section form button[type=submit]:active {
  transform: translateY(0);
}
.fob-comment-form-section form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.fob-comment-form-section form .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  border: 1px solid var(--black-15) !important;
  border-radius: 4px !important;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.fob-comment-form-section form .form-check label {
  font-size: 13px;
  color: var(--black-56);
  margin-bottom: 0;
  line-height: 1.5;
}

.fob-comment-list-section .fob-comment-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
}
.fob-comment-list-section .fob-comment-item-author {
  color: var(--black);
}
.fob-comment-list-section .fob-comment-item-date {
  color: var(--black-56);
}
.fob-comment-list-section .fob-comment-item-pending {
  color: var(--black-56);
}
.fob-comment-list-section .fob-comment-item-reply {
  color: var(--black-56);
  border-bottom-color: var(--black-15);
  transition: color 0.3s ease;
}
.fob-comment-list-section .fob-comment-item-reply:hover {
  color: var(--primary);
}
.fob-comment-list-section .fob-comment-item-admin-badge {
  background-color: var(--primary);
  color: var(--black);
}

.cancel-comment-reply-link {
  color: var(--black-56);
  transition: color 0.3s ease;
}
.cancel-comment-reply-link:hover {
  color: var(--primary);
}

.social-share-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.social-share-section .share-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--black-56);
  margin-bottom: 0.75rem;
}
.social-share-section .social-share-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-share-section .social-share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--black-72);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-share-section .social-share-links a svg {
  width: 18px;
  height: 18px;
}
.social-share-section .social-share-links a:hover {
  background: var(--primary);
  color: var(--black);
}

.dark-mode .social-share-section {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .social-share-section .social-share-links a {
  background: rgba(255, 255, 255, 0.05);
}
.dark-mode .social-share-section .social-share-links a:hover {
  background: var(--primary);
  color: var(--black);
}

.section-intro .intro-author .info_name {
  color: var(--black);
}
.section-intro .intro-author .info_duty {
  color: var(--black-72);
}
.section-intro .s-title {
  color: var(--black);
}
.section-intro .intro-title {
  color: var(--black);
}
.section-intro .wg-counter .counter {
  color: var(--black);
}
.section-intro .wg-counter .text {
  color: var(--black-72);
}
.section-intro .intro-client {
  color: var(--black-72);
}

.dark-mode .section-intro .intro-author .info_name {
  color: var(--white);
}
.dark-mode .section-intro .s-title {
  color: var(--white);
}
.dark-mode .section-intro .intro-title {
  color: var(--white);
}
.dark-mode .section-intro .wg-counter .counter {
  color: var(--white);
}

.sidebar-user .user-info.has-backdrop {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  margin: -16px;
  margin-top: 0;
}

.section-intro .intro-author.has-backdrop {
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
}
.section-intro .intro-author.has-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  z-index: -1;
}

.dark-mode .section-intro .intro-author.has-backdrop::before {
  background: rgba(0, 0, 0, 0.65);
}

.show-admin-bar .tf-left-bar {
  top: 160px;
}

.show-admin-bar .action-open-mobile {
  top: 64px;
}

@media (min-width: 992px) {
  .show-admin-bar .sidebar-user {
    top: 72px;
  }
  .show-admin-bar .wg-work .wrap {
    top: 48px;
  }
}
.section-contact .form-contact .field-ip {
  margin-bottom: 15px;
}
.section-contact .form-contact input[type=email],
.section-contact .form-contact input[type=text],
.section-contact .form-contact input[type=tel],
.section-contact .form-contact textarea {
  height: auto;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--black-15) !important;
  border-radius: 12px !important;
  background-color: var(--white) !important;
  color: var(--black);
  font-size: 14px;
  transition: all 0.3s ease;
}
.section-contact .form-contact input[type=email]::-moz-placeholder, .section-contact .form-contact input[type=text]::-moz-placeholder, .section-contact .form-contact input[type=tel]::-moz-placeholder, .section-contact .form-contact textarea::-moz-placeholder {
  color: var(--black-40);
}
.section-contact .form-contact input[type=email]::placeholder,
.section-contact .form-contact input[type=text]::placeholder,
.section-contact .form-contact input[type=tel]::placeholder,
.section-contact .form-contact textarea::placeholder {
  color: var(--black-40);
}
.section-contact .form-contact input[type=email]:focus,
.section-contact .form-contact input[type=text]:focus,
.section-contact .form-contact input[type=tel]:focus,
.section-contact .form-contact textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.1);
  outline: none;
}
.section-contact .form-contact textarea {
  min-height: 120px;
  resize: vertical;
}
.section-contact .form-contact .contact-message {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}
.section-contact .form-contact .contact-message.contact-success-message {
  background-color: rgba(0, 222, 81, 0.1);
  border: 1px solid rgba(0, 222, 81, 0.3);
  color: var(--success);
}
.section-contact .form-contact .contact-message.contact-error-message {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: var(--error);
}

.dark-mode .section-contact .form-contact input[type=email],
.dark-mode .section-contact .form-contact input[type=text],
.dark-mode .section-contact .form-contact input[type=tel],
.dark-mode .section-contact .form-contact textarea {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white);
}
.dark-mode .section-contact .form-contact input[type=email]:focus,
.dark-mode .section-contact .form-contact input[type=text]:focus,
.dark-mode .section-contact .form-contact input[type=tel]:focus,
.dark-mode .section-contact .form-contact textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.15);
}
.dark-mode .fob-comment-form-section .fob-comment-title {
  color: var(--white);
}
.dark-mode .fob-comment-form-section .fob-comment-form-note {
  color: var(--white-56);
}
.dark-mode .fob-comment-form-section form input[type=email],
.dark-mode .fob-comment-form-section form input[type=text],
.dark-mode .fob-comment-form-section form input[type=url],
.dark-mode .fob-comment-form-section form textarea {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white);
}
.dark-mode .fob-comment-form-section form input[type=email]:focus,
.dark-mode .fob-comment-form-section form input[type=text]:focus,
.dark-mode .fob-comment-form-section form input[type=url]:focus,
.dark-mode .fob-comment-form-section form textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.15);
}
.dark-mode .fob-comment-form-section form button[type=submit] {
  color: var(--black);
}
.dark-mode .fob-comment-form-section form .form-check input[type=checkbox] {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.dark-mode .fob-comment-list-section .fob-comment-title {
  color: var(--white);
}
.dark-mode .fob-comment-list-section .fob-comment-item-author {
  color: var(--white);
}
.dark-mode .fob-comment-list-section .fob-comment-item-date, .dark-mode .fob-comment-list-section .fob-comment-item-pending {
  color: var(--white-56);
}
.dark-mode .fob-comment-list-section .fob-comment-item-reply {
  color: var(--white-56);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .fob-comment-list-section .fob-comment-item-reply:hover {
  color: var(--primary);
}
.dark-mode .cancel-comment-reply-link {
  color: var(--white-56);
}
.dark-mode .cancel-comment-reply-link:hover {
  color: var(--primary);
}
.dark-mode .newsletter-popup .modal-dialog {
  background: var(--bg-3);
}
.dark-mode .newsletter-popup .modal-dialog .newsletter-popup-bg {
  background-color: rgba(255, 255, 255, 0.05);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content .btn-close {
  background-color: rgba(255, 255, 255, 0.1);
  filter: invert(1);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content .modal-title {
  color: var(--white);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content form input[type=email],
.dark-mode .newsletter-popup .modal-dialog .modal-content form input[type=text] {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content form input[type=email]:focus,
.dark-mode .newsletter-popup .modal-dialog .modal-content form input[type=text]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 222, 81, 0.15);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content form button[type=submit] {
  color: var(--black);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content form .form-check input[type=checkbox] {
  border-color: rgba(255, 255, 255, 0.2);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content form .form-check label {
  color: var(--white-56);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content .button-loading {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .newsletter-popup .modal-dialog .modal-content .captcha-disclaimer {
  color: var(--white-40);
}

.section-faqs .accordion {
  max-width: 800px;
  margin: 0 auto;
}
.section-faqs .accordion-item {
  background: var(--surface);
  border: 1px solid var(--black-08);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.section-faqs .accordion-item:last-child {
  margin-bottom: 0;
}
.section-faqs .accordion-item:hover {
  border-color: var(--black-15);
}
.section-faqs .accordion-header {
  margin: 0;
}
.section-faqs .accordion-button {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}
.section-faqs .accordion-button:not(.collapsed) {
  color: var(--black);
  background: transparent;
  box-shadow: none;
}
.section-faqs .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300DE51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  transform: rotate(0);
}
.section-faqs .accordion-button::after {
  width: 24px;
  height: 24px;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
  border-radius: 50%;
  background-color: var(--black-08);
  flex-shrink: 0;
}
.section-faqs .accordion-button:hover {
  color: var(--primary);
}
.section-faqs .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.section-faqs .accordion-collapse {
  transition: all 0.35s ease;
}
.section-faqs .accordion-body {
  padding: 0 24px 20px;
  color: var(--black-72);
  font-size: 14px;
  line-height: 1.7;
}
.section-faqs .accordion-body p {
  margin-bottom: 1rem;
}
.section-faqs .accordion-body p:last-child {
  margin-bottom: 0;
}
.section-faqs .accordion-body ul, .section-faqs .accordion-body ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}
.section-faqs .accordion-body ul li, .section-faqs .accordion-body ol li {
  margin-bottom: 0.5rem;
}
.section-faqs .accordion-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}
.section-faqs .accordion-body a:hover {
  text-decoration-color: var(--primary);
}

.dark-mode .section-faqs .accordion-item {
  background: var(--black-08);
  border-color: rgba(255, 255, 255, 0.08);
}
.dark-mode .section-faqs .accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.dark-mode .section-faqs .accordion-button {
  color: var(--white);
}
.dark-mode .section-faqs .accordion-button:not(.collapsed) {
  color: var(--white);
}
.dark-mode .section-faqs .accordion-button::after {
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.dark-mode .section-faqs .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300DE51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.dark-mode .section-faqs .accordion-button:hover {
  color: var(--primary);
}

body[dir=rtl] .sidebar-user .avaiable-dot.vertical .text-vertical {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
body[dir=rtl] .sidebar-user .user-image .meta-left {
  left: auto;
  right: 0;
}
body[dir=rtl].dark-mode .sidebar-user .user-image img {
  transform: scaleX(-1);
}
@media (min-width: 992px) {
  body[dir=rtl] .tf-header-wrap {
    left: 32px;
    right: auto;
  }
  body[dir=rtl] .sidebar-user {
    right: 16px;
    left: auto;
  }
}
@media (min-width: 1200px) {
  body[dir=rtl] .section-testimonial .group-btn {
    right: auto;
    left: 0;
  }
}
@media (min-width: 1440px) {
  body[dir=rtl] .sidebar-user {
    right: 48px;
    left: auto;
  }
}
@media (min-width: 1600px) {
  body[dir=rtl] .tf-header-wrap {
    right: auto;
    left: 48px;
  }
  body[dir=rtl] .sidebar-user {
    left: auto;
    right: 48px;
  }
  body[dir=rtl] .wg-work .wrap {
    left: auto;
    right: 48px;
  }
  body[dir=rtl] .sidebar-tools {
    right: auto;
    left: 48px;
  }
  body[dir=rtl] .tf-left-bar {
    right: auto;
    left: 48px;
  }
}
body[dir=rtl] .icon-arrow-right-top,
body[dir=rtl] .icon-arrow-caret-right,
body[dir=rtl] .icon-arrow-caret-left {
  transform: scaleX(-1);
}
body[dir=rtl] .swiper-button-next,
body[dir=rtl] .swiper-button-prev {
  transform: rotate(180deg);
}
body[dir=rtl] input[type=email],
body[dir=rtl] input[type=number],
body[dir=rtl] input[type=password],
body[dir=rtl] input[type=search],
body[dir=rtl] input[type=tel],
body[dir=rtl] input[type=text],
body[dir=rtl] input[type=url],
body[dir=rtl] textarea {
  text-align: right;
  direction: rtl;
}
body[dir=rtl] .tf-btn-action {
  flex-direction: row-reverse;
}
body[dir=rtl] .wg-work .work-content .content {
  text-align: right;
}
body[dir=rtl] .wg-services .tf-link-icon {
  flex-direction: row-reverse;
}
body[dir=rtl] .service-accordion_item .service-image:nth-child(2) {
  transform: translateX(calc(100% - 76px));
}
body[dir=rtl] .service-accordion_item .accordion-content:hover .service-image:nth-child(2) {
  transform: translateX(0);
}
body[dir=rtl] .section-education-experience .timeline-line {
  left: auto;
  right: 126px;
}
body[dir=rtl] .timeline-item .timeline-dot {
  margin-right: 0;
  margin-left: 48px;
}
@media (max-width: 575px) {
  body[dir=rtl] .section-education-experience .timeline-line {
    left: auto;
    right: 6px;
  }
  body[dir=rtl] .timeline-item .timeline-content {
    padding-left: 0;
    padding-right: 22px;
  }
}
body[dir=rtl] .offcanvas-end {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
body[dir=rtl] .offcanvas-end.show {
  transform: translateX(0);
}
body[dir=rtl] .offcanvas-menu {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
body[dir=rtl] .offcanvas-menu.open {
  transform: translateX(0);
}
body[dir=rtl] .block-quote {
  text-align: right;
}
body[dir=rtl] .block-quote .quote-author {
  text-align: left;
}
body[dir=rtl] .foot-bottom {
  flex-direction: row-reverse;
}
body[dir=rtl] .tech-progress .progress-bar {
  transform-origin: right;
}
body[dir=rtl] .tech-progress .progress-num {
  right: auto;
  left: 6px;
}
body[dir=rtl] .language-dropdown .dropdown-menu {
  text-align: right;
}
body[dir=rtl] ul, body[dir=rtl] ol {
  padding-right: 1.5rem;
  padding-left: 0;
}
body[dir=rtl] .section-intro .intro-item .wg-curve-text {
  left: auto;
  right: 43%;
}
body[dir=rtl] .section-intro .intro-item .img-item {
  -o-object-position: right;
     object-position: right;
}
