


=================================================*/
@import url("Vazirmatn-RD-FD-font-face.css");

body {
  padding: 0;
  margin: 0;
  font-family: "Vazirmatn RD FD", sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover, a:focus {
  text-decoration: none;
  color: #a53d35;
}

button {
  outline: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #666666;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Vazirmatn RD FD", sans-serif;
}

.bg-faf5f5 {
  background-color: #faf5f5;
}

/*default&optional-btn*/
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #43A047;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #252920;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.default-btn:hover, .default-btn:focus {
  color: #ffffff;
}

.default-btn:hover span, .default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

.optional-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #221f1f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.optional-btn:hover{
    background-color:#43A047;
}
.optional-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #a53d35;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.optional-btn:hover, .optional-btn:focus {
  color: #ffffff;
}

.optional-btn:hover span, .optional-btn:focus span {
  width: 225%;
  height: 562.5px;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
  margin-top: -6px;
}

.section-title .sub-title {
  display: block;
  color: #1b5e20;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 18px;
}

.section-title .sub-title a {
  display: inline-block;
  color: #a53d35;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.section-title h2 span {
  color: #1b5e20;
  display: inline-block;
}

.section-title p {
  font-size: 15.5px;
  margin-top: 12px;
}

/*form-control*/
.form-control {
  height: 45px;
  padding: 0 15px;
  font-size: 16px;
  line-height: initial;
  color: #252920;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control:focus {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-color: #a53d35;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background:
radial-gradient(circle at 15% 20%, #66BB6A 0%, transparent 40%),
radial-gradient(circle at 85% 80%, #43A047 0%, transparent 38%),
linear-gradient(135deg, #FFFFFF 0%, #D7F3DB 40%, #9DD8A5 100%);
  top: 0;
  left: 0;
}

.preloader .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-43%);
          transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}

.preloader .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-animation: animate .5s linear infinite;
          animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}

.preloader .shadow {
  width: 100%;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow .5s linear infinite;
          animation: shadow .5s linear infinite;
}

@-webkit-keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.zovio-responsive-nav {
  display: none;
}

.navbar-brand {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 35px;
}

.zovio-nav {
  background-color: transparent;
}

.zovio-nav .navbar {
  background-color: #221f1f;
  padding-right: 25px;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.zovio-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.zovio-nav .navbar .navbar-nav {
  margin-left: auto;
}

.zovio-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.zovio-nav .navbar .navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 400;
  color: #dddddd;
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  padding-top: 13px;
  padding-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

.zovio-nav .navbar .navbar-nav .nav-item a:hover, .zovio-nav .navbar .navbar-nav .nav-item a:focus, .zovio-nav .navbar .navbar-nav .nav-item a.active {
  color: #ffffff;
}

.zovio-nav .navbar .navbar-nav .nav-item a i {
  text-align: center;
  margin-top: -4px;
}

.zovio-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.zovio-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.zovio-nav .navbar .navbar-nav .nav-item:hover a, .zovio-nav .navbar .navbar-nav .nav-item.active a {
  color: #ffffff;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 8px 15px;
  margin: 0;
  position: relative;
  color: #252920;
  font-size: 15.5px;
  font-weight: 400;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 1px;
  background-color: #a53d35;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #a53d35;
  padding-left: 26px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  width: 20px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #a53d35;
}

.zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.zovio-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.zovio-nav .navbar .others-options {
  margin-left: 25px;
}

.zovio-nav .navbar .others-options .cart-btn {
  display: inline-block;
  color: #dddddd;
  font-size: 23px;
}

.zovio-nav .navbar .others-options .cart-btn:hover {
  color: #a53d35;
}

.zovio-nav .navbar .others-options .option-item {
  color: #dddddd;
  display: inline-block;
  position: relative;
  line-height: initial;
  margin-left: 15px;
}

.zovio-nav .navbar .others-options .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #dddddd;
  font-size: 23px;
}

.zovio-nav .navbar .others-options .option-item .search-btn:hover {
  color: #a53d35;
}

.zovio-nav .navbar .others-options .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 23px;
  color: #dddddd;
  font-size: 23px;
}

.zovio-nav .navbar .others-options .option-item .close-btn.active {
  display: block;
}

.zovio-nav .navbar .others-options .option-item .close-btn:hover {
  color: #a53d35;
}

.zovio-nav .navbar .others-options .burger-menu {
  width: 35px;
  height: auto;
  background-color: transparent;
  margin-left: 15px;
  cursor: pointer;
  display: inline-block;
}

.zovio-nav .navbar .others-options .burger-menu span {
  display: block;
  width: 35px;
  height: 3px;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  margin-left: auto;
  margin-bottom: 4px;
}

.zovio-nav .navbar .others-options .burger-menu span:nth-child(3) {
  margin-bottom: 0;
  width: 28px;
  margin-left: auto;
}

.zovio-nav .navbar .others-options .burger-menu:hover span:nth-child(3) {
  width: 35px;
}

/*==============================
Sticky Navbar
==============================*/

.navbar-area{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

.navbar-area.is-sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    animation:fadeInDown .4s;

}

