/* Cleaned CSS */


@font-face{
  font-family:'Montserrat Arabic';
  src:url('../fonts/Montserrat-Arabic-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Montserrat Arabic';
  src:url('../fonts/Montserrat-Arabic-Medium.woff2') format('woff2');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Montserrat Arabic';
  src:url('../fonts/Montserrat-Arabic-SemiBold.woff2') format('woff2');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

html,
body,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
div{
  font-family:'Montserrat Arabic', Arial, sans-serif;
}

body{
  font-weight:400;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-weight:600;
}

a,
button,
strong,
b{
  font-weight:500;
}

p,
span,
li{
  font-weight:400;
}




/* fixed contact icons start */

:root{
  --fx-dark:#141515;
  --fx-dark-2:#292928;
  --fx-gray:#40403f;
  --fx-muted:#837f7b;
  --fx-gold:#c18a68;
  --fx-white:#ffffff;
  --fx-whatsapp:#25d366;
  --fx-whatsapp-dark:#128c4a;
}

.fixed-icons{
  position:fixed;
  left:22px;
  bottom:24px;
  right:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:850;
}

.fixed-icons .icon{
  position:relative;
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--fx-white);
  background:var(--fx-dark-2);
  box-shadow:
    0 10px 24px rgba(20,21,21,.22),
    inset 0 0 0 1px rgba(255,255,255,.12);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  opacity:0;
  transform:translateY(18px);
  animation:fxIconIn .6s ease forwards;
  isolation:isolate;
}

.fixed-icons .icon:nth-child(1){animation-delay:.08s;}
.fixed-icons .icon:nth-child(2){animation-delay:.16s;}
.fixed-icons .icon:nth-child(3){animation-delay:.24s;}
.fixed-icons .icon:nth-child(4){animation-delay:.32s;}

.fixed-icons .icon::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  background:currentColor;
  opacity:.12;
  transform:scale(.85);
  z-index:-1;
  animation:fxSoftPulse 2.2s ease-in-out infinite;
}

.fixed-icons .icon::after{
  content:attr(data-label);
  position:absolute;
  left:68px;
  top:50%;
  transform:translateY(-50%) translateX(-6px);
  background:var(--fx-dark);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  box-shadow:0 8px 18px rgba(20,21,21,.18);
  transition:.25s ease;
}

.fixed-icons .icon:hover{
  transform:translateY(-4px) scale(1.06);
  box-shadow:
    0 16px 32px rgba(20,21,21,.28),
    inset 0 0 0 1px rgba(255,255,255,.18);
}

.fixed-icons .icon:hover::after{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0);
}

.fixed-icons .icon svg{
  width:25px;
  height:px;
  display:block;
  fill:currentColor;
  stroke:currentColor;
  transition:transform .25s ease;
}

.fixed-icons .icon:hover svg{
  transform:scale(1.08);
}

.fixed-icons .phone-icon{
  color:#fff;
  background:linear-gradient(145deg,var(--fx-dark-2),var(--fx-gray));
}

.fixed-icons .phone-icon.secondary-phone{
  color:#fff;
  background:linear-gradient(145deg,var(--fx-gold),#9f6d4f);
}

.fixed-icons .whatsapp-icon{
  color:#fff;
  background:linear-gradient(145deg,var(--fx-whatsapp),var(--fx-whatsapp-dark));
}

.fixed-icons .whatsapp-icon.secondary-whatsapp{
  color:#fff;
  background:linear-gradient(145deg,var(--fx-dark),var(--fx-gold));
}

.fixed-icons .icon:focus-visible{
  outline:3px solid rgba(193,138,104,.35);
  outline-offset:4px;
}

@keyframes fxIconIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fxSoftPulse{
  0%,100%{
    transform:scale(.88);
    opacity:.10;
  }
  50%{
    transform:scale(1.18);
    opacity:.02;
  }
}

@media (max-width:768px){
  .fixed-icons{
    left:14px;
    bottom:16px;
    gap:9px;
    z-index:850;
  }

  .fixed-icons .icon{
    width:48px;
    height:48px;
  }

  .fixed-icons .icon svg{
    width:22px;
    height:22px;
  }

  .fixed-icons .icon::after{
    display:none;
  }

  .fixed-icons .icon:hover{
    transform:translateY(-2px) scale(1.04);
  }
}

@media (max-width:420px){
  .fixed-icons{
    left:12px;
    bottom:14px;
  }

  .fixed-icons .icon{
    width:46px;
    height:46px;
  }
}

@media (prefers-reduced-motion:reduce){
  .fixed-icons .icon,
  .fixed-icons .icon::before,
  .fixed-icons .icon svg{
    animation:none;
    transition:none;
  }

  .fixed-icons .icon{
    opacity:1;
    transform:none;
  }
}




/* bigger fixed contact icons */

.fixed-icons .icon{
  width:64px;
  height:64px;
}

.fixed-icons .icon svg{
  width:30px;
  height:30px;
}

.fixed-icons .icon::after{
  left:76px;
}

.fixed-icons .icon::before{
  inset:-8px;
}

@media (max-width:768px){
  .fixed-icons .icon{
    width:56px;
    height:56px;
  }

  .fixed-icons .icon svg{
    width:27px;
    height:27px;
  }
}

@media (max-width:420px){
  .fixed-icons .icon{
    width:54px;
    height:54px;
  }

  .fixed-icons .icon svg{
    width:26px;
    height:26px;
  }
}

/* fixed contact icons end */


/* nav start */

.aws1-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
    height: 100px;
    z-index: 1000;
  }
  
  .aws1-logo {
    font-size: 1.5rem;
    font-weight: bold;
margin: auto;
  }
  
  .aws1-menu-icon,
  .aws1-close-icon {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
  }
  
  .aws1-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
@media (min-width: 992px) {
    .aws1-nav-links{
        padding-left: 550px;
    }
  }

  
  .aws1-nav-links li {
    position: relative;
    margin-left: 20px;
    text-align: center;
  }
  
  .aws1-nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
  }
  
  /* Dropdown */
  .aws1-dropdown:hover .aws1-dropdown-menu {
    display: block;
  }
  
  .aws1-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    border: 1px solid #ccc;
    min-width: 120px;
    top: 100%; /* يخلّيها تحت العنصر */
    right: 0;   /* تبدأ من اليمين */
    z-index: 999; /* فوق باقي العناصر */
  }
  
  
  .aws1-dropdown-menu li {
    margin: 0;
  }
  
  .aws1-dropdown-menu li a {
    padding: 10px;
    white-space: nowrap;
  }
  
  .aws1-dropdown-menu li a:hover {
    background-color: #f4f4f4;
  }
  
  /* Responsive */
  
  @media (max-width: 768px) {
    .aws1-menu-icon {
      display: block;
    }
  
    
  .aws1-logo {
 padding-left: 90px;
  }
    .aws1-nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      flex-direction: column;
      width: 250px;
      height: 100vh;
      background-color: #fff;
      padding-top: 60px;
      transition: 0.3s;
      overflow-y: auto;
      z-index: 999;
    }
  
    .aws1-nav-links li {
      margin: 20px;
    }
  
    .aws1-nav-links li.aws1-dropdown:hover .aws1-dropdown-menu {
      display: none;
    }
  
    .aws1-close-icon {
      display: block;
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 2rem;
    }
  
    .aws1-dropdown-menu {
      position: static;
      border: none;
      margin: 0;
    }
  }
  
  .aws1-nav-links.aws1-open {
    left: 0;
  }
  
/* nav end */


/* landig start */

.am1-hero-wrap {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.am1-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.am1-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
}

.am1-col {
    width: 100%;
}

.am1-text {
    color: #fff;
    text-align: right;
    font-family: cairo, sans-serif;
}

.am1-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.am1-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-weight: bold;
    margin-bottom: 0;
}

.am1-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 24px;
    background-color: #C45A12;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(196, 90, 18, 0.35);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.am1-btn:hover {
    background-color: #123746;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(18, 55, 70, 0.45);
}


/* Responsiveness */

@media (max-width: 768px) {
    .am1-title {
        font-size: 2.2rem;
    }
    .am1-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .am1-title {
        font-size: 2rem;
    }
    .am1-subtitle {
        font-size: 0.9rem;
    }
    .am1-hero-wrap {
        background-position: left;
    }
}

.animate-slide-up {
    transform: translateY(100vh);
    /* يبدأ السكشن من خارج الشاشة (الأسفل) */
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.animate-slide-up.show {
    transform: translateY(0);
    /* يعود إلى مكانه الطبيعي */
    opacity: 1;
}


/* landig end */


/*Start Features */


/* Start Features */

.x1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    background-color: #ffffff;
    direction: rtl;
    /* لجعل الاتجاه من اليمين إلى اليسار */
}

.x2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.x3 {
    flex: 1;
    padding: 10px;
}

.x3 img {
    max-width: 100%;
    border-radius: 10px;
}

.x4 {
    flex: 1;
    padding: 10px;
    text-align: right;
    /* النصوص تكون بمحاذاة اليمين */
    font-family: "Cairo", "Arial", sans-serif;
    /* خطوط تدعم العربية */
}

.x4 h2 {
    font-size: 2rem;
    color: #202020;
    margin-bottom: 10px;
}

.x5 {
    width: 80px;
    height: 4px;
    background-color: #3326dd;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.x4 p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.x6 {
    display: inline-block;
    background-color: #3326dd;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.x6:hover {
    background-color: #1c1394;
}


/* تصميم متجاوب للشاشات الصغيرة */

@media screen and (max-width: 768px) {
    .x2 {
        flex-direction: column;
        /* النص والصورة عموديين بدلاً من صف */
    }
    .x4 {
        text-align: center;
        /* النص يكون بمحاذاة الوسط */
    }
    .x3 {
        margin-top: 20px;
        /* إضافة مسافة بين النص والصورة */
    }
    .x5 {
        margin-right: 166px;
    }
}


/* End Features */


/* سيكشن الخدمات */

.service-btn {
    background-color: #FFFFFF;
    /* خلفية بيضاء */
    color: #007ACC;
    /* لون النص أزرق متناسق مع العلامة التجارية */
    border: 2px solid #007ACC;
    /* حدود زرقاء */
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    /* ظل خفيف */
    margin-top: 20px;
}

.service-btn:hover {
    background-color: #007ACC;
    /* يصبح الزر أزرق عند التحويم */
    color: #FFFFFF;
    /* النص يتحول إلى الأبيض */
    border-color: #007ACC;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.2);
    /* تعزيز تأثير الظل */
    transform: translateY(-2px);
    /* تأثير رفع خفيف */
}

.mx1-row {
    display: flex;
    gap: 20px;
    /* مسافة بين الأعمدة */
    justify-content: center;
    /* محاذاة الكروت في الوسط */
}

.mx1-col {
    flex: 1 1 calc(33.33% - 20px);
    /* يجعل كل كارت يأخذ ثلث العرض */
    max-width: calc(33.33% - 20px);
}

.mx1-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: right;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mx1-services {
    padding: 60px 15px;
    text-align: center;
    background-color: #fff;
}

