@charset "UTF-8";
/*
Theme Name: Varia
Theme URI: https://wordpress.com/theme/varia
Author: Automattic
Author URI: https://automattic.com/
Description: A variable-based design system for WordPress sites built with Gutenberg.
Requires at least: WordPress 4.9.6
Version: 1.6.44
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: varia
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, wpcom-fse, jetpack-global-styles
AMP: true

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
 */

:root {
  --orange-main: rgba(247, 133, 26, 1);
  --orange-05: rgba(254, 248, 242, 1);
  --orange-10: rgba(253, 234, 216, 1);
  --orange-15: rgba(252, 214, 178, 1);
  --orange-20: rgba(251, 194, 140, 1);
  --orange-30: rgba(249, 173, 102, 1);
  --orange-40: rgba(248, 153, 64, 1);
  --orange-60: rgba(205, 110, 21, 1);
  --orange-70: rgba(164, 88, 17, 1);
  --orange-80: rgba(123, 66, 13, 1);
  --orange-90: rgba(82, 44, 8, 1);
  --orange-95: rgba(41, 22, 4, 1);
  --orange-100: rgba(23, 12, 2, 1);
  --blue-main: rgba(26, 107, 247, 1);
  --blue-05: rgba(242, 246, 254, 1);
  --blue-10: rgba(216, 230, 253, 1);
  --blue-15: rgba(178, 205, 252, 1);
  --blue-20: rgba(140, 181, 251, 1);
  --blue-30: rgba(102, 156, 249, 1);
  --blue-40: rgba(64, 131, 248, 1);
  --blue-60: rgba(21, 89, 205, 1);
  --blue-70: rgba(17, 71, 164, 1);
  --blue-80: rgba(13, 53, 123, 1);
  --blue-90: rgba(8, 35, 82, 1);
  --blue-95: rgba(4, 17, 41, 1);
  --blue-100: rgba(2, 9, 23, 1);
}

body {
  font-family: "AzarMehr", sans-serif;
  color: var(--orange-90);
  background: #fffdfb;
}

body:not(.home)::before {
  content: "";
  background-image: url("assets/dots-mask.svg");
  width: 860px;
  height: 620px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
  top: -15%;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Pelak", sans-serif;
}

/* Base style for all animated elements */
[class^="fade-in-"] {
  opacity: 0;
  will-change: transform, opacity;
}
.fade-in {
  transform: translateY(0);
}
.fade-in-up {
  transform: translateY(20px);
}
.fade-in-down {
  transform: translateY(-20px);
}
.fade-in-right {
  transform: translateX(20px);
}
.fade-in-left {
  transform: translateX(-20px);
}
.fade-in-up-scale {
  transform: translateY(10px) scale(0.95);
}
.fade-in-down-scale {
  transform: translateY(-10px) scale(0.95);
}
.fade-in-right-scale {
  transform: translateX(10px) scale(0.95);
}
.fade-in-left-scale {
  transform: translateX(-10px) scale(0.95);
}
.fade-in-scale-down {
  transform: scale(0.9);
}
.fade-in-scale-up {
  transform: scale(1.05);
}
.fade-in-rotateX-up {
  transform: rotateX(5deg) translateY(10px);
}
.fade-in-rotateX-down {
  transform: rotateX(-5deg) translateY(-10px);
}
.fade-in-rotateY-right {
  transform: rotateY(5deg) translateX(10px);
}
.fade-in-rotateY-left {
  transform: rotateY(-5deg) translateX(-10px);
}
.fade-in-skewY-up {
  transform: translateY(15px) skewY(2deg);
}
.fade-in-skewY-down {
  transform: translateY(-15px) skewY(-2deg);
}
.fade-in-skewX-right {
  transform: translateX(15px) skewX(2deg);
}
.fade-in-skewX-left {
  transform: translateX(-15px) skewX(-2deg);
}
.fade-in-scale-slight-down {
  transform: scale(0.98);
}
.fade-in-scale-slight-up {
  transform: scale(1.02);
}

/* Delay classes to stagger animations */
.delay-0 {
  --delay: 0s;
}
.delay-1 {
  --delay: 0.1s;
}
.delay-2 {
  --delay: 0.2s;
}
.delay-3 {
  --delay: 0.3s;
}
.delay-4 {
  --delay: 0.4s;
}
.delay-5 {
  --delay: 0.5s;
}
.delay-6 {
  --delay: 0.6s;
}
.delay-7 {
  --delay: 0.7s;
}
.delay-8 {
  --delay: 0.8s;
}
.delay-9 {
  --delay: 0.9s;
}

.site {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
}

body.single .site {
  gap: 10em;
}

.site-content {
  padding: 0 0 35%;
}

body.single .site-content {
  padding: 0;
}

/* Header */
.site-header {
  margin: 100px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  margin: 0 0 0;
  position: relative;
  width: 100%;
}

.site-title {
  background: rgb(247 133 26 / 30%);
  padding: 12px 25px;
  border-radius: 100px;
}

.site-title a {
  display: block;
}

.main-navigation input#toggle {
  display: none;
}

#site-navigation {
  position: relative;
  z-index: 100;
}

.menu-main-fehrest-container > .main-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: left;
  font-weight: 600;
  padding: 5px 5px;
  border-radius: 50px;
}

.menu-main-fehrest-container > .main-menu li.menu-item {
  position: relative;
  z-index: 1;
}

.menu-main-fehrest-container > .main-menu a {
  display: block;
  padding: 7px 12px;
  position: relative;
}

.menu-main-fehrest-container > .main-menu .menu-item-has-children > a {
  padding-left: 25px;
}

.menu-main-fehrest-container > .main-menu a:hover {
  color: var(--orange-05);
}

.home .menu-main-fehrest-container > .main-menu {
  background: var(--orange-90);
}

.home .menu-main-fehrest-container > .main-menu .menu-item {
  position: relative;
  z-index: 1;
}

.home .menu-main-fehrest-container > .main-menu .menu-item:hover {
  font-weight: 600;
}