@keyframes fadeInDown{

    from{

        opacity:0;

        transform:translateY(-100%);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.navbar-area.navbar-style-two {
  position: fixed;
  top: 0;
  background-color: #ffffff;
}

.navbar-area.navbar-style-two .navbar-brand {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 35px;
  padding-right: 35px;
}

.navbar-area.navbar-style-two .zovio-nav {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-area.navbar-style-two .zovio-nav .navbar {
  background-color: #ffffff;
  padding-right: 50px;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 200px;
  margin-right: auto;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item a {
  color: #252920;
  padding-top: 15px;
  padding-bottom: 12px;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item:hover a, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  margin-top: 0;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .cart-btn {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .cart-btn:hover {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .option-item {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .option-item .search-btn {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .option-item .search-btn:hover {
  color: #a53d35;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .option-item .close-btn {
  color: #252920;
}

.navbar-area.navbar-style-two .zovio-nav .navbar .others-options .option-item .close-btn:hover {
  color: #a53d35;
}

.navbar-area.navbar-style-two .search-overlay.search-popup {
  margin-top: 20px;
}

.navbar-area.navbar-style-two.is-sticky {
  -webkit-animation: unset;
          animation: unset;
}

.navbar-area.navbar-style-two.is-sticky .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-area.navbar-style-three {
  top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}

.navbar-area.navbar-style-three .navbar-brand {
  background-color: transparent;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.navbar-area.navbar-style-three .zovio-nav {
  background-color: transparent;
}

.navbar-area.navbar-style-three .zovio-nav .navbar {
  background-color: transparent;
  padding-right: 0;
}

.navbar-area.navbar-style-three .zovio-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-area.navbar-style-three .zovio-nav .navbar .others-options .burger-menu span {
  background: #dddddd;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  color: #252920;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: #a53d35;
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 40px;
  outline: 0;
  color: #666666;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.search-overlay.search-popup .search-form .search-button:hover, .search-overlay.search-popup .search-form .search-button:focus {
  color: #a53d35;
}

.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 25%;
  overflow-y: scroll;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.sidebar-modal .sidebar-modal-inner .close-btn {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 20px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #252920;
  opacity: .66;
  cursor: pointer;
}

.sidebar-modal .sidebar-modal-inner .close-btn:hover {
  opacity: 1;
}

.sidebar-modal .sidebar-about-area {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-about-area .title h2 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.sidebar-modal .sidebar-about-area .title p {
  margin-top: 15px;
  font-size: 14px;
}

.sidebar-modal .sidebar-instagram-feed {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-instagram-feed h2 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

.sidebar-modal .sidebar-instagram-feed ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}

.sidebar-modal .sidebar-instagram-feed ul li {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.sidebar-modal .sidebar-instagram-feed ul li a {
  display: block;
  position: relative;
}

.sidebar-modal .sidebar-instagram-feed ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
  opacity: .50;
  visibility: visible;
}

.sidebar-modal .sidebar-contact-area .contact-info {
  text-align: center;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  font-family: "Vazirmatn RD FD", serif;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a {
  display: inline-block;
  color: #a53d35;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:hover {
  color: #252920;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:not(:first-child) {
  color: #252920;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:not(:first-child):hover {
  color: #a53d35;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 span {
  display: block;
  color: #666666;
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 1px;
  padding-left: 0;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a {
  width: 35px;
  height: 35px;
  line-height: 34px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #aba5a5;
  display: block;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a i {
  font-size: 14px;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a:hover {
  color: #ffffff;
  border-color: #a53d35;
  background-color: #a53d35;
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

@media only screen and (max-width: 991px) {
  .zovio-responsive-nav {
    display: block;
  }
  .zovio-responsive-nav .zovio-responsive-menu {
    position: relative;
  }
  .zovio-responsive-nav .zovio-responsive-menu.mean-container .mean-nav ul {
    font-size: 14px;
  }
  .zovio-responsive-nav .zovio-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #a53d35;
  }
  .zovio-responsive-nav .zovio-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 13.5px;
  }
  .zovio-responsive-nav .zovio-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 350px;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .zovio-responsive-nav .mean-container a.meanmenu-reveal {
    color: #252920;
  }
  .zovio-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #252920;
  }
  .zovio-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .zovio-responsive-nav .others-options {
    position: absolute;
    right: 55px;
    top: 16px;
  }
  .zovio-responsive-nav .others-options .cart-btn {
    display: inline-block;
    color: #252920;
    font-size: 20px;
  }
  .zovio-responsive-nav .others-options .cart-btn:hover {
    color: #a53d35;
  }
  .zovio-responsive-nav .others-options .option-item {
    color: #252920;
    display: inline-block;
    position: relative;
    line-height: initial;
    margin-left: 15px;
  }
  .zovio-responsive-nav .others-options .option-item .search-btn {
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #252920;
    font-size: 20px;
  }
  .zovio-responsive-nav .others-options .option-item .search-btn:hover {
    color: #a53d35;
  }
  .zovio-responsive-nav .others-options .option-item .close-btn {
    cursor: pointer;
    display: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 20px;
    color: #252920;
    font-size: 20px;
  }
  .zovio-responsive-nav .others-options .option-item .close-btn.active {
    display: block;
  }
  .zovio-responsive-nav .others-options .option-item .close-btn:hover {
    color: #a53d35;
  }
  .zovio-responsive-nav .others-options .burger-menu {
    display: none;
  }
  .zovio-responsive-nav .search-overlay.search-popup {
    width: 235px;
    right: -50px;
    margin-top: 29px !important;
  }
  .zovio-responsive-nav .search-overlay.search-popup .search-form .search-input {
    width: 96%;
    height: 43px;
  }
  .zovio-responsive-nav .search-overlay.search-popup .search-form .search-button {
    height: 43px;
  }
  .sidebar-modal {
    display: none;
  }
  .navbar-area {
    background-color: #ffffff;
    position: relative;
    top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    background-color: #ffffff !important;
  }
  .navbar-area.navbar-style-two {
    position: relative;
  }
  .navbar-area.navbar-style-two.is-sticky {
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
            animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
  }
  .navbar-area.navbar-style-three {
    padding-left: 0;
    padding-right: 0;
  }
  .zovio-nav {
    display: none;
  }
}

/*================================================
Main Banner CSS
=================================================*/
.main-banner {
  position: relative;
  z-index: 1;
  height: 850px;
  background-color: #252920;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.item-bg1 {
  background-image: url(../img/home-slide.png);
}

.item-bg2 {
  background-image: url(../img/main-slider-2.png);
}

.item-bg3 {
  background-image: url(../img/main-banner3.jpg);
}

.main-banner-content {
  text-align: center;
  max-width: 770px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.main-banner-content h1 {
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 64px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.main-banner-content p {
  color: #ffffff;
  max-width: 600px;
  margin-top: 25px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main-banner-content .btn-box {
  margin-top: 35px;
}

.main-banner-content .btn-box .default-btn, .main-banner-content .btn-box .optional-btn {
  margin-left: 3px;
  margin-right: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 5px;
  bottom: 5px;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 20px;
  margin: 0 4px;
  padding: 0;
  background: #221f1f;
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-left: 0;
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-right: 0;
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #a53d35;
  color: #ffffff;
}

.home-slides-two .main-banner {
  height: 100vh;
}

.home-slides-two .main-banner-content {
  margin-top: 60px;
}

.home-slides-two.owl-theme .owl-nav {
  margin-top: 0;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 20px;
  margin: 0 0;
  padding: 0;
  background: #221f1f;
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-slides-two.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #a53d35;
  color: #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  margin-top: -130px;
}

.about-content {
  position: relative;
  z-index: 1;
  padding-right: 30px;
  padding-top: 230px;
}

.about-content .sub-title {
  display: block;
  color: #a53d35;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 18px;
}

.about-content h2 {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.about-content h2 span {
  color: #a53d35;
  display: inline-block;
}

.about-content p {
  max-width: 575px;
}

.about-content .quote {
  color: #409b44;
  margin-bottom: 15px;
  font-size: 22px;
}

.about-content .default-btn {
  margin-top: 10px;
  border-radius:12px;
}

.about-content .back-animation-text {
  position: absolute;
  bottom: -80px;
  left: 10px;
  z-index: -1;
  color: #f4f7f7;
  font-size: 99px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
  font-style: italic;
}

.about-text {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}

.about-text .sub-title {
  display: block;
  color: #a53d35;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 18px;
}

.about-text h2 {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.about-text h2 span {
  color: #a53d35;
  display: inline-block;
}

.about-text p {
  max-width: 575px;
}

.about-text .quote {
  color: #409b44;
  margin-bottom: 15px;
  font-size: 22px;
}

.about-text .default-btn {
  margin-top: 10px;
}

.about-text .back-animation-text {
  position: absolute;
  bottom: -80px;
  left: 10px;
  z-index: -1;
  color: #f4f7f7;
  font-size: 99px;
  font-size: 93px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
  font-style: italic;
}

.about-image {
  position: relative;
  z-index: 1;
  padding-bottom: 17px;
  padding-right: 17px;
}
.about-image img {
  border-radius:12px;
}

.about-image::before {
  width: 95%;
  height: 95%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #43A047;
  background-image: url(../img/about-shape14.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius:12px;
}

.about-image:hover::before {
  right: 5px;
  bottom: 5px;
}

.about-img {
  position: relative;
  text-align: right;
  padding-bottom: 75px;
}

.about-img img:nth-child(2) {
  border: 5px solid #ffffff;
  position: absolute;
  left: -75px;
  bottom: 0;
}

/*================================================
Offer Area CSS
=================================================*/
.offer-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.single-offer-box {
  margin-bottom: 30px;
  background-color: #fcf5f5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-offer-box .offer-image {
  overflow: hidden;
}

.single-offer-box .offer-image a {
  display: block;
}

.single-offer-box .offer-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-offer-box .offer-content {
  position: relative;
  z-index: 1;
  padding: 25px 75px 25px 25px;
}

.single-offer-box .offer-content h3 {
  margin-bottom: 0;
  color: #221f1f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 600;
}

.single-offer-box .offer-content h3 a {
  color: #221f1f;
  display: inline-block;
}

.single-offer-box .offer-content .details-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #252920;
  font-size: 18px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.single-offer-box .offer-content::before {
  width: 3px;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: #a53d35;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-offer-box:hover .offer-image a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.single-offer-box:hover .offer-content h3 {
  color: #ffffff;
}

.single-offer-box:hover .offer-content h3 a {
  color: #ffffff;
}

.single-offer-box:hover .offer-content::before {
  width: 100%;
}

.single-offer-box:hover .details-btn {
  border-radius: 5px;
}

.offer-box {
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid #f6eeed;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 30px 25px 35px;
}

.offer-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.offer-box h3 a {
  display: inline-block;
}

.offer-box .icon {
  margin-bottom: 10px;
  color: #409b44;
  font-size: 60px;
}

.offer-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.offer-box .read-more-btn {
  margin-top: 25px;
  display: inline-block;
  text-transform: uppercase;
  color: #a53d35;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
}

.offer-box .read-more-btn::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background-color: #a53d35;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-box .read-more-btn:hover::before {
  opacity: 1;
  visibility: visible;
  right: -15px;
}

.offer-box:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  padding-bottom: 70px;
  margin-top: 25px;
}

.services-area .section-title {
  text-align: left;
  margin-left: 0;
  max-width: 555px;
}

.services-area .section-title p {
  margin-left: 0;
  max-width: 100%;
}

.single-services-box {
  margin-bottom: 30px;
  position: relative;
}

.single-services-box .services-image {
  position: relative;
  z-index: 1;
}

.single-services-box .services-image img {
  width: auto !important;
  display: inline-block !important;
}

.single-services-box .services-image::before {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgb(76 153 80)));
  background: linear-gradient(to bottom, transparent, rgb(76 153 80));
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
}

.single-services-box .services-content {
  position: absolute;
  z-index: 2;
  padding: 20px 75px 20px 25px;
  bottom: 10px;
  left: 0;
  height: auto;
  width: 100%;
  max-width: 260px;
}

.single-services-box .services-content h3 {
  margin-bottom: 0;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 600;
}

.single-services-box .services-content h3 a {
  color: #ffffff;
  display: inline-block;
}

.single-services-box .services-content .details-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #252920;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
}

.single-services-box .services-content::before {
  width: 4px;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box:hover .services-content::before {
  width: 100%;
}

.single-services-box:hover .services-content h3 {
  color: #252920;
}

.single-services-box:hover .services-content h3 a {
  color: #252920;
}

.single-services-box:hover .services-content .details-btn {
  background-color: #a53d35;
  color: #ffffff;
}

.services-slides.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 13.5%;
  top: -105px;
}

.services-slides.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 20px;
  margin: 0 4px;
  padding: 0;
  background: #221f1f;
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-left: 0;
}

.services-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-right: 0;
}

.services-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #a53d35;
  color: #ffffff;
}

.services-section {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  background-image: url(../img/services-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #252920;
  opacity: .80;
}

.services-section .section-title .sub-title {
  color: #ffffff;
}

.services-section .section-title h2 {
  color: #ffffff;
}

.services-section .section-title h2 span {
  color: #ffffff;
}

.services-section .section-title p {
  color: #ffffff;
}

.services-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 22%;
  background-color: #ffffff;
  z-index: -1;
}

.services-box {
  text-align: center;
  margin-bottom: 30px;
  background-color: #f4eeed;
  padding: 34px 25px 30px 25px;
  position: relative;
  z-index: 1;
}

.services-box::before {
  width: 100%;
  height: 4px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #a53d35;
  z-index: -1;
}

.services-box h3 {
  text-transform: uppercase;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 600;
}

.services-box h3 a {
  display: inline-block;
}

.services-box .icon {
  margin-bottom: 10px;
  color: #a53d35;
  font-size: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-box p {
  font-size: 15.5px;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-box .read-more-btn {
  margin-top: 25px;
  display: inline-block;
  text-transform: uppercase;
  color: #a53d35;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
}

.services-box .read-more-btn::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background-color: #a53d35;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-box .read-more-btn:hover::before {
  opacity: 1;
  visibility: visible;
  right: -15px;
}

.services-box:hover .icon {
  color: #ffffff;
}

.services-box:hover::before {
  height: 100%;
}

.services-box:hover h3 {
  color: #ffffff;
}

.services-box:hover h3 a {
  color: #ffffff;
}

.services-box:hover p {
  color: #ffffff;
}

.services-box:hover .read-more-btn {
  color: #ffffff;
}

.services-box:hover .read-more-btn::before {
  background-color: #ffffff;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc .services-details-image {
  margin-bottom: 30px;
}

.services-details-desc .services-details-image img {
  width: 100%;
}

.services-details-desc h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 600;
}

.services-details-desc p {
  font-size: 15.2px;
}

.services-details-desc .services-details-features {
  margin-top: 25px;
  margin-bottom: 25px;
}

.services-details-desc .services-features-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.services-details-desc .services-features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-size: 15.2px;
}

.services-details-desc .services-features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: #faf5f5;
  color: #a53d35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.services-details-desc .services-features-list li:hover i {
  background-color: #a53d35;
  color: #ffffff;
}

.services-details-desc .services-features-list li:last-child {
  margin-bottom: 0;
}

.services-details-desc .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.services-details-desc .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.services-details-desc .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

/*================================================
Our Story Area CSS
=================================================*/
.our-story-area {
  position: relative;
  z-index: 1;
}

.our-story-area::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: url(../img/bg-color-shape.jpg);
  background-position: center center;
}

.our-story-content {
  position: relative;
}

.our-story-content .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #ffffff;
  color: #a53d35;
  text-align: center;
  font-size: 35px;
  border-radius: 3px;
}

.our-story-content .video-btn::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  -webkit-animation: ripple 1.8s ease-out infinite;
          animation: ripple 1.8s ease-out infinite;
  opacity: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.our-story-content .video-btn:hover {
  color: #ffffff;
  background-color: #a53d35;
}

.our-story-content .quote {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 0 5px 0 0;
  max-width: 400px;
  padding-top: 75px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 30px;
}

.our-story-content .quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #409b44;
  opacity: 0.83;
  border-radius: 0 5px 0 0;
}

.our-story-content .quote p {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}

.our-story-content .quote h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.our-story-content .quote span {
  display: block;
  color: #ffffff;
  margin-top: 5px;
  font-weight: 400;
  font-size: 15px;
}

.our-story-content .quote::after {
  content: "\f10d";
  position: absolute;
  left: 52px;
  top: 30px;
  color: #ffffff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: Flaticon;
  font-style: normal;
  font-size: 30px;
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-image: url(../img/bg-color-shape.jpg);
  background-position: center center;
}

.single-fun-facts {
  text-align: center;
  position: relative;
  z-index: 1;
}

.single-fun-facts h3 {
  margin-bottom: 0;
  color: #a53d35;
  font-size: 45px;
  font-weight: 600;
}

.single-fun-facts p {
  line-height: initial;
  color: #252920;
  font-size: 18px;
  font-weight: 400;
}

.single-fun-facts p p {
  margin-top: 15px;
  margin-bottom: 0;
}

.single-fun-facts .back-text {
  position: absolute;
  left: 0;
  right: 0;
  top: -68px;
  z-index: -1;
  color: #f2eded;
  font-size: 140px;
  font-weight: 900;
  font-family: "Vazirmatn RD FD", serif;
  font-style: italic;
}

/*================================================
How We Work Area CSS
=================================================*/
.how-we-work-area {
  overflow: hidden;
}

.how-we-work-area .section-title {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 0;
  max-width: 555px;
}

.how-we-work-area .section-title p {
  margin-left: 0;
  max-width: 100%;
}

.how-we-work-process {
  position: relative;
  z-index: 1;
}

.how-we-work-process .process-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.how-we-work-process .process-list .single-process {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.how-we-work-process .process-list .single-process:nth-child(1) {
  margin-top: 180px;
}

.how-we-work-process .process-list .single-process:nth-child(2) {
  margin-top: 120px;
}

.how-we-work-process .process-list .single-process:nth-child(3) {
  margin-top: 60px;
}

.how-we-work-process .process-list .single-process .content {
  position: relative;
  z-index: 1;
  padding-top: 105px;
  padding-right: 25px;
  padding-left: 25px;
  padding-bottom: 25px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.how-we-work-process .process-list .single-process .content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background-color: #b3d5b4;
}

.how-we-work-process .process-list .single-process .content .number {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1b5e20;
  color: #dddddd;
  width: 80px;
  height: 80px;
  line-height: 60px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.how-we-work-process .process-list .single-process .content h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.how-we-work-process .process-list .single-process .content P {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #23221d;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
}

.how-we-work-process .process-list .single-process .content::after {
  opacity: 0;
  visibility: hidden;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #0f4611;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.how-we-work-process .process-list .single-process .content.bg-1 {
  background-image: url(../img/blog-img4.jpg);
}

.how-we-work-process .process-list .single-process .content.bg-2 {
  background-image: url(../img/blog-img5.jpg);
}

.how-we-work-process .process-list .single-process .content.bg-3 {
  background-image: url(../img/blog-img3.jpg);
}

.how-we-work-process .process-list .single-process .content.bg-4 {
  background-image: url(../img/blog-img6.jpg);
}

.how-we-work-process .process-list .single-process .content:hover::before {
  opacity: 0;
  visibility: hidden;
}

.how-we-work-process .process-list .single-process .content:hover::after {
  visibility: visible;
  opacity: 0.54;
}

.how-we-work-process .process-list .single-process .content:hover h3 {
  color: #ffffff;
}

.how-we-work-process .process-list .single-process .content:hover p {
  color: #ffffff;
}

.how-we-work-process::before {
  content: '';
  position: absolute;
  left: -275px;
  top: -200px;
  width: 1526px;
  height: 602px;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: -1;
  background-image: url(../img/arrow.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.how-we-work-section {
  padding-bottom: 70px;
}

.single-process-box {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding-top: 105px;
  padding-right: 25px;
  padding-left: 25px;
  padding-bottom: 25px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-process-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background-color: #fcecea;
}

.single-process-box .number {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #a53d35;
  color: #dddddd;
  width: 80px;
  height: 80px;
  line-height: 60px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.single-process-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.single-process-box P {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #23221d;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
}

.single-process-box::after {
  opacity: 0;
  visibility: hidden;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #a53d35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-process-box.bg-1 {
  background-image: url(../img/services-img1.jpg);
}

.single-process-box.bg-2 {
  background-image: url(../img/services-img2.jpg);
}

.single-process-box.bg-3 {
  background-image: url(../img/services-img3.jpg);
}

.single-process-box.bg-4 {
  background-image: url(../img/services-img4.jpg);
}

.single-process-box:hover::before {
  opacity: 0;
  visibility: hidden;
}

.single-process-box:hover::after {
  visibility: visible;
  opacity: 0.54;
}

.single-process-box:hover h3 {
  color: #ffffff;
}

.single-process-box:hover p {
  color: #ffffff;
}

/*================================================
Projects Area CSS
=================================================*/
.projects-area {
  padding-bottom: 70px;
}

.projects-area .pagination-area {
  margin-bottom: 30px;
}

.single-projects-box {
  position: relative;
  width: 100%;
  height: 470px;
  margin-bottom: 30px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-projects-box.bg-1 {
  background-image: url(../img/projects-img1.jpg);
}

.single-projects-box.bg-2 {
  background-image: url(../img/projects-img2.jpg);
}

.single-projects-box.bg-3 {
  background-image: url(../img/projects-img3.jpg);
}

.single-projects-box.bg-4 {
  background-image: url(../img/projects-img4.jpg);
}

.single-projects-box.bg-5 {
  background-image: url(../img/projects-img5.jpg);
}

.single-projects-box.bg-6 {
  background-image: url(../img/projects-img6.jpg);
}

.single-projects-box .details-btn {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

.single-projects-box .projects-content {
  position: absolute;
  left: 0;
  bottom: 15px;
  background-color: #ffffff;
  height: auto;
  width: 100%;
  padding: 20px;
  -webkit-transition: opacity .3s,-webkit-transform .3s ease;
  transition: opacity .3s,-webkit-transform .3s ease;
  transition: transform .3s ease,opacity .3s;
  transition: transform .3s ease,opacity .3s,-webkit-transform .3s ease;
  max-width: 370px;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.single-projects-box .projects-content h3 {
  margin-bottom: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: opacity .3s,-webkit-transform .3s ease;
  transition: opacity .3s,-webkit-transform .3s ease;
  transition: transform .3s ease,opacity .3s;
  transition: transform .3s ease,opacity .3s,-webkit-transform .3s ease;
  opacity: 0;
  font-size: 22px;
  font-weight: 600;
}

.single-projects-box .projects-content .category {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #666666;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.single-projects-box:hover .projects-content {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.single-projects-box:hover .projects-content h3 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .5s .3s,-webkit-transform .5s ease .5s;
  transition: opacity .5s .3s,-webkit-transform .5s ease .5s;
  transition: transform .5s ease .5s,opacity .5s .3s;
  transition: transform .5s ease .5s,opacity .5s .3s,-webkit-transform .5s ease .5s;
}

.single-projects-box:hover .projects-content .category {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .5s .6s,-webkit-transform .5s ease .6s;
  transition: opacity .5s .6s,-webkit-transform .5s ease .6s;
  transition: transform .5s ease .6s,opacity .5s .6s;
  transition: transform .5s ease .6s,opacity .5s .6s,-webkit-transform .5s ease .6s;
}

/*================================================
Projects Details Area CSS
=================================================*/
.projects-details {
  padding: 40px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
}

.projects-details-desc {
  margin-top: 25px;
}

.projects-details-desc h3 {
  margin-bottom: 13px;
  font-size: 23px;
  font-weight: 600;
}

.projects-details-desc p {
  font-size: 15px;
}

.projects-details-desc .project-details-info {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-top: 30px;
}

.projects-details-desc .project-details-info .single-info-box {
  -ms-flex: 0 0 20%;
  -webkit-box-flex: 0;
          flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}

.projects-details-desc .project-details-info .single-info-box h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.projects-details-desc .project-details-info .single-info-box span {
  display: block;
  color: #666666;
  font-size: 15px;
}

.projects-details-desc .project-details-info .single-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.projects-details-desc .project-details-info .single-info-box .social li {
  display: inline-block;
  margin-right: 6px;
}

.projects-details-desc .project-details-info .single-info-box .social li a {
  color: #666666;
  display: inline-block;
}

.projects-details-desc .project-details-info .single-info-box .social li a:hover {
  color: #a53d35;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.projects-image-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.projects-image-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  background-color: #a53d35;
  border-radius: 5px;
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.projects-image-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 50px;
}

.projects-image-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #252920;
}

.projects-image-slides.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: 25px;
}

.projects-image-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 25px;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  background-color: #a53d35;
  background-image: url(../img/testimonials-bg.jpg);
  background-position: center center;
}

.testimonials-area .section-title {
  margin-top: 30px;
  margin-bottom: 25px;
}

.testimonials-area .section-title .sub-title {
  color: #ffffff;
}

.testimonials-area .section-title h2 {
  color: #ffffff;
}

.testimonials-area .section-title h2 span {
  color: #ffffff;
}

.testimonials-area::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  background-color: #ffffff;
  z-index: -1;
}

.single-testimonials-item {
  margin-top: 30px;
  background-color: #fee9e6;
  position: relative;
  padding: 80px 30px 40px;
}

.single-testimonials-item p {
  color: #252920;
  margin-bottom: 0;
  font-style: italic;
  font-size: 18px;
}

.single-testimonials-item::after {
  content: "\f10d";
  position: absolute;
  left: 30px;
  top: 35px;
  color: #a53d35;
  margin-top: -8px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: Flaticon;
  font-style: normal;
  font-size: 30px;
}

.single-testimonials-item .client-info {
  margin-top: 30px;
  position: relative;
  padding-right: 75px;
}

.single-testimonials-item .client-info img {
  border-radius: 50%;
  border: 2px solid #a53d35;
  width: 60px !important;
  height: 60px;
  display: inline-block !important;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-testimonials-item .client-info h3 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.single-testimonials-item .client-info span {
  display: block;
  color: #252920;
  margin-top: 5px;
  font-weight: 400;
  font-size: 15px;
}

.testimonials-slides.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: .01;
  margin-top: 30px;
}

.testimonials-slides.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid #cbc7c4;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.testimonials-slides.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #cbc7c4;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  margin: 3px;
}

.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span {
  border-color: #a53d35;
}

.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span::before, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span::before {
  background-color: #a53d35;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  padding-bottom: 60px;
}

.team-area .section-title {
  text-align: left;
  margin-left: 0;
  max-width: 555px;
}

.team-area .section-title p {
  margin-left: 0;
  max-width: 100%;
}

.single-team-box {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  padding-bottom: 35px;
}

.single-team-box img {
  width: 100%;
  display: inline-block !important;
}

.single-team-box .name {
  position: absolute;
  left: -6px;
  top: 80%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translateY(-80%) rotate(-90deg);
          transform: translateY(-80%) rotate(-90deg);
  z-index: 2;
}

.single-team-box .name h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: 1px 1px #ffffff, -1px 1px #ffffff, 1px -1px #ffffff, -1px -1px #ffffff, 1px 1px 5px #252920;
  font-size: 32px;
  font-weight: 600;
}

.single-team-box span {
  z-index: 2;
  display: block;
  text-transform: uppercase;
  color: #a53d35;
  position: absolute;
  right: 0;
  bottom: 42px;
  font-size: 15px;
  font-weight: 600;
}

.single-team-box .social {
  z-index: 2;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  bottom: 0;
}

.single-team-box .social li {
  display: inline-block;
}

.single-team-box .social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  background-color: #fee9e6;
  color: #a53d35;
  border-radius: 5px;
}

.single-team-box .social li a:hover {
  background-color: #a53d35;
  color: #ffffff;
}

.team-section {
  padding-bottom: 70px;
}

.single-team-member {
  margin-bottom: 40px;
  text-align: center;
  background-color: #ffffff;
}

.single-team-member .member-image {
  position: relative;
  overflow: hidden;
}

.single-team-member .member-image::before {
  width: 0;
  height: 0;
  padding: 25%;
  border-radius: 50%;
  -webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease;
  transition: opacity .3s ease-out, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease-out;
  transition: transform .3s ease, opacity .3s ease-out, -webkit-transform .3s ease;
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background-color: rgba(165, 61, 53, 0.8);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.single-team-member .member-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-member .member-image .social {
  z-index: 3;
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-team-member .member-image .social li {
  display: inline-block;
}

.single-team-member .member-image .social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  background-color: #fee9e6;
  color: #a53d35;
  border-radius: 5px;
}

.single-team-member .member-image .social li a:hover {
  background-color: #252920;
  color: #ffffff;
}

.single-team-member .member-content {
  padding: 25px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.05);
          box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.05);
}

.single-team-member .member-content h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 600;
}

.single-team-member .member-content span {
  display: block;
  color: #a53d35;
  margin-top: 8px;
  font-size: 15px;
}

.single-team-member:hover .member-image::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(4);
          transform: translate(-50%, -50%) scale(4);
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
}

.single-team-member:hover .member-image img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}

.single-team-member:hover .member-image .social {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.team-slides.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 0;
  top: -105px;
}

.team-slides.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 20px;
  margin: 0 4px;
  padding: 0;
  background: #221f1f;
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-left: 0;
}

.team-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-right: 0;
}

.team-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #a53d35;
  color: #ffffff;
}

