@charset "UTF-8";
/*Start Search*/
.searchh {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.995);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 0;
  padding: 40px 20px;
}
.floating-form .wpcf7-not-valid-tip{
    top: 100%;
}
/* active state */
.searchh.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 99999;
}

/* container */
.searchh .search-cont {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* form */
#searchform {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* input */
#search-input {
  flex: 1;
  padding: 18px 56px 18px 22px; /* leave space for icon */
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* placeholder */
#search-input::placeholder {
  color: #666;
  text-transform: none;
}

/* submit button (icon inside input area on the right) */
#search-submit {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  color: var(--sec);
}

/* close button */
.searchh .search-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: var(--main);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* End Search*/
/*start nav*/
.nav-list {
  display: none;
}

.main-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--sec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  background: transparent;
  line-height: 150%; /* 39px */
  letter-spacing: -0.286px;
}

.nav-btn:hover {
  transition: linear 0.4s;
}

.mobile-nav-list .logo {
  padding: 0 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-list .logo .close {
  float: unset;
  text-shadow: unset;
  color: #FFF;
  opacity: 1;
  transition: all linear 0.2s;
}

.mobile-nav-list .date {
  display: flex;
  margin-top: 15px;
  padding: 0 30px;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
}

.mobile-nav-list .date .lang, .mobile-nav-list .date #hijrii {
  margin: 10px 0;
}

.mobile-nav-list .l-head {
  justify-content: center;
}

.mobile-nav-list {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  z-index: 15;
  text-align: center;
  padding: 120px 5%;
  background-color: rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
  /* background-image: linear-gradient(135deg, var(--main) 0%, var(--sec) 100%); */
  clip-path: circle(0% at 5% 5%);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1),
  visibility 0s linear 0.8s;
  visibility: hidden;
}

html[dir="rtl"] .mobile-nav-list,
html[lang="ar"] .mobile-nav-list {
  clip-path: circle(0% at 95% 5%);
}

.trans-none {
  clip-path: circle(150% at 5% 5%);
  visibility: visible;
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1),
  visibility 0s linear 0s;
}

html[dir="rtl"] .trans-none,
html[lang="ar"] .trans-none {
  clip-path: circle(150% at 95% 5%);
}

.mobile-nav-list li {
  opacity: 0;
  transform: scale(0.7) translateY(30px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.trans-none li {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trans-none li:nth-child(1) { transition-delay: 0.3s; }
.trans-none li:nth-child(2) { transition-delay: 0.35s; }
.trans-none li:nth-child(3) { transition-delay: 0.4s; }
.trans-none li:nth-child(4) { transition-delay: 0.45s; }
.trans-none li:nth-child(5) { transition-delay: 0.5s; }
.trans-none li:nth-child(6) { transition-delay: 0.55s; }
.trans-none li:nth-child(7) { transition-delay: 0.6s; }
.trans-none li:nth-child(8) { transition-delay: 0.65s; }

/* Links - هادي وأنيق */
.mobile-nav-list li a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.85;
}

.mobile-nav-list li a:hover {
  opacity: 1;
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

html[dir="rtl"] .mobile-nav-list li a:hover,
html[lang="ar"] .mobile-nav-list li a:hover {
  transform: translateX(-8px);
}

.mobile-nav-list li.active a {
  opacity: 1;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mobile-nav-list::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.mobile-nav-list::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}
.mobile-nav-list::-webkit-scrollbar {
  width: 0.5em;
}
.mobile-nav-list .lang-item {
  font-family: "Manrope";
  font-size: 28px;
  color: var(--sec);
  transition: all linear 0.3s;
}
.mobile-nav-list .lang-item:hover {
  color: var(--sec);
}
.mobile-nav-list .request {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  background-color: var(--main);
  font-size: 16px;
}
.mobile-nav-list .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-nav-list .phone .img-phone {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--main);
  border-radius: 50%;
}
.mobile-nav-list .phone .img-phone img {
  max-width: 20px;
  max-height: 20px;
}
.mobile-nav-list .phone p {
  font-size: 20px;
  font-family: din-bold;
  color: #000;
}
.mobile-nav-list .phone a {
  font-size: 20px;
  font-family: din-bold;
  color: #000;
}
.mobile-nav-list .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /*.fa-tiktok{
    color: #111111;
    filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

  }
  .fa-linkedin-in{
    color: #0e76a8;
  }
  .fa-snapchat{
    background-color: #FFFC00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-facebook, .fa-facebook-square {
    color: #3b5998
  }
  .fa-twitter, .fa-twitter-square {
    color: #00aced
  }
  .fa-google-plus, .fa-google-plus-square {
    color: #dd4b39
  }
  .fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #bb0000
  }
  .fa-tumblr, .fa-tumblr-square {
    color: #32506d
  }
  .fa-vine {
    color: #00bf8f
  }
  .fa-flickr {
    color: #ff0084
  }
  .fa-vimeo-square {
    color: #aad450
  }
  .fa-pinterest, .fa-pinterest-square {
    color: #cb2027
  }
  .fa-linkedin, .fa-linkedin-in-square {
    color: #007bb6
  }
  .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-spotify {
    color: #1ED760;
  }*/
}
.mobile-nav-list .social a {
  background-color: transparent;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main);
  transition: all linear 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.mobile-nav-list .social a:hover {
  border: 1px solid var(--sec);
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s;
}
.mobile-nav-list .social i {
  font-size: 16px;
}
.mobile-nav-list .main-phone {
  display: flex;
  gap: 10px;
  margin-inline-end: 20px;
  align-items: center;
  justify-content: center;
}
.mobile-nav-list .main-phone span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 50%;
}
.mobile-nav-list .main-phone span img {
  width: 16px;
  height: 22px;
}
.mobile-nav-list .main-phone a {
  font-size: 18px;
  color: #000;
}

.mobile-nav-list .link {
  font-size: 16px;
  padding: 10px 0px;
  position: relative;
  /*
  border-bottom: 1px solid var(--sec);
  */
}
.mobile-nav-list .link:nth-last-of-type(1) {
  border-bottom: 0;
}

.mobile-nav-list .link a {
  color: #000;
  display: block;
  text-align: start;
  font-family: "Manrope";
  text-transform: uppercase;
  color: #E5D7C1;
  font-size: 32px;
}

footer .sec-foot {
  margin-top: 0;
}

.mobile-nav-list .link a.has_sub_menu {
  display: inline-block;
  width: calc(100% - 40px);
}

.mobile-nav-list .link a:hover,
.mobile-nav-list .link.active a {
  color: var(--sec);
  transition: all linear 0.3s;
}

.mobile-nav-list .link i {
  color: #fff;
  background-color: var(--main);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transform-origin: center;
  transition: all 0.3s linear;
}

.mobile-nav-list .link i.open {
  transform: rotate(180deg);
}

.sub-list {
  box-shadow: none;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
}

.sub-list a {
  display: block;
  position: relative;
}

.sub-list .sub-link {
  border: 0;
  padding: 5px 20px;
  font-size: 14px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  white-space: nowrap;
}

.sub-list .sub-list a {
  display: block;
  position: relative;
}



.nav-overlay {
  display: block;
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
}

/**/
.mobile-nav-list .link a.has_sub_menu {
  margin-left: 5px;
}

.sub-list .sub-list a {
  padding-right: 15px;
}

.nav-overlay {
  left: 0;
  transform: translateX(-100%);
}

/*end nav*/
@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url(../fonts/Manrope.ttf);
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none;
}

img, iframe {
  max-width: 100%;
}