.mx1-section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mx1-section-subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

.mx1-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mx1-card {
    flex: 1;
    max-width: 30%;
    min-width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mx1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.mx1-card-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f25d27;
    margin-bottom: 10px;
}

.mx1-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.mx1-card-text {
    font-size: 14px;
    line-height: 25px;
    color: #555;
    font-family: tajawal, sans-serif;
    font-weight: 400;
}


/* Responsiveness */

@media (max-width: 768px) {
    .mx1-card {
        max-width: 100%;
    }
}

.mx1-card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: auto;
    /* التحكم في ارتفاع الصورة */
    display: block;
}

.mx1-row {
    display: flex;
    gap: 20px;
    /* مسافة بين الأعمدة */
    justify-content: center;
    /* محاذاة الكروت في الوسط */
    margin-bottom: 30px;
    /* فاصل بين الصفوف */
}

.mx1-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mx1-card {
    opacity: 0;
    /* اجعل العنصر غير مرئي */
    transform: translateY(50px);
    /* تحريكه لأسفل */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


/* عند ظهور العنصر في الشاشة */

.mx1-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* ABOUT SECTION START */

.I1-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}


/* الحاوية الرئيسية */

.I1-container {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #fff;
}


/* الحاوية الداخلية */

.I1-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* العناصر */

.I1-item {
    background-color: #f9fffb;
    border-radius: 12px;
    padding: 20px;
    width: 30%;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.I1-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* الأيقونات */

.I1-icon {
    font-size: 2rem;
    color: #6cc9a1;
    margin-bottom: 15px;
}


/* عناوين العناصر */

.I1-item-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}


/* النصوص */

.I1-description {
    font-size: 0.9rem;
    color: #555;
}


/* تصميم متجاوب */

@media (max-width: 768px) {
    .I1-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .I1-item {
        width: 100%;
    }
}


/* ABOUT SECTION END */


/* contact section start */

.oo1-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.oo1-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
    /* لون داكن قليلاً للعناوين */
}

.oo1-title span {
    color: #007ACC;
    /* أزرق رئيسي */
}

.oo1-subtitle {
    color: #555555;
    /* رمادي متوسط */
    margin-bottom: 30px;
}

.oo1-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.oo1-card {
    background: #F8F9FA;
    /* رمادي فاتح ناعم بدلاً من الأبيض النقي */
    border: 2px solid #D1D5DB;
    /* لون حدودي رمادي هادئ */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: 0.3s ease-in-out;
}

.oo1-card:hover {
    background: #E3F2FD;
    /* أزرق فاتح عند التحويم */
    border-color: #007ACC;
    /* تغيير لون الحدود للأزرق */
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.2);
    /* ظل خفيف */
}

.oo1-card svg {
    width: 50px;
    height: 50px;
    fill: #007ACC;
    /* تغيير لون الأيقونات إلى الأزرق */
    margin-bottom: 15px;
}

.oo1-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333333;
    /* لون عنوان البطاقة */
}

.oo1-card-text {
    font-size: 0.9rem;
    color: #555555;
    /* لون النص داخل البطاقات */
}

.oo1-card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border: 2px solid #007ACC;
    color: #007ACC;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.oo1-card-link:hover {
    background: #007ACC;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.3);
}

@media (max-width: 768px) {
    .oo1-card {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .oo1-card {
        width: 90%;
        max-width: 420px;
    }
}


/* contact section end */


/*ABOUT US SECTION */

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
    text-align: center;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
}

.responsive-container-block.bigContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
}

.text-blk.headingText {
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(0, 135, 177);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 50%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.text-blk.subHeadingText {
    color: rgb(0, 0, 0);
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.text-blk.description {
    font-size: 18px;
    line-height: 28px;
    color: rgb(0, 0, 0);
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
}

.explore {
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    background-color: #007ACC;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: rgb(244, 152, 146);
    border-right-color: rgb(244, 152, 146);
    border-bottom-color: rgb(244, 152, 146);
    border-left-color: rgb(244, 152, 146);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 9px;
    padding-right: 45px;
    padding-bottom: 9px;
    padding-left: 45px;
}

.explore:hover {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: #005A99;
    color: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.3);
    transition: 0.4s ease;
    transform: translateY(-3px);
    /* تأثير الرفع */
}

.responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
    flex-direction: row;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}

.allText.aboveText {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
}

.allText.bottomText {
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.mainVideo {
    width: 85%;
    height: 450px;
    margin-top: -30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.videoContainer {
    width: 46%;
    height: 600px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.mainVideo {
    z-index: 10;
}

.dotsImg {
    position: absolute;
    width: 80%;
    height: 600px;
    top: 0px;
    right: 0px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        max-width: 850px;
    }
    .text-blk.description {
        font-size: 18px;
    }
    .allText {
        width: 40%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 20px;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }
    .text-blk.subHeadingText {
        font-size: 30px;
    }
    .responsive-container-block.Container.bottomContainer {
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
    }
    .responsive-container-block.Container {
        max-width: 830px;
    }
    .allText.aboveText {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 40px;
    }
    .allText.bottomText {
        margin-top: 30px;
        margin-right: 40px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.bottomText {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }
    .responsive-container-block.Container.bottomContainer {
        flex-direction: column;
    }
    .text-blk.headingText {
        text-align: center;
        font-size: 22px;
    }
    .text-blk.subHeadingText {
        text-align: center;
    }
    .text-blk.description {
        text-align: center;
    }
    .explore {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }
    #inc0s {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }
    .dotsImg {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    .videoContainer {
        width: 100%;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .mainVideo {
        width: 100%;
    }
    .allText.bottomText {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
    }
    .text-blk.description {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .text-blk.headingText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .text-blk.subHeadingText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .mainVideo {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .allText {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .responsive-container-block.Container {
        flex-direction: column;
        height: auto;
    }
    .text-blk.headingText {
        text-align: center;
    }
    .text-blk.subHeadingText {
        text-align: center;
        font-size: 28px;
        line-height: 38px;
    }
    .text-blk.description {
        text-align: center;
        font-size: 18px;
        line-height: 27px;
    }
    .allText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.aboveText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .responsive-container-block.Container {
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
    }
    .responsive-container-block.Container.bottomContainer {
        margin-top: 50px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 10px;
    }
    .allText.bottomText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.bottomText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
    }
    .mainVideo {
        height: 400px;
    }
    .videoContainer {
        height: 550px;
    }
    .explore {
        font-size: 16px;
        padding-top: 8px;
        padding-right: 40px;
        padding-bottom: 8px;
        padding-left: 40px;
    }
    .responsive-container-block.bigContainer {
        padding-top: 0px;
        padding-right: 50px;
        padding-bottom: 0px;
        padding-left: 50px;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.Container {
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 25px;
        padding-bottom: 10px;
        padding-left: 25px;
    }
    .allText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 100%;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }
    .explore {
        font-size: 16px;
        line-height: 25px;
        padding: 8px 35px 8px 35px;
    }
    .dotsImg {
        width: 80%;
        height: 100%;
    }
    .mainVideo {
        height: 260px;
    }
    .videoContainer {
        height: 320px;
    }
    .responsive-container-block.Container.bottomContainer {
        padding: 0 0 0 0;
    }
    .text-blk.description {
        font-size: 16px;
        line-height: 23px;
        margin: 0 0 30px 0;
    }
    .text-blk.subHeadingText {
        font-size: 24px;
    }
}


/* يبدأ العنصر مخفيًا */

.responsive-container-block.bigContainer {
    transform: translateY(60px);
    /* يبدأ من 60px أسفل */
    opacity: 0;
    visibility: hidden;
    transition: transform 1s ease-out, opacity 1s ease-out, visibility 1s;
}


/* عند ظهور العنصر في الشاشة */

.responsive-container-block.bigContainer.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


/*ABOUT US SECTION */


/*clints section */


/* قسم العملاء */

.clients-section {
    background-color: #ffffff;
    /* لون الخلفية */
    padding: 60px 20px;
    /* تباعد داخلي */
    position: relative;
}


/* أيقونة الخلفية */

.clients-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-image: url('');
    /* استبدل بمسار الأيقونة */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    /* شفافية الأيقونة */
    z-index: 1;
    /* خلف النص */
}


/* العناوين */

.bl {
    position: relative;
    z-index: 2;
    /* فوق الخلفية */
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}


/* الشعارات */

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.clients-logos img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    /* تأثير عند المرور */
}

.clients-logos img:hover {
    transform: scale(1.1);
    /* تكبير عند التمرير */
}


/* تحسين العرض على الشاشات الصغيرة */

@media screen and (max-width: 768px) {
    .clients-logos img {
        max-width: 100px;
    }
}


/*clints section end */

.dropdown-toggle::after {
    display: none !important;
}


/* صفحة تواصل معنا */


/* إخفاء العنصر مبدئيًا */

.t1 {
}


/* عند تحميل الصفحة يظهر */

.t1.show {
}

.t1 {
    position: relative;
    width: 100%;
    height: 350px;
    /* يمكن تعديل الارتفاع حسب الحاجة */
    display: flex;
    justify-content: center;
    align-items: center;
}


/* تصميم الصورة */

.t1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 0;
    object-fit: cover;
}


/* طبقة التعتيم */

.t2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #003366;
    /* تأثير التعتيم */
    display: flex;
    justify-content: center;
    align-items: center;
}


/* تصميم النص */

.t3 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: "Cairo","Tajawal",  sans-serif;
    text-align: center;
    font-weight: 500;
}

/* عنا */

.X12A-box {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    text-align: right;
}

.X12A-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.X12A-text {
    font-size: 18px;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.X12A-list {
    list-style: none;
    padding: 0;
}

.X12A-list li {
    font-size: 18px;
    color: #444;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.X12A-list li strong {
    color: #007bff;
}


/* Responsive Design */

@media (max-width: 768px) {
    .X12A-box {
        width: 95%;
        padding: 15px;
    }
    .X12A-title {
        font-size: 22px;
    }
    .X12A-text,
    .X12A-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .X12A-box {
        width: 100%;
        padding: 10px;
    }
    .X12A-title {
        font-size: 20px;
    }
    .X12A-text,
    .X12A-list li {
        font-size: 14px;
    }
}


/* عنا */


/* صفحة تواصل معنا */


/* الحاوية العامة */

.X99-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}


/* العناوين */

.X99-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


/* تحسين "لماذا تتواصل معنا؟" */

.X99-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.X99-feature {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.X99-feature:hover {
    background: #007bff;
    color: white;
}

.X99-feature i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}


/* طرق التواصل */

.X99-contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.X99-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #444;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    justify-content: center;
}

.X99-contact-item:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.X99-contact-item i {
    font-size: 22px;
    color: #007bff;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover i {
    color: white;
}

.X99-contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover a {
    color: white;
}


/* الأسئلة الشائعة */

.X99-faq-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.X99-faq-item:hover {
    background: #007bff;
    color: white;
}

.X99-question {
    font-weight: bold;
    font-size: 18px;
}

.X99-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0 10px;
    font-size: 16px;
    color: #333;
}