/*================================================
Company Value Area CSS
=================================================*/
.company-value-image {
  width: 100%;
  height: 100%;
  background-image: url(../img/company-value-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
   border-top-left-radius: 20px;
   border-bottom-left-radius: 20px;
}

.company-value-image img {
  display: none;
}

.company-value-content {
  max-width: 555px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
}

.company-value-content .sub-title {
  display: block;
  color: #409b44;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 18px;
}

.company-value-content h2 {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.company-value-content h2 span {
  color: #a53d35;
  display: inline-block;
}

.company-value-content .company-value-features {
  margin-top: 25px;
}

.company-value-content .company-value-features h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.company-value-content .company-value-features ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.company-value-content .company-value-features ul li {
  margin-bottom: 10px;
  color: #666666;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.company-value-content .company-value-features ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 1px;
  background-color: #a53d35;
}

.company-value-content .company-value-features ul li:last-child {
  margin-bottom: 0;
}

/*================================================
Work With Us Area CSS
=================================================*/
.work-with-us-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/main-banner1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.work-with-us-area::before {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000;
  content: '';
  opacity: 0.2;
}

.work-with-us-content {
  text-align: center;
}

.work-with-us-content h2 {
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 40px;
  font-family: "Vazirmatn RD FD", serif;
  font-weight: 700;
}

.work-with-us-content .default-btn {
  margin-top: 35px;
}

.work-with-us-content .default-btn span {
  background-color: #ffffff;
}

.work-with-us-content .default-btn:hover, .work-with-us-content .default-btn:focus {
  color: #a53d35;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-item {
  border-right: 1px solid #f7f1f1;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.partner-item a {
  display: block;
  position: relative;
}

.partner-item a img:nth-child(1) {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  opacity: 0.3;
}

.partner-item a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  display: inline-block !important;
  width: auto !important;
}

.partner-item a:hover img:nth-child(1) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.partner-item a:hover img:nth-child(2) {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  padding-bottom: 70px;
}

.blog-area .pagination-area {
  margin-bottom: 30px;
}

.single-blog-post {
  margin-bottom: 30px;
  position: relative;
}

.single-blog-post .post-image {
  position: relative;
  z-index: 1;
}

.single-blog-post .post-image a {
  display: block;
}

.single-blog-post .post-image a img {
  width: auto !important;
  display: inline-block !important;
}

.single-blog-post .post-image::before {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(172, 58, 47, 0.9)));
  background: linear-gradient(to bottom, transparent, rgba(172, 58, 47, 0.9));
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.single-blog-post .post-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  padding: 20px;
  overflow: hidden;
}

.single-blog-post .post-content h3 {
  color: #ffffff;
  position: relative;
  margin-bottom: 0;
  line-height: 1.4;
  padding-bottom: 15px;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 600;
}

.single-blog-post .post-content h3 a {
  color: #ffffff;
  display: inline-block;
}

.single-blog-post .post-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
}

.single-blog-post .post-content p {
  color: #ffffff;
  line-height: 1.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  margin-bottom: 0;
  margin-top: 15px;
}

.single-blog-post .post-content .read-more-btn {
  display: inline-block;
  color: #ffffff;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  font-weight: 600;
}

.single-blog-post .post-content .read-more-btn i {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #ffffff;
  color: #252920;
  font-size: 15px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  margin-left: 5px;
}

.single-blog-post .post-content .read-more-btn:hover i {
  background-color: #252920;
  color: #ffffff;
}

.single-blog-post:hover .post-content h3 {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.single-blog-post:hover .post-content h3::before {
  width: 100%;
}

.single-blog-post:hover .post-content p {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.single-blog-post:hover .post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-image img {
  width: 100%;
}

.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #252920;
  margin-right: 21px;
  font-size: 15px;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #252920;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #666666;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #a53d35;
}

.blog-details-desc .article-content .entry-meta ul li i {
  color: #a53d35;
  margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #a53d35;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 13px;
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
}

.blog-details-desc .article-content p {
  font-size: 15.2px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-size: 15px;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: #faf5f5;
  color: #a53d35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
  background-color: #a53d35;
  color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #252920;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #666666;
}

.blog-details-desc .article-footer .article-tags a:hover {
  color: #a53d35;
}

.blog-details-desc .article-footer .article-share {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #666666;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #a53d35;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #faf5f5;
  text-align: center;
  font-size: 14px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #a53d35;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog-details-desc .post-navigation {
  margin-top: 30px;
}

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  color: #252920;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::before, .blockquote::before {
  color: #efefef;
  content: "\f10e";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
}

blockquote::after, .blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #409b44;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
}

.post-navigation .navigation-links .nav-next {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
}

.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
  font-weight: 600;
}

.comments-area .comments-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #a53d35;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  color: #252920;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #252920;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #a53d35;
  border-color: #a53d35;
}

.comments-area .comment-meta {
  margin-bottom: .8em;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.comments-area .comment-metadata a {
  color: #666666;
}

.comments-area .comment-metadata a:hover {
  color: #a53d35;
}

.comments-area .comment-content p {
  font-size: 14px;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  position: relative;
  font-size: 22px;
  font-weight: 600;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #a53d35;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #252920;
  margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
  border-color: #a53d35;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #a53d35;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #252920;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title-area::before {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: .60;
  content: '';
}

.page-title-content {
  margin-top: 110px;
}

.page-title-content h2 {
  margin-bottom: 0;
  position: relative;
  color: #ffffff;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Vazirmatn RD FD", serif;
}

.page-title-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 2px;
  background-color: #ffffff;
}