.wrap {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.loading img {
  max-width: 100%;
  padding: 20px;
}

:root {
  --main: #085543;
  --sec: #D8CFBC;
}

body {
  font-family: Inter;
  overflow-x: hidden;
  color:#FFF;
  background-color: #000;
}

html[dir=rtl] body {
  text-align: right;
}

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

/* End Scroll */
.e-row {
  padding: 0;
  margin: 0;
}

.main-hover {
  padding: 3px 20px;
  width: 180px;
  height: 50px;
  color: #FFF;
  z-index: 2;
  background-color: var(--main);
  border: 0px solid var(--main);
  position: relative;
  text-transform: capitalize;
  border-radius: 0px;
  display: inline-flex;
  font-family: Inter;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.main-hover:before {
  content: "";
  /* font-family: "Font Awesome 6 Free"; */
  font-weight: 900;
  position: absolute;
  color: #FFF;
  z-index: -1;
  left: -7px;
  width: calc(100% + 7px);
  height: 1px;
  bottom: -6px;
  background-color: var(--main);
  transition: all linear 0.2s;
}
.main-hover:after {
  content: "";
  /* font-family: "Font Awesome 6 Free"; */
  font-weight: 900;
  position: absolute;
  color: #FFF;
  z-index: -1;
  bottom: -9px;
  height: 118%;
  width: 1px;
  left: -5px;
  background-color: var(--main);
  transition: all linear 0.2s ;
}

.main-hover:hover {
  color: #000;
  background-color: var(--sec);
  border: 0px solid transparent;
}
.main-hover:hover:before {
  background-color: var(--sec);
  bottom: 0;
  left: 0;
  width: 100%;
}
.main-hover:hover:after {
  background-color: var(--sec);
  bottom: 0;
  left: 0;
  height: 100%;
}

.main-header {
  color: #FFF;
  text-align: center;
  font-size: 52px;
  text-transform: capitalize;
  position: relative;
  font-style: normal;
  line-height: 50px;
  margin-bottom: 50px;
}
.main-header:before {
  content: attr(cont);
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 200%;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #141414;
  font-size: 280px;
  opacity: 0.5;
  transform: translateX(-50%);
  pointer-events: none;
  color: transparent;
}
.main-header span {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5 {
  font-family: Manrope;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader .preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.preloader .logo-loader {
  position: relative;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.preloader .logo-loader img {
  max-width: 100%;
  width: 400px;
  height: auto;
  display: block;
  animation: logoFade 2s ease-in-out infinite;
}

/* Progress Bar شريط */
.preloader .loader-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 250px;
}

.preloader .progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader .progress-fill {
  height: 100%;
  width: 0%;
  background: var(--main);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--main);
}

.preloader .progress-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--main);
  text-align: center;
}

@keyframes logoFade {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

 

@media (max-width: 991px) {
  .preloader .logo-loader img {
    max-width: 160px;
  }
  .preloader .loader-progress {
    width: 200px;
  }
  .preloader .progress-bar {
    height: 5px;
  }
  .preloader .progress-text {
    font-size: 14px;
  }
  .preloader .preloader-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .preloader .logo-loader img {
    max-width: 140px;
  }
  .preloader .loader-progress {
    width: 180px;
  }
  .preloader .progress-bar {
    height: 5px;
  }
  .preloader .preloader-content {
    gap: 25px;
  }
}

@media (max-width: 575px) {
  .preloader .logo-loader img {
    max-width: 120px;
  }
  .preloader .loader-progress {
    width: 150px;
  }
  .preloader .progress-bar {
    height: 4px;
  }
  .preloader .progress-text {
    font-size: 13px;
  }
  .preloader .preloader-content {
    gap: 20px;
  }
}

/*header*/
header {
  position: absolute;
  width: 100%;
  z-index: 2;
}
header .top-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
header .top-head .main-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  gap: 15px;
}

header .logo img {
  width: auto;
  max-width: 270px;
  height: auto;
  max-height: 120px;
}
header .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  font-size: 22px;
  gap: 10px;
  position: relative;
  color: var(--sec);
  /*&:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0;
    z-index: -2;
    top: 0;
    right: 0;
    transition: all linear .3s;
  }

  &:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border: 20px solid transparent;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all linear .3s;
  }*/
}
header .lang a {
  color: var(--sec);
  transition: all linear 0.3s;
}
header .lang a:hover {
  color: var(--main);
}
header .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .lang:hover {
  transition: linear 0.2s;
}
header .lang:hover:before {
  opacity: 1;
}
header .lang:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .menu-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .menu-icons .btn-group .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: max-content;
  height: 50px;
  background-color: transparent;
  border: 0;
  gap: 8px;
  color: var(--main);
  font-size: 22px;
}
header .menu-icons .btn-group .dropdown-toggle i {
  color: var(--sec);
}
header .menu-icons .btn-group .dropdown-menu {
  width: max-content;
  min-width: auto;
  background-color: var(--main);
}
header .menu-icons .btn-group .dropdown-menu a {
  color: #FFF;
  background-color: transparent;
}
header .menu-icons .btn-group .dropdown-menu a:hover {
  background-color: transparent;
}
header .menu-icons .request {
  height: 40px;
  display: flex;
  width: 130px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  border-radius: 0px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .search-btn {
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #FFF;
  transition: linear 0.2s;
  text-align: center;
  position: relative;
}
header .menu-icons .search-btn:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 50%;
  background: var(--main);
  opacity: 0;
  z-index: 1;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: 2;
  top: 0;
  pointer-events: none;
  right: 0;
  border-radius: 50%;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn img {
  z-index: 3;
}
header .menu-icons .search-btn:hover {
  color: #FFF;
  border: 1px solid transparent;
  transition: linear 0.2s;
}
header .menu-icons .search-btn:hover:before {
  opacity: 1;
}
header .menu-icons .search-btn:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /*.fa-tiktok{
    color: #111111;
    filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

  }
  .fa-linkedin-in{
    color: #0e76a8;
  }
  .fa-snapchat{
    background-color: #FFFC00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-facebook, .fa-facebook-square {
    color: #3b5998
  }
  .fa-twitter, .fa-twitter-square {
    color: #00aced
  }
  .fa-google-plus, .fa-google-plus-square {
    color: #dd4b39
  }
  .fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #bb0000
  }
  .fa-tumblr, .fa-tumblr-square {
    color: #32506d
  }
  .fa-vine {
    color: #00bf8f
  }
  .fa-flickr {
    color: #ff0084
  }
  .fa-vimeo-square {
    color: #aad450
  }
  .fa-pinterest, .fa-pinterest-square {
    color: #cb2027
  }
  .fa-linkedin, .fa-linkedin-in-square {
    color: #007bb6
  }
  .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-spotify {
    color: #1ED760;
  }*/
}
header .social a {
  background-color: transparent;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main);
  transition: all linear 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header .social a:hover {
  border: 1px solid var(--sec);
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s;
}
header .social i {
  font-size: 16px;
}

.fixed-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fixed-social i {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sec);
  font-size: 24px;
  transition: all linear 0.3s;
}
.fixed-social i:hover {
  color: var(--main);
}

/*header*/
/*slider*/
.main-slider {
  position: relative;
}
.main-slider .owl-item{
  position: relative;
}
.main-slider .owl-item:before,
.main-slider .owl-item:after {
  content: "";
  width: 1px;
  position: absolute;
  background-color: var(--sec);
  z-index: 2;
  height: 0%;
  transition: height 900ms cubic-bezier(.22,.9,.34,1);
  transition-delay: .7s;
}

.main-slider .owl-item:before {
  left: 10.5%;
  top: 50%;
  transform: translateY(-50%);
}

.main-slider .owl-item:after {
  right: 12%;
  bottom: 0;
}

.main-slider .owl-item.active:before {
  height: 75%;
}

.main-slider .owl-item.active:after {
  height: 85%;
}