.home .menu-main-fehrest-container > .main-menu > li > a {
  color: var(--orange-15);
}

.menu-highlight {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  background-color: var(--orange-main);
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, width, opacity;
  transition: opacity 0.2s ease;
  color: var(--orange-05);
  box-shadow: 0px 5px 11px -4px var(--Orange-40, #f89940);
}

/* Dropdown base styles */
.main-menu .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 300px;
  background: var(--orange-90);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  z-index: 10;
  transition: none;
  margin-top: 10px !important;
  padding: 5px;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a::after {
  content: "";
  font-size: 1em;
  margin-right: 0;
  margin-left: 0;
  vertical-align: middle;
  opacity: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iI2ZjZDZiMiIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTMuNjYsMTAxLjY2bC04MCw4MGE4LDgsMCwwLDEtMTEuMzIsMGwtODAtODBBOCw4LDAsMCwxLDUzLjY2LDkwLjM0TDEyOCwxNjQuNjlsNzQuMzQtNzQuMzVhOCw4LDAsMCwxLDExLjMyLDExLjMyWiI+PC9wYXRoPjwvc3ZnPg==");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.menu-item-has-children.open > .sub-menu {
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .main-navigation .main-menu {
    flex-direction: column;
  }
  .main-menu .sub-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
    transform: none;
  }
  .menu-highlight {
    display: none !important;
  }
}

.main-menu .sub-menu > li > a {
  font-size: 1em;
  color: var(--orange-15);
}

.main-menu .sub-menu > li > a:hover {
  background: var(--orange-main);
  color: var(--orange-05);
  border-radius: 9px;
}

/* Hero */
.home-section.home-hero > .uagb-container-inner-blocks-wrap {
  padding: 5% 0 3.5%;
}

.home-section.home-hero > .uagb-container-inner-blocks-wrap::before {
  content: "";
  background-image: url("assets/dots-mask.svg");
  position: absolute;
  width: 700px;
  height: 400px;
  top: 50%;
  background-size: 100%;
  transform: translateY(-50%);
}