.page-title-content p {
  margin-top: 20px;
  line-height: initial;
  color: #faf5f5;
}

.page-title-bg1 {
  background-image: url(../img/page-title-bg1.jpg);
}

.page-title-bg2 {
      background-image: url(../img/about-us.png);
}
.page-title-contact {
  background-image: url(../img/contact.png);
}

.page-title-bg3 {
  background-image: url(../img/page-title-bg3.jpg);
}

.page-title-bg4 {
  background-image: url(../img/page-title-bg4.jpg);
}

.page-title-bg5 {
  background-image: url(../img/page-title-bg5.jpg);
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 40px;
  color: #252920;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 600;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #a53d35;
  color: #ffffff;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
  padding: 25px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  background: #a53d35;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #a53d35;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #ffffff;
  background-color: #a53d35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button:hover {
  color: #ffffff;
  background-color: #252920;
}

.widget-area .widget_zovio_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_zovio_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-area .widget_zovio_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_zovio_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_zovio_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_zovio_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog-img1.jpg);
}

.widget-area .widget_zovio_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog-img2.jpg);
}

.widget-area .widget_zovio_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog-img3.jpg);
}

.widget-area .widget_zovio_posts_thumb .item .info {
  overflow: hidden;
}

.widget-area .widget_zovio_posts_thumb .item .info time {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.widget-area .widget_zovio_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
}

.widget-area .widget_zovio_posts_thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
}

.widget-area .widget_zovio_posts_thumb .item .info .title a:hover {
  color: #a53d35;
}

.widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li::before {
  background: #a53d35;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.widget-area .widget_recent_comments ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
  background: #a53d35;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_comments ul li span {
  display: inline-block;
}

.widget-area .widget_recent_comments ul li a {
  display: inline-block;
}

.widget-area .widget_archive ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_archive ul li::before {
  background: #a53d35;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #a53d35;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_categories ul li a {
  display: inline-block;
}

.widget-area .widget_categories ul li .post-count {
  float: right;
}

.widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: #a53d35;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: #252920;
  font-weight: 600;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  background-color: #a53d35;
  color: #ffffff;
  border-color: #a53d35;
}

.widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_services_list ul li a.active, .widget-area .widget_services_list ul li a:hover {
  background-color: #a53d35;
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_services_list ul li a.active::before, .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_download ul li a.active, .widget-area .widget_download ul li a:hover {
  background-color: #a53d35;
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_download ul li a.active::before, .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

/*================================================
Instagram Feed Area CSS
=================================================*/
.single-instagram-item {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
}

.single-instagram-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}

.single-instagram-item img {
  display: inline-block !important;
  width: auto !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-instagram-item .instagram-icon {
  display: inline-block;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  margin: 20px auto 0;
  font-size: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.single-instagram-item a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.single-instagram-item:hover::before {
  opacity: .35;
  visibility: visible;
}

.single-instagram-item:hover .instagram-icon {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.single-instagram-item:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

/*================================================
Shop Area CSS
=================================================*/
.woocommerce-topbar {
  margin-bottom: 40px;
}

.woocommerce-topbar .woocommerce-result-count p {
  font-size: 16px;
}

.woocommerce-topbar .woocommerce-topbar-ordering {
  text-align: right;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select {
  background-color: #ffffff;
  color: #666666;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  float: unset;
  height: unset;
  line-height: initial;
  padding: 15px 35px 15px 20px;
  font-size: 16px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option:hover {
  background-color: #a53d35 !important;
  color: #ffffff;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select:after {
  right: 20px;
}

.single-product-box {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.single-product-box .product-image {
  overflow: hidden;
  position: relative;
  text-align: left;
}

.single-product-box .product-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-box .product-image a img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: 20px;
}

.single-product-box .product-image .add-to-cart-btn {
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  background-color: #252920;
  color: #ffffff;
  padding: 12px 20px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
  font-weight: 600;
}

.single-product-box .product-image .add-to-cart-btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-product-box .product-image .add-to-cart-btn:hover {
  background-color: #a53d35;
  color: #ffffff;
}

.single-product-box .product-image .sale-btn {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: red;
  color: #ffffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.single-product-box .product-content {
  padding: 30px 25px;
}

.single-product-box .product-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.single-product-box .product-content h3 a {
  display: inline-block;
}

.single-product-box .product-content .price {
  color: #252920;
  font-weight: 500;
}

.single-product-box .product-content .price .old {
  text-decoration: line-through;
  color: #828893;
  font-size: 15px;
}

.single-product-box .product-content .rating {
  margin-top: 12px;
  color: #ffb708;
  font-size: 15px;
}

.single-product-box .product-content .rating i {
  margin-right: -1px;
}

.single-product-box:hover .product-image a img:nth-child(2) {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}

.single-product-box:hover .product-image .add-to-cart-btn {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*================================================
Product Details Area CSS
=================================================*/
.product-details-desc h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.product-details-desc p {
  margin-bottom: 0;
}

.product-details-desc .price {
  margin-bottom: 10px;
  color: #252920;
  font-weight: 500;
}

.product-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
  font-size: 13px;
}

.product-details-desc .product-review {
  margin-bottom: 15px;
}

.product-details-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}

.product-details-desc .product-review .rating i {
  color: #ffba0a;
}

.product-details-desc .product-review .rating-count {
  display: inline-block;
  color: #252920;
  border-bottom: 1px solid #252920;
  line-height: initial;
}

.product-details-desc .product-review .rating-count:hover {
  color: #a53d35;
  border-color: #a53d35;
}

.product-details-desc .product-add-to-cart {
  margin-top: 20px;
}

.product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 50px;
  height: 100%;
  line-height: 51px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}

.product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}

.product-details-desc .product-add-to-cart .input-counter span:hover {
  color: #a53d35;
}

.product-details-desc .product-add-to-cart .input-counter input {
  height: 50px;
  color: #252920;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.product-details-desc .product-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: #252920;
}

.product-details-desc .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #252920;
}

.product-details-desc .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #252920;
}

.product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: #252920;
}

.product-details-desc .product-add-to-cart .default-btn {
  height: 50px;
  top: -1px;
  position: relative;
  line-height: 48px;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

.product-details-desc .product-add-to-cart .default-btn i {
  margin-right: 2px;
}

.product-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}

.product-details-desc .buy-checkbox-btn input {
  display: none;
}

.product-details-desc .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
}

.product-details-desc .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  -webkit-transform: scale(1);
          transform: scale(1);
  vertical-align: middle;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #252920;
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:last-child {
  padding-left: 4px;
  color: #666666;
}

.product-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #252920;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: #252920;
  border-color: #252920;
  -webkit-animation: wave 0.4s ease;
          animation: wave 0.4s ease;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child:before {
  -webkit-transform: scale(3.5);
          transform: scale(3.5);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}

.product-details-desc .buy-checkbox-btn .btn {
  display: block;
  width: 100%;
}

.product-details-desc .buy-checkbox-btn .btn-light {
  background-color: #f2f2f2;
  border: none;
  padding: 13px 25px 12px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}

.product-details-desc .buy-checkbox-btn .btn-light:hover {
  background-color: #252920;
  color: #ffffff;
}

.product-details-desc .custom-payment-options {
  margin-top: 20px;
}

.product-details-desc .custom-payment-options span {
  display: block;
  color: #666666;
  margin-bottom: 8px;
}

.product-details-desc .custom-payment-options .payment-methods a {
  display: inline-block;
}

.product-details-desc .custom-payment-options .payment-methods a img {
  width: 40px;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.products-details-tab {
  margin-top: 50px;
}

.products-details-tab .tabs {
  list-style-type: none;
  margin-bottom: -1px;
  padding-left: 0;
}

.products-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 5px;
}

.products-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  color: #252920;
  border: 1px dashed #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
  padding-left: 48px;
  font-weight: 600;
  font-size: 14px;
}