.main-slider .item {
  position: relative;
  overflow: hidden;
}
.main-slider .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.main-slider .item .in-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 70%;
  z-index: 3;
}
.main-slider .item .in-item h2 {
  color: var(--sec);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.396px;
  opacity: 0;
  transform: translateY(100px);
}
.main-slider .item .in-item p {
  color: var(--sec);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.154px;
  opacity: 0;
  transform: translateY(100px);
  margin-top: 1rem;
}
.main-slider .item .in-item a {
  opacity: 0;
  transform: translateY(100px);
  margin-top: 2rem;
}
.main-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 9.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.main-slider .owl-dots .owl-dot {
  cursor: pointer;
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
  border: 1px solid var(--sec) !important;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-slider .owl-dots .owl-dot span {
  background: transparent;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  display: block;
}
.main-slider .owl-dots .owl-dot.active, .main-slider .owl-dots .owl-dot:hover {
  border: 1px solid var(--main) !important;
}
.main-slider .owl-dots .owl-dot.active span, .main-slider .owl-dots .owl-dot:hover span {
  background: var(--main);
}

@media (max-width: 768px) {
  .main-slider:before, .main-slider:after {
    display: none;
  }
  .main-slider .item img {
    height: 80vh;
  }
  .main-slider .item .in-item {

    padding: 0 1rem;
  }
  .main-slider .item .in-item h2 {
    font-size: 32px;
  }
  .main-slider .item .in-item p {
    font-size: 14px;
  }
}
/*slider*/
/*about*/
.about {
  position: relative;
  padding: 80px 0;
  background-image: url("../img/about.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.about .img-about {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.about .img-about img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  display: block;
}
.about .about-reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main) 0%, var(--sec) 100%);
  transform-origin: right;
  z-index: 2;
}
.about .cont-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 3rem;
}
.about .cont-about p {
  color: #C9C9C9;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  margin: 0;
  line-height: 35px;
  margin-bottom: 1.5rem;
  will-change: transform, opacity;
}
.about .cont-about p:nth-last-of-type(1) {
  margin-bottom: 30px;
}
.about .main-header {
  will-change: transform, opacity;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .about .cont-about {
    padding-left: 0;
    margin-top: 2rem;
  }
  .about .cont-about p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  .about .img-about img {
    max-height: 300px;
  }
  .about .cont-about p {
    font-size: 16px;
    line-height: 28px;
  }
}
/*service*/
.service {
  padding: 40px 0;
  background-image: url("../img/serv.png");
  background-repeat: no-repeat;
  background-size: 101% 101%;
  background-color: #060606;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.service .col-lg-4:nth-of-type(3n + 2) {
  margin-top: 30px;
}

.serv-item {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease !important;
  height: 100%;
  position: relative;
  border-radius: 8px;
  will-change: transform;
}
.serv-item:hover {
  transform: translateY(-5px) !important;
}
.serv-item:hover .num {
  -webkit-text-stroke-color: var(--main) !important;
}
.serv-item .num {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--sec);
  color: transparent;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease !important;
  will-change: transform;
}
.serv-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.serv-item p {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin: 0;
}

/*projects-slider-section*/
.projects-slider-section {
  background: #000;
  padding: 40px 0 ;
  position: relative;
  overflow: hidden;
   will-change: transform, opacity;
}
.projects-slider-section .main-header {
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  will-change: transform, opacity;
}
.projects-slider-section .projects-carousel {
  position: relative;
}
.projects-slider-section .projects-carousel .owl-stage-outer {
  overflow: visible;
}
.projects-slider-section .projects-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.projects-slider-section .owl-item {
  transition: all 0.4s ease;
}
.projects-slider-section .owl-item:not(.center) {
  opacity: 0.5;
}
.projects-slider-section .owl-item:not(.center) .project-content {
  transform: scale(0.9);
}
.projects-slider-section .owl-item.center {
  opacity: 1;
  z-index: 10;
}
.projects-slider-section .owl-item.center .project-content {
  transform: scale(1);
}
.projects-slider-section .project-slide {
  transition: all 0.4s ease;
}
.projects-slider-section .project-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}
.projects-slider-section .project-left {
  flex: 0 0 450px;
  color: #fff;
}
.projects-slider-section .project-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--sec);
  margin-bottom: 25px;
  font-size: 25px;
  letter-spacing: 1px;
  transition: all linear 0.3s;
  will-change: transform, opacity;
}
.projects-slider-section .project-counter span {
  transition: all linear 0.3s;
  color: var(--main);
}
.projects-slider-section .project-counter svg {
  transition: all 0.3s ease;
}
.projects-slider-section .project-title {
  font-size: 70px;
  font-weight: 700;
  position: absolute;
  color: #fff;
  margin-bottom: 0;
  z-index: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  will-change: transform, opacity;
}
.projects-slider-section .project-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 115px;
  margin-bottom: 35px;
  will-change: transform, opacity;
}
.projects-slider-section .view-project {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sec);
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  will-change: transform, opacity;
}
.projects-slider-section .view-project svg {
  will-change: transform;
  transition: transform 0.4s ease;
}
.projects-slider-section .view-project:hover {
  color: var(--main);
}
.projects-slider-section .project-image {
  flex: 1;
  max-width: 100%;
  will-change: transform, opacity;
  overflow: hidden;
  border-radius: 15px;
  height:420px;
}
.projects-slider-section .project-image img {
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
  transition: transform 0.6s ease;
}
.projects-slider-section .owl-item.center .project-slide:hover .project-image img {
  transform: scale(1.05);
}
.projects-slider-section .owl-nav-custom {
  display: flex;
  gap: 15px;
  z-index: 20;
  position: absolute;
  bottom: 8%;
  left: 12%;
}
.projects-slider-section .owl-nav-custom button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 0;
  color: var(--sec);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  will-change: transform;
}
.projects-slider-section .owl-nav-custom button:hover {
  color: var(--main);
}
.projects-slider-section .owl-nav-custom button svg {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}
.projects-slider-section .owl-dots {
  display: none;
}

html[dir=rtl] .owl-nav-custom {
  left: unset;
  flex-direction: row-reverse;
  right: 12%;
}