.X99-faq-item.active .X99-answer {
    max-height: 100px;
    padding: 10px;
}


/* نموذج استفسار سريع */

.X99-inquiry-form {
    text-align: center;
}

.X99-inquiry-form input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.X99-inquiry-form button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


/* آراء العملاء */

.X99-testimonial {
    text-align: center;
    background: #f1f1f1;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}


/* تحسين التناسق مع جميع الأجهزة */

@media (max-width: 1024px) {
    .X99-container {
        width: 95%;
        padding: 20px;
    }
    .X99-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .X99-contact-box {
        grid-template-columns: 1fr;
    }
    .X99-contact-item {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .X99-title {
        font-size: 22px;
    }
    .X99-contact-item {
        font-size: 14px;
        padding: 12px;
    }
}


/* الحاوية الأساسية */

.X99-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}


/* العنوان */

.X99-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


/* تصميم القائمة */

.X99-contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}


/* كل عنصر في القائمة */

.X99-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #444;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.X99-contact-item:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}


/* الأيقونات */

.X99-contact-item i {
    font-size: 24px;
    color: #007bff;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover i {
    color: white;
}


/* النصوص */

.X99-label {
    font-weight: bold;
    display: block;
    color: #333;
}

.X99-contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover a {
    color: white;
}


/* تحسين التوافق مع جميع الشاشات */

@media (max-width: 1024px) {
    .X99-container {
        width: 95%;
        padding: 20px;
    }
    .X99-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .X99-contact-box {
        grid-template-columns: 1fr;
    }
    .X99-contact-item {
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .X99-title {
        font-size: 22px;
    }
    .X99-contact-item {
        font-size: 14px;
        padding: 12px;
    }
}




/*تنسيق المقالات كلها */
.c-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 10%;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
}

.c-image {
    height: auto;
    width: 70%;
    margin: 0 auto;
}

.c-text {
    line-height: 1.8;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

/* تخصيص الـ h2 داخل .c-container فقط */
.c-container h2 {
    font-size: 27px; /* تحديد حجم الخط للـ h2 */
    text-align: right; /* بداية h2 من اليمين */
    width: 100%; /* التأكد من أن h2 يأخذ عرض الحاوية بالكامل */
    margin: 0; /* إزالة الهوامش الخارجية */
}

.c-container p {
    font-size: 18px; /* تحديد حجم الخط للنصوص */
    text-align: right; /* جعل النص يبدأ من المنتصف */
    width: 100%; /* التأكد من أن النص يأخذ عرض الحاوية بالكامل */
    margin: 10px 0; /* إضافة مسافة بين الفقرات */
}

.abc123 {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #ffffff;
}

.xyz456 th,
.xyz456 td {
    padding: 12px;
    border: 1px solid #ddd;
}

.pqr789 th {
    background-color: #333;
    color: white;
    text-transform: uppercase;
}

.lmn234 tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.uvw567 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}


/* جعل الجدول متجاوبًا مع جميع الأجهزة */

@media screen and (max-width: 768px) {
    .uvw567 {
        width: 100%;
        overflow-x: scroll;
    }
    .xyz456 th,
    .xyz456 td {
        font-size: 14px;
        padding: 10px;
    }
}


/*تنسيق المقالات كلها */












/* تنسيق القسم ككل */
.about-section {
    padding: 60px 0; /* مسافة علوية وسفلية */
    background-color: #ffffff; /* لون خلفية خفيف، غيّره بحسب رغبتك */
  }
  
  /* صورة القسم */
  .about-image img {
    max-width: 100%;
    border-radius: 6px; /* تعطي زوايا خفيفة */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* ظِل خفيف */
    height: 70%;
  }
  
  /* الصندوق الأبيض الذي يحوي المحتوى */
  .about-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* العنوان داخل الصندوق */
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: right;
  }
  
  /* النص */
  .about-content p {
    font-size: 16px;
    line-height: 1.7;
    text-align: right;

}

.about-content {
    /* مسافة من الأعلى لإنزاله قليلاً */
    margin-top: 90px; 
    /* مسافة من اليمين أو اليسار حسب اتجاه اللغة لديك */
    margin-right: -120px; 
  }

  /* ====== الشاشات المتوسطة (أصغر من 992px) ====== */
@media (max-width: 991px) {
    .about-content {
      /* خفّف السحب لليمين */
      margin-right: -60px;
      margin-top: 60px;
      padding: 60px;
      font-size: 14px;
    }
  
    .about-image img {
      /* إن كنت تريد السماح للصورة أن تُظهر بحجمها الطبيعي */
      height: auto;
    }
  }
  
  /* ====== الشاشات الصغيرة (أصغر من 768px) ====== */
  @media (max-width: 767px) {
    .about-content {
      /* أزل السحب السلبي نهائيًا */
      margin-right: 0;
      margin-top: 40px;
      padding: 40px;
      font-size: 14px; 

    }
  
    /* يمكنك أيضًا تقليل الـ border-radius أو الظل إن أردت */
    .about-image img {
      height: auto; /* لتتناسب مع عرض الشاشة */
    }
  }



  @keyframes fadeInUp {
    0% {
      transform: translateY(40px); /* يبدأ تحت */
      opacity: 0;                  /* مخفي */
    }
    100% {
      transform: translateY(0);    /* يرجع للمكان الأصلي */
      opacity: 1;                  /* يصبح مرئي */
    }
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards; 
    /* 
      مدة الحركة 0.8 ثانية، 
      يمكنك تعديلها مثلاً إلى 1s أو 1.2s. 
      ease: نوع التسارع. 
      forwards: لكي يحتفظ بالحالة النهائية بعد انتهاء الحركة.
    */
  }


  .js-scroll-animation {
    opacity: 0;            /* البداية: مخفي */
    transform: translateY(40px); /* اسفل بقليل */
    transition: opacity 0.5s, transform 0.5s; 
    /* إن أردت حركة بسيطة بدون keyframes */
  }
  .js-scroll-animation.animate-fadeInUp {
    opacity: 1;                /* يصبح مرئي */
    transform: translateY(0);   /* يعود لمكانه */
  }
    

  /* about section end */

/* feature section */