.products-details-tab .tabs li a .dot {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  width: 12px;
  height: 12px;
  border: 1px solid #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}

.products-details-tab .tabs li a .dot::before {
  position: absolute;
  top: 0;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background: #252920;
  margin: 2px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tab .tabs li a:hover, .products-details-tab .tabs li a:focus {
  color: #ffffff;
  background-color: #a53d35;
  border-color: #a53d35;
}

.products-details-tab .tabs li a:hover .dot, .products-details-tab .tabs li a:focus .dot {
  border-color: #ffffff;
}

.products-details-tab .tabs li a:hover .dot::before, .products-details-tab .tabs li a:focus .dot::before {
  background: #ffffff;
}

.products-details-tab .tabs li.current a {
  color: #ffffff;
  background-color: #a53d35;
  border-color: #a53d35;
}

.products-details-tab .tabs li.current a .dot {
  border-color: #ffffff;
}

.products-details-tab .tabs li.current a .dot::before {
  background: #ffffff;
}

.products-details-tab .tabs li:last-child {
  margin-right: 0;
}

.products-details-tab .tab_content {
  border: 1px dashed #eeeeee;
  padding: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p {
  margin-bottom: 20px;
  font-size: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p:last-child {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li {
  border: 1px solid #eeeeee;
  border-bottom: none;
  padding: 10px 15px;
  font-size: 15px;
  color: #666666;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #eeeeee;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li span {
  display: inline-block;
  width: 30%;
  color: #252920;
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title {
  position: relative;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating i {
  color: #ebebeb;
  font-size: 14px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments {
  margin-top: 35px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating i {
  font-size: 14px;
  color: #ebebeb;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span strong {
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: #666666;
  top: 40px;
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: #a53d35;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form {
  margin-top: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form h3 {
  margin-bottom: 25px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form {
  max-width: 800px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group {
  margin-bottom: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group .form-control {
  height: 55px;
  -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.1) !important;
          box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.1) !important;
  border: none;
  font-size: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group textarea.form-control {
  padding-top: 15px;
  height: auto;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .default-btn {
  border: none;
  margin-top: 10px;
  -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.8) !important;
          box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.8) !important;
}

.related-products {
  margin-top: 70px;
}

.related-products .section-title {
  margin-bottom: 10px;
}

.related-products .single-product-box {
  margin-bottom: 0;
  margin-top: 30px;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 0 0 15px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  font-weight: 600;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: #666666;
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
}

.cart-table table tbody tr td.product-name a {
  color: #666666;
  font-weight: 500;
  display: inline-block;
}

.cart-table table tbody tr td.product-name a:hover {
  color: #252920;
}

.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  float: right;
  position: relative;
  top: -1px;
}

.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: #a53d35;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: #252920;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: #252920;
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: #252920;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: #252920;
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #252920;
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}

.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
}

.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #252920;
  color: #ffffff;
  border: none;
  padding: 0 25px;
  line-height: 50px;
  font-weight: 500;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cart-buttons .shopping-coupon-code button:hover {
  background-color: #a53d35;
}

.cart-totals {
  background: #ffffff;
  padding: 40px;
  max-width: 620px;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-left: auto;
  margin-top: 50px;
}

.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: #252920;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
}

.cart-totals ul li:first-child {
  border-bottom: none;
}

.cart-totals ul li:last-child {
  border-top: none;
}

.cart-totals ul li b {
  font-weight: 500;
}

.cart-totals ul li span {
  float: right;
  color: #666666;
  font-weight: normal;
}

/*================================================
Checkout Area CSS
=================================================*/
.user-actions {
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 18px 20px 15px;
  margin-bottom: 65px;
  border-top: 3px solid #a53d35;
  position: relative;
}

.user-actions::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.user-actions i {
  color: #a53d35;
  margin-right: 2px;
}

.user-actions span {
  display: inline-block;
  font-weight: 500;
  color: #a53d35;
}

.user-actions span a {
  display: inline-block;
  color: #252920;
}

.user-actions span a:hover, .user-actions span a:focus {
  color: #a53d35;
}

.billing-details .title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 600;
}

.billing-details .title::before {
  content: '';
  position: absolute;
  background: #a53d35;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.billing-details .form-group {
  margin-bottom: 20px;
}

.billing-details .form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.billing-details .form-group label .required {
  color: red;
}

.billing-details .form-group .nice-select {
  float: unset;
  line-height: 50px;
  color: #666666;
  font-weight: 500;
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
  background-color: #a53d35 !important;
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.billing-details .form-group .nice-select:after {
  right: 20px;
}

.billing-details .form-group .form-control {
  height: 50px;
}

.billing-details .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.billing-details .form-check {
  margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
  color: #252920;
}

.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 1px;
  font-size: 14px;
  font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 600;
}

.order-details .title::before {
  content: '';
  position: absolute;
  background: #a53d35;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.order-details .order-table table {
  margin-bottom: 0;
}

.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #666666;
  border-color: #eaedff;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.order-details .order-table table tbody tr td.product-name a {
  color: #666666;
  display: inline-block;
  font-weight: 500;
}

.order-details .order-table table tbody tr td.product-name a:hover {
  color: #a53d35;
}

.order-details .order-table table tbody tr td.order-subtotal span, .order-details .order-table table tbody tr td.order-shipping span, .order-details .order-table table tbody tr td.total-price span {
  color: #252920;
  font-weight: 600;
}

.order-details .order-table table tbody tr td.shipping-price, .order-details .order-table table tbody tr td.order-subtotal-price, .order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 600;
}

.order-details .payment-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}

.order-details .payment-box .payment-method p {
  font-size: 14px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
  display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: #252920;
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::before, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #a53d35;
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.order-details .payment-box .default-btn.order-btn {
  display: block;
  margin-top: 25px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  padding-right: 25px;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-image {
  width: 100%;
  height: 100%;
  background-image: url(../img/faq-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-image img {
  display: none;
}

.faq-accordion {
  max-width: 600px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}

.faq-accordion .sub-title {
  display: block;
  margin-bottom: 5px;
  color: #a53d35;
  font-size: 17px;
}

.faq-accordion h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-family: "Vazirmatn RD FD", serif;
  font-weight: 600;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color: #252920;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #faf5f5;
  color: #a53d35;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-accordion .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}

.faq-accordion .accordion .accordion-title.active i {
  background-color: #a53d35;
  color: #ffffff;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
  font-size: 14.5px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-contact-area {
  position: relative;
  z-index: 1;
}

.faq-contact-form {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-form form {
  text-align: center;
}

.faq-contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
}

.faq-contact-form form .form-group {
  text-align: left;
}

.faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.faq-contact-form form .row .col-lg-12, .faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.faq-contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.faq-contact-form form .default-btn {
  font-size: 16px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.faq-contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.faq-contact-form form .help-block ul li {
  color: red;
}

.faq-contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}

.faq-contact-form form #msgSubmit.text-danger, .faq-contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
}

.contact-form form {
  text-align: center;
}

.contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
}

.contact-form form .form-group {
  text-align: left;
}

.contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.contact-form form .row .col-lg-12, .contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.contact-form form .default-btn {
  margin-top: 10px;
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-form form .help-block ul li {
  color: red;
}

.contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}

.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  padding-left: 25px;
}

.contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-info ul li {
  position: relative;
  padding-left: 95px;
  color: #666666;
  margin-bottom: 30px;
}

.contact-info ul li .icon {
  border: 1px dashed #409b44;
  width: 75px;
  height: 75px;
  line-height: 75px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.contact-info ul li .icon::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #409b44;
  border-radius: 50%;
  margin: 6px;
  -webkit-box-shadow: 0 1px 2px 1px #409b44;
          box-shadow: 0 1px 2px 1px #409b44;
  z-index: -1;
}

.contact-info ul li span {
  display: block;
  margin-bottom: 5px;
  color: #252920;
  font-size: 20px;
  font-weight: 600;
}

.contact-info ul li a {
  color: #666666;
  display: block;
}

.contact-info ul li a:hover {
  color: #a53d35;
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

.bg-map {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  text-align: center;
  margin: 0 auto;
  opacity: .4;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  padding-top: 80px;
  background-color: #252920;
  background-image: url(../img/footer-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #faf5f5;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 20px;
}

.single-footer-widget .newsletter-content {
  margin-top: 25px;
}

.single-footer-widget .newsletter-content p {
  color: #faf5f5;
  font-size: 15px;
  line-height: 1.6;
}

.single-footer-widget .newsletter-content form {
  position: relative;
}

.single-footer-widget .newsletter-content form .input-newsletter {
  display: block;
  width: 100%;
  color: #ffffff;
  border: 1px solid #409b44;
  height: 45px;
  background-color: transparent;
  padding-left: 10px;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
}

.single-footer-widget .newsletter-content form .input-newsletter::-webkit-input-placeholder {
  color: #efefef;
}

.single-footer-widget .newsletter-content form .input-newsletter:-ms-input-placeholder {
  color: #efefef;
}

.single-footer-widget .newsletter-content form .input-newsletter::-ms-input-placeholder {
  color: #efefef;
}

.single-footer-widget .newsletter-content form .input-newsletter::placeholder {
  color: #efefef;
}

.single-footer-widget .newsletter-content form .input-newsletter:focus {
  border-color: #a53d35;
}

.single-footer-widget .newsletter-content form button {
  display: block;
  width: 100%;
  padding: 12px 30px;
  margin-top: 10px;
  background-color: #409b44;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  line-height: initial;
  font-style: 15px;
  font-weight: 600;
}

.single-footer-widget .newsletter-content form button:hover {
  color: #a53d35;
  background-color: #ffffff;
}

.single-footer-widget .newsletter-content form #validator-newsletter {
  position: absolute;
  color: #ffffff;
  bottom: -32px;
  left: 0;
}

.single-footer-widget h3 {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

.single-footer-widget .useful-links {
  padding-left: 0;
  margin-left: 0;
  list-style-type: none;
}

.single-footer-widget .useful-links li {
  margin-bottom: 10px;
  font-size: 15px;
}

.single-footer-widget .useful-links li a {
  display: inline-block;
  color: #faf5f5;
  position: relative;
  padding-left: 35px;
}

.single-footer-widget .useful-links li a::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 25px;
  background-color: #a53d35;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-footer-widget .useful-links li a:hover {
  color: #a53d35;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 7px;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .social li a {
  color: #faf5f5;
  display: inline-block;
  font-size: 20px;
}

.single-footer-widget .social li a:hover {
  color: #a53d35;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  position: relative;
  margin-bottom: 10px;
  color: #faf5f5;
  font-size: 15px;
  padding-left: 24px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 4px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #faf5f5;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #a53d35;
}

.copyright-area {
  border-top: 1px solid #372b24;
  margin-top: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #dddddd;
  font-size: 15px;
}

.copyright-area p a {
  display: inline-block;
  color: #dddddd;
}

.copyright-area p a:hover {
  color: #a53d35;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #252920;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #a53d35;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
/*# sourceMappingURL=style.css.map */

/*==========================================
    FOREST HEADER v1.0
==========================================*/

:root{

    --forest:#2E7D32;
    --forest-light:#43A047;
    --forest-bg:#F4FBF4;
    --forest-dark:#1D2939;
    --forest-border:#E8F5E9;
    --white:#fff;

    --shadow:0 15px 45px rgba(0,0,0,.08);
    --shadow-hover:0 20px 50px rgba(46,125,50,.20);

    --radius:18px;

}

/*=========================
Header
=========================*/

.forest-header{

    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:9999;

    transition:.45s ease;

}

.forest-header.scrolled{

    top:0;

    background:transparent;

    backdrop-filter:none;

}
.forest-header{

    background:transparent;

}

/*=========================
Navbar
=========================*/

.forest-navbar{

    height:90px;

    background:#fff;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 35px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.forest-header.scrolled .forest-navbar{

    height:80px;

    box-shadow:none;

}

/*=========================
Logo
=========================*/

.forest-logo{

    display:flex;

    align-items:center;

}

.forest-logo img{

    height:58px;

    transition:.35s;

}

.forest-logo:hover img{

    transform:scale(1.05);

}

.forest-header.scrolled .forest-logo img{

    height:50px;

}

/*=========================
Menu
=========================*/

.forest-menu{

    display:flex;

    align-items:center;

    gap:10px;

    list-style:none;

    margin:0;

    padding:0;

}

/*=========================
Item
=========================*/

.forest-item{

    position:relative;

}

.forest-item>a{

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:var(--forest-dark);

    font-size:15px;

    font-weight:600;

    padding:15px 18px;

    border-radius:14px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

/*=========================
Icon
=========================*/

.forest-item>a i:first-child{

    color:var(--forest);

    font-size:15px;

}

/*=========================
Underline Animation
=========================*/

.forest-item>a::after{

    content:"";

    position:absolute;

    bottom:8px;

    left:50%;

    transform:translateX(-50%);

    width:0;

    height:3px;

    background:linear-gradient(
            90deg,
            var(--forest),
            var(--forest-light)
    );

    border-radius:30px;

    transition:.35s;

}

.forest-item:hover>a::after,

.forest-item.active>a::after{

    width:70%;

}

/*=========================
Hover
=========================*/

.forest-item>a:hover{

    color:var(--forest);

    background:var(--forest-bg);

    transform:translateY(-2px);

}

/*=========================
Dropdown Arrow
=========================*/

.dropdown-arrow{

    font-size:12px!important;

    transition:.35s;

}

.has-dropdown:hover .dropdown-arrow{

    transform:rotate(180deg);

}

/*=========================
Dropdown
=========================*/

.forest-dropdown{

    position:absolute;

    top:120%;

    right:0;

    width:240px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    padding:15px;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

}

.has-dropdown:hover .forest-dropdown{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*=========================
Dropdown Links
=========================*/

.forest-dropdown a{

    display:flex;

    align-items:center;

    text-decoration:none;

    color:#555;

    font-weight:500;

    padding:14px 16px;

    border-radius:12px;

    transition:.3s;

    margin-bottom:4px;

}

.forest-dropdown a:last-child{

    margin-bottom:0;

}

.forest-dropdown a:hover{

    background:var(--forest-bg);

    color:var(--forest);

    padding-right:26px;

}

/*=========================
Active
=========================*/

.forest-item.active>a{

    color:var(--forest);

}

/*=========================
Smooth
=========================*/

.forest-navbar *{

    transition:.35s;

}

/*==========================================
    FOREST ACTIONS
==========================================*/

.forest-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

/*==============================
Icon Buttons
==============================*/

.forest-icon{

    width:48px;

    height:48px;

    border:none;

    outline:none;

    cursor:pointer;

    border-radius:50%;

    background:#F7FBF7;

    color:var(--forest);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 8px 20px rgba(46,125,50,.08);

}

.forest-icon:hover{

    background:linear-gradient(135deg,#2E7D32,#43A047);

    color:#fff;

    transform:translateY(-4px) rotate(8deg);

    box-shadow:0 18px 40px rgba(46,125,50,.35);

}

/* Ripple */

.forest-icon::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    background:rgba(255,255,255,.35);

    border-radius:50%;

    transition:.6s;

}

.forest-icon:hover::before{

    width:170px;

    height:170px;

}

/*==============================
CTA Button
==============================*/

.forest-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #2E7D32,
        #43A047
    );

    box-shadow:0 15px 35px rgba(46,125,50,.28);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.forest-btn i{

    font-size:15px;

}

.forest-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(46,125,50,.45);

}

.forest-btn::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.8s;

}

.forest-btn:hover::after{

    left:140%;

}

/*==============================
Search Popup
==============================*/

.forest-search{

    position:fixed;

    inset:0;

    background:rgba(20,20,20,.45);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999999;

}

.forest-search.active{

    opacity:1;

    visibility:visible;

}

.forest-search-box{

    width:700px;

    max-width:90%;

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:0 35px 70px rgba(0,0,0,.18);

    position:relative;

    animation:forestPopup .45s ease;

}

@keyframes forestPopup{

    from{

        transform:translateY(-40px) scale(.92);

        opacity:0;

    }

    to{

        transform:none;

        opacity:1;

    }

}

.forest-search form{

    display:flex;

    align-items:center;
    margin-top: 60px;

}

.forest-search input{

    flex:1;

    height:60px;

    border:none;

    outline:none;

    background:#F5FAF5;

    border-radius:50px;

    padding:0 25px;

    font-size:16px;

}

.forest-search button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    margin-right:12px;
    background:linear-gradient(
        135deg,
        #2E7D32,
        #43A047
    );
    color:#fff;
}

.forest-close{
    position:absolute;
    right:18px;
    top:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    cursor:pointer;
}

/*==============================
Hamburger
==============================*/

.forest-toggle{

    width:50px;

    height:50px;

    display:none !important;

    border:none;

    background:none;

    cursor:pointer;

    position:relative;

}

.forest-toggle span{

    width:28px;

    height:3px;

    background:var(--forest);

    display:block;

    margin:6px auto;

    border-radius:20px;

    transition:.35s;

}

.forest-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.forest-toggle.active span:nth-child(2){

    opacity:0;

}

.forest-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*==========================================
        PREMIUM EFFECTS
==========================================*/

/* Glow هنگام اسکرول */


.forest-item>a::before{

content:"";

position:absolute;

inset:0;

border-radius:14px;

background:linear-gradient(
135deg,
rgba(46,125,50,.08),
rgba(67,160,71,.15)
);

opacity:0;

transform:scale(.8);

transition:.35s;

z-index:-1;

}

.forest-item:hover>a::before{

opacity:1;

transform:scale(1);

}

/*==================================
Dropdown Animation
==================================*/

.forest-dropdown a{

opacity:0;

transform:translateX(15px);

}

.has-dropdown:hover .forest-dropdown a{

animation:forestLinks .45s forwards;

}

.has-dropdown:hover .forest-dropdown a:nth-child(2){

animation-delay:.08s;

}

.has-dropdown:hover .forest-dropdown a:nth-child(3){

animation-delay:.16s;

}

.has-dropdown:hover .forest-dropdown a:nth-child(4){

animation-delay:.24s;

}

@keyframes forestLinks{

to{

opacity:1;

transform:none;

}

}

/*==================================
Button Floating
==================================*/

.forest-btn{

animation:forestFloat 4s ease-in-out infinite;

}

@keyframes forestFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-3px);

}

}

/*==================================
Icon Pulse
==================================*/

.forest-icon:hover{

animation:forestPulse .8s;

}

@keyframes forestPulse{

25%{

transform:scale(.92);

}

50%{

transform:scale(1.1);

}

75%{

transform:scale(.97);

}

}

/*==================================
Glass Blur
==================================*/

.forest-navbar{

backdrop-filter:blur(15px);

}

/*==================================
Gradient Border
==================================*/

.forest-navbar{

position:relative;

}

.forest-navbar::before{

content:"";

position:absolute;

inset:-1px;

border-radius:22px;

padding:1px;

background:linear-gradient(
135deg,
rgba(46,125,50,.25),
rgba(255,255,255,.7)
);

-webkit-mask:

linear-gradient(#fff 0 0) content-box,

linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

pointer-events:none;

}

/*==================================
Logo Glow
==================================*/

.forest-logo:hover{

filter:drop-shadow(0 0 18px rgba(46,125,50,.35));

}

/*==================================
Scrollbar
==================================*/

::-webkit-scrollbar{

width:9px;

}

::-webkit-scrollbar-thumb{

background:#43A047;

border-radius:30px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}

/*==================================
Selection
==================================*/

::selection{

background:#43A047;

color:#fff;

}

/*==============================
RESPONSIVE - TABLET & MOBILE (991px)
==============================*/

@media (max-width: 991px) {

    /* ============ ZOVIO OVERRIDE ============ */
    .zovio-responsive-nav {
        display: none !important;
    }

    .navbar-area {
        padding: 0;
    }

    /* ============ PARENTS ============ */
    .forest-nav,
    .zovio-nav {
        display: block !important;
        visibility: visible !important;
    }

    .forest-header {
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
    }

    /* ============ NAVBAR ============ */
    .forest-navbar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        visibility: visible !important;
        position: relative !important;
        overflow: visible !important;
        padding: 12px 15px !important;
        height: auto !important;
        gap: 10px !important;
    }

    .forest-navbar::before {
        display: none !important;
    }

    /* ============ LOGO ============ */
    .forest-logo {
        display: flex !important;
        align-items: center !important;
        order: -1 !important;
        flex-shrink: 0 !important;
        z-index: 10000;
    }

    .forest-logo img {
        height: 45px !important;
    }

    /* ============ MENU (HIDDEN) ============ */
    .forest-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        background: white !important;
        border-radius: 0 !important;
        padding: 15px 0 !important;
        margin-top: 12px !important;
        box-shadow: 0 25px 60px rgba(0,0,0,.12) !important;
        z-index: 9999 !important;
    }

    /* ============ MENU SHOW ============ */
    .forest-menu.show {
        display: flex !important;
    }

    .forest-menu.show .forest-item {
        width: 100% !important;
        padding: 0 !important;
    }

    .forest-menu.show .forest-item > a {
        width: 100% !important;
        padding: 14px 20px !important;
        border-radius: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .forest-menu.show .forest-item:last-child > a {
        border-bottom: none !important;
    }

    /* ============ DROPDOWN ============ */
    .forest-item.has-dropdown > a {
        cursor: pointer !important;
    }

    .forest-item.has-dropdown .forest-dropdown {
        display: none !important;
        position: static !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background: #f8f8f8 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        margin-left: 20px !important;
        border-radius: 0 !important;
    }

    .forest-item.show .forest-dropdown {
        display: flex !important;
        max-height: 500px !important;
        overflow: visible !important;
    }

    .forest-menu.show .forest-dropdown a {
        padding: 10px 15px !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* ============ ACTIONS ============ */
    .forest-actions {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        gap: 8px !important;
        margin-left: 0 !important;
        z-index: 10001 !important;
    }

    /* ============ ICON BUTTONS ============ */
    .forest-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    /* ============ CTA BUTTON ============ */
    .forest-btn {
        display: none !important;
    }

    /* ============ TOGGLE (HAMBURGER) ============ */
    .forest-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 45px !important;
        height: 45px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 10001 !important;
        padding: 0 !important;
    }

    .forest-toggle span {
        width: 24px !important;
        height: 2.5px !important;
        background: var(--forest) !important;
        display: block !important;
        margin: 5px auto !important;
        border-radius: 20px !important;
        transition: .35s !important;
        position: relative !important;
    }

    /* ============ REMOVE EFFECTS ============ */
    .forest-item > a::after,
    .forest-item > a::before {
        display: none !important;
    }

}

/*==============================
EXTRA SMALL PHONES (576px)
==============================*/

@media (max-width: 576px) {

    .forest-navbar {
        padding: 10px 12px !important;
    }

    .forest-logo img {
        height: 40px !important;
    }

    .forest-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .forest-toggle span {
        width: 20px !important;
        height: 2px !important;
        margin: 4px auto !important;
    }

}


/* ================= VARIABLES ================= */
:root {
  --green-dark: #1b5e20;
  --green: #2e7d32;
  --green-mid: #43a047;
  --green-light: #81c784;
  --green-glow: rgba(67, 160, 71, 0.35);
  --white: #ffffff;
  --off-white: #f6faf6;
  --text-dark: #1a2e1a;
  --text-gray: #5a6b5a;
  --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
}

/* ================= SECTION BASE ================= */
.showcase-section {
  position: relative;
  padding: 120px 6% 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  overflow: hidden;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  direction: rtl;
}

/* ================= BACKGROUND BLOBS ================= */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  z-index: 0;
  animation: floatBlob 12s ease-in-out infinite;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--green-light);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--green-mid);
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ================= HEADER ================= */
.showcase-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  opacity: 0;
  transform: translateY(40px);
  animation: headerReveal 1s ease forwards 0.2s;
}