.home-section.home-hero > .uagb-container-inner-blocks-wrap::after {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  background: var(--orange-main);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 100%;
  filter: blur(160px);
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-top
  > .uagb-container-inner-blocks-wrap {
  gap: 15px;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-top
  .home-hero-title
  h1.uagb-heading-text {
  font-size: 40px;
  color: var(--orange-05);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-top
  .home-hero-title
  p.uagb-desc-text {
  font-size: 18px;
  color: var(--orange-10);
  letter-spacing: -0.05em;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-top
  > .uagb-container-inner-blocks-wrap
  .home-hero-ctas
  .uagb-buttons__wrap
  .wp-block-button:first-child
  a {
  border-radius: 50px;
  background: var(--Orange-Main, #f7851a);
  box-shadow: 0px 11px 30px -10px var(--Orange-80, #7b420d);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-top
  > .uagb-container-inner-blocks-wrap
  .home-hero-ctas
  .uagb-buttons__wrap
  .wp-block-button:last-child
  a {
  background: transparent;
  color: var(--Orange-20, #fbc28c);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
}

.home .home-hero .home-hero-bg {
  background: var(--orange-100);
  width: 110% !important;
  height: 860px;
  position: absolute;
  z-index: -1;
  border-radius: 34px;
  top: -100px;
  max-width: initial;
  overflow: hidden;
}

.home .home-hero .home-hero-bg::before {
  content: "";
  background: linear-gradient(
    0deg,
    var(--Orange-Main, #f7851a) 0%,
    var(--Orange-100, #170c02) 100%
  );
  filter: blur(250px);
  position: absolute;
  width: 100%;
  height: 320px;
  bottom: 0;
}

.home .home-hero .home-hero-bg::after {
  content: "";
  background-image: url("assets/earth-full.png");
  width: 560px;
  position: absolute;
  height: 560px;
  background-size: 100%;
  z-index: -1;
  bottom: -100px;
  background-repeat: no-repeat;
  mix-blend-mode: hard-light;
  opacity: 0.5;
  animation: gentle-rotate 50s linear infinite;
  will-change: transform;
}

.home-section.home-hero .uagb-container-inner-blocks-wrap .home-hero-bottom {
  width: 820px;
  margin: 0 auto;
  height: 250px;
  position: relative;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom::before {
  content: "";
  width: 760px;
  margin: 0 auto;
  height: 270px;
  border-radius: 24px;
  border: 1px solid var(--Orange-80, #7b420d);
  background: rgba(82, 44, 8, 0.5);
  box-shadow: 0px -13px 22px -18px rgba(164, 88, 17, 0.5),
    0px -30px 28px 1px rgba(248, 153, 64, 0.08);
  backdrop-filter: blur(16px);
  position: absolute;
  top: -22px;
  z-index: 1;
  opacity: 0.6;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom::after {
  content: "";
  width: 720px !important;
  margin: 0 auto;
  height: 290px;
  border-radius: 24px;
  border: 1px solid var(--Orange-80, #7b420d);
  background: rgba(82, 44, 8, 0.5);
  box-shadow: 0px -13px 22px -18px rgba(164, 88, 17, 0.5),
    0px -30px 28px 1px rgba(248, 153, 64, 0.08);
  backdrop-filter: blur(16px);
  position: absolute;
  top: -42px;
  z-index: 2;
  opacity: 0.4;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner {
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--Orange-80, #7b420d);
  background: rgba(82, 44, 8, 0.5);
  box-shadow: 0px -13px 22px -18px rgba(164, 88, 17, 0.5),
    0px -30px 28px 1px rgba(248, 153, 64, 0.08);
  backdrop-filter: blur(16px);
  position: relative;
  bottom: 0;
  border-bottom: none;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner
  p {
  width: 720px !important;
  font-size: 1.2em;
  color: var(--orange-10);
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner
  p
  strong:nth-child(1) {
  color: var(--orange-main);
  font-weight: 900;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner
  p
  strong:nth-child(2) {
  color: var(--orange-main);
  font-weight: 700;
  background: var(--orange-100);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner
  p
  strong:nth-child(3) {
  color: var(--orange-main);
  font-weight: 700;
  background: var(--orange-100);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}

.home-section.home-hero
  .uagb-container-inner-blocks-wrap
  .home-hero-bottom
  .home-hero-bottom-inner
  p
  strong:nth-child(4) {
  color: var(--orange-main);
  font-weight: 700;
  background: var(--orange-100);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}

@keyframes gentle-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Home Solutions */
.home-solutions > .uagb-container-inner-blocks-wrap {
  gap: 5em !important;
}

.home-solutions > .uagb-container-inner-blocks-wrap::before {
  content: "";
  background-image: url("assets/dots-mask.svg");
  position: absolute;
  width: calc(100% - 15em);
  height: 400px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 0;
}

.home-solutions > .uagb-container-inner-blocks-wrap .home-solutions-top {
  gap: 1em;
}

.home-solutions > .uagb-container-inner-blocks-wrap .home-solutions-top > i {
  font-size: 3em;
  display: grid;
  place-items: center;
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-top
  h2.uagb-heading-text {
  font-size: 1.8em;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.home-solutions > .uagb-container-inner-blocks-wrap .home-solutions-bottom {
  gap: 25px;
  position: relative;
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-bottom
  .home-solutions-bottom-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 2em 2em;
  min-height: 350px;
  gap: 10px;
  position: relative;
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-bottom
  .home-solutions-bottom-item:nth-child(2) {
  top: 50px;
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-bottom
  .home-solutions-bottom-item
  i {
  font-size: 2.3em;
  color: var(--orange-main);
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-bottom
  .home-solutions-bottom-item
  h3.uagb-heading-text {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-solutions
  > .uagb-container-inner-blocks-wrap
  .home-solutions-bottom
  .home-solutions-bottom-item
  p {
  color: var(--orange-80);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

/* Home Products */
.home-section.home-products {
  color: var(--blue-90);
  position: relative;
}

.home-section.home-products .home-products-inner .home-products-right {
  flex: 1 1 30%;
  gap: 10px;
}

.home-section.home-products .home-products-inner .home-products-right i {
  font-size: 3.2em;
}

.home-section.home-products
  .home-products-inner
  .home-products-right
  h2.uagb-heading-text {
  font-size: 1.8em;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.5;
}

.home-section.home-products .home-products-inner .home-products-left {
  flex: 1 1 70%;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .home-products-left-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px -9px 28px -10px rgba(13, 53, 123, 0.08),
    0px 13px 22px -16px rgba(17, 71, 164, 0.5),
    0px 40px 78px -37px rgba(26, 107, 247, 0.2);
  backdrop-filter: blur(15px);
  width: 100%;
  min-height: 230px;
  padding: 2em;
  gap: 10px;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .home-products-left-item
  i {
  font-size: 2.1em;
  color: var(--blue-main);
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .home-products-left-item
  h3.uagb-heading-text {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .home-products-left-item
  p {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  > div:nth-child(even) {
  position: relative;
  top: 80px;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .wp-block-uagb-container.home-products-left-item-link {
  border-radius: 24px;
  border: 1px solid var(--Blue-15, #b2cdfc);
  background: rgba(216, 230, 253, 0.2);
  box-shadow: 0px -9px 28px -10px rgba(13, 53, 123, 0.08),
    0px 13px 22px -16px rgba(17, 71, 164, 0.5),
    0px 40px 78px -37px rgba(26, 107, 247, 0.2);
  backdrop-filter: blur(15px);
  height: 100px;
  padding: 1em;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .wp-block-uagb-container.home-products-left-item-link
  h3.uagb-heading-text {
  font-size: 1.1em;
}

.home-section.home-products
  .home-products-inner
  .home-products-left
  .wp-block-uagb-container.home-products-left-item-link
  i {
  flex: 1 1 15%;
  font-size: 1.5em;
}

.home-section.home-products .home-products-bg-con {
  position: absolute;
  top: 50%;
  height: 170%;
  z-index: -1;
  transform: translateY(-50%);
  width: 130%;
  max-width: initial;
}

.home-section.home-products .home-products-bg-con::before {
  content: "";
  background-image: url("assets/products-lines-bg.svg");
  position: absolute;
  width: calc(100% - 150px);
  height: 100%;
  z-index: 1000000;
  background-size: 100%;
  background-position: center;
  top: 100px;
  background-repeat: no-repeat;
}

.home-section.home-products .home-products-bg-con::after {
  content: "";
  background: var(--Blue-05, #f2f6fe);
  filter: blur(250px);
  position: absolute;
  top: 50%;
  height: 170%;
  z-index: -1;
  transform: translateY(-50%);
  width: 130%;
  max-width: initial;
}

/* Home Services */
.home-services {
  position: relative;
}

.home-services > .uagb-container-inner-blocks-wrap {
  gap: 1em !important;
}

.home-services > .uagb-container-inner-blocks-wrap::before {
  content: "";
  background-image: url("assets/dots-mask.svg");
  position: absolute;
  width: calc(100% - 15em);
  height: 400px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 70px;
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-top {
  gap: 1em;
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-top > i {
  font-size: 12em;
  display: grid;
  place-items: center;
  color: var(--orange-main);
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-top
  h2.uagb-heading-text {
  font-size: 2.3em;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--orange-main);
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-bottom {
  gap: 25px;
  position: relative;
  width: calc(100% - 10em);
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-bottom
  .home-services-bottom-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 2em 2em;
  min-height: 350px;
  gap: 15px;
  position: relative;
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-bottom
  .home-services-bottom-item:nth-child(2) {
  top: 50px;
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-bottom
  .home-services-bottom-item
  i {
  font-size: 3.2em;
  color: var(--orange-main);
  text-align: center;
  width: fit-content !important;
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-bottom
  .home-services-bottom-item
  h3.uagb-heading-text {
  font-size: 1.3em;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.home-services
  > .uagb-container-inner-blocks-wrap
  .home-services-bottom
  .home-services-bottom-item
  p {
  color: var(--orange-80);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-bg::before {
  border-radius: 64px;
  border: 1px solid var(--orange-main, #f7851a);
  opacity: 0.3;
  background: #fff;
  content: "";
  position: absolute;
  width: calc(100% - 10em);
  height: 600px;
  z-index: -1;
  top: -20px;
}

.home-services > .uagb-container-inner-blocks-wrap .home-services-bg::after {
  border-radius: 64px;
  border: 1px solid var(--orange-main, #f7851a);
  background: rgba(253, 234, 216, 0.4);
  backdrop-filter: blur(8.5px);
  content: "";
  position: absolute;
  width: 100%;
  height: 550px;
  z-index: -1;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  position: relative;
  margin: 0;
  padding: 3em;
  display: grid;
  gap: 3em;
}

.site-footer aside.widget-area {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3em;
  border-bottom: 1px dashed rgb(82 44 8 / 30%);
  padding: 0 0 3em;
}

.site-footer .site-info {
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: "";
  background: rgba(253, 234, 216, 0.5);
  border-top: 1px solid var(--orange-main);
  backdrop-filter: blur(125px);
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  border-radius: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.site-footer .f-widget-area-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgb(82 44 8 / 30%);
  padding: 0 0 3em;
}

.site-footer .f-widget-area-top > section {
  flex: 1 1 25%;
}

.site-footer .f-widget-area-top > section .uagb-container-inner-blocks-wrap {
  gap: 10px !important;
}

.site-footer .f-widget-area-top > section ul.wp-block-list {
  display: grid;
  gap: 5px;
}

.f-site-info-site-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Products Categories Archive */
.tax-product-type header.page-header {
  height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}

.tax-product-type header.page-header::before {
  content: "";
  background-image: url("assets/cat-archive-header-bg.svg");
  position: absolute;
  width: 300px;
  height: 400px;
  z-index: 1;
  top: -10px;
}

.tax-product-type header.page-header .page-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.tax-product-type header.page-header .page-header-inner > i {
  font-size: 4em;
  color: var(--orange-main);
}

.tax-product-type header.page-header .page-header-inner h1.page-title {
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.tax-product-type header.page-header .page-header-inner .taxonomy-description {
  font-size: 1.2em;
  width: 70%;
  color: var(--orange-80);
  letter-spacing: -0.5px;
  font-weight: 500;
  opacity: 0.6;
}

.tax-product-type .tax-archive-items-container {
  display: grid;
  grid-template: auto / 1fr 1fr 1fr;
  gap: 3em;
}

.tax-product-type .tax-archive-items-container > article {
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 3em;
}

.tax-product-type .tax-archive-items-container > article:nth-child(odd) {
  grid-column: 1 / 3;
}

.tax-product-type .tax-archive-items-container > article:nth-child(even) {
  grid-column: 2 / 4;
}

.tax-product-type .tax-archive-items-container > article .article-inner {
  display: flex;
  gap: 2em;
  align-items: flex-start;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .post-thumbnail {
  flex: 1 0 25%;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .post-thumbnail
  a.post-thumbnail-inner {
  display: grid;
  position: relative;
  place-items: center;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .post-thumbnail
  a.post-thumbnail-inner
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content {
  flex: 1 0 70%;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content {
  flex: 1 0 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  header.entry-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  header.entry-header
  h2.entry-title {
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  header.entry-header
  p {
  font-size: 1.1em;
  color: var(--orange-70);
  font-weight: 500;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  .entry-content {
  color: var(--orang-95);
  font-weight: 500;
  font-size: 1.1em;
  letter-spacing: -0.5px;
  opacity: 0.7;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  .entry-footer
  a {
  border-radius: 50px;
  border: 1px solid var(--Orange-15, #fcd6b2);
  background: var(--Orange-05, #fef8f2);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  color: var(--orange-main);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.tax-product-type
  .tax-archive-items-container
  > article
  .article-inner
  .article-texts-content
  .entry-footer
  a
  i {
  font-size: 1.1em;
}

.tax-archive-no-post {
  text-align: center;
  font-size: 1.3em;
}

.single-products article.type-products .article-inner {
  display: flex;
  gap: 10px;
}

.single-products article.type-products .article-inner .post-thumbnail {
  flex: 1 0 30%;
  position: relative;
  height: 400px;
  margin: -100px 0 0;
  position: relative;
  top: -400px;
}

.single-products article.type-products .article-inner .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-products article.type-products .article-inner .article-texts-content {
  flex: 1 0 65%;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.single-products
  article.type-products
  .article-inner
  .article-texts-content
  header.entry-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single-products
  article.type-products
  .article-inner
  .article-texts-content
  h1.entry-title {
  font-size: 2.4em;
  font-weight: 900;
  letter-spacing: -1px;
}

.single-products
  article.type-products
  .article-inner
  .article-texts-content
  header.entry-header
  p {
  font-size: 1.5em;
  color: var(--orange-70);
}

.single-products
  article.type-products
  .article-inner
  .article-texts-content
  .entry-content {
  font-size: 1.1em;
  letter-spacing: -0.3px;
  line-height: 1.7;
}

.single-products
  article.type-products
  .article-inner
  .article-texts-content
  .entry-content
  ul {
  list-style: disc;
  margin-block-end: 1.5em;
  padding-inline-start: 2em;
}

footer.entry-footer.entry-footer-download-section {
  border-radius: 24px;
  background: var(--orange-05);
  backdrop-filter: blur(15px);
  padding: 50px 10px 10px;
  position: relative;
}

footer.entry-footer.entry-footer-download-section::before {
  content: "دانلود";
  position: absolute;
  top: 0;
  right: 40px;
  background: var(--orange-10);
  color: var(--orange-20);
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 2.4;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 1.1em;
}

.product-entry-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-link-row {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 10px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 20px;
}

.download-link-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-link-row-inner > p:first-child {
  font-family: "Pelak";
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: -0.5px;
}

.download-link-row a {
  background: var(--orange-main);
  display: block;
  padding: 6px 10px;
  border-radius: 50px;
  color: var(--orange-05);
  font-size: 1.1em;
  letter-spacing: -0.5px;
  font-weight: 600;
}

/* Blog */
.blog .site-content {
  margin: 5% 0 0;
}

.athena-home-wrapper {
  display: flex;
  gap: 30px;
}

.athena-home-header {
  flex: 1 0 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.athena-home-header-top {
  display: flex;
  flex-direction: column;
  gap: 2em;
  border-radius: 24px;
  border: 1px solid var(--Orange-15, #fcd6b2);
  background: rgba(253, 234, 216, 0.2);
  backdrop-filter: blur(5px);
  padding: 2.5em;
  overflow: clip;
}

.athena-home-header-top::before {
  content: "";
  background-image: url("assets/cat-archive-header-bg.svg");
  position: absolute;
  width: 300px;
  height: 400px;
  top: -60%;
  right: -60%;
  z-index: -1;
}

.athena-home-header-title {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.athena-home-header-title i {
  color: var(--orange-main);
  font-size: 3.5em;
}

.athena-home-header-title h1 {
  color: var(--Orange-90, #522c08);
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: -0.96px;
}

.athena-home-header-title p {
  color: var(--Orange-80, #7b420d);
  font-size: 1.1em;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin: -10px 0 0;
}

.athena-home-content {
  flex: 1 0 70%;
}

.athena-main-posts {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.athena-home-featured-post {
  border-radius: 34px;
  background: #fff;
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 10px;
  display: flex;
  gap: 1em;
}

.athena-home-featured-pos-right {
  flex: 1 0 45%;
  height: 420px;
}

.athena-home-featured-pos-right a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
  overflow: clip;
}

.athena-home-featured-pos-right a img.athena-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athena-home-featured-post-left {
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.athena-home-featured-post-left-top {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.athena-home-featured-post-left-top h2 {
  color: var(--Orange-90, #522c08);
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -1.1px;
}

.athena-home-featured-post-left-top .athena-featured-excerpt {
  color: var(--Orange-90, #522c08);
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.athena-home-featured-post-left-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.athena-home-featured-post-date-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.7px;
}

.athena-home-featured-post-date-cat span.athena-post-date {
  font-weight: 700;
}

span.athena-post-date-sep {
  width: 1px;
  height: 25px;
  background: var(--orange-90);
  display: block;
  opacity: 0.5;
}

.athena-home-featured-post-left-bottom > a.athena-btn {
  display: flex;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 90px;
  border: 1px solid rgba(82, 44, 8, 0.3);
}

.athena-home-posts-grid {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 25px;
}

.athena-post-card {
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  gap: 15px;
  padding: 15px;
}

.athena-post-card-top {
  width: 100%;
  height: 250px;
  border-radius: 19px;
  overflow: clip;
}

.athena-post-card-top a {
  display: block;
  width: 100%;
  height: 100%;
}

.athena-post-card-top a img.athena-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.athena-post-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0.5em 1em 1em;
}

.athena-post-card-bottom-first {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.athena-post-card-bottom-first h3 {
  color: var(--Orange-90, #522c08);
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.athena-post-card-bottom-first .athena-post-excerpt {
  color: var(--Orange-90, #522c08);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  opacity: 0.7;
}

.athena-post-card-bottom-last {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.athena-post-card-bottom-last a.athena-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.athena-blog-home-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 3em 0 0;
  font-size: 1.3em;
  line-height: 1;
  font-weight: 600;
  background: #fff;
  width: fit-content;
  padding: 10px;
  border-radius: 100px;
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
}

.athena-blog-home-pagination > a {
  color: var(--orange-main) !important;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
}

.athena-blog-home-pagination > a:hover {
  background-color: var(--orange-05);
}

.athena-blog-home-pagination > span.current {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: grid;
  text-align: center;
  background-color: rgba(41, 22, 4, 0.08);
  place-items: center;
}

.athena-newsletter {
  border-radius: 24px;
  border: 1px solid var(--Orange-15, #fcd6b2);
  background: #fff;
  padding: 30px;
}

.athena-newsletter > form {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.athena-newsletter-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.athena-newsletter-top i {
  font-size: 2.5em;
  color: var(--orange-main);
}

.athena-newsletter-top h2 {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: -1px;
}

.athena-newsletter-top p {
  font-size: 1em;
  color: var(--Orange-80, #7b420d);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.5;
  padding-left: 3em;
  opacity: 0.7;
}

.athena-newsletter-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.athena-newsletter-bottom input#athena-newsletter-email {
  border-radius: 50px;
  border: 1px solid var(--Orange-80, #7b420d);
  background: #fff;
  height: 55px;
  padding: 10px 15px;
  outline: none;
}

.athena-newsletter-bottom input#athena-newsletter-email:focus {
  text-align: left;
  direction: ltr;
  border: 1px solid var(--orange-main);
  background: var(--orange-05);
  color: var(--orange-main);
}

.athena-newsletter-bottom input#athena-newsletter-email:focus::placeholder {
  opacity: 0;
}

.athena-newsletter-bottom button.athena-btn {
  appearance: none;
  outline: none;
  border: none;
  width: 100px;
  height: 55px;
  background-color: var(--orange-main);
  color: var(--orange-05);
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: -1px;
  cursor: pointer;
}

/* Single */
.single-post article.post {
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.single-post header.entry-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.single-post header.entry-header .entry-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

.single-post header.entry-header .entry-meta > span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-post header.entry-header h1.entry-title {
  font-size: 2.2em;
  letter-spacing: -1px;
  font-weight: 900;
  word-spacing: -1px;
}

.single-post article.post figure.post-thumbnail {
  width: 100%;
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 24px;
}

.single-post article.post figure.post-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.single-post article.post .single-post-content-wrapper {
  display: flex;
  gap: 4em;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper {
  flex: 1 0 20%;
}

.single-post article.post .single-post-content-wrapper .entry-content {
  flex: 1 0 70%;
  text-wrap: balance;
  max-width: 920px;
  font-size: 1.1em;
  line-height: 1.7;
  display: grid;
}

.single-post article.post .single-post-content-wrapper .entry-content p {
  margin-block-end: 1em;
}

.single-post article.post .single-post-content-wrapper .entry-content p a {
  color: var(--orange-main);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.single-post article.post .single-post-content-wrapper .entry-content ul {
  list-style: disc;
  margin-block-end: 1.5em;
  padding-inline-start: 2em;
}

.single-post article.post .single-post-content-wrapper .entry-content ol {
  list-style: decimal;
  margin-block-end: 1.5em;
  padding-inline-start: 2em;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  figure.size-full {
  background: var(--orange-10);
  padding: 10px;
  border-radius: 14px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  figure.size-full
  img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  figure.size-full
  figcaption {
  margin: 0;
  padding: 10px 0 0;
  font-size: 0.8em;
  text-align: right;
  font-weight: 500;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  blockquote {
  border: none;
  background: rgb(253 234 216 / 36%);
  padding: 2.5em;
  margin: 1.5em 0 3em;
  border-radius: 14px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--orange-70);
  line-height: 1.5;
  position: relative;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  blockquote
  p {
  margin: 0;
}

.single-post
  article.post
  .single-post-content-wrapper
  .entry-content
  blockquote::before {
  content: "";
  background: url("assets/quote.svg") no-repeat center center;
  width: 80px;
  height: 80px;
  position: absolute;
  background-size: 100%;
  top: -30px;
  right: 0px;
}

.single-post article.post .single-post-content-wrapper .entry-content h2,
.single-post article.post .single-post-content-wrapper .entry-content h3,
.single-post article.post .single-post-content-wrapper .entry-content h4,
.single-post article.post .single-post-content-wrapper .entry-content h5,
.single-post article.post .single-post-content-wrapper .entry-content h6 {
  margin-block-end: 1em;
  font-weight: 700;
  letter-spacing: -1px;
  word-spacing: -1px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  section.widget:has(> .yarpp)
  h3 {
  font-size: 1.2em;
  letter-spacing: -1px;
  color: var(--orange-90);
  position: relative;
  padding-right: 30px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  section.widget:has(> .yarpp) {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  section.widget:has(> .yarpp)
  h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("icons/bookmark.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  .yarpp.single-post-related-posts {
  margin: 0;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  .yarpp.single-post-related-posts
  ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  .yarpp.single-post-related-posts
  ol
  li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  .yarpp.single-post-related-posts
  ol
  li::before {
  content: "";
  background-image: url("icons/arrow-left.svg");
  width: 20px;
  height: 20px;
  position: relative;
  display: grid;
  background-color: var(--orange-10);
  place-items: center;
  background-position: center;
  border-radius: 100%;
  flex: 1 0 20px;
  background-repeat: no-repeat;
}

.single-post
  article.post
  .single-post-content-wrapper
  .single-post-sidebar-wrapper
  .yarpp.single-post-related-posts
  ol
  li
  a {
  flex: 1 1 90%;
  font-weight: 500;
}

.single-post .post-navigation {
  margin-block: 5em;
  border-top: 1px solid var(--orange-20);
  border-bottom: 1px solid var(--orange-20);
  padding-block: 3em;
}

.single-post .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}

.single-post .post-navigation .nav-links .nav-previous a {
  position: relative;
  padding: 0 70px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.single-post .post-navigation .nav-links .nav-previous a::before {
  content: "";
  background-image: url("icons/arrow-left.svg");
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-color: var(--orange-10);
  border-radius: 100%;
  background-position: center;
}

.single-post .post-navigation .nav-links .nav-next a {
  position: relative;
  padding: 0 0 0 70px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  align-items: flex-end;
}

.single-post .post-navigation .nav-links .nav-next a::before {
  content: "";
  background-image: url("icons/arrow-left.svg");
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 80%;
  background-color: var(--orange-10);
  border-radius: 100%;
  background-position: center;
}

.single-post .post-navigation .nav-links a span.post-title {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--orange-main);
  margin: -15px 0 0;
}

.single-post .post-navigation .nav-links a span.meta-nav {
  opacity: 0.6;
  font-weight: 600;
}

.comments-area {
  display: grid;
  grid-template: auto / minmax(0, 30%) minmax(0, 70%);
  max-width: 1200px;
  gap: 20px;
}

.comments-area h2.comments-title {
  grid-column: 1 / -1;
  grid-row: 1 / 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: -1px;
  margin-block-end: 2em;
}

.comments-area h2.comments-title::before {
  content: "";
  background-image: url("icons/message-text.svg");
  width: 28px;
  height: 28px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.comments-area ol.comment-list {
  grid-column: 2 / 2;
  grid-row: 2 / 2;
  display: grid;
  gap: 1em;
}

.comments-area ol.comment-list > li {
  border-radius: 34px;
  border: 1px solid var(--Orange-05, #fef8f2);
  background: #fff;
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 8px 20px -16px rgba(164, 88, 17, 0.3),
    0px 26px 58px -37px rgba(247, 133, 26, 0.2);
  backdrop-filter: blur(15px);
  padding: 30px;
}

.comments-area ol.comment-list > li.parent {
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.comments-area ol.comment-list > li .comment-body {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.comments-area ol.comment-list > li footer.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-area ol.comment-list > li footer.comment-meta span.says {
  display: none;
}

.comments-area ol.comment-list > li footer.comment-meta .comment-metadata a {
  color: var(--orange-90);
  opacity: 0.7;
  letter-spacing: -1px;
}

.comments-area
  ol.comment-list
  > li
  footer.comment-meta
  .comment-metadata
  .edit-link {
  display: none;
}

.comments-area
  ol.comment-list
  > li
  footer.comment-meta
  .comment-metadata
  .comment-edit-link {
  display: none;
}

.comments-area ol.comment-list > li .comment-body a.comment-reply-link {
  color: var(--orange-60);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.comments-area ol.comment-list > li > ol.children > li {
  border-radius: 4px;
  border: 1px solid var(--Orange-05, #fef8f2);
  background: var(--Orange-05, #fef8f2);
  padding: 25px;
}

.comments-area .comment-respond {
  grid-column: 1 / 1;
  grid-row: 2 / 2;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.comments-area .comment-respond .comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}

.comments-area .comment-respond p.comment-notes {
  margin: -15px 0 20px;
  font-size: 0.9em;
}

.comments-area .comment-respond .comment-form p.comment-form-comment,
.comments-area .comment-respond .comment-form p.comment-form-author,
.comments-area .comment-respond .comment-form p.comment-form-email,
.comments-area .comment-respond .comment-form p.comment-form-url {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comments-area
  .comment-respond
  .comment-form
  p.comment-form-comment
  textarea#comment {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--orange-90);
  border-radius: 12px;
  resize: vertical;
  padding: 15px;
  outline: none;
  font-size: 1em;
}

.comments-area
  .comment-respond
  .comment-form
  p.comment-form-comment
  textarea#comment:focus {
  border-color: var(--orange-main);
}

.comments-area
  .comment-respond
  .comment-form
  p.comment-form-author
  input#author {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--orange-90);
  border-radius: 12px;
  padding: 10px 15px;
  outline: none;
  font-size: 1em;
}

.comments-area
  .comment-respond
  .comment-form
  p.comment-form-author
  input#author:focus {
  border-color: var(--orange-main);
}

.comments-area .comment-respond .comment-form p.comment-form-email input#email {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--orange-90);
  border-radius: 12px;
  padding: 10px 15px;
  outline: none;
  font-size: 1em;
}

.comments-area
  .comment-respond
  .comment-form
  p.comment-form-email
  input#email:focus {
  border-color: var(--orange-main);
}

.comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
  width: 100%;
  max-width: 320px;
}

.comments-area .comment-respond .comment-form input#submit {
  background: var(--orange-main);
  border: none;
  outline: none;
  color: var(--orange-10);
  font-weight: 700;
  width: 130px;
  display: inline-block;
  height: 45px;
  border-radius: 90px;
  letter-spacing: -1px;
  text-align: center;
  cursor: pointer;
}

.comments-area .comment-respond .comment-form input#submit:hover {
  background: var(--orange-90);
}

/* About */
body.page header.entry-header {
  height: 300px;
  display: grid;
  place-items: center;
}

body.page header.entry-header h1.entry-title {
  font-size: 3em;
  font-weight: 900;
  letter-spacing: -2px;
}

.page-aboutus .entry-content {
  display: grid;
  gap: 5em;
}

.page-aboutus .entry-content .wp-block-uagb-container.about-section {
  background: var(--orange-05);
  padding: 10px;
  border-radius: 34px;
  min-height: 700px;
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-right {
  background: var(--orange-100);
  height: 100%;
  border-radius: 24px;
  padding: 1em;
  justify-content: center;
  align-items: center;
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
  --asr-width: 470px;
  width: var(--asr-width);
  gap: 2em;
  box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
    0px 13px 22px -16px rgba(164, 88, 17, 0.5),
    0px 40px 78px -37px rgba(247, 133, 26, 0.2);
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-right::before {
  content: "";
  background: linear-gradient(
    0deg,
    var(--Orange-Main, #f7851a) 0%,
    var(--Orange-100, #170c02) 100%
  );
  filter: blur(250px);
  position: absolute;
  width: 100%;
  height: 320px;
  bottom: 0;
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-right::after {
  content: "";
  background-image: url("assets/earth-full.png");
  width: 560px;
  position: absolute;
  height: 560px;
  background-size: 100%;
  z-index: 1;
  bottom: calc(var(--asr-width) * -0.75);
  background-repeat: no-repeat;
  mix-blend-mode: hard-light;
  opacity: 0.5;
  animation: gentle-rotate 100s linear infinite;
  will-change: transform;
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-right
  .wp-block-uagb-container.about-section-logo {
  width: 200px;
  height: 100px;
  background: var(--orange-90);
  border-radius: 200px;
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-right
  h2.uagb-heading-text {
  color: var(--orange-20);
  font-size: 1.7em;
  font-weight: 900;
  letter-spacing: -1px;
}

.page-aboutus
  .entry-content
  .wp-block-uagb-container.about-section
  > div
  > .wp-block-uagb-container.about-section-left {
  flex: 1 1 60%;
  padding: 0 4em;
  font-size: 1.1em;
  gap: 1em;
  letter-spacing: -0.5px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
  .site {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    margin: 0 auto;
    width: calc(100% - 40px);
  }

  body.home
    section.wp-block-uagb-container.home-section.home-hero.uagb-is-root-container
    > .uagb-container-inner-blocks-wrap {
    width: calc(100vw - 40px);
  }

  .home-section.home-hero > .uagb-container-inner-blocks-wrap::before {
    width: calc(100vw - 40px);
    margin: 0 auto;
    transform: translate(-50%, -50%);
    left: 50%;
  }

  .home-section.home-hero .uagb-container-inner-blocks-wrap .home-hero-bottom {
    width: calc(100vw - 40px);
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom::before,
  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom::after {
    width: 100% !important;
  }

  .home .home-hero .home-hero-bg {
    width: 100% !important;
    height: 83vh;
    top: -60px;
    border-radius: 0 0 34px 34px;
  }

  .home .home-hero .home-hero-bg::after {
    width: 400px;
    height: 400px;
    bottom: -10px;
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom
    .home-hero-bottom-inner
    p {
    width: 92% !important;
    font-size: 1.1em;
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-top
    .home-hero-title
    h1.uagb-heading-text {
    font-size: 28px;
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-top
    > .uagb-container-inner-blocks-wrap
    .home-hero-ctas
    .uagb-buttons__wrap
    .wp-block-button:first-child
    a {
    border-radius: 50px;
    background: var(--Orange-Main, #f7851a);
    box-shadow: 0px 11px 30px -10px var(--Orange-80, #7b420d);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1em;
    padding: 12px 15px;
  }

  .home
    section.wp-block-uagb-container.home-section.uagb-is-root-container
    > .uagb-container-inner-blocks-wrap {
    justify-content: flex-start;
    gap: 5em;
    margin-bottom: 0;
    padding-top: 4em;
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom
    .home-hero-bottom-inner {
    border-radius: 14px;
    border: 1px solid var(--Orange-80, #7b420d);
    background: rgba(82, 44, 8, 0.5);
    box-shadow: 0px -13px 22px -18px rgba(164, 88, 17, 0.5),
      0px -30px 28px 1px rgba(248, 153, 64, 0.08);
    backdrop-filter: blur(16px);
    position: relative;
    bottom: 20px;
    border-bottom: 1px solid var(--Orange-80, #7b420d);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
  }

  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom::after,
  .home-section.home-hero
    .uagb-container-inner-blocks-wrap
    .home-hero-bottom::before {
    display: none;
  }

  .wp-block-uagb-container.home-hero-logos.uagb-is-root-container
    > .uagb-container-inner-blocks-wrap {
    display: grid;
    grid-template: auto / 1fr 1fr;
    gap: 3em 0em !important;
  }

  .wp-block-uagb-container.home-hero-logos.uagb-is-root-container
    > .uagb-container-inner-blocks-wrap
    > .wp-block-uagb-image:last-child {
    grid-column: 1 / -1;
  }

  .wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(
      .wp-block-uagb-separator--icon
    )
    .wp-block-uagb-separator__inner {
    width: 1px !important;
  }

  .home-solutions > .uagb-container-inner-blocks-wrap .home-solutions-bottom {
    gap: 25px;
    position: relative;
    width: 90%;
    max-width: 90%;
  }

  .home-solutions
    > .uagb-container-inner-blocks-wrap
    .home-solutions-bottom
    .home-solutions-bottom-item:nth-child(2) {
    top: 0;
  }

  .home-section.home-products .wp-block-uagb-container.home-products-inner {
    flex-direction: column;
    gap: 3em;
    width: 90%;
    max-width: 90%;
  }

  .home-section.home-products .home-products-inner .home-products-right {
    flex: 1 0 auto;
  }

  .home-section.home-products
    .home-products-inner
    .home-products-left
    > div:nth-child(even) {
    position: relative;
    top: 0;
  }

  .home-services {
    position: relative;
    width: 90%;
    max-width: 90%;
  }

  .home-services > .uagb-container-inner-blocks-wrap .home-services-bg::after {
    border-radius: 34px;
    border: 1px solid var(--orange-main, #f7851a);
    background: rgba(253, 234, 216, 0.4);
    backdrop-filter: blur(8.5px);
    content: "";
    position: absolute;
    width: 100%;
    height: 104%;
    z-index: -1;
    opacity: 0.7;
  }

  .home-services > .uagb-container-inner-blocks-wrap .home-services-top > i {
    font-size: 6em;
    display: grid;
    place-items: center;
    color: var(--orange-main);
  }

  .home-services > .uagb-container-inner-blocks-wrap .home-services-top {
    gap: 1em;
    margin: 30px 0 0;
  }

  .home-services > .uagb-container-inner-blocks-wrap .home-services-bottom {
    gap: 25px;
    position: relative;
    width: calc(100% - 2em);
  }

  .home-services
    > .uagb-container-inner-blocks-wrap
    .home-services-bottom
    .home-services-bottom-item:nth-child(2) {
    top: 0;
  }

  .home-services
    > .uagb-container-inner-blocks-wrap
    .home-services-bottom
    .home-services-bottom-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px -9px 28px -10px rgba(123, 66, 13, 0.08),
      0px 13px 22px -16px rgba(164, 88, 17, 0.5),
      0px 40px 78px -37px rgba(247, 133, 26, 0.2);
    backdrop-filter: blur(15px);
    padding: 1em 1em;
    min-height: 310px;
    gap: 15px;
    position: relative;
  }

  .site-footer .f-widget-area-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgb(82 44 8 / 30%);
    padding: 0 0 3em;
    flex-wrap: wrap;
    gap: 2em;
  }

  .site-footer .f-widget-area-top > section {
    flex: 1 1 40%;
  }
}

@media (max-width: 1023px) {
  #site-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
  }

  #site-navigation .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 350px;
    height: 100vh;
    background: var(--orange-100, #170c02);
    box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    will-change: transform;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    padding: 2em 1.5em;
    gap: 1em;
    overflow-y: auto;
    border-radius: 0 34px 34px 0;
  }

  #site-navigation .main-menu.open {
    /* GSAP will handle transform */
  }

  #site-navigation .mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    transition: opacity 0.2s;
    backdrop-filter: blur(5px);
  }

  .menu-main-fehrest-container {
    position: relative;
    z-index: 10000;
  }

  #site-navigation.menu-open {
    pointer-events: auto;
  }

  #site-navigation.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  #toggle-menu {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 10000;
    color: var(--orange-main);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border: none;
    background: transparent;
  }

  .main-navigation .main-menu li {
    width: 100%;
  }

  .main-navigation .main-menu a {
    color: var(--orange-05, #fef8f2);
    font-size: 1.2em;
    padding: 1em 0;
    border-bottom: 1px solid var(--orange-90, #522c08);
  }

  .main-navigation .main-menu .sub-menu {
    background: none;
    position: static;
    box-shadow: none;
    padding: 0 0 0 1em;
  }
  .menu-highlight {
    display: none !important;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .main-navigation #toggle-menu {
    display: none;
  }

  button#toggle-menu {
    display: none;
}
}

.gsap-sticky {
  will-change: transform;
}

.hide-visually {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