/* سكشن كامل */
.l1 {
    padding: 60px 0;
    background-color: #fff;
  }
  @media (min-width: 992px) {
    .l1 {
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  
  /* منطقة العنوان والفقرة */
  .l3 {
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* عنوان القسم */
  .l7 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* الفقرة القصيرة أسفل العنوان */
  .l8 {
    font-size: 18px;
    color: #666;
  }
  
  /* عنصر row لتخطيط الأعمدة (لا تغييرات كبيرة هنا) */
  .l4 {
    /* يمكنك إضافة أي تنسيقات إضافية هنا */
  }
  
  /* لكل عمود */
  .l5 {
    margin-bottom: 30px; /* لإعطاء مسافة بين الأعمدة في الشاشات الصغيرة */
  }
  
  /* الصندوق الحاوي للميزة */
  .l6 {
    background-color: transparent;
    padding: 20px;
    margin: 0 auto;
    max-width: 300px;
    transition: all 0.3s ease;
  }
  
  /* أيقونة الميزة */
  .l9 {
    margin-bottom: 20px;
    text-align: center;
}
svg {
    margin: 0 auto;
    display: block;
  }
  
  /* عنوان الميزة */
  .l10 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
  }
  
  /* نص الميزة */
  .l11 {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
  }
  
  .l6:hover {
    transform: translateY(-5px);
  }
  
  /* تنسيقات الشاشات الأصغر من 768px مثلاً */
  @media (max-width: 767.98px) {
    .l7 {
      font-size: 24px;
    }
    .l8 {
      font-size: 16px;
    }
    .l10 {
      font-size: 20px;
    }
    .l11 {
      font-size: 14px;
    }
  }
  
  /* فيوتشر سكشن إند */





  /* سكشن الخدمات */
.z1 {
    padding: 60px 0;
  }
  
  /* الحاوية الرئيسية */
  .z2 {
    /* يمكنك تركها كما هي أو إضافة أي تنسيقات */
  }
  
  /* العنوان العام */
  .z3 {
    margin-bottom: 40px;
  }
  
  /* عنوان القسم */
  .z4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* وصف القسم */
  .z5 {
    font-size: 16px;
    color: #000000;
  }
  
  /* صف الخدمات */
  .z6 {
    /* تنسيقات إضافية للصف إذا لزم الأمر */
  }
  
  /* كل عمود (خدمة واحدة) */
  .z7 {
    margin-bottom: 30px; 
  }
  
  /* الصندوق الداخلي لكل خدمة */
  .z8 {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
  }
  
 
  
  /* الصورة */
  .z9 {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto 20px auto;
    overflow: hidden;
  }
  
  .z9 img {
    width: 100%;
    height: 80%;
    display: block;
  }
  
  /* عنوان الخدمة */
  .za {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #000000;
    text-align: right;


  }
  
  /* وصف الخدمة */
  .zb {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: right;
  }
  
  /* رابط "اقرأ المزيد" */
  .zc {
    margin-top: 50px;
    display: inline-block;
    color: #000000; /* أزرق */
    float: right;
    font-size: 16px;

  }
  
  .zc:hover {
    color: #0056b3;
  }
  


  @media (min-width: 992px) {
    .z1 {
      margin: 0 160px; /* من اليمين واليسار */
    }
  }
 
  
  /* ميديا كويري للشاشات الأصغر */
  @media (max-width: 767.98px) {
    .z4 {
      font-size: 26px;
    }
    .z5 {
      font-size: 14px;
    }
    .za {
      font-size: 18px;
    }
    .zb {
      font-size: 13px;
    }
    .z9 {
      width: auto;
      height: auto%;
      margin-bottom: 15px;
    }
  }
  
  
  /* سكشن الخدمات */








/*  سكشن اراء العملاء*/


/* سكشن رئيسي */
.k1 {
    padding: 60px 0;
    background-color: #fff;
}
  


@media (min-width: 992px) {
    .k1{
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  /* حاوية المحتوى */
  .k2 {
    /* يمكنك تركها بدون تغيير أو إضافة أي تنسيق آخر */
  }
  
  /* رأسية السكشن (عنوان + فقرة) */
  .k3 {
    margin-bottom: 40px;
  }
  
  .k4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    
  }
  
  .k5 {
    font-size: 16px;
    color: #666;
  }
  
  /* تغليف الأعمدة */
  .k6 {
    /* تنسيقات إضافية للـ row إن أردت */
  }
  
  /* كل عمود */
  .k7 {
    margin-bottom: 30px; 
  }
  
  /* الصندوق الداخلي */
  .k8 {
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 280px; /* لإعطاء ارتفاع مناسب */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;

  }
  
  /* الصندوق الأزرق المتدرج */
  .k9 {
    background: linear-gradient(135deg, #1E5FE2 0%, #3A8BFF 100%);
    color: #fff; 
  }
  
  /* الصندوق الأبيض */
  .k10 {
    background-color: #fff;
    color: #333;
  }
  
  .ka {
    font-size: 60px; /* بدل 100px */
    font-weight: bold;
    margin-bottom: 10px; /* مسافة أسفل الرمز */
  }
  
  /* نص الشهادة */
  .kb {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  /* اسم العميل */
  .kc {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  /* منصبه/تعريفه */
  .kd {
    font-size: 14px;
    color: inherit; /* ليتبع لون الصندوق */
  }
  
  /* تحسين المظهر على الشاشات الأصغر */
  @media (max-width: 767.98px) {
    .k4 {
      font-size: 24px;
    }
    .k5 {
      font-size: 14px;
    }
    .kb {
      font-size: 14px;
    }
    .kc {
      font-size: 16px;
    }
    .ka {
      font-size: 34px;
    }
  }
  
/*  سكشن اراء العملاء*/






/* contact us section */
/* القسم العام */
.m1 {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  @media (min-width: 992px) {
    .m1{
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  /* الحاوية */
  .m2 {
    /* يمكنك تركها على حالها أو تعديلها */
  }
  
  /* تخطيط الأسطر */
  .m3 {
    margin-bottom: 30px;
  }
  
  /* عمود النموذج */
  .m4 {
    margin-bottom: 20px; 
  }
  
  /* حاوية داخلية للنموذج */
  .m5 {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
  }
  
  /* عنوان النموذج */
  .m6 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: right;
  }
  
  /* وصف مصغر تحت العنوان */
  .m7 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: right;

  }
  
  /* استايل النموذج */
  .m8 {
    /* يمكن إضافة تنسيقات إضافية */
  }
  
  /* تنسيق حقول النموذج */
  .m9 {
    margin-bottom: 15px;
  }
  
  /* زر الإرسال */
  .m10 {
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .m10:hover {
    background-color: #0056b3;
  }
  
  /* عمود معلومات التواصل */
  .m11 {
    display: flex;
    align-items: center; /* مركزة عموديًا */
    justify-content: center; /* مركزة أفقيًا (اختياري) */
    text-align: right;

  }
  
  /* خلفية أو إطار لمعلومات التواصل */
  .m12 {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 350px; /* لتحديد عرض عمود التواصل */
  }
  
  /* عنوان فرعي داخل معلومات التواصل */
  .m13 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* نص الوصف */
  .m14 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: right;

  }
  
  /* عناوين فرعية للهاتف / البريد */
  .m15 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  /* النص الخاص بالهاتف والبريد */
  .m16 {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* حاوية الخريطة */
  .m17 {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden; /* لإخفاء أي زوائد */
  }
  
  /* الشاشات الأصغر */
  @media (max-width: 767.98px) {
    .m6 {
      font-size: 20px;
    }
    .m8 {
      margin-bottom: 20px;
    }
    .m12 {
      margin-top: 20px;
      max-width: 100%;
    }
  }
  /* contact us section */






/* About Section */
.x9f-k2 {
  direction: rtl;
  padding: 80px 20px;
  background: #f7f7f7;
}

.m7q-z1 {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: center;
  text-align: right;
}

.v4n-r8 {
  position: relative;
}

.v4n-r8 img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.t6b-p3 {
  color: #182c34;
}

.t6b-p3 h2 {
  margin: 0 0 18px;
  color: #102f3a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.t6b-p3 p {
  margin: 0 0 16px;
  color: #4b5b61;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.n8c-w5 {
  display: inline-block;
  padding: 14px 24px;
  background-color: #c45a12;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(196, 90, 18, 0.35);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.n8c-w5:hover {
  background-color: #123746;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(18, 55, 70, 0.45);
}

@media (max-width: 900px) {
  .x9f-k2 {
    padding: 60px 16px;
  }

  .m7q-z1 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t6b-p3 p {
    font-size: 16px;
  }

  .n8c-w5 {
    width: 100%;
  }
}



/* Footer */
.ftx-9p {
  direction: rtl;
  padding: 35px 20px 18px;
  background: #102f3a;
  color: #ffffff;
}

.ftx-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ftx-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ftx-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.ftx-links a:hover {
  color: #c45a12;
}

.ftx-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ftx-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.ftx-social a:hover {
  background: #c45a12;
  color: #ffffff;
}

.ftx-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.ftx-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.ftx-bottom a {
  color: #c45a12;
  font-weight: 800;
  text-decoration: none;
}

.ftx-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .ftx-links {
    gap: 14px;
  }

  .ftx-bottom {
    flex-direction: column;
    text-align: center;
  }
}


```css
/* Features Section */
.q7r-m1 {
  direction: rtl;
  padding: 75px 20px;
  background: #ffffff;
}

.q7r-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.q7r-head {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.q7r-head h2 {
  margin: 0 0 16px;
  color: #102f3a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
    text-align: center;

}

.q7r-head p {
  margin: 0;
  color: #5d6d73;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.q7r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.q7r-card {
  background: #f7f7f7;
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid rgba(16, 47, 58, 0.08);
  transition: all 0.3s ease-in-out;
}

.q7r-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.q7r-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #c45a12;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.q7r-card h3 {
  margin: 0 0 12px;
  color: #102f3a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.q7r-card p {
  margin: 0;
  color: #5c6b71;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .q7r-m1 {
    padding: 55px 16px;
  }

  .q7r-head {
    margin-bottom: 30px;
  }

  .q7r-head p {
    font-size: 16px;
  }

  .q7r-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .q7r-card {
    padding: 26px 20px;
  }
}


/* Center Features Content */
.q7r-card {
  text-align: center;
}

.q7r-icon {
  margin: 0 auto 18px;
}

.q7r-card h3,
.q7r-card p {
  text-align: center;
}

.q7r-grid {
  justify-content: center;
}


/* Previous Works Section */
.w7x-a1 {
  direction: rtl;
  padding: 75px 20px;
  background: #f7f7f7;
}

.w7x-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.w7x-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.w7x-head h2 {
  margin: 0 0 14px;
  color: #102f3a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.w7x-head p {
  margin: 0;
  color: #5d6d73;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.w7x-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.w7x-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 250px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.w7x-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease-in-out;
}

.w7x-item:hover img {
  transform: scale(1.06);
}

.w7x-action {
  margin-top: 32px;
  text-align: center;
}

.w7x-btn {
  display: inline-block;
  padding: 14px 26px;
  background-color: #c45a12;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(196, 90, 18, 0.35);
  transition: all 0.3s ease-in-out;
}

.w7x-btn:hover {
  background-color: #123746;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(18, 55, 70, 0.45);
}

@media (max-width: 900px) {
  .w7x-a1 {
    padding: 55px 16px;
  }

  .w7x-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .w7x-item {
    height: 190px;
  }

  .w7x-head p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .w7x-grid {
    grid-template-columns: 1fr;
  }

  .w7x-item {
    height: 230px;
  }

  .w7x-btn {
    width: 100%;
    text-align: center;
  }
}






 :root{
    --xq1:#141515;
    --xq2:#292928;
    --xq3:#40403f;
    --vb1:#c18a68;
    --vb2:#d6a17d;
    --rk1:#837f7b;
    --rk2:#6f6b67;
    --zn1:#f7f5f2;
    --zn2:#ffffff;
    --zn3:#837f7b;
    --zn4:#e5e1dc;
  }

  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Cairo',sans-serif;
    background:#f5f6f9;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  body.nav-lock{overflow:hidden;}
  a{font-family:inherit;}
  ul{list-style:none;}

  .qpz-strip{
    height:4px;
    width:100%;
    background:linear-gradient(90deg,var(--xq1) 0%,var(--vb1) 50%,var(--rk1) 100%);
  }

  .mwx-row1{
    background:var(--xq2);
    font-size:13px;
    padding:9px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

  .mwx-row1 .jcl-wrap{
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
  }

  .mwx-row1 .ftg-label{
    color:#e7e0da;
    font-weight:600;
    letter-spacing:.2px;
    display:flex;
    align-items:center;
    gap:8px;
  }

  .mwx-row1 .ftg-label::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--vb1);
    display:inline-block;
    flex-shrink:0;
  }

  .mwx-row1 .dho-group{
    display:flex;
    align-items:center;
    gap:18px;
  }

  .mwx-row1 .yub-lang{
    display:flex;
    align-items:center;
    gap:6px;
    color:#e7e0da;
    font-weight:600;
    text-decoration:none;
    transition:.2s;
  }

  .mwx-row1 .yub-lang:hover{
    color:var(--vb2);
  }

  .mwx-row1 .ker-socials{
    display:flex;
    gap:8px;
  }

  .mwx-row1 .ker-socials a{
    width:27px;
    height:27px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e7e0da;
    font-size:12px;
    text-decoration:none;
    transition:.25s;
  }

  .mwx-row1 .ker-socials a:hover{
    background:var(--vb1);
    color:#fff;
    transform:translateY(-2px);
  }

  .mwx-row2{
    background:var(--zn2);
    padding:18px 0;
    box-shadow:0 1px 0 var(--zn4);
    position:relative;
  }

  .mwx-row2 .jcl-wrap{
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
  }

  .gxv-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }

  .gxv-brand .main-logo{
    max-width:170px;
    height:auto;
    display:block;
  }

  .ehs-contacts{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
  }

  .ehs-contacts .itm{
    display:flex;
    align-items:center;
    gap:11px;
  }

  .ehs-contacts .itm .bdg{
    width:44px;
    height:44px;
    border-radius:50%;
    flex-shrink:0;
    background:linear-gradient(145deg,var(--xq2),var(--xq3));
    color:var(--zn2);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px rgba(20,21,21,.22);
  }

  .ehs-contacts .itm .bdg svg{
    width:19px;
    height:19px;
    fill:none;
    stroke:#fff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .ehs-contacts .itm .txt{
    line-height:1.35;
  }

  .ehs-contacts .itm .txt .lbl{
    font-size:12px;
    font-weight:700;
    color:var(--xq1);
    text-align: right;
  }

  .ehs-contacts .itm .txt a{
    font-size:13.5px;
    color:var(--zn3);
    text-decoration:none;
    direction:ltr;
    display:inline-block;
    font-weight:600;
    transition:.2s;
  }

  .ehs-contacts .itm .txt a:hover{
    color:var(--vb1);
  }

  .fzt-burger{
    display:none;
    width:46px;
    height:46px;
    border-radius:10px;
    border:1px solid var(--zn4);
    background:var(--zn1);
    color:var(--xq1);
    align-items:center;
    justify-content:center;
    cursor:pointer;
    position:relative;
    z-index:1200;
    flex-direction:column;
    gap:5px;
    transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
  }

  .fzt-burger span{
    width:20px;
    height:2px;
    background:var(--xq1);
    border-radius:5px;
    display:block;
    transition:.25s;
  }

  .fzt-burger.uop-active{
    background:#292928;
    border-color:#292928;
    box-shadow:0 8px 20px rgba(20,21,21,.28);
  }

  .fzt-burger.uop-active span{
    background:#fff;
  }

  .fzt-burger.uop-active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .fzt-burger.uop-active span:nth-child(2){
    opacity:0;
  }

  .fzt-burger.uop-active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .wqn-nav{
    background:var(--xq1);
    position:relative;
    box-shadow:0 4px 14px rgba(20,21,21,.18);
    z-index:50;
  }

  .wqn-nav .jcl-wrap{
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    align-items:center;
  }

  .wqn-nav > .jcl-wrap > .ovl-list{
    display:flex;
    flex-wrap:wrap;
    width:100%;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li{
    position:relative;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li > a{
    display:flex;
    align-items:center;
    gap:7px;
    color:#f2f0ed;
    text-decoration:none;
    padding:17px 19px;
    font-size:14.5px;
    font-weight:600;
    transition:.22s;
    white-space:nowrap;
    position:relative;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li > a::after{
    content:"";
    position:absolute;
    right:19px;
    left:19px;
    bottom:0;
    height:3px;
    background:var(--vb1);
    transform:scaleX(0);
    transform-origin:center;
    transition:.25s;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li:first-child > a{
    background:linear-gradient(145deg,var(--vb1),#9f6d4f);
    color:#fff;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li:hover > a{
    color:#fff;
    background:var(--xq3);
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li:hover > a::after{
    transform:scaleX(1);
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li:first-child:hover > a{
    background:#9f6d4f;
  }

  .wqn-nav > .jcl-wrap > .ovl-list > li:first-child > a::after{
    display:none;
  }

  .nav-chev{
    font-size:12px;
    line-height:1;
    display:inline-flex;
    transition:.25s;
  }

  .wqn-nav .hqp-parent:hover > a .nav-chev{
    transform:rotate(180deg);
  }

  .czm-drop{
    position:absolute;
    top:100%;
    right:0;
    background:#fff;
    min-width:250px;
    box-shadow:0 16px 34px rgba(20,21,21,.22);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
    z-index:80;
    border-radius:0 0 10px 10px;
    overflow:hidden;
    border-top:3px solid var(--vb1);
  }

  .hqp-parent:hover .czm-drop{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .czm-drop li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 19px;
    color:var(--xq1);
    text-decoration:none;
    font-size:13.5px;
    font-weight:600;
    border-bottom:1px solid #f1efec;
    transition:.2s;
  }

  .czm-drop li a::before{
    content:"";
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--vb1);
    opacity:0;
    transition:.2s;
    flex-shrink:0;
  }

  .czm-drop li:last-child a{
    border-bottom:none;
  }

  .czm-drop li a:hover{
    background:#f7f5f2;
    color:var(--vb1);
    padding-right:23px;
  }

  .czm-drop li a:hover::before{
    opacity:1;
  }

  .nav-overlay,
  .mob-drawer-head,
  .mob-drawer-foot{
    display:none;
  }

  .mob-drawer-head{
    padding:18px 20px 14px;
    border-bottom:1px solid #eee9e4;
    position:relative;
    background:#fff;
    min-height:76px;
  }

  .mob-drawer-head .mob-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }

  .mob-drawer-head .mob-brand .mob-logo{
    max-width:165px;
    height:auto;
    display:block;
  }

  .mob-drawer-foot{
    padding:18px 22px 24px;
  }

  .mob-drawer-foot .mob-lang{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:var(--xq1);
    font-size:16px;
    padding:6px 0 20px;
    border-bottom:1px solid #eee9e4;
    margin-bottom:22px;
    font-weight:600;
  }

  .mob-socials{
    display:flex;
    align-items:center;
    gap:12px;
    justify-content:center;
  }

  .mob-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--xq2);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:.25s;
  }

  .mob-socials a:hover{
    background:var(--vb1);
    color:#fff;
    transform:translateY(-2px);
  }

  @media (min-width:1400px){
    .mwx-row1 .jcl-wrap,
    .mwx-row2 .jcl-wrap,
    .wqn-nav .jcl-wrap{
      max-width:1400px;
    }
  }

  @media (max-width:1199.98px){
    .ehs-contacts{
      gap:20px;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li > a{
      padding:16px 15px;
      font-size:14px;
    }
  }

  @media (max-width:991.98px){
    .mwx-row1{
      display:none;
    }

    .mwx-row2{
      padding:10px 0;
    }

    .mwx-row2 .jcl-wrap{
      direction:ltr;
      flex-wrap:nowrap;
      justify-content:space-between;
      align-items:center;
    }

    .gxv-brand{
      order:2;
      margin-left:auto;
    }

    .gxv-brand .main-logo{
      max-width:145px;
    }

    .ehs-contacts{
      display:none;
    }

    .fzt-burger{
      display:flex;
      order:1;
      flex-shrink:0;
    }

    .nav-overlay{
      display:block;
      position:fixed;
      inset:0;
      background:rgba(20,21,21,.55);
      z-index:999;
      opacity:0;
      visibility:hidden;
      backdrop-filter:blur(0);
      transition:
        opacity .35s ease,
        visibility .35s ease,
        backdrop-filter .35s ease;
    }

    .nav-overlay.uop-open{
      opacity:1;
      visibility:visible;
      backdrop-filter:blur(2px);
    }

    .wqn-nav{
      position:fixed;
      top:0;
      right:0;
      width:min(320px, 86vw);
      height:100vh;
      background:#fff;
      box-shadow:-14px 0 30px rgba(20,21,21,.22);
      z-index:1000;
      transform:translateX(105%);
      opacity:.92;
      transition:
        transform .55s cubic-bezier(.22,.8,.22,1),
        opacity .35s ease,
        box-shadow .35s ease;
      will-change:transform;
      overflow-y:auto;
      overflow-x:hidden;
      max-height:none;
      border-radius:0;
    }

    .wqn-nav.uop-open{
      transform:translateX(0);
      opacity:1;
    }

    .wqn-nav .jcl-wrap{
      display:block;
      max-width:none;
      padding:0;
      transform:translateX(18px);
      opacity:0;
      transition:
        transform .45s ease .12s,
        opacity .35s ease .12s;
    }

    .wqn-nav.uop-open > .jcl-wrap{
      transform:translateX(0);
      opacity:1;
    }

    .mob-drawer-head{
      display:block;
    }

    .wqn-nav > .jcl-wrap > .ovl-list{
      display:block;
      width:100%;
      padding:4px 0 0;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li{
      width:100%;
      border-bottom:1px solid #eee9e4;
      position:relative;
      opacity:0;
      transform:translateX(18px);
      transition:
        opacity .35s ease,
        transform .35s ease;
    }

    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li{
      opacity:1;
      transform:translateX(0);
    }

    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(1){transition-delay:.08s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(2){transition-delay:.11s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(3){transition-delay:.14s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(4){transition-delay:.17s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(5){transition-delay:.20s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(6){transition-delay:.23s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(7){transition-delay:.26s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(8){transition-delay:.29s;}
    .wqn-nav.uop-open > .jcl-wrap > .ovl-list > li:nth-child(9){transition-delay:.32s;}

    .wqn-nav > .jcl-wrap > .ovl-list > li > a{
      color:var(--xq1);
      background:#fff !important;
      padding:16px 22px;
      font-size:15.5px;
      font-weight:600;
      justify-content:space-between;
      width:100%;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li > a::after{
      display:none;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li > a:hover{
      color:var(--vb1);
      background:#fff !important;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li:first-child > a{
      color:var(--xq1);
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li:first-child:hover > a{
      color:var(--vb1);
      background:#fff !important;
    }

    .wqn-nav .hqp-parent > a{
      position:relative;
      padding-left:56px;
    }

    .wqn-nav .hqp-parent > a::before{
      content:"+";
      position:absolute;
      left:18px;
      top:50%;
      transform:translateY(-50%);
      width:24px;
      height:24px;
      border-radius:50%;
      background:#f3f1ee;
      color:var(--xq1);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      line-height:1;
      font-weight:700;
      transition:.25s;
    }

    .hqp-parent.uop-open > a::before{
      content:"−";
    }

    .hqp-parent.uop-open > a .nav-chev{
      transform:rotate(180deg);
    }

    .czm-drop{
      position:static;
      opacity:1;
      visibility:visible;
      transform:none;
      box-shadow:none;
      border-radius:0;
      border-top:none;
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
      min-width:100%;
      background:#faf8f5;
    }

    .hqp-parent.uop-open .czm-drop{
      max-height:500px;
    }

    .czm-drop li a{
      color:#5f5b57;
      padding:12px 34px;
      border-bottom:1px solid #eee9e4;
      font-size:14px;
      background:#faf8f5;
    }

    .czm-drop li a:hover{
      background:#f3f1ee;
      color:var(--vb1);
      padding-right:34px;
    }

    .mob-drawer-foot{
      display:block;
      opacity:0;
      transform:translateY(15px);
      transition:
        opacity .35s ease .28s,
        transform .35s ease .28s;
    }

    .wqn-nav.uop-open .mob-drawer-foot{
      opacity:1;
      transform:translateY(0);
    }
  }

  @media (max-width:767.98px){
    .mwx-row2 .jcl-wrap{
      padding:0 18px;
    }
  }

  @media (max-width:575.98px){
    .gxv-brand .main-logo{
      max-width:130px;
    }

    .mob-drawer-head .mob-brand .mob-logo{
      max-width:155px;
    }

    .fzt-burger{
      width:40px;
      height:40px;
      border-radius:8px;
    }

    .fzt-burger span{
      width:18px;
    }

    .wqn-nav{
      width:min(310px, 88vw);
    }
  }

  @media (max-width:380px){
    .gxv-brand .main-logo{
      max-width:118px;
    }

    .wqn-nav > .jcl-wrap > .ovl-list > li > a{
      font-size:14.5px;
      padding:14px 18px;
    }
  }










  /* landing start */

.xv9-rm2{
  position:relative;
  width:100%;
  min-height:82vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#141515;
}

.pl4-nx8{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  transform:scale(1.02);
}

.bd3-vc6{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      180deg,
      rgba(20,21,21,.72) 0%,
      rgba(20,21,21,.58) 45%,
      rgba(20,21,21,.78) 100%
    );
}

.tn8-kq4{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1240px;
  padding:0 28px;
}

.jw2-lm9{
  min-height:82vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ca6-yp3{
  width:100%;
}

.rs5-hd7{
  max-width:820px;
  margin:0 auto;
  color:#fff;
  text-align:center;
  font-family:'Cairo', sans-serif;
}

.gf2-mn4{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#c18a68;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.gf2-mn4::before,
.gf2-mn4::after{
  content:"";
  width:34px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.zt8-wq1{
  color:#fff;
  font-size:clamp(34px, 4.5vw, 62px);
  font-weight:900;
  line-height:1.25;
  margin:0 0 18px;
}

.uv3-ra9{
  color:#e7e0da;
  font-size:17px;
  font-weight:500;
  line-height:2;
  max-width:760px;
  margin:0 auto;
}

.mh6-pt2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:28px;
  min-width:180px;
  height:50px;
  padding:0 28px;
  background:#c18a68;
  color:#fff;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  border-radius:4px;
  box-shadow:0 10px 24px rgba(20,21,21,.22);
  transition:.25s ease;
}

.mh6-pt2:hover{
  background:#292928;
  color:#fff;
  transform:translateY(-2px);
}

.qk7-zp1{
  transform:translateY(40px);
  opacity:0;
  transition:transform .8s ease, opacity .8s ease;
}

.qk7-zp1.vb4-ts8{
  transform:translateY(0);
  opacity:1;
}

@media (max-width:991.98px){
  .xv9-rm2{
    min-height:74vh;
  }

  .jw2-lm9{
    min-height:74vh;
  }

  .tn8-kq4{
    padding:0 22px;
  }

  .rs5-hd7{
    max-width:100%;
  }

  .uv3-ra9{
    font-size:15.5px;
    line-height:1.9;
  }
}

@media (max-width:575.98px){
  .xv9-rm2{
    min-height:68vh;
  }

  .jw2-lm9{
    min-height:68vh;
    align-items:center;
    justify-content:center;
  }

  .tn8-kq4{
    padding:0 18px;
  }

  .pl4-nx8{
    object-position:center;
  }

  .bd3-vc6{
    background:
      linear-gradient(
        180deg,
        rgba(20,21,21,.62) 0%,
        rgba(20,21,21,.72) 48%,
        rgba(20,21,21,.86) 100%
      );
  }

  .gf2-mn4{
    font-size:10.5px;
    letter-spacing:1.4px;
    margin-bottom:10px;
  }

  .gf2-mn4::before,
  .gf2-mn4::after{
    width:24px;
  }

  .zt8-wq1{
    font-size:27px;
    line-height:1.45;
    margin-bottom:12px;
  }

  .uv3-ra9{
    font-size:14px;
    line-height:1.9;
  }

  .mh6-pt2{
    min-width:170px;
    height:46px;
    margin-top:22px;
    font-size:14px;
  }
}

/* landing end */






/* about company section start */

.rv7-mq2{
  --c1:#141515;
  --c2:#292928;
  --c3:#40403f;
  --c4:#837f7b;
  --c5:#c18a68;
  --bg:#f7f5f2;

  background:#f7f5f2;
  padding:74px 0;
  overflow:hidden;
}

.np4-xz9{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.kc8-dt5{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:52px;
  align-items:center;
}

.yx3-pw6{
  text-align:right;
  max-width:610px;
}

.gb9-ln1{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
}

.gb9-ln1::before{
  content:"";
  width:34px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.qt6-zr4{
  color:#141515;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.35;
  font-weight:900;
  margin:0 0 18px;
}

.fs2-vk8{
  color:#40403f;
  font-size:16px;
  line-height:2;
  font-weight:500;
  margin:0 0 14px;
}

.hd5-qa7{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  min-width:140px;
  height:46px;
  padding:0 24px;
  background:#292928;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  border-radius:4px;
  transition:.25s ease;
}

.hd5-qa7:hover{
  background:#c18a68;
  color:#fff;
}

.um1-ce3{
  position:relative;
  height:430px;
  overflow:hidden;
  border-radius:16px;
  background:#292928;
  box-shadow:0 14px 34px rgba(20,21,21,.10);
}

.lr6-bx2{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:scale(1.02);
  transition:
    opacity .8s ease,
    visibility .8s ease,
    transform 4s ease;
}

.lr6-bx2.active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:2;
}

.lr6-bx2::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(20,21,21,.04) 0%,
    rgba(20,21,21,.18) 100%
  );
  pointer-events:none;
}

.lr6-bx2 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width:991.98px){
  .rv7-mq2{
    padding:54px 0;
  }

  .np4-xz9{
    padding:0 18px;
  }

  .kc8-dt5{
    grid-template-columns:1fr;
    gap:30px;
  }

  .yx3-pw6{
    max-width:100%;
  }

  .um1-ce3{
    height:340px;
  }
}

@media (max-width:575.98px){
  .rv7-mq2{
    padding:40px 0;
  }

  .np4-xz9{
    padding:0 14px;
  }

  .gb9-ln1{
    font-size:13px;
    margin-bottom:10px;
  }

  .gb9-ln1::before{
    width:26px;
  }

  .qt6-zr4{
    font-size:24px;
    margin-bottom:14px;
  }

  .fs2-vk8{
    font-size:14px;
    line-height:1.9;
  }

  .hd5-qa7{
    width:100%;
    height:45px;
  }

  .um1-ce3{
    height:245px;
    border-radius:12px;
  }
}

/* about company section end */






/* clients section start */

.kl9-vx2{
  --c1:#141515;
  --c2:#292928;
  --c3:#40403f;
  --c4:#837f7b;
  --c5:#c18a68;
  --bg:#f7f5f2;

  background:#fff;
  padding:58px 0 64px;
  overflow:hidden;
}

.mw4-rs8{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.bn6-qe1{
  text-align:center;
  margin-bottom:30px;
}

.bn6-qe1 span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#292928;
  color:#fff;
  font-size:18px;
  font-weight:900;
  line-height:1;
  padding:7px 14px;
  margin-bottom:12px;
}

.bn6-qe1 h2{
  position:relative;
  color:#141515;
  font-size:26px;
  font-weight:900;
  line-height:1.4;
  margin:0;
}

.bn6-qe1 h2::after{
  content:"";
  display:block;
  width:64px;
  height:2px;
  background:#c18a68;
  margin:14px auto 0;
  border-radius:20px;
}

.tr5-hm3{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
}

.oy8-dp4{
  width:100%;
  overflow:hidden;
}

.sg3-nw5{
  display:flex;
  gap:14px;
  direction:ltr;
  transition:transform .45s ease;
  will-change:transform;
}

.cx7-zr1{
  flex:0 0 calc((100% - 56px) / 5);
  height:108px;
  background:#fff;
  border:1px solid #e7e2dd;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 28px;
  transition:.25s ease;
}

.cx7-zr1:hover{
  border-color:rgba(193,138,104,.55);
  box-shadow:0 16px 34px rgba(20,21,21,.08);
  transform:translateY(-3px);
}

.cx7-zr1 img{
  max-width:100%;
  max-height:58px;
  object-fit:contain;
  display:block;
  filter:grayscale(100%);
  opacity:.78;
  transition:.25s ease;
}

.cx7-zr1:hover img{
  filter:grayscale(0%);
  opacity:1;
}

.pa2-lc7{
  flex:0 0 46px;
  width:46px;
  height:46px;
  border:none;
  background:#fff;
  color:#292928;
  font-size:30px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(20,21,21,.10);
  transition:.25s ease;
}

.pa2-lc7:hover{
  background:#292928;
  color:#fff;
}

@media (max-width:1100px){
  .cx7-zr1{
    flex-basis:calc((100% - 42px) / 4);
  }
}

@media (max-width:991.98px){
  .kl9-vx2{
    padding:48px 0 54px;
  }

  .mw4-rs8{
    padding:0 18px;
  }

  .cx7-zr1{
    flex-basis:calc((100% - 28px) / 3);
    height:100px;
  }

  .pa2-lc7{
    flex-basis:42px;
    width:42px;
    height:42px;
    font-size:27px;
  }
}

@media (max-width:575.98px){
  .kl9-vx2{
    padding:40px 0 44px;
  }

  .mw4-rs8{
    padding:0 14px;
  }

  .bn6-qe1{
    margin-bottom:24px;
  }

  .bn6-qe1 span{
    font-size:16px;
  }

  .bn6-qe1 h2{
    font-size:21px;
  }

  .tr5-hm3{
    gap:8px;
  }

  .sg3-nw5{
    gap:10px;
  }

  .cx7-zr1{
    flex-basis:100%;
    height:104px;
    padding:20px 26px;
  }

  .pa2-lc7{
    flex-basis:38px;
    width:38px;
    height:38px;
    font-size:24px;
  }
}

/* clients section end */



/* testimonials section start */

.k1{
  --d1:#141515;
  --d2:#292928;
  --d3:#40403f;
  --d4:#837f7b;
  --d5:#c18a68;
  --bg:#f7f5f2;

  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
  padding:76px 0;
  overflow:hidden;
}

.k2{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.k3{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}

.ke{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
  position:relative;
}

.ke::after{
  content:"";
  position:absolute;
  right:50%;
  transform:translateX(50%);
  bottom:-10px;
  width:58px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.k4{
  color:#141515;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.35;
  font-weight:900;
  margin:22px 0 12px;
}

.k5{
  color:#5f5b57;
  font-size:15.5px;
  line-height:1.95;
  font-weight:500;
  margin:0 auto;
}

.k6{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.k7{
  min-width:0;
}

.k8{
  position:relative;
  height:100%;
  min-height:330px;
  padding:34px 30px 30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:right;
  overflow:hidden;
  border:1px solid #e8e2dc;
  box-shadow:0 16px 34px rgba(20,21,21,.07);
  transition:.28s ease;
}

.k8:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 46px rgba(20,21,21,.11);
}

.k9{
  background:
    linear-gradient(135deg, #141515 0%, #292928 58%, #40403f 100%);
  color:#fff;
  border-color:rgba(255,255,255,.08);
}

.k10{
  background:#fff;
  color:#141515;
}

.k8::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:5px;
  height:74px;
  background:#c18a68;
}

.k9::after{
  content:"";
  position:absolute;
  left:-70px;
  top:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(193,138,104,.10);
}

.k10::after{
  content:"";
  position:absolute;
  left:-70px;
  top:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(193,138,104,.08);
}

.ka{
  position:relative;
  z-index:2;
  color:#c18a68;
  font-size:62px;
  line-height:1;
  font-weight:900;
  margin-bottom:12px;
  font-family:serif;
}

.kb{
  position:relative;
  z-index:2;
  font-size:15px;
  line-height:2;
  font-weight:500;
  margin:0 0 26px;
}

.k9 .kb{
  color:#eee7e1;
}

.k10 .kb{
  color:#4f4c49;
}

.kf{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:auto;
}

.kg{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 46px;
  font-size:18px;
  font-weight:900;
}

.k9 .kg{
  background:rgba(193,138,104,.18);
  color:#f0c5a8;
  border:1px solid rgba(193,138,104,.35);
}

.k10 .kg{
  background:#f7f5f2;
  color:#c18a68;
  border:1px solid #eee6df;
}

.kc{
  font-size:17px;
  line-height:1.5;
  font-weight:900;
  margin:0 0 3px;
}

.k9 .kc{
  color:#fff;
}

.k10 .kc{
  color:#141515;
}

.kd{
  display:block;
  font-size:13px;
  line-height:1.6;
  font-weight:600;
}

.k9 .kd{
  color:#c9c3bd;
}

.k10 .kd{
  color:#837f7b;
}

@media (max-width:991.98px){
  .k1{
    padding:56px 0;
  }

  .k2{
    padding:0 18px;
  }

  .k6{
    grid-template-columns:1fr;
    gap:18px;
  }

  .k8{
    min-height:auto;
    padding:30px 26px;
  }
}

@media (max-width:575.98px){
  .k1{
    padding:42px 0;
  }

  .k2{
    padding:0 14px;
  }

  .k3{
    margin-bottom:26px;
  }

  .ke{
    font-size:13px;
  }

  .k4{
    font-size:24px;
    margin-top:20px;
  }

  .k5{
    font-size:14px;
    line-height:1.85;
  }

  .k8{
    padding:26px 22px;
  }

  .ka{
    font-size:46px;
  }

  .kb{
    font-size:14px;
    line-height:1.9;
  }

  .kc{
    font-size:16px;
  }

  .kd{
    font-size:12.5px;
  }
}

/* testimonials section end */




/* contact section start */

.qh2-vm7{
  --a1:#141515;
  --a2:#292928;
  --a3:#40403f;
  --a4:#837f7b;
  --a5:#c18a68;
  --bg:#f7f5f2;

  background:#f7f5f2;
  padding:76px 0;
  overflow:hidden;
}

.ra9-kp4{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.bn6-xd1{
  max-width:780px;
  margin:0 auto 38px;
  text-align:center;
}

.hp4-zl8{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
  position:relative;
}

.hp4-zl8::after{
  content:"";
  position:absolute;
  right:50%;
  transform:translateX(50%);
  bottom:-10px;
  width:58px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.mf3-qa9{
  color:#141515;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.35;
  font-weight:900;
  margin:22px 0 12px;
}

.vc8-yn5{
  color:#5f5b57;
  font-size:15.5px;
  line-height:1.95;
  font-weight:500;
  margin:0 auto;
}

.ld7-we2{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  align-items:stretch;
}

.px5-rn3,
.sc6-uj2{
  background:#fff;
  border:1px solid #e8e2dc;
  box-shadow:0 16px 34px rgba(20,21,21,.07);
}

.px5-rn3{
  padding:30px;
}

.tr2-hk6{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gm9-cp4{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.gm9-cp4.full{
  grid-column:1 / -1;
}

.gm9-cp4 label{
  color:#141515;
  font-size:14px;
  font-weight:800;
}

.gm9-cp4 input,
.gm9-cp4 select,
.gm9-cp4 textarea{
  width:100%;
  border:1px solid #e3ddd7;
  background:#fbfaf8;
  color:#141515;
  outline:none;
  padding:14px 15px;
  font-family:'Cairo', sans-serif;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
}

.gm9-cp4 input,
.gm9-cp4 select{
  height:50px;
}

.gm9-cp4 textarea{
  resize:vertical;
  min-height:130px;
  line-height:1.8;
}

.gm9-cp4 input:focus,
.gm9-cp4 select:focus,
.gm9-cp4 textarea:focus{
  border-color:#c18a68;
  background:#fff;
  box-shadow:0 0 0 3px rgba(193,138,104,.12);
}

.zw1-bt8{
  grid-column:1 / -1;
  height:52px;
  border:none;
  background:#292928;
  color:#fff;
  font-family:'Cairo', sans-serif;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease;
}

.zw1-bt8:hover{
  background:#c18a68;
  color:#fff;
  transform:translateY(-2px);
}

.ny4-fs7{
  grid-column:1 / -1;
  color:#837f7b;
  font-size:13px;
  line-height:1.7;
  font-weight:600;
  margin:0;
  display:none;
}

.sc6-uj2{
  padding:34px;
  background:
    linear-gradient(135deg, #141515 0%, #292928 58%, #40403f 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.sc6-uj2::before{
  content:"";
  position:absolute;
  left:-90px;
  top:-90px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(193,138,104,.11);
}

.de8-wq5{
  position:relative;
  z-index:2;
  margin-bottom:28px;
}

.de8-wq5 span{
  display:inline-flex;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
}

.de8-wq5 h3{
  color:#fff;
  font-size:28px;
  line-height:1.4;
  font-weight:900;
  margin:0 0 12px;
}

.de8-wq5 p{
  color:#d6d0ca;
  font-size:15px;
  line-height:1.95;
  font-weight:500;
  margin:0;
}

.kt4-mb9{
  position:relative;
  z-index:2;
  display:grid;
  gap:14px;
}

.yu7-cr1{
  display:block;
  padding:18px 18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  transition:.25s ease;
}

a.yu7-cr1:hover{
  background:rgba(193,138,104,.14);
  border-color:rgba(193,138,104,.32);
  transform:translateX(-4px);
}

.yu7-cr1 strong{
  display:block;
  color:#fff;
  font-size:15px;
  font-weight:900;
  margin-bottom:6px;
}

.yu7-cr1 span{
  display:block;
  color:#cfc8c1;
  font-size:13.5px;
  line-height:1.7;
  font-weight:600;
}

.fp2-le6{
  margin-top:24px;
  height:390px;
  overflow:hidden;
  border:1px solid #e8e2dc;
  box-shadow:0 16px 34px rgba(20,21,21,.07);
  background:#fff;
}

.fp2-le6 iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:grayscale(20%);
}

@media (max-width:991.98px){
  .qh2-vm7{
    padding:56px 0;
  }

  .ra9-kp4{
    padding:0 18px;
  }

  .ld7-we2{
    grid-template-columns:1fr;
  }

  .px5-rn3{
    order:1;
  }

  .sc6-uj2{
    order:2;
  }

  .fp2-le6{
    height:330px;
  }
}

@media (max-width:575.98px){
  .qh2-vm7{
    padding:42px 0;
  }

  .ra9-kp4{
    padding:0 14px;
  }

  .bn6-xd1{
    margin-bottom:26px;
  }

  .hp4-zl8{
    font-size:13px;
  }

  .mf3-qa9{
    font-size:24px;
    margin-top:20px;
  }

  .vc8-yn5{
    font-size:14px;
    line-height:1.85;
  }

  .px5-rn3,
  .sc6-uj2{
    padding:22px;
  }

  .tr2-hk6{
    grid-template-columns:1fr;
    gap:15px;
  }

  .de8-wq5 h3{
    font-size:22px;
  }

  .de8-wq5 p{
    font-size:14px;
    line-height:1.85;
  }

  .fp2-le6{
    height:280px;
  }
}


/* contact fixes */

.qh2-vm7,
.qh2-vm7 *{
  direction:rtl;
}

.bn6-xd1,
.px5-rn3,
.sc6-uj2,
.de8-wq5,
.kt4-mb9,
.yu7-cr1,
.gm9-cp4,
.ny4-fs7{
  text-align:right;
}

.tr2-hk6{
  direction:rtl;
}

.gm9-cp4 input,
.gm9-cp4 select,
.gm9-cp4 textarea{
  text-align:right;
  direction:rtl;
}

#dwPhone{
  direction:ltr;
  text-align:right;
}

.zw1-bt8{
  background:#c18a68 !important;
  color:#ffffff !important;
  border:1px solid #c18a68 !important;
  opacity:1 !important;
  visibility:visible !important;
}

.zw1-bt8:hover{
  background:#141515 !important;
  border-color:#141515 !important;
  color:#ffffff !important;
  transform:translateY(-2px);
}

.yu7-cr1 span{
  text-align:right;
}

.wm9-ph{
  direction:ltr;
  unicode-bidi:isolate;
  text-align:right;
  display:block;
}


/* contact section end */


/* footer start */

.pm8-xr2{
  --f1:#141515;
  --f2:#292928;
  --f3:#40403f;
  --f4:#837f7b;
  --f5:#c18a68;
  --white:#ffffff;

  background:
    linear-gradient(135deg, #141515 0%, #292928 55%, #40403f 100%);
  color:#fff;
  overflow:hidden;
}

.vg4-tn7{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

/* newsletter */

.bs6-qw3{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:28px;
  align-items:center;
  padding:42px 0 36px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.hd9-la5{
  text-align:right;
}

.hd9-la5 h2{
  color:#fff;
  font-size:26px;
  line-height:1.45;
  font-weight:900;
  margin:0 0 8px;
}

.hd9-la5 p{
  color:#d8d2cc;
  font-size:15px;
  line-height:1.8;
  font-weight:500;
  margin:0;
}

.kf2-md8{
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  padding:6px;
  height:60px;
}

.kf2-md8 input{
  width:100%;
  height:100%;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
  padding:0 16px;
  font-family:'Cairo', sans-serif;
  font-size:14px;
  font-weight:600;
  text-align:right;
  direction:rtl;
}

.kf2-md8 input::placeholder{
  color:#c8c1bb;
}

.kf2-md8 button{
  flex:0 0 118px;
  height:48px;
  border:none;
  background:#c18a68;
  color:#fff;
  font-family:'Cairo', sans-serif;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease;
}

.kf2-md8 button:hover{
  background:#fff;
  color:#141515;
}

/* columns */

.tr7-bc1{
  display:grid;
  grid-template-columns:1.3fr .8fr .95fr 1.1fr;
  gap:42px;
  padding:42px 0 38px;
}

.zn5-yu8{
  text-align:right;
}

.zn5-yu8 h3{
  position:relative;
  color:#fff;
  font-size:18px;
  line-height:1.5;
  font-weight:900;
  margin:0 0 24px;
  padding-bottom:12px;
}

.zn5-yu8 h3::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:48px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.zn5-yu8 p{
  color:#d8d2cc;
  font-size:14.5px;
  line-height:2;
  font-weight:500;
  margin:0;
}

.cv1-eq9,
.yb4-ps2{
  list-style:none;
  padding:0;
  margin:0;
}

.cv1-eq9 li{
  margin-bottom:11px;
}

.cv1-eq9 a{
  position:relative;
  display:inline-flex;
  color:#d8d2cc;
  text-decoration:none;
  font-size:14.5px;
  line-height:1.7;
  font-weight:600;
  transition:.25s ease;
  padding-right:14px;
}

.cv1-eq9 a::before{
  content:"-";
  position:absolute;
  right:0;
  color:#c18a68;
}

.cv1-eq9 a:hover{
  color:#c18a68;
  transform:translateX(-4px);
}

.yb4-ps2 li{
  margin-bottom:16px;
}

.yb4-ps2 span{
  display:block;
  color:#c18a68;
  font-size:13px;
  line-height:1.6;
  font-weight:900;
  margin-bottom:4px;
}

.yb4-ps2 a,
.yb4-ps2 p{
  display:block;
  color:#d8d2cc;
  text-decoration:none;
  font-size:14.5px;
  line-height:1.8;
  font-weight:600;
  margin:0;
  transition:.25s ease;
}

.yb4-ps2 a:hover{
  color:#fff;
}

.nm8-phone{
  direction:ltr;
  unicode-bidi:isolate;
  text-align:right;
}

/* social */

.aw3-rk6{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin-top:22px;
}

.aw3-rk6 a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  transition:.25s ease;
  text-transform:uppercase;
}

.aw3-rk6 a:hover{
  background:#c18a68;
  color:#fff;
  transform:translateY(-3px);
}

/* bottom */

.ux2-hm5{
  background:rgba(20,21,21,.34);
  border-top:1px solid rgba(255,255,255,.08);
}

.ux2-inner{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ux2-inner p{
  color:#d8d2cc;
  font-size:13.5px;
  line-height:1.8;
  font-weight:600;
  margin:0;
}

.lb7-up4{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#c18a68;
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  transition:.25s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lb7-up4:hover{
  background:#fff;
  color:#141515;
  transform:translateY(-3px);
}

@media (max-width:991.98px){
  .vg4-tn7{
    padding:0 18px;
  }

  .bs6-qw3{
    grid-template-columns:1fr;
    gap:18px;
    padding:34px 0 30px;
  }

  .kf2-md8{
    max-width:100%;
  }

  .tr7-bc1{
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:34px 0;
  }
}

@media (max-width:575.98px){
  .vg4-tn7{
    padding:0 14px;
  }

  .bs6-qw3{
    padding:30px 0 26px;
  }

  .hd9-la5 h2{
    font-size:22px;
  }

  .hd9-la5 p{
    font-size:14px;
  }

  .kf2-md8{
    height:auto;
    padding:6px;
    flex-direction:column;
    gap:6px;
  }

  .kf2-md8 input{
    height:46px;
  }

  .kf2-md8 button{
    width:100%;
    flex:auto;
    height:44px;
  }

  .tr7-bc1{
    grid-template-columns:1fr;
    gap:28px;
    padding:32px 0;
  }

  .zn5-yu8 h3{
    margin-bottom:18px;
  }

  .ux2-inner{
    min-height:auto;
    padding-top:14px;
    padding-bottom:14px;
    flex-direction:column;
    text-align:center;
  }

  .aw3-rk6{
    justify-content:flex-start;
  }
}

/* footer end */






/* contact page hero start */

.zx8-hero{
  --c1:#141515;
  --c2:#292928;
  --c3:#40403f;
  --c4:#837f7b;
  --c5:#c18a68;

  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(20,21,21,.94), rgba(41,41,40,.92)),
    url("assets/images/contact-hero.webp") center/cover no-repeat;
  padding:92px 0 86px;
}

.zx8-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(193,138,104,.10), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(20,21,21,.22) 100%);
  pointer-events:none;
}

.lm4-wrap{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.qr7-text{
  max-width:760px;
  text-align:right;
}

.bn2-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:14px;
}

.bn2-tag::before{
  content:"";
  width:36px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.qr7-text h1{
  color:#fff;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.25;
  font-weight:900;
  margin:0 0 16px;
}

.qr7-text p{
  color:#e2dcd6;
  font-size:16.5px;
  line-height:2;
  font-weight:500;
  max-width:720px;
  margin:0 0 22px;
}

.vp9-links{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
}

.vp9-links a{
  color:#fff;
  text-decoration:none;
  transition:.25s ease;
}

.vp9-links a:hover{
  color:#c18a68;
}

.vp9-links span{
  color:#837f7b;
}

.vp9-links strong{
  color:#c18a68;
  font-weight:900;
}

@media (max-width:991.98px){
  .zx8-hero{
    padding:72px 0 68px;
  }

  .lm4-wrap{
    padding:0 18px;
  }

  .qr7-text p{
    font-size:15.5px;
    line-height:1.9;
  }
}

@media (max-width:575.98px){
  .zx8-hero{
    padding:58px 0 54px;
  }

  .lm4-wrap{
    padding:0 14px;
  }

  .bn2-tag{
    font-size:13px;
    margin-bottom:10px;
  }

  .bn2-tag::before{
    width:28px;
  }

  .qr7-text h1{
    font-size:30px;
    margin-bottom:12px;
  }

  .qr7-text p{
    font-size:14px;
    line-height:1.9;
    margin-bottom:18px;
  }

  .vp9-links{
    font-size:13px;
  }
}

/* contact page hero end */




/* about value section start */

.mx7-pq2{
  --c1:#141515;
  --c2:#292928;
  --c3:#40403f;
  --c4:#837f7b;
  --c5:#c18a68;
  --bg:#f7f5f2;

  background:#ffffff;
  padding:76px 0;
  overflow:hidden;
}

.rt4-wk9{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.bn8-zc1{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:58px;
  align-items:center;
}

.hp6-yd3{
  text-align:right;
  max-width:620px;
}

.lf2-nm8{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#c18a68;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
}

.lf2-nm8::before{
  content:"";
  width:34px;
  height:2px;
  background:#c18a68;
  border-radius:20px;
}

.qw5-xr4{
  color:#141515;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.4;
  font-weight:900;
  margin:0 0 18px;
}

.gv9-ta6{
  color:#40403f;
  font-size:16px;
  line-height:2.05;
  font-weight:500;
  margin:0 0 14px;
}

.js3-bt7{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  min-width:160px;
  height:46px;
  padding:0 24px;
  background:#292928;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  border-radius:4px;
  transition:.25s ease;
}

.js3-bt7:hover{
  background:#c18a68;
  color:#fff;
}

.vc4-lp6{
  position:relative;
  display:grid;
  gap:16px;
}

.vc4-lp6::before{
  content:"";
  position:absolute;
  right:31px;
  top:30px;
  bottom:30px;
  width:1px;
  background:#e6dfd8;
}

.de2-hr5{
  position:relative;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:flex-start;
  background:#f7f5f2;
  border:1px solid #e8e2dc;
  padding:22px 22px;
  transition:.25s ease;
}

.de2-hr5:hover{
  border-color:rgba(193,138,104,.45);
  background:#fff;
  box-shadow:0 14px 30px rgba(20,21,21,.06);
}

.de2-hr5 span{
  position:relative;
  z-index:2;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#292928;
  color:#fff;
  font-size:13px;
  font-weight:900;
  border-radius:50%;
  border:4px solid #ffffff;
}

.de2-hr5 h3{
  color:#141515;
  font-size:18px;
  line-height:1.5;
  font-weight:900;
  margin:0 0 7px;
}

.de2-hr5 p{
  color:#5f5b57;
  font-size:14.5px;
  line-height:1.85;
  font-weight:500;
  margin:0;
}

@media (max-width:991.98px){
  .mx7-pq2{
    padding:56px 0;
  }

  .rt4-wk9{
    padding:0 18px;
  }

  .bn8-zc1{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hp6-yd3{
    max-width:100%;
  }
}

@media (max-width:575.98px){
  .mx7-pq2{
    padding:42px 0;
  }

  .rt4-wk9{
    padding:0 14px;
  }

  .lf2-nm8{
    font-size:13px;
    margin-bottom:10px;
  }

  .lf2-nm8::before{
    width:26px;
  }

  .qw5-xr4{
    font-size:24px;
    margin-bottom:14px;
  }

  .gv9-ta6{
    font-size:14px;
    line-height:1.95;
  }

  .js3-bt7{
    width:100%;
    height:45px;
  }

  .vc4-lp6::before{
    right:25px;
  }

  .de2-hr5{
    grid-template-columns:52px 1fr;
    gap:14px;
    padding:18px 16px;
  }

  .de2-hr5 span{
    width:40px;
    height:40px;
    font-size:12px;
  }

  .de2-hr5 h3{
    font-size:16px;
  }

  .de2-hr5 p{
    font-size:13.5px;
    line-height:1.8;
  }
}

/* about value section end */




/* content page style start */

.vvvvvvv1{
  background:#ffffff;
  padding:70px 0;
  direction:rtl;
  text-align:right;
}

.vvvvvvv2{
  max-width:980px;
  margin:0 auto;
  padding:0 28px;
}

.vvvvvvv1 h2{
  color:#141515;
  font-size:30px;
  line-height:1.5;
  font-weight:900;
  margin:0 0 18px;
}

.vvvvvvv1 h2:not(:first-child){
  margin-top:48px;
}

.vvvvvvv1 h3{
  color:#292928;
  font-size:22px;
  line-height:1.6;
  font-weight:800;
  margin:30px 0 12px;
}

.vvvvvvv1 p{
  color:#40403f;
  font-size:16px;
  line-height:2.05;
  font-weight:500;
  margin:0 0 16px;
}

.vvvvvvv1 ul,
.vvvvvvv1 ol{
  margin:18px 0 24px;
  padding:0;
  list-style:none;
}

.vvvvvvv1 li{
  position:relative;
  color:#40403f;
  font-size:15.5px;
  line-height:2;
  font-weight:500;
  margin-bottom:10px;
  padding-right:24px;
}

.vvvvvvv1 ul li::before{
  content:"";
  position:absolute;
  right:0;
  top:15px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#c18a68;
}

.vvvvvvv1 ol{
  counter-reset:vvvvvvv4;
}

.vvvvvvv1 ol li{
  counter-increment:vvvvvvv4;
  padding-right:34px;
}

.vvvvvvv1 ol li::before{
  content:counter(vvvvvvv4);
  position:absolute;
  right:0;
  top:6px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#292928;
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  line-height:24px;
  text-align:center;
}

.vvvvvvv1 strong{
  color:#141515;
  font-weight:900;
}

.vvvvvvv3{
  margin:26px 0 34px;
}

.vvvvvvv3 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  min-height:46px;
  padding:0 24px;
  background:#c18a68;
  color:#ffffff;
  text-decoration:none;
  font-size:14.5px;
  font-weight:800;
  border-radius:4px;
  transition:.25s ease;
}

.vvvvvvv3 a:hover{
  background:#292928;
  color:#ffffff;
}

.vvvvvvv1 a{
  color:#c18a68;
}

.vvvvvvv1 a:hover{
  color:#292928;
}

@media (max-width:991.98px){
  .vvvvvvv1{
    padding:54px 0;
  }

  .vvvvvvv2{
    padding:0 22px;
  }

  .vvvvvvv1 h2{
    font-size:26px;
  }

  .vvvvvvv1 h3{
    font-size:20px;
  }

  .vvvvvvv1 p,
  .vvvvvvv1 li{
    font-size:15px;
  }
}

@media (max-width:575.98px){
  .vvvvvvv1{
    padding:40px 0;
  }

  .vvvvvvv2{
    padding:0 16px;
  }

  .vvvvvvv1 h2{
    font-size:23px;
    line-height:1.55;
  }

  .vvvvvvv1 h2:not(:first-child){
    margin-top:38px;
  }

  .vvvvvvv1 h3{
    font-size:18px;
    margin-top:24px;
  }

  .vvvvvvv1 p{
    font-size:14px;
    line-height:1.95;
  }

  .vvvvvvv1 li{
    font-size:14px;
    line-height:1.9;
    padding-right:22px;
  }

  .vvvvvvv1 ul li::before{
    top:13px;
  }

  .vvvvvvv3 a{
    width:100%;
    min-height:45px;
  }
}

/* fix CTA button text */

.vvvvvvv1 .vvvvvvv3 a{
  background:#c18a68 !important;
  color:#ffffff !important;
  border:1px solid #c18a68 !important;
  text-decoration:none !important;
}

.vvvvvvv1 .vvvvvvv3 a:hover{
  background:#292928 !important;
  color:#ffffff !important;
  border-color:#292928 !important;
}

/* content page style end */