@keyframes headerReveal {
  to { opacity: 1; transform: translateY(0); }
}

.showcase-tag {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px var(--green-glow);
}

.showcase-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.showcase-title span {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 4s linear infinite;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

.showcase-desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.9;
}

/* ================= GRID ================= */
.showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ================= CARD ================= */
.showcase-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.08);
  transform: translateY(60px) scale(0.9);
  opacity: 0;
  transition: box-shadow 0.4s ease, transform 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.showcase-card.in-view {
  animation: cardReveal 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.showcase-card:nth-child(1).in-view { animation-delay: 0.05s; }
.showcase-card:nth-child(2).in-view { animation-delay: 0.2s; }
.showcase-card:nth-child(3).in-view { animation-delay: 0.35s; }
.showcase-card:nth-child(4).in-view { animation-delay: 0.5s; }

@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.showcase-card:hover {
  box-shadow: 0 25px 60px var(--green-glow);
}

/* ================= CARD BORDER GLOW ================= */
.card-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--green-mid), transparent 40%, var(--green-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase-card:hover .card-border {
  opacity: 1;
}

/* ================= IMAGE ================= */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
  filter: saturate(1) brightness(1);
}

.showcase-card:hover .card-image-wrap img {
  transform: scale(1.15) rotate(1deg);
  filter: saturate(1.2) brightness(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 94, 32, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-card:hover .card-overlay {
  opacity: 1;
}

/* ================= SHINE SWEEP ================= */
.card-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
}

.showcase-card:hover .card-shine {
  animation: shineSweep 1s ease forwards;
}

@keyframes shineSweep {
  to { left: 130%; }
}

/* ================= CONTENT ================= */
.card-content {
  position: relative;
  padding: 26px 22px 30px;
  text-align: center;
}

.card-icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.showcase-card:hover .card-icon {
  transform: scale(1.2) rotate(-8deg);
}

.card-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.showcase-card:hover .card-content h3 {
  color: var(--green);
}

.card-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-gray);
}

/* Underline animated effect under title */
.card-content h3::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 10px;
  transition: width 0.5s ease;
}

.showcase-card:hover .card-content h3::after {
  width: 50px;
}

/* ================= VARIABLES ================= */
:root {
  --green-dark: #1b5e20;
  --green: #2e7d32;
  --green-mid: #43a047;
  --green-light: #81c784;
  --green-glow: rgba(67, 160, 71, 0.35);
  --white: #ffffff;
  --off-white: #f6faf6;
  --text-dark: #1a2e1a;
  --text-gray: #5a6b5a;
}

/* ================= SECTION BASE ================= */
.gallery-section {
  position: relative;
  padding: 120px 6%;
  background: var(--white);
  overflow: hidden;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  direction: rtl;
  cursor: default;
}

/* ================= DECOR ================= */
.gallery-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  z-index: 0;
  animation: blobFloat 14s ease-in-out infinite;
}
.g-blob-1 { width: 400px; height: 400px; background: var(--green-light); top: -50px; left: -100px; }
.g-blob-2 { width: 350px; height: 350px; background: var(--green-mid); bottom: 0; right: -80px; animation-delay: 4s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -20px) scale(1.1); }
}

.gallery-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px dashed var(--green-light);
  border-radius: 50%;
  top: 40px;
  right: 5%;
  opacity: 0.4;
  animation: ringSpin 20s linear infinite;
  z-index: 0;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* ================= HEADER ================= */
.gallery-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(40px);
  animation: galleryHeaderReveal 1s ease forwards 0.2s;
}
@keyframes galleryHeaderReveal {
  to { opacity: 1; transform: translateY(0); }
}

.gallery-tag {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px var(--green-glow);
}

.gallery-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.gallery-title span {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: galleryShine 4s linear infinite;
}
@keyframes galleryShine { to { background-position: 200% center; } }

.gallery-desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.9;
}

/* ================= BENTO GRID ================= */
.gallery-bento {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  grid-template-areas:
    "a a b c"
    "a a b d"
    "e e e f";
  gap: 22px;
}

.item-1 { grid-area: a; }
.item-2 { grid-area: b; }
.item-3 { grid-area: c; }
.item-4 { grid-area: d; }
.item-5 { grid-area: e; }
.item-6 { grid-area: f; }

/* ================= ITEM BASE ================= */
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  transition: border-radius 0.6s ease;
}

.gallery-item.in-view {
  animation: itemReveal 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.item-1.in-view { animation-delay: 0.05s; }
.item-2.in-view { animation-delay: 0.15s; }
.item-3.in-view { animation-delay: 0.25s; }
.item-4.in-view { animation-delay: 0.35s; }
.item-5.in-view { animation-delay: 0.45s; }
.item-6.in-view { animation-delay: 0.55s; }

@keyframes itemReveal {
  0% { clip-path: inset(100% 0 0 0); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* هاور: بلاب مورف ارگانیک */
.gallery-item:hover {
  animation: blobMorph 3s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 24px; }
  25% { border-radius: 40px 20px 35px 15px; }
  50% { border-radius: 15px 40px 20px 35px; }
  75% { border-radius: 30px 15px 40px 25px; }
}

/* ================= INNER ================= */
.item-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) brightness(0.95);
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  to { transform: scale(1.18); }
}

.gallery-item:hover .item-inner img {
  filter: grayscale(0) brightness(1.05);
  transform: scale(1.28);
}

/* گرین تکسچر نویز سینماتیک */
.item-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.6;
}

/* ================= OVERLAY ================= */
.item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 40, 15, 0.85) 0%, rgba(15,40,15,0.1) 55%, transparent 100%);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
  opacity: 1;
}

.item-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 46px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .item-number {
  color: rgba(129, 199, 132, 0.5);
  transform: scale(1.1);
}

.item-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.item-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ================= CUSTOM CURSOR ================= */
.gallery-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}

.gallery-cursor.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ================= LIGHTBOX ================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 10, 0.85);
  backdrop-filter: blur(15px);
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.85) translateY(40px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
}

.gallery-lightbox.active .lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-content img {
  width: 100%;
  display: block;
  max-height: 70vh;
  object-fit: cover;
}

.lightbox-info {
  padding: 20px 26px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}

.lightbox-info span {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-light);
}

.lightbox-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover {
  background: var(--green-mid);
  transform: rotate(90deg);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
    grid-template-areas:
      "a b"
      "c d"
      "e f";
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .gallery-section { padding: 90px 5%; }
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
    gap: 18px;
  }
  .gallery-cursor { display: none; }
  .gallery-item:hover .item-overlay {
    transform: translateY(0);
    opacity: 1;
  }
  .item-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, rgba(15,40,15,0.9) 0%, rgba(15,40,15,0.2) 60%, transparent 100%);
  }
}
.gallery-item {
  opacity: 1 !important;
  clip-path: inset(0 0 0 0) !important;
}

/* ===== Video Showcase Section ===== */
.video-showcase {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #ffffff 0%, #f2f9f2 50%, #e6f4e6 100%);
  overflow: hidden;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vazirmatn', 'Segoe UI', sans-serif;
  direction: rtl;
}

/* ---- برگ‌های شناور پس‌زمینه ---- */
.floating-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6fbf73, #2e7d32);
  clip-path: path("M20 0 C35 10 40 30 20 40 C0 30 5 10 20 0 Z");
  opacity: 0.25;
  animation: floatLeaf 12s ease-in-out infinite;
}

.leaf-1 { top: 8%;  left: 5%;   width: 55px; height: 55px; animation-duration: 14s; }
.leaf-2 { top: 20%; right: 8%;  width: 30px; height: 30px; animation-duration: 10s; animation-delay: 1s; }
.leaf-3 { bottom: 15%; left: 12%; width: 45px; height: 45px; animation-duration: 16s; animation-delay: 2s; }
.leaf-4 { bottom: 25%; right: 15%; width: 35px; height: 35px; animation-duration: 11s; animation-delay: 0.5s; }
.leaf-5 { top: 50%; left: 45%; width: 25px; height: 25px; animation-duration: 9s; animation-delay: 3s; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-30px) rotate(15deg); }
  50%      { transform: translateY(10px) rotate(-10deg); }
  75%      { transform: translateY(-15px) rotate(8deg); }
}