@media (max-width: 1400px) {
  .projects-slider-section .project-left {
    flex: 0 0 380px;
  }
}
@media (max-width: 1200px) {
  .projects-slider-section .project-content {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .projects-slider-section .project-left {
    flex: 1;
    text-align: center;
  }
  .projects-slider-section .project-title {
    font-size: 44px;
  }
  .projects-slider-section .project-image {
    max-width: 100%;
  }
  .projects-slider-section .owl-nav-custom {
    padding-inline-start: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .projects-slider-section {
    padding: 40px 20px !important;
  }
  .projects-slider-section .project-title {
    font-size: 36px;
  }
}


/*number*/
.number-section {
  background: #000;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background-image: url("../img/number.png");
  background-repeat: no-repeat;
  background-size: 101% 101%;
}


.main-number {
  text-align: center;
  padding: 26px 20px;
  position: relative;
  border-radius: 10px 10px 0 0;
  background: rgba(15, 15, 15, 0.7);
  border-bottom: 2px solid #FFF;
  transition: all 0.4s ease !important;
  height: 100%;
  will-change: transform;
  backdrop-filter: blur(10px);
}
.main-number .num-display {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  will-change: transform, color;
  transition: color 0.3s ease !important;
}
.main-number .num-title {
  color: var(--sec);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.3s ease !important;
}
.main-number:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 40px rgba(8, 85, 67, 0.5);
  border-color: var(--main);
}

@media (max-width: 991px) {
  .number-section {
    padding: 40px 0;
  }
  .main-number .num-display {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .number-section {
    padding: 40px 0;
  }
  .main-number {
    margin-bottom: 20px;
  }
  .main-number .num-display {
    font-size: 48px;
  }
}
/*partner*/
.partner {
  padding: 40px 0;
}

.blog-section {
  padding: 40px 0;
}
.blog-section .row {
  margin-bottom: 30px;
}
.blog-section .row:last-child {
  margin-bottom: 0;
}

.featured-post {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-post:hover img {
  transform: scale(1.05);
}
.featured-post:hover .read-more {
  gap: 12px;
}
.featured-post:hover .read-more svg {
  transform: rotate(45deg);
}
.featured-post .featured-image {
  overflow: hidden;
  position: relative;
  height: 360px;
  border-radius: 5px;
}
.featured-post .featured-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.featured-post .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-post .featured-content {
  padding: 15px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-post .post-date {
  color: #D9D9D9;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}
.featured-post .post-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.featured-post .post-title a {
  color: var(--main);
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-post .post-excerpt {
  color: #636363;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.featured-post .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--main);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.featured-post .read-more svg {
  width: 18px;
  height: 18px;
  transition: all linear 0.3s;
  stroke: var(--main);
}

.small-posts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-post {
  padding: 0 0 20px;
  display: flex;
  gap: 8px;
  flex: 1;
  height: 115px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid #1C1C1C;
}
.small-post:hover {
  transform: translateY(-3px);
}
.small-post:hover img {
  transform: scale(1.08);
}
.small-post:hover h3 a {
  color: var(--main);
}
.small-post:nth-last-of-type(1) {
  border-bottom: 0;
}
.small-post .small-image {
  flex: 0 0 200px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.small-post .small-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.small-post .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.small-post .small-content {
  flex: 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.small-post .post-date {
  display: flex;
  gap: 6px;
  font-size: 18px;
  color: #D9D9D9;
  margin-bottom: 12px;
}
.small-post .post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.small-post .post-title a {
  color: var(--sec);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.view-more-btn {
  display: inline-block;
  padding: 11px 50px;
  background: var(--main);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.view-more-btn:hover {
  background: var(--main);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .blog-section {
    padding: 50px 0;
  }
  .featured-post {
    margin-bottom: 30px;
  }
  .featured-post .post-title {
    font-size: 24px;
  }
  .small-posts-wrapper {
    gap: 15px;
  }
  .small-post .post-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .small-post {
    flex-direction: column;
    gap: 0;
  }
  .small-post .small-image {
    flex: 0 0 auto;
  }
  .view-more-btn {
    padding: 12px 40px;
    font-size: 14px;
  }
}
/*single_about*/
.single_about .img-about img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.single_about .cont-about p {
  color: #C9C9C9;
  text-align: justify;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 35px; /* 152.174% */
}
.single_about .feature {
  padding: 30px 0;
  background-image: url("../img/feat.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #050505;
}
.single_about .feature .main-feat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single_about .feature .main-feat .img-feat {
  position: relative;
  padding-inline-start: 20px;
}
.single_about .feature .main-feat .img-feat img {
  max-width: 50px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.single_about .feature .main-feat .img-feat:before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: -16px;
  left: -8px;
  transition: all linear 0.3s;
  background-color: rgba(216, 207, 188, 0.5);
  border-radius: 50%;
}
.single_about .feature .main-feat h5 {
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.single_about .feature .main-feat p {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 0;
}
.single_about .feature .main-feat:hover .img-feat:before {
  background-color: var(--main);
}
.single_about .found {
  padding: 30px 0;
}
.single_about .found h2 {
  color: #FFF;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single_about .found .main-found {
  display: flex;
  align-items: center;
  padding-inline-end: 8%;
  gap: 15px;
}
.single_about .found .main-found img {
  max-width: 100%;
  width: 500px;
  height: 600px;
  object-fit: cover;
}
.single_about .found .main-found .end-found h5 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  flex-direction: column;
}
.single_about .found .main-found .end-found h5 span {
  color: #747272;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.single_about .found .main-found .end-found p {
  color: #989898;
  text-align: justify;
  margin-bottom: 0;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 159.091% */
}
.single_about .team {
  padding: 30px 0;
  background-image: url("../img/feat.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #050505;
}
.single_about .team .owl-item:nth-of-type(2n+1) {
  padding-top: 50px;
}
.single_about .team .team-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all linear 0.3s;
}
.single_about .team .team-item h5 {
  color: #FFF;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
  padding-inline-start: 5px;
  line-height: normal;
  transition: all linear 0.3s;
}
.single_about .team .team-item p {
  color: #747272;
  font-size: 18px;
  padding-inline-start: 5px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 0;
  line-height: normal;
}
.single_about .team .team-item:hover h5{
  color:var(--main);
}
.single_about .team .team-item:hover img{
  filter: grayscale(0%);
}
.single_about .timeline {
  padding: 30px 0;
}
.single_about .timeline .timeline-item {
  overflow: hidden;
}
.single_about .timeline .timeline-item video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.single_about .timeline .timeline-item .in-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(28, 28, 28, 0.49);
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: end;
  justify-content: end;
  transition: all linear 0.3s;
}
.single_about .timeline .timeline-item .in-item span {
  writing-mode: sideways-lr;
  color: #D9D9D9;
  text-align: center;
  font-size: 120px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  margin-bottom: 10px;
  transition: all linear 0.3s;
  transform: translateX(100px);
}
.single_about .timeline .timeline-item .in-item p {
  color: #FFFEFE;
  writing-mode: sideways-lr;
  text-align: center;
  font-family: Manrope;
  font-size: 53px;
  font-style: normal;
  font-weight: 800;
  transition: all linear 0.3s;
  line-height: normal;
  transform: translateX(70px);
}
.single_about .timeline .timeline-item:hover .in-item {
  background: rgba(28, 28, 28, 0);
}
.single_about .timeline .timeline-item:hover .in-item span, .single_about .timeline .timeline-item:hover .in-item p {
  transform: translateX(0px);
}

.service-single {
  padding: 40px 0;
  min-height: 100vh;
}
.service-single .file-name {
  display: none;
}
.service-single .serv-img {
  width: 100%;
  height: 550px;
  margin-bottom: 30px;
}
.service-single .serv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-single .serv-img-sec {
  width: 100%;
  height: 350px;
  margin-top: 30px;
}
.service-single .serv-img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding-right: 40px;
}

.service-header {
  margin-bottom: 30px;
}
.service-header .service-title {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.service-header .service-description {
  color: #838383;
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 176% */
}
.service-header .service-description p {
  margin-bottom: 0px;
}

.why-choose-section {
  margin-bottom: 30px;
}
.why-choose-section .section-title {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.why-choose-section .why-choose-content {
  color: #838383;
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 176% */
}
.why-choose-section .why-choose-content p {
  margin-bottom: 0px;
}

.features-grid {
  margin-top: 0px;
}
.features-grid .row {
  gap: 30px 0;
}

.feature-item {
  transition: all 0.3s ease;
  height: 100%;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item .feature-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 50%;
  background-color: #0A0A0A;
  box-shadow: 0 1px 26px #045240;
}
.feature-item .feature-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.feature-item .feature-title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}
.feature-item .feature-description {
  color: #838383;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px; /* 150% */
  margin: 0;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #1A1A1A;
  padding: 30px 25px;
  border-radius: 0;
  margin-bottom: 30px;
}
.sidebar-widget .widget-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.services-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.services-list li a {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: rgba(216, 207, 188, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 700;
  justify-content: space-between;
}
.services-list li a svg {
  transition: all 0.3s ease;
}
.services-list li a:hover {
  color: var(--main);
  padding-left: 25px;
}
.services-list li a:hover svg {
  transform: translateX(5px);
}

.form-widget .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: none;
}
.form-widget .contact-form {
  /* -------------------
     Arabic (RTL) rules
     ------------------- */
}
.form-widget .contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-widget .contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.form-widget .contact-form input[type=text],
.form-widget .contact-form input[type=email],
.form-widget .contact-form input[type=tel],
.form-widget .contact-form textarea,
.form-widget .contact-form select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(216, 207, 188, 0.5);
  border-radius: 0px;
  padding: 14px 16px;
  color: rgba(216, 207, 188, 0.5);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-widget .contact-form input[type=text]::placeholder,
.form-widget .contact-form input[type=email]::placeholder,
.form-widget .contact-form input[type=tel]::placeholder,
.form-widget .contact-form textarea::placeholder,
.form-widget .contact-form select::placeholder {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}
.form-widget .contact-form input[type=text]:focus, .form-widget .contact-form input[type=text]:hover,
.form-widget .contact-form input[type=email]:focus,
.form-widget .contact-form input[type=email]:hover,
.form-widget .contact-form input[type=tel]:focus,
.form-widget .contact-form input[type=tel]:hover,
.form-widget .contact-form textarea:focus,
.form-widget .contact-form textarea:hover,
.form-widget .contact-form select:focus,
.form-widget .contact-form select:hover {
  outline: none;
  border-color: var(--main);
  color: var(--main);
}
.form-widget .contact-form input[type=text]:focus::placeholder, .form-widget .contact-form input[type=text]:hover::placeholder,
.form-widget .contact-form input[type=email]:focus::placeholder,
.form-widget .contact-form input[type=email]:hover::placeholder,
.form-widget .contact-form input[type=tel]:focus::placeholder,
.form-widget .contact-form input[type=tel]:hover::placeholder,
.form-widget .contact-form textarea:focus::placeholder,
.form-widget .contact-form textarea:hover::placeholder,
.form-widget .contact-form select:focus::placeholder,
.form-widget .contact-form select:hover::placeholder {
  color: var(--main);
  transition: all 0.3s ease;
}
.form-widget .contact-form textarea {
  height: 120px;
  resize: vertical;
}
.form-widget .contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61387 14.7537L1.50564 11.3773L0 12.6147L5.61387 17.2286L11.2277 12.6147L9.72211 11.3773L5.61387 14.7537Z' fill='%23ffffff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61387 2.47477L1.50564 5.85121L0 4.61377L5.61387 -0.000109499L11.2277 4.61377L9.72211 5.85121L5.61387 2.47477Z' fill='%2379746B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px auto;
  padding-right: 40px;
  padding-left: 15px;
  transition: all 0.3s ease;
}
.form-widget .contact-form select option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}
.form-widget .contact-form select option:first-child {
  color: rgba(255, 255, 255, 0.4);
}
.form-widget .contact-form html[dir=rtl] select {
  background-position: left 15px center;
  padding-right: 15px;
  padding-left: 40px;
}
.form-widget .contact-form html[dir=ltr] select,
.form-widget .contact-form .ltr select,
.form-widget .contact-form html[lang=en] select {
  background-position: right 15px center;
  padding-right: 40px;
  padding-left: 15px;
}
.form-widget .contact-form .file-upload-wrapper {
  position: relative;
  /* ه-over (على الـ wrapper) */
}
.form-widget .contact-form .file-upload-wrapper .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  /* الشريط الحقيقي للـ file (نخليه شفاف لكن يغطي العنصر) */
  /* اللايفيلابل (النص الظاهر) */
  /* الأيقونة على اليمين أو الشمال حسب الاتجاه */
}
.form-widget .contact-form .file-upload-wrapper .wpcf7-form-control-wrap input[type=file] {
  opacity: 0;
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  color: rgba(216, 207, 188, 0.5);
  transition: all 0.3s ease;
}
.form-widget .contact-form .file-upload-wrapper .wpcf7-form-control-wrap::before {
  content: "Upload your File"; /* default EN */
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(216, 207, 188, 0.5);
  border-radius: 0px;
  padding: 14px 0;
  padding-inline-start: 16px; /* بدل padding-left */
  padding-inline-end: 40px; /* بدل padding-right */
  color: rgba(216, 207, 188, 0.5);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.form-widget .contact-form .file-upload-wrapper .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inline-size: 24px;
  block-size: 24px;
  pointer-events: none;
  z-index: 1;
  inset-inline-end: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 15.2044V18.8925C4 19.4514 4.21071 19.9875 4.58579 20.3827C4.96086 20.778 5.46957 21 6 21H18C18.5304 21 19.0391 20.778 19.4142 20.3827C19.7893 19.9875 20 19.4514 20 18.8925V15.2044M12.0007 14.9425L12.0007 3M12.0007 3L7.42931 7.56318M12.0007 3L16.5722 7.56318' stroke='%23D8CFBC' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.form-widget .contact-form .file-upload-wrapper:hover .wpcf7-form-control-wrap input[type=file] {
  color: var(--main);
}
.form-widget .contact-form .file-upload-wrapper:hover .wpcf7-form-control-wrap::before {
  color: var(--main);
  border-color: var(--main);
}
.form-widget .contact-form input[type=submit],
.form-widget .contact-form button[type=submit] {
  width: 100%;
  background: var(--sec);
  color: #000;
  border: none;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0px;
  margin-top: 10px;
}
.form-widget .contact-form input[type=submit]:hover,
.form-widget .contact-form button[type=submit]:hover {
  background: var(--main);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 197, 169, 0.3);
}
.form-widget .contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
  display: block;
}
.form-widget .contact-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  border: none;
}
.form-widget .contact-form .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.form-widget .contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.form-widget .contact-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.form-widget .contact-form .wpcf7-spinner {
  display: none;
}

.wpcf7 {
  direction: inherit;
}

html[dir=rtl] .services-list li a svg {
  transform: scalex(-1);
}
html[dir=rtl] .form-widget .contact-form .file-upload-wrapper .wpcf7-form-control-wrap::before {
  content: "رفع ملف";
}

html[dir=rtl] .file-upload-wrapper .wpcf7-form-control-wrap::before {
  content: "ارفع ملفك";
  justify-content: flex-end;
  text-align: right;
}
html[dir=rtl] .file-upload-wrapper .wpcf7-form-control-wrap::after {
  inset-inline-end: auto;
  inset-inline-start: 16px;
}

@media (max-width: 991px) {
  .service-single {
    padding: 50px 0 60px;
  }
  .service-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .service-header .service-title {
    font-size: 32px;
  }
  .service-sidebar {
    position: static;
  }
}
@media (max-width: 767px) {
  .service-header .service-title {
    font-size: 28px;
  }
  .why-choose-section .section-title {
    font-size: 24px;
  }
  .feature-item {
    padding: 25px 20px;
  }
  .sidebar-widget {
    padding: 25px 20px;
  }
}
/*archive-project*/
.archive-project {
  padding: 30px 0;
}
.archive-project .be-con {
  color: #FFF;
  text-align: justify;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}
.archive-project .proj-item-archive img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
.archive-project .proj-item-archive .l-prooj {
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 20px 30px;
}
.archive-project .proj-item-archive .l-prooj h3 {
  color: #FFF;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive-project .proj-item-archive .l-prooj p {
  color: #636363;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.archive-project .proj-item-archive .l-prooj a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sec);
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease !important;
}
.archive-project .proj-item-archive .l-prooj a:hover {
  color: var(--main);
}

/*single-project*/
.single-projects .wrap {
  overflow: visible;
}

.project-single {
  padding: 50px 0;
}
.project-single .borr {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 20px;
}
.project-single .col-lg-8 {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 20px;
}
.project-single hr {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.project-single h3, .project-single .description-proj, .project-single .sec-img-proj, .project-single .bot-proj {
  padding-inline-start: 15px;
}

.top-sin {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.top-sin h2 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.top-sin .d-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex: 1;
}
.top-sin .d-flex svg {
  flex-shrink: 0;
}
.top-sin .d-flex p {
  color: var(--sec);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.top-sin .d-flex .partnership {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
}
.top-sin .d-flex .partnership .img-partnership {
  width: 120px;
  height: 80px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.top-sin .d-flex .partnership .img-partnership img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.top-sin .d-flex .partnership .img-partnership:nth-last-of-type(1) {
  border-inline-end: 0;
}

.proj-img {
  margin-bottom: 50px;
}
.proj-img img {
  width: 100%;
  height: 450px;
  border-radius: 0px;
  display: block;
  object-fit: cover;
}

.side-proj {
  position: sticky;
  top: 25px;
}
.side-proj .side-item {
  margin-bottom: 20px;
}
.side-proj .side-item:last-child {
  margin-bottom: 0;
}
.side-proj .side-item p {
  color: var(--sec);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.side-proj .side-item span {
  color: #FFF;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-project-single h3 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main-project-single .description-proj p {
  margin-bottom: 0px;
  color: #838383;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 20px;
}
.main-project-single .description-proj p:last-child {
  margin-bottom: 0;
}
.main-project-single .sec-img-proj {
  margin-bottom: 20px;
}
.main-project-single .sec-img-proj img {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}
.main-project-single .main-number {
  border: 0 !important;
  padding: 15px 10px;
}
.main-project-single .main-number span {
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main-project-single .main-number h4 {
  color: var(--sec);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bot-proj {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.bot-proj:nth-of-type(2n + 1) img {
  order: 2;
}
.bot-proj:nth-of-type(2n + 1) p {
  order: 1;
}
.bot-proj img {
  width: 100%;
  display: block;
  height: 240px;
  object-fit: cover;
}
.bot-proj p {
  color: #838383;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}
.bot-proj p:last-child {
  margin-bottom: 0;
}

[dir=rtl] .top-sin .d-flex .partnership,
.rtl .top-sin .d-flex .partnership {
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 991px) {
  .project-single {
    padding: 40px 0;
  }
  .top-sin h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .top-sin .d-flex {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .top-sin .d-flex svg {
    width: 36px;
    height: 36px;
  }
  .top-sin .d-flex p {
    font-size: 13px;
  }
  .top-sin .d-flex .partnership {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .top-sin .d-flex .partnership img {
    height: 40px;
  }
  .side-proj {
    padding: 25px 20px;
  }
  .side-proj .side-item {
    margin-bottom: 25px;
  }
  .side-proj .side-item p {
    font-size: 12px;
  }
  .side-proj .side-item span {
    font-size: 16px;
  }
  .main-project-single h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .main-project-single .description-proj {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .top-sin h2 {
    font-size: 24px;
  }
  .e-row .col-lg-4:not(:last-child) {
    margin-bottom: 15px;
  }
}
/*single blog*/
.blog-single {
  background: #000;
  padding: 80px 0 100px;
  min-height: 100vh;
  color: #fff;
}
.blog-single .container {
  max-width: 1200px;
}

.blog-article {
  margin-bottom: 40px;
}
.blog-article .top-cont p {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 146.667% */
}

.blog-featured-image {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 0px;
}
.blog-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-featured-image:hover img {
  transform: scale(1.03);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.blog-meta span {
  display: flex;
  align-items: center;
  color: #D9D9D9;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 15px;
}
.blog-meta .blog-category a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-meta .blog-category a:hover {
  color: #fff;
}

.blog-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.blog-content p {
  color: #838383;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 176% */
  margin-bottom: 0px;
}
.blog-content p:last-child {
  margin-bottom: 0;
}
.blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6 {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
.blog-content h2 {
  font-size: 32px;
}
.blog-content h3 {
  font-size: 26px;
}
.blog-content h4 {
  font-size: 22px;
}
.blog-content a {
  color: var(--main);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.blog-content a:hover {
  color: var(--main);
}
.blog-content ul, .blog-content ol {
  margin-bottom: 25px;
  padding-left: 25px;
}
.blog-content ul li, .blog-content ol li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}
.blog-content blockquote {
  border-left: 4px solid var(--main);
  padding-left: 25px;
  margin: 30px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
.blog-content code {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}
.blog-content pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 25px 0;
}
.blog-content pre code {
  background: transparent;
  padding: 0;
}

.blog-tags {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-tags .tag-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-tags a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  margin: 5px 5px 5px 0;
  transition: all 0.3s ease;
}
.blog-tags a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.similar-blogs {
  padding-top: 20px;
}
.similar-blogs .similar-title {
  color: #FFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.similar-blogs .row {
  gap: 30px 0;
}

.similar-blog-item {
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.similar-blog-item:hover {
  transform: translateY(-5px);
}
.similar-blog-item:hover .similar-image img {
  transform: scale(1.08);
}
.similar-blog-item .similar-image {
  display: block;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.similar-blog-item .similar-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.similar-blog-item .similar-content {
  padding: 25px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.similar-blog-item .similar-date {
  color: #D9D9D9;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.similar-blog-item .similar-post-title {
  margin-bottom: 12px;
}
.similar-blog-item .similar-post-title a {
  color: var(--main);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.similar-blog-item .similar-post-title a:hover {
  color: var(--main);
}
.similar-blog-item .similar-excerpt {
  color: #636363;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

[dir=rtl] .blog-meta svg,
.rtl .blog-meta svg {
  transform: scaleX(-1);
}
[dir=rtl] .blog-content blockquote,
.rtl .blog-content blockquote {
  border-left: none;
  border-right: 4px solid #4ade80;
  padding-left: 0;
  padding-right: 25px;
}
[dir=rtl] .blog-content ul, [dir=rtl] .blog-content ol,
.rtl .blog-content ul,
.rtl .blog-content ol {
  padding-left: 0;
  padding-right: 25px;
}
[dir=rtl] .blog-tags .tag-label,
.rtl .blog-tags .tag-label {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .blog-tags a,
.rtl .blog-tags a {
  margin: 5px 0 5px 5px;
}

@media (max-width: 991px) {
  .blog-single {
    padding: 60px 0 80px;
  }
  .blog-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .blog-content {
    font-size: 15px;
  }
  .blog-content h2 {
    font-size: 28px;
  }
  .blog-content h3 {
    font-size: 24px;
  }
  .similar-blogs {
    padding-top: 50px;
  }
  .similar-blogs .similar-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-single {
    padding: 40px 0 60px;
  }
  .blog-featured-image {
    margin-bottom: 30px;
  }
  .blog-meta {
    gap: 15px;
    margin-bottom: 20px;
  }
  .blog-meta span {
    font-size: 12px;
  }
  .blog-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .blog-content {
    font-size: 14px;
  }
  .blog-content h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .blog-content h3 {
    font-size: 20px;
  }
  .blog-content img {
    margin: 20px 0;
  }
  .blog-tags {
    margin-top: 30px;
    padding-top: 25px;
  }
  .similar-blogs {
    padding-top: 40px;
  }
  .similar-blogs .similar-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .similar-blog-item {
    margin-bottom: 20px;
  }
  .similar-blog-item .similar-content {
    padding: 20px;
  }
  .similar-blog-item .similar-post-title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .blog-title {
    font-size: 24px;
  }
  .similar-blogs .similar-title {
    font-size: 24px;
  }
}
.floating-form {
  margin: 0 auto;
}
.floating-form .main-hover{width:100%;}
.floating-form p {
  margin-bottom: 0;
}
.floating-form br {
  display: none;
}
.floating-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.floating-form .form-row {
  position: relative;
}
.floating-form .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.floating-form .form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--sec);
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 5px;
  margin-bottom: 0;
  z-index: 2;
}
.floating-form .form-group.has-value label, .floating-form .form-group.is-focused label {
  top: 0;
  background: #262C30;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--main);
}
.floating-form .form-group.in-textarea label {
  top: 10px;
  transform: translateY(0);
}
.floating-form .form-group.has-value.in-textarea label, .floating-form .form-group.is-focused.in-textarea label {
  top: 0;
  transform: translateY(-50%);
}
.floating-form .form-group.has-value select, .floating-form .form-group.is-focused select {
  font-size: 12px;
  background: #000;
  color: #FFF;
}
.floating-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.floating-form input[type=text],
.floating-form input[type=email],
.floating-form input[type=tel],
.floating-form textarea,
.floating-form select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--sec);
  border-radius: 0px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
  height: 50px;
}
.floating-form input[type=text]:focus,
.floating-form input[type=email]:focus,
.floating-form input[type=tel]:focus,
.floating-form textarea:focus,
.floating-form select:focus {
  outline: none;
  border-color: var(--main);
  box-shadow: 0 0 0 1px var(--main);
}
.floating-form textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 16px;
}
.floating-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61387 14.7537L1.50564 11.3773L0 12.6147L5.61387 17.2286L11.2277 12.6147L9.72211 11.3773L5.61387 14.7537Z' fill='%23ffffff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61387 2.47477L1.50564 5.85121L0 4.61377L5.61387 -0.000109499L11.2277 4.61377L9.72211 5.85121L5.61387 2.47477Z' fill='%2379746B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px auto;
  padding-right: 40px;
  font-size: 0px;
}
.floating-form select option {
  background: #1a1a1a;
  color: #fff;
}
.floating-form .file-group {
  margin-top: 10px;
}
.floating-form .file-group label {
  top: 0;
  transform: translateY(-100%);
  left: 0;
  padding: 0;
  font-size: 12px;
  color: var(--main);
}
.floating-form .file-group.has-value label, .floating-form .file-group.is-focused label {
  top: 0;
  background: transparent;
  transform: translateY(-100%);
  font-size: 12px;
  color: var(--main);
}
.floating-form .file-group .wpcf7-form-control-wrap {
  position: relative;
  display: flex;
  gap: 10px;
}
.floating-form .file-group .wpcf7-form-control-wrap input[type=file] {
  opacity: 0;
  position: absolute;
  width: 114px;
  height: 30px;
  cursor: pointer;
  z-index: 3;
  top: 0;
}
.floating-form .file-group .wpcf7-form-control-wrap .file-name {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--sec);
}
.floating-form .file-group .wpcf7-form-control-wrap::before {
  content: "Choose File";
  background: var(--main);
  border-radius: 0;
  display: flex;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  width: 114px;
  height: 30px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
}
.floating-form .file-group .wpcf7-form-control-wrap::after {
  content: "No File Choosen";
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--sec);
}
.floating-form .file-group .wpcf7-form-control-wrap:hover::before {
  border-color: var(--main);
}
.floating-form .file-group .wpcf7-form-control-wrap.file-selected::before {
  border-color: var(--main);
}
.floating-form .file-group .wpcf7-form-control-wrap.file-selected::after {
  display: none;
}
.floating-form .submit-btn {
  width: 100%;
  background: var(--main);
  color: #000;
  border: none;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.floating-form .submit-btn:hover {
  background: #0da877;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(15, 187, 138, 0.3);
}
.floating-form .submit-btn:active {
  transform: translateY(0);
}
.floating-form .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 5px;
  display: block;
  position: absolute;
}
.floating-form span.wpcf7-not-valid {
  border-color: #ff6b6b !important;
}
.floating-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  border: none;
}
.floating-form .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.floating-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(15, 187, 138, 0.15);
  color: var(--main);
}
.floating-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.floating-form .wpcf7-spinner {
  display: none;
}

html[dir=rtl] .floating-form .form-group label,
.rtl .floating-form .form-group label {
  left: auto;
  right: 16px;
}
html[dir=rtl] .floating-form select,
.rtl .floating-form select {
  background-position: left 15px center;
  padding-right: 16px;
  padding-left: 40px;
}

@media (max-width: 767px) {
  .floating-form input[type=text],
  .floating-form input[type=email],
  .floating-form input[type=tel],
  .floating-form textarea {
    font-size: 16px;
  }
  .floating-form .form-group label {
    font-size: 13px;
  }
  .floating-form .form-group.has-value label, .floating-form .form-group.is-focused label {
    font-size: 11px;
  }
}
/*contact-us*/
.contact-us {
  position: relative;
  padding: 40px 0;
  background-image: url("../img/contact-us.jpg");
  background-size: cover;
  background-position: center;
}

.contact-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.90); /* الأوفرلاي 90% → الصورة ظاهرة 10% بس */
  z-index: 0;
}

/* ✅ عشان المحتوى يبقى فوق الأوفرلاي */
.contact-us > * {
  position: relative;
  z-index: 1;
}
.contact-us .l-contact {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.23));
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 1px 90%;
}
.contact-us .l-contact h2 {
  color: #FFF;
  text-align: justify;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 30px;
}
.contact-us .l-contact .form-control {
  background-color: transparent;
  border-radius: 0;
  height: 50px;
  border: 1px solid #777;
  transition: all linear 0.3s;
  color: #777;
}
.contact-us .l-contact .form-control::placeholder {
  color: #777;
  transition: all linear 0.3s;
}
.contact-us .l-contact .form-control:hover {
  border-color: var(--sec);
  color: var(--sec);
}
.contact-us .l-contact .form-control:hover::placeholder {
  color: var(--sec);
}
.contact-us .l-contact textarea.form-control {
  height: 135px;
}
.contact-us .l-contact .wpcf7-response-output {
  color: #FFF;
}
.contact-us .l-contact .wpcf7-spinner {
  position: absolute;
}
.contact-us .l-contact .btn-primary {
  width: 180px;
  height: 50px;
  border-radius: 0;
  background: #95774C;
  border: 0;
}
.contact-us .main-cont {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-us .main-cont .new-cont {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-us .main-cont .new-cont .fir {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sec);
  transition: all linear 0.3s;
}
.contact-us .main-cont .new-cont .fir svg {
  transition: all linear 0.3s;
  color: var(--main);
}
.contact-us .main-cont .new-cont .sec {
  flex: 1;
}
.contact-us .main-cont .new-cont .sec p, .contact-us .main-cont .new-cont .sec a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.contact-us .main-cont .new-cont:hover .fir {
  background-color: var(--main);
}
.contact-us .main-cont .new-cont:hover .fir svg {
  color: #FFF;
}
.contact-us .main-cont .new-cont:hover .sec p, .contact-us .main-cont .new-cont:hover a {
  color: #FFF;
}
.contact-us .r-contact {
  height: 100%;
}
.contact-us .r-contact iframe {
  width: 100%;
  height: 340px;
  display: block;
}

html[dir=rtl] .contact-us .l-contact {
  background-position: center left;
}

/*footer*/
footer {
  padding: 70px 0px 20px;
  position: relative;
  background-image: url("../img/footer.png");
  background-repeat: no-repeat;
  background-position: center center;
}
footer:before {
  /*content: '';*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7);
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-logo {
  margin-bottom: 10px;
  text-align: center;
}
footer .footer-logo img {
  max-height: 110px;
  max-width: 320px;
}
footer .who-footer p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
}
footer .who-footer p p {
  margin-bottom: 0;
}
footer .who-footer .in-who-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .who-footer .in-who-foot img {
  max-width: 65px;
  max-height: 65px;
}
footer .in-new-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
footer .social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFF;
  border-radius: 10px;
  transition: all linear 0.3s !important;
}
footer .social a:hover {
  color: var(--main);
}
footer .main-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
footer .new-cont {
  text-align: start;
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .new-cont i {
  font-size: 22px;
  color: var(--sec);
}
footer .new-cont h5 {
  font-size: 16px;
  color: var(--sec);
  text-align: start;
  margin-bottom: 10px;
}
footer .new-cont a, footer .new-cont p {
  font-size: 16px;
  color: #FFF;
  text-align: start;
  display: block;
  margin-bottom: 0px;
  transition: all linear 0.3s !important;
}
footer .new-cont a:hover, footer .new-cont p:hover{
  color:var(--main);
}
footer .new-cont .d-flex {
  align-items: center;
  gap: 5px;
}
footer .new-cont .r-phone {
  direction: ltr;
  display: inline-flex;
}
footer .new-cont .r-phone:before {
  content: "-";
  margin: 0 5px;
}
footer .new-cont .r-phone:nth-last-of-type(1):before {
  display: none;
}
footer .new-cont .r-phone:nth-last-of-type(1):after {
  display: none;
}
footer .bord {
  border-right: 1px solid #FFF;
  border-left: 1px solid #FFF;
}
footer h2 {
  font-size: 24px;
  color: var(--sec);
  margin-bottom: 22px;
}
footer .mid-foot ul {
  width: 100%;
  margin: 0;
  list-style-type: none;
  column-count: 2;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  gap: 15px;
}
footer .mid-foot ul li {
  list-style: none;
  text-align: start;
  display: block;
  margin-bottom: 20px;
}
footer .mid-foot ul li a {
  color: #FFF;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:before {
  content: ".";
  font-weight: bold;
  color: #FFF;
  font-size: 21px;
  vertical-align: text-top;
  line-height: 10px;
  margin: 0 5px;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:hover {
  color: var(--main);
}
footer .mid-foot ul li a:hover:before {
  color: var(--main);
}
footer .end-foot {
  position: relative;
  z-index: 1;
}
footer .end-foot .in-end {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  border-top: 1px solid #FFF;
}
footer .end-foot .in-end a {
  font-size: 16px;
  color: #FFF;
  transition: all linear 0.3s;
}
footer .end-foot .in-end a:hover {
  color: var(--sec);
}
footer .end-foot .in-end p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
}
footer .end-foot .in-end p a {
  color: var(--main);
  transition: all linear 0.3s;
}
footer .end-foot .in-end p a:hover {
  color: var(--sec);
}
footer .end-foot .in-end a.links {
  color: #FFF;
  text-transform: uppercase;
}
footer .end-foot .in-end a.links:nth-of-type(1) {
  margin-inline-end: 15px;
}
footer .end-foot .in-end a.links:hover {
  color: var(--main);
}

/*footer*/
/*breadcrumb*/
.in-head {
  position: relative;
  background-image: url("../img/header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.breadcrumb-area {
  padding: 20px 0;
}
.breadcrumb-area .bread-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.breadcrumb-area .bread-row h4 {
  color: #FFF;
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
}
.breadcrumb-area .bread-row .breadcrumb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 28px;
  gap: 10px;
}
.breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-family: Manrope;
  margin-bottom: 0;
  line-height: 100px;
}

/*breadcrumb*/
/*single*/
.single-pages .main-header, .single_service .main-header {
  font-size: 48px;
  text-align: center;
}

.single-pages .bootom-side p {
  color: #989898;
  text-align: justify;
}
.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}

.single-pages .bootom-side.apply p {
  color: #000;
}

.single-pages .top-side {
  padding: 20px 0;
  text-align: center;
}

.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px;
}

.single_service, .single-pages {
  padding: 40px 0;
}

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center;
}

.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px;
}

.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear 0.4s;
}

.single_service .right_side_whous a:hover {
  transition: linear 0.4s;
  background: var(--sec);
}

.part-item {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s;
  grid-column: span 1;
  grid-row: span 1;
}
.part-item img {
  width: auto !important;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.part-item:hover {
  transition: all linear 0.3s;
}
.single_service .part-item{
  border: 1px solid rgba(216, 207, 188, 0.5);
  border-radius: 20px;
}
/*single*/
html[dir=rtl] .single_about .feature .main-feat .img-feat:before {
  left: unset;
  right: 8px;
}
html[dir=rtl] .single_about .timeline .timeline-item .in-item span {
  transform: translateX(160px);
  font-size: 90px;
}
html[dir=rtl] .single_about .timeline .timeline-item .in-item p {
  transform: translateX(160px);
}
html[dir=rtl] .single_about .timeline .timeline-item:hover .in-item span, html[dir=rtl] .single_about .timeline .timeline-item:hover .in-item p {
  transform: translateX(120px) !important;
}
html[dir=rtl] .farms .l-farms .nav-tabs .nav-item .nav-link i, html[dir=rtl] .featured-post .read-more svg {
  transform: scalex(-1);
}
html[dir=rtl] .featured-post:hover .read-more svg {
  transform: rotate(45deg) scale(-1);
}
html[dir=rtl] .branche .nav-tabs a:after {
  right: 0;
}
html[dir=rtl] .dropdown-toggle::after {
  display: none !important;
}
html[dir=rtl] .dropdown-toggle::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
html[dir=rtl] .fixed-social {
  right: 40px;
}
html[dir=rtl] .wpcf7 input[type=url], html[dir=rtl] .wpcf7 input[type=email], html[dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}

html[lang=en-US] footer .new-cont .r-phone:before {
  display: none;
}
html[lang=en-US] footer .new-cont .r-phone:after {
  content: "-";
  margin: 0 5px;
}
html[lang=en-US] .branche .nav-tabs a:after {
  left: 0;
}
html[lang=en-US] .fixed-social {
  right: 40px;
}
html[lang=en-US] .form-control {
  text-align: left;
}
html[lang=en-US] .online-card .in-item {
  padding: 10px 15px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-list > .link > a {
    padding: 13px 5px;
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .single_service, .single-pages {
    padding: 40px 0 !important;
  }
  .main-hover{font-size:16px;}
  .main-slider .item .in-item h2 {
    line-height: 36px;
    font-size: 22px;
  }
  .main-found {
    padding: 0 5%;
    gap: 15px;
    flex-direction: column;
  }
  .top-sin {
    flex-direction: column;
  }
  .top-sin .d-flex .partnership .img-partnership {
    border-inline-end: 0;
  }
  .bot-proj {
    grid-template-columns: repeat(1, 1fr);
  }
  .project-single h3, .project-single .description-proj, .project-single .sec-img-proj, .project-single .bot-proj {
    padding: 0 15px;
  }
  .contact-us .l-contact {
    background-image: unset;
  }
  .main-slider .owl-dots {
  }
  header {
    position: relative;
  }
  .main-slider .item .in-item {
    width: 80%;
  }
  header .logo img {
    max-width: 140px;
  }
  .about .in-about h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .about .in-about p {
    font-size: 16px;
  }
  .about .in-about p:nth-last-of-type(1) {
    margin-bottom: 10px;
  }
  .farms .r-farms .farms-cont .bot-farm {
    padding: 20px 15px;
  }
  .cuts {
    height: max-content;
  }
  .features-item img, .modal-dialog .modal-content img {
    margin-bottom: 15px;
  }
  .reservations .main-rev {
    height: 450px;
  }
  .reservations .in-item h2 {
    font-size: 32px;
  }
  .contact-us .r-contact iframe {
    height: 350px;
  }
  footer .mid-foot ul, footer .main-cont {
    flex-direction: column;
    align-items: self-start;
  }
  .reservations .in-item div {
    flex-direction: column;
  }
  .contact-us .l-contact {
    padding: 40px 20px;
  }
  .main-hover {
    width: 150px;
    height: 40px;
  }
  .projects-slider-section .owl-nav-custom {
    display: none;
  }
  footer .bord {
    border: 0;
  }
  .branche .main-branche {
    flex-direction: column;
  }
  .branche .main-branche p, .branche .main-branche a {
    font-size: 16px;
  }
  .breadcrumb-area .bread-row h4 {
    font-size: 38px;
  }
  .breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
    font-size: 18px;
  }
  .fixed-social i, .fixed-social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  html[dir=rtl] .fixed-social {
    right: 20px;
  }
  html[lang=en-US] .fixed-social {
    right: 20px;
  }
}

/* Add to your CSS file */
.project-single {
  overflow: hidden;
}

.proj-img,
.sec-img-proj {
  overflow: hidden;
  border-radius: 12px;
}

.proj-img img,
.sec-img-proj img {
  will-change: transform;
}

.side-item {
  transition: background-color 0.3s ease;
  padding: 15px;
  border-radius: 8px;
}

.bot-proj img {
  border-radius: 10px;
  overflow: hidden;
}

.top-sin h2 span {
  will-change: transform, opacity;
}
.container-fluid{
  padding: 0 5%;
}
/* Add to your CSS file */
@media (max-width: 1023px) {
  .main-slider .in-item h2,
  .main-slider .in-item p,
  .main-slider .in-item a {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/*# sourceMappingURL=main.css.map */