/* ---- کانتینر اصلی ---- */
.showcase-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* ---- قاب ویدیو با فرم ارگانیک ---- */
.video-frame-wrapper {
  position: relative;
  flex: 1 1 500px;
  max-width: 620px;
}

.video-frame {
  position: relative;
  border-radius: 42% 58% 63% 37% / 47% 41% 59% 53%;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(46, 125, 50, 0.35),
              0 0 0 8px rgba(255,255,255,0.7);
  border: 3px solid rgba(129, 199, 132, 0.5);
  aspect-ratio: 4 / 3;
  transition: border-radius 0.6s ease;
  animation: morphFrame 10s ease-in-out infinite;
}

@keyframes morphFrame {
  0%, 100% { border-radius: 42% 58% 63% 37% / 47% 41% 59% 53%; }
  50%      { border-radius: 58% 42% 37% 63% / 41% 53% 47% 59%; }
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.03);
}

/* ---- دکمه پخش ---- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ffffff;
}

.play-icon {
  width: 28px;
  height: 28px;
  fill: #2e7d32;
  margin-left: 4px;
  transition: opacity 0.3s ease;
}

.play-btn.playing .play-icon {
  opacity: 0;
}

.play-btn.playing::before,
.play-btn.playing::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 24px;
  background: #2e7d32;
  border-radius: 2px;
}
.play-btn.playing::before { transform: translateX(-6px); }
.play-btn.playing::after  { transform: translateX(6px); }

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(129, 199, 132, 0.7);
  animation: pulse 2.4s ease-out infinite;
}
.pulse-ring.delay { animation-delay: 1.2s; }

.play-btn.playing .pulse-ring { display: none; }

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---- نوار پیشرفت ---- */
.progress-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 10px;
  overflow: hidden;
  z-index: 3;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #66bb6a, #a5d6a7);
  border-radius: 10px;
  transition: width 0.2s linear;
}

/* ---- دکوراسیون دور قاب ---- */
.frame-decor {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 3px solid #81c784;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
}
.decor-top    { top: -25px;  right: -25px; }
.decor-bottom { bottom: -20px; left: -20px; width: 60px; height: 60px; }

/* ---- پنل متن با افکت شیشه‌ای ---- */
.glass-panel {
  flex: 1 1 380px;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(129, 199, 132, 0.4);
  border-radius: 24px;
  padding: 48px 42px;
  box-shadow: 0 20px 45px -10px rgba(46, 125, 50, 0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.glass-panel.in-view {
  opacity: 1;
  transform: translateY(0);
  text-align:right;
}

.tag-line {
  display: inline-block;
  background: linear-gradient(135deg, #81c784, #4caf50);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.glass-panel h2 {
  font-size: 2rem;
  color: #1b5e20;
  margin: 0 0 18px;
  line-height: 1.5;
}

.glass-panel p {
  color: #33513a;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.cta-btn {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(46,125,50,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(46,125,50,0.6);
}

/* ---- ریسپانسیو ---- */
@media (max-width: 900px) {
  .showcase-container { flex-direction: column; gap: 40px; }
  .glass-panel { text-align: center; }
}

@media (max-width: 500px) {
  .video-frame { border-radius: 30px; }
  .play-btn { width: 64px; height: 64px; }
  .glass-panel { padding: 32px 26px; }
  .glass-panel h2 { font-size: 1.5rem; }
}

.company-value-area{
    margin-bottom:25px;
}

/* ==================== SYLVAN CANOPY 2026 - SQUARE PREMIUM ==================== */

.sylvan-canopy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.sylvan-canopy-header {
  text-align: center;
  margin-bottom: 40px;
}

.sylvan-canopy-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a3b2a;
  margin-bottom: 10px;
}

.sylvan-canopy-subtitle {
  font-size: 16px;
  color: #5a6b60;
}

/* ---------- گرید گالری ---------- */
.sylvan-canopy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* ---------- کارت هر تصویر (مربعی) ---------- */
.sylvan-leaf-pod {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #0d1f16;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(34, 139, 87, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease;
  isolation: isolate;
}

.sylvan-leaf-pod:hover,
.sylvan-leaf-pod:focus-visible {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(46, 204, 113, 0.55),
    0 0 30px rgba(46, 204, 113, 0.25);
  outline: none;
}

/* بردر ظریف داخلی - بالای همه چیز */
.sylvan-leaf-pod::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
  pointer-events: none;
}

.sylvan-leaf-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---------- خود تصویر ---------- */
.sylvan-leaf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.5s ease;
  filter: brightness(0.96) saturate(1.05);
}

.sylvan-leaf-pod:hover .sylvan-leaf-image {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.15);
}

/* ---------- گرادیانت + عنوان روی هاور ---------- */
.sylvan-leaf-veins {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 30, 18, 0.92) 0%,
    rgba(6, 30, 18, 0.35) 35%,
    rgba(6, 30, 18, 0) 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.sylvan-leaf-pod:hover .sylvan-leaf-veins,
.sylvan-leaf-pod:focus-visible .sylvan-leaf-veins {
  opacity: 1;
}

.sylvan-leaf-veins::before {
  content: attr(data-hover-title);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.sylvan-leaf-veins::after {
  content: "🔍";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: rgba(46, 204, 113, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.sylvan-leaf-pod:hover .sylvan-leaf-veins::after {
  transform: scale(1);
}

/* ---------- پیام خالی بودن گالری ---------- */
.sylvan-empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

/* ==================================================================
   مودال (نمایشگر بزرگ تصویر)
   ================================================================== */

.sylvan-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 12, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
  padding: 20px;
}

.sylvan-modal.active {
  opacity: 1;
  visibility: visible;
}

.sylvan-modal-content {
  position: relative;
  background: #0f241a;
  border-radius: 16px;
  overflow: hidden;
  max-width: min(900px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.sylvan-modal.active .sylvan-modal-content {
  transform: scale(1);
}

.sylvan-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sylvan-modal-close:hover {
  background: rgba(46, 204, 113, 0.85);
  transform: rotate(90deg);
}

/* --------- ⚠️ اصلاح اصلی مشکل قبلی (بریدگی عکس) --------- */
.sylvan-modal-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06140c;
  overflow: hidden;
}

.sylvan-modal-image-wrapper img,
#sylvan-modal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.sylvan-modal-veins {
  display: none; /* در مودال گرادیانت لازم نیست، فقط برای گالری استفاده می‌شه */
}

.sylvan-modal-info {
  padding: 18px 24px;
  background: #0f241a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#sylvan-modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

#sylvan-modal-desc {
  color: #b8c9be;
  font-size: 14px;
  line-height: 1.7;
}

/* ==================== ریسپانسیو ==================== */
@media (max-width: 768px) {
  .sylvan-canopy-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }

  .sylvan-leaf-pod {
    border-radius: 14px;
  }

  .sylvan-leaf-veins::after {
    width: 30px;
    height: 30px;
    font-size: 12px;
    top: 10px;
    left: 10px;
  }

  .sylvan-leaf-veins::before {
    font-size: 13px;
  }

  .sylvan-canopy-title {
    font-size: 24px;
  }

  .sylvan-modal-content {
    max-width: 95vw;
  }

  .sylvan-modal-info {
    padding: 14px 16px;
  }

  #sylvan-modal-title {
    font-size: 17px;
  }
}
/* 404 styles */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 18px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.error-card {
    width: min(100%, 650px);
    text-align: center;
    padding: 55px 35px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(40, 118, 83, 0.12);
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(23, 77, 55, 0.13);
    position: relative;
    z-index: 2;
    animation: card-show 0.8s ease both;
}

.error-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--error-white);
    background: linear-gradient(135deg, var(--error-green), var(--error-green-dark));
    font-size: 30px;
    box-shadow: 0 12px 25px rgba(40, 118, 83, 0.25);
    animation: leaf-float 3s ease-in-out infinite;
}

.error-number {
    direction: ltr;
    font-size: clamp(90px, 18vw, 170px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--error-green-dark);
    text-shadow: 8px 8px 0 var(--error-green-light);
    margin-bottom: 15px;
}

.error-card h1 {
    font-size: clamp(24px, 5vw, 36px);
    color: var(--error-green-dark);
    margin-bottom: 14px;
}

.error-card p {
    max-width: 490px;
    margin: 0 auto;
    color: var(--error-muted);
    font-size: 15px;
    line-height: 2;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.error-actions a,
.error-actions button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.error-home-btn {
    color: var(--error-white);
    background: var(--error-green);
    border: 1px solid var(--error-green);
}

.error-home-btn:hover {
    background: var(--error-green-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(40, 118, 83, 0.2);
}

.error-back-btn {
    color: var(--error-green-dark);
    background: var(--error-white);
    border: 1px solid var(--error-green-light);
}

.error-back-btn:hover {
    color: var(--error-white);
    background: var(--error-green-dark);
    transform: translateY(-4px);
}

.error-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #edf2ee;
}

.error-links a {
    color: var(--error-muted);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.error-links a i {
    color: var(--error-green);
    margin-left: 5px;
}

.error-links a:hover {
    color: var(--error-green-dark);
}

/* اشکال تزئینی پس‌زمینه */
.error-background-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
}

.shape-one {
    width: 330px;
    height: 330px;
    top: -130px;
    right: -100px;
    background: rgba(181, 224, 198, 0.55);
}

.shape-two {
    width: 260px;
    height: 260px;
    bottom: -100px;
    left: -80px;
    background: rgba(205, 237, 216, 0.75);
}

@keyframes card-show {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes leaf-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(5deg);
    }
}

@media (max-width: 576px) {
    .error-page {
        padding: 18px;
    }

    .error-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .error-number {
        font-size: 105px;
    }

    .error-card p {
        font-size: 13px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions a,
    .error-actions button {
        width: 100%;
    }

    .error-links {
        gap: 15px;
    }
    #betonphoto1 {
    display:none;
    }
}

/* ==================== TERRA SHOWCASE 2026 - PRODUCTS SLIDER ==================== */

.terra-showcase-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

/* ---------- هدر ---------- */
.terra-showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.terra-showcase-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #2ecc71, #1a8f4c);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
}

.terra-showcase-title {
  font-size: 34px;
  font-weight: 800;
  color: #12271b;
  margin-bottom: 12px;
}

.terra-showcase-subtitle {
  font-size: 16px;
  color: #6b7d72;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- کانتینر اسلایدر ---------- */
.terra-showcase-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terra-showcase-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.terra-showcase-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  padding: 10px 4px 20px;
}

/* ---------- هر اسلاید ---------- */
.terra-showcase-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}

/* ---------- کارت محصول ---------- */
.terra-showcase-card {
  text-align:right;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(18, 39, 27, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.terra-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(18, 39, 27, 0.18),
              0 0 0 1.5px rgba(46, 204, 113, 0.4);
  border-color: rgba(46, 204, 113, 0.4);
}

/* ---------- تصویر محصول ---------- */
.terra-showcase-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #eef7f0, #dceee2);
}

.terra-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.terra-showcase-card:hover .terra-showcase-image {
  transform: scale(1.1);
}

/* افکت درخشش روی هاور */
.terra-showcase-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.85s ease;
  pointer-events: none;
}

.terra-showcase-card:hover .terra-showcase-shine {
  left: 130%;
}

/* برچسب (پرفروش / جدید) */
.terra-showcase-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26, 143, 76, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* ---------- محتوای متنی ---------- */
.terra-showcase-content {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.terra-showcase-product-title {
  font-size: 18px;
  font-weight: 700;
  color: #12271b;
  margin-bottom: 8px;
}

.terra-showcase-product-desc {
  font-size: 14px;
  color: #6b7d72;
  line-height: 1.8;
  flex: 1;
}

/* ---------- دکمه‌های فلش ---------- */
.terra-showcase-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1a8f4c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(18, 39, 27, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}

.terra-showcase-arrow:hover {
  background: linear-gradient(135deg, #2ecc71, #1a8f4c);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.terra-showcase-arrow:active {
  transform: scale(0.95);
}

.terra-showcase-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.terra-showcase-arrow:disabled:hover {
  background: #ffffff;
  color: #1a8f4c;
  box-shadow: 0 6px 20px rgba(18, 39, 27, 0.12);
}

/* ---------- نقاط پیجینیشن ---------- */
.terra-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.terra-showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4e5d9;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0;
}

.terra-showcase-dot.active {
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #2ecc71, #1a8f4c);
}

/* ==================== ریسپانسیو ==================== */

/* تبلت بزرگ - 3 کارت */
@media (max-width: 1100px) {
  .terra-showcase-slide {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* تبلت - 2 کارت */
@media (max-width: 800px) {
  .terra-showcase-slide {
    flex: 0 0 calc(50% - 12px);
  }

  .terra-showcase-title {
    font-size: 26px;
  }

  .terra-showcase-section {
    padding: 50px 16px;
  }
}

/* موبایل - 1 کارت */
@media (max-width: 560px) {
  .terra-showcase-slide {
    flex: 0 0 100%;
  }

  .terra-showcase-track {
    gap: 16px;
  }

  .terra-showcase-arrow {
    width: 40px;
    height: 40px;
  }

  .terra-showcase-arrow svg {
    width: 18px;
    height: 18px;
  }

  .terra-showcase-product-title {
    font-size: 16px;
  }

  .terra-showcase-product-desc {
    font-size: 13px;
  }
}


.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    font-family: inherit;
}

/*
    فقط موبایل و تبلت:
    عرض کمتر از 1024 پیکسل
*/
@media screen and (max-width: 1023px) {

    .floating-contact {
        display: flex;
        flex-direction: column;
    }

    .floating-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 14px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.25s ease;
    }

    .floating-contact.is-open .floating-actions {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .floating-action {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #222;
        text-decoration: none;
        white-space: nowrap;
    }

    .action-title {
        background: #ffffff;
        padding: 9px 14px;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
        font-size: 14px;
    }

    .action-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        font-size: 22px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    }

    .phone-icon {
        background: #1976d2;
    }

    .whatsapp-icon {
        background: #25d366;
    }

    .location-icon {
        background: #e53935;
    }

    .floating-toggle {
        width: 58px;
        height: 58px;
        border: 2px solid blue;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        /*color: #ffffff;*/
        /*background: #111827;*/
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        font-size: 28px;
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .floating-toggle:hover {
        transform: scale(1.08);
    }

    .close-icon {
        display: none;
        font-size: 34px;
        line-height: 1;
    }

    .floating-contact.is-open .menu-icon {
        display: none;
    }

    .floating-contact.is-open .close-icon {
        display: block;
    }

    .floating-contact.is-open .floating-toggle {
        /*background: #dc2626;*/
    }
}

/* در اندازه‌های خیلی کوچک */
@media screen and (max-width: 400px) {
    .floating-contact {
        right: 14px;
        bottom: 14px;
    }

    .floating-toggle {
        width: 52px;
        height: 52px;
    }

    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .action-title {
        font-size: 13px;
        padding: 8px 11px;
    }
}


/* ========================================
   BLOG
======================================== */

.blog-page {
    min-height: 100vh;
    padding-bottom: 100px;
}


/* ========================================
   HERO
======================================== */

.blog-hero {
    position: relative;
    padding: 100px 20px 80px;
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
}

.blog-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.18),
        transparent 70%
    );

    pointer-events: none;
}

.blog-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -250px;
    left: -150px;

    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.12),
        transparent 70%
    );

    pointer-events: none;
}


.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}


.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(114, 246, 57, 0.08);

    border: 1px solid rgba(59, 130, 246, 0.2);

    color: #3c8525;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}


.blog-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;

    line-height: 1.15;

    margin-bottom: 20px;

    letter-spacing: -2px;
}


.blog-hero-title span {
    background: linear-gradient(
        135deg,
        #3c8525,
        #69fa60
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.blog-hero-description {
    max-width: 650px;
    margin: auto;

    color: #64748b;

    font-size: 18px;

    line-height: 2;
}

/* ========================================
   BLOG CARDS
======================================== */

.blog-card {
    position: relative;

    text-align: right;

    height: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.blog-card:hover {
    transform: translateY(-8px);

    border-color: rgba(59, 130, 246, 0.3);

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.12);
}


/* IMAGE */

.blog-card-image {
    display: block;

    position: relative;

    height: 230px;

    overflow: hidden;

    background: #f1f5f9;
}


.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.blog-card:hover
.blog-card-image img {

    transform: scale(1.06);

}


.blog-card-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 50px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );

    color: #2563eb;

}


/* CONTENT */

.blog-card-content {

    padding: 24px;

}


/* CATEGORY */

.blog-card-category {

    display: inline-flex;

    padding: 6px 12px;

    border-radius: 999px;

    background: #eff6ff;

    color: #48a535;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    margin-bottom: 12px;

}


/* TITLE */

.blog-card-title {

    font-size: 21px;

    line-height: 1.6;

    font-weight: 800;

    margin: 0 0 12px;

}


.blog-card-title a {

    color: #0f172a;

    text-decoration: none;

    transition: color 0.25s ease;

}


.blog-card-title a:hover {

    color: #2563eb;

}


/* EXCERPT */

.blog-card-excerpt {

    color: #64748b;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 24px;

}


/* FOOTER */

.blog-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid #f1f5f9;

}


.blog-card-author {

    display: flex;

    align-items: center;

    gap: 10px;

}


.blog-author-avatar {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #48a535,
            #9fff9d
        );

    color: white;

    font-weight: 800;

    font-size: 14px;

}


.blog-card-author strong {

    display: block;

    font-size: 13px;

    color: #0f172a;

}


.blog-card-author small {

    display: block;

    font-size: 11px;

    color: #94a3b8;

    margin-top: 2px;

}


.blog-card-views {

    color: #94a3b8;

    font-size: 12px;

}


/* EMPTY */

.blog-empty {

    text-align: center;

    padding: 100px 20px;

}


.blog-empty h3 {

    font-weight: 800;

    margin-bottom: 10px;

}


.blog-empty p {

    color: #64748b;

}

/* ========================================
   ARTICLE DETAIL
======================================== */

.blog-detail-page {
    direction: rtl;
    min-height: 100vh;
    background: #f8fafc;
}


/* ========================================
   HERO
======================================== */

.blog-detail-hero {
    position: relative;

    padding: 80px 20px 70px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(59, 130, 246, 0.10),
            transparent 35%
        ),
        #ffffff;

    overflow: hidden;
}


.blog-detail-hero-inner {

    max-width: 900px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;

    text-align: right;

}


/* CATEGORY */

.blog-detail-category {

    display: inline-flex;

    padding: 8px 16px;

    border-radius: 999px;

    background: #eff6ff;

    color: #31eb25;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 20px;

}


/* TITLE */

.blog-detail-title {

    margin: 0;

    max-width: 900px;

    color: #0f172a;

    font-size: clamp(
        36px,
        5vw,
        64px
    );

    line-height: 1.35;

    font-weight: 900;

    letter-spacing: -1.5px;

}


/* EXCERPT */

.blog-detail-excerpt {

    max-width: 800px;

    margin:

        25px 0 35px;

    color: #64748b;

    font-size: 18px;

    line-height: 2;

}


/* ========================================
   META
======================================== */

.blog-detail-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 35px;

}


.blog-detail-author {

    display: flex;

    align-items: center;

    gap: 12px;

}


.blog-detail-avatar {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #4deb25,
            #60ab4d
        );

    color: #fff;

    font-weight: 900;

}


.blog-detail-author span,
.blog-detail-meta-item small {

    display: block;

    color: #94a3b8;

    font-size: 11px;

    margin-bottom: 3px;

}


.blog-detail-author strong,
.blog-detail-meta-item strong {

    color: #0f172a;

    font-size: 13px;

}


.blog-detail-meta-item {

    display: flex;

    align-items: center;

    gap: 10px;

}


.blog-detail-meta-item > span {

    font-size: 20px;

}


/* ========================================
   FEATURED IMAGE
======================================== */

.blog-detail-featured {

    position: relative;

    margin-top: -25px;

    z-index: 5;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(15, 23, 42, 0.15);

}


.blog-detail-featured img {

    display: block;

    width: 100%;

    max-height: 600px;

    object-fit: cover;

}


/* ========================================
   LAYOUT
======================================== */

.blog-detail-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 45px;

    align-items: start;

    padding-top: 70px;

    padding-bottom: 100px;

}


/* ========================================
   CONTENT
======================================== */

.blog-detail-content {

    min-width: 0;

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

    padding: clamp(
        25px,
        5vw,
        60px
    );

    box-shadow:
        0 10px 40px
        rgba(15, 23, 42, 0.04);

}


/* ========================================
   ARTICLE TYPOGRAPHY
======================================== */

.blog-content {

    direction: rtl;

    text-align: right;

    color: #334155;

    font-size: 17px;

    line-height: 2.15;

}


.blog-content h2 {

    margin-top: 55px;

    margin-bottom: 20px;

    color: #0f172a;

    font-size: 30px;

    font-weight: 900;

}


.blog-content h3 {

    margin-top: 40px;

    margin-bottom: 15px;

    color: #0f172a;

    font-size: 24px;

    font-weight: 800;

}


.blog-content p {

    margin-bottom: 24px;

}


.blog-content ul,
.blog-content ol {

    padding-right: 25px;

    margin-bottom: 25px;

}


.blog-content li {

    margin-bottom: 10px;

}


.blog-content a {

    color: #2563eb;

    font-weight: 700;

}


/* ========================================
   BLOCKQUOTE
======================================== */

.blog-content blockquote {

    margin: 35px 0;

    padding: 25px 30px;

    border-right:
        4px solid #2563eb;

    border-left: 0;

    background: #eff6ff;

    border-radius: 12px;

    color: #1e3a8a;

    font-size: 17px;

}


/* ========================================
   IMAGES
======================================== */

.blog-content img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 35px auto;

    border-radius: 18px;

}


/* ========================================
   TABLE
======================================== */

.blog-content table {

    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

}


.blog-content th,
.blog-content td {

    padding: 14px;

    border: 1px solid #e2e8f0;

    text-align: right;

}


.blog-content th {

    background: #f8fafc;

    color: #0f172a;

    font-weight: 800;

}


/* ========================================
   CODE
======================================== */

.blog-content pre {

    direction: ltr;

    text-align: left;

    overflow-x: auto;

    margin: 30px 0;

    padding: 25px;

    border-radius: 18px;

    background: #0f172a;

    color: #e2e8f0;

    font-family:
        "JetBrains Mono",
        "Fira Code",
        monospace;

    font-size: 14px;

    line-height: 1.8;

}


.blog-content code {

    direction: ltr;

    font-family:
        "JetBrains Mono",
        "Fira Code",
        monospace;

}


.blog-content :not(pre) > code {

    padding: 3px 8px;

    border-radius: 6px;

    background: #eff6ff;

    color: #1d4ed8;

    font-size: 0.9em;

}


/* ========================================
   TAGS
======================================== */

.blog-detail-tags {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 50px;

    padding-top: 30px;

    border-top: 1px solid #e2e8f0;

}


.blog-tags-title {

    font-weight: 800;

    margin-left: 8px;

}


.blog-detail-tags a {

    padding: 7px 12px;

    border-radius: 999px;

    background: #f1f5f9;

    color: #475569;

    text-decoration: none;

    font-size: 12px;

    transition: 0.25s ease;

}


.blog-detail-tags a:hover {

    background: #dbeafe;

    color: #2563eb;

}


/* ========================================
   SHARE
======================================== */

.blog-share {

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid #e2e8f0;

}


.blog-share > span {

    font-weight: 800;

}


.blog-share-buttons {

    display: flex;

    gap: 8px;

}


.blog-share-buttons button {

    border: 0;

    padding: 8px 14px;

    border-radius: 10px;

    background: #f1f5f9;

    color: #475569;

    cursor: pointer;

    transition: 0.25s ease;

}


.blog-share-buttons button:hover {

    background: #dbeafe;

    color: #2563eb;

}


/* ========================================
   SIDEBAR
======================================== */

.blog-detail-sidebar {

    position: sticky;

    top: 30px;

}


.blog-toc {

    padding: 25px;

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 22px;

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.04);

}


.blog-toc-title {

    font-size: 16px;

    font-weight: 900;

    color: #0f172a;

    margin-bottom: 20px;

}


.blog-toc-list {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.blog-toc-list a {

    display: block;

    padding: 10px 12px;

    border-radius: 10px;

    color: #64748b;

    text-decoration: none;

    font-size: 13px;

    transition: 0.25s ease;

}


.blog-toc-list a:hover {

    background: #eff6ff;

    color: #2563eb;

}


/* SIDEBAR CARD */

.blog-sidebar-card {
    text-align: right;

    margin-top: 20px;

    padding: 25px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f1ffef,
            #dbfedc
        );

}


.blog-sidebar-card > span {

    font-size: 30px;

}


.blog-sidebar-card strong {

    display: block;

    margin-top: 10px;

    color: #0f172a;

    font-size: 18px;

}


.blog-sidebar-card p {

    color: #64748b;

    font-size: 13px;

    line-height: 1.8;

}


.blog-sidebar-card a {

    display: inline-flex;

    padding: 10px 15px;

    border-radius: 10px;

    background: #2f9328;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .blog-detail-layout {

        grid-template-columns: 1fr;

    }


    .blog-detail-sidebar {

        position: static;

    }

}


@media (max-width: 576px) {

    .blog-detail-hero {

        padding:
            55px 20px
            60px;

    }


    .blog-detail-title {

        font-size: 34px;

    }


    .blog-detail-meta {

        gap: 20px;

    }


    .blog-detail-content {

        border-radius: 20px;

        padding: 25px 20px;

    }


    .blog-content {

        font-size: 16px;

    }


    .blog-content h2 {

        font-size: 25px;

    }


    .blog-content h3 {

        font-size: 21px;

    }


    .blog-share {

        align-items: flex-start;

        flex-direction: column;

    }

}

/* آیکون‌های مخصوص موبایل */
.mobile-footer-icons {
    display: none;
}

@media (max-width: 767px) {

    .mobile-footer-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-footer-icons a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .mobile-footer-icons img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
        transition: all 0.3s ease;
    }

    .mobile-footer-icons a:hover {
        transform: translateY(-3px);
    }

    .mobile-footer-icons a:hover img {
        transform: scale(1.08);
    }
}