/* ===== إصلاحات عرض الجوال (ضعها في نهاية الملف) ===== */
@media (max-width: 575.98px) {
  html, body { overflow-x: hidden; }

  /* شريط علوي أخف وتغليف العناصر بدل التزاحم */
  .top { padding: 6px 10px; }
  .top .top-contact ul,
  .top .top-social ul,
  .top .top-profile ul { flex-wrap: wrap; gap: 8px; }
  .top .top-contact li,
  .top .top-social li,
  .top .top-profile li { margin-right: 8px; font-size: 12px; }
  .top .top-profile li a { font-size: 12px; }
  .top .cart .number { top: -6px; left: -6px; font-size: 10px; }

  /* تصحيح اتجاه القوائم المنسدلة على الشاشات الصغيرة */
  .dropdown-menu-end { right: 0 !important; left: auto !important; }

  /* ترويسة/نـاف بار ثابتة فوق */
  .mobile-nav,
  .navbar-area,
  .navbar-area .main-nav,
  .navbar-area .main-nav .navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  /* تقليل ارتفاع الهيدر والسلايدر لمنع الفراغ الأبيض */
  .banner-area .banner-slider-item,
  .slider-table { height: 300px !important; }
  .slider-video iframe { height: 240px !important; }

  /* مسافات أهدأ داخل المحتوى */
  .page-content { padding: 20px 0 !important; }

  /* صور العناصر تتأقلم بدون قص زائد */
  .service-item .photo img,
  .project-item .photo img,
  .product-item .photo img { height: 180px !important; object-fit: cover; }

  /* صور المقال/الواحد: ملء العرض وعدم دفع المحتوى لأسفل */
  .single-section .featured-photo img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  /* روابط الناف بار أصغر وتباعد أقل */
  .navbar .nav-link { padding: .6rem .75rem; font-size: 14px; }
  .main-nav nav .navbar-nav .nav-item { padding-top: 12px; padding-bottom: 12px; }
}

/* منع أي تمرير أفقي على جميع المقاسات بسبب عناصر أوسع من الشاشة */
*, *::before, *::after { box-sizing: border-box; }



*/
/* ===== Header normalizer (override theme dark defaults) ===== */
.navbar-area,
.navbar-area .main-nav,
.navbar-area .main-nav .navbar {
  background:#fff;
  border-bottom:1px solid #e8eef6;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.navbar .navbar-brand img{height:40px; width:auto}

.navbar .navbar-nav{align-items:center; gap:8px}
.navbar .nav-link{
  color:#32425a;
  padding:.75rem 1rem;
  border-radius:10px;
  transition:background .2s ease,color .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color:#1d5bbf;
  background:rgba(29,91,191,.06);
}

.dropdown-menu{
  text-align:right;
  background:#fff;
  border:1px solid #e8eef6;
  border-radius:12px;
  box-shadow:0 16px 40px rgba(11,42,91,.16);
  padding:.5rem; min-width:220px;
}
.dropdown-item{border-radius:8px; color:#0b234d}
.dropdown-item:hover{background:rgba(29,91,191,.08); color:#1d5bbf}

/* RTL: افتح القائمة لليسار */
.dropdown-menu-end{right:auto; left:0}

/* Top bar تحسين */
.top{background:#0b1f33; color:#eef3ff; font-size:.95rem}
.top a{color:#fff}
.top .top-contact ul,
.top .top-right,
.top .top-social ul,
.top .top-profile ul{display:flex; align-items:center; gap:16px; padding:8px 0}
.top .cart{position:relative}
.top .cart .number{
  position:absolute; top:-8px; left:-10px; background:#ff4757; color:#fff;
  border-radius:999px; padding:0 6px; font-size:.72rem; line-height:1.4
}

/* Mobile strip متجانس */
.mobile-nav{
  background:#fff; border-bottom:1px solid #e8eef6; padding:10px 16px;
}
.mobile-nav .logo img{height:36px}

.service-item {
	
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 90%;
    display: flex;
    flex-direction: column;
	 margin-bottom: 30px; /* مسافة 30 بكسل أسفل كل بطاقة */
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* الصورة */
.service-item .photo {
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.service-item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item:hover .photo img {
    transform: scale(1.08);
}

/* النص */
.service-item .text {
	text-align: right;
    padding: 20px;
    flex-grow: 1;
  
    flex-direction: column;
}

.service-item .text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a237e; /* كحلي */
    transition: color 0.3s ease;
}

.service-item .text h3 a {
    text-decoration: none;
    color: inherit;
}

.service-item:hover .text h3 {
    color: #3949ab; /* لون أزرق فاتح عند التمرير */
}

/* وصف مختصر */
.service-item .text p,
.service-item .text > :not(h3):not(.read-more) {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* زر المزيد */
.service-item .read-more {
    margin-top: 15px;
    text-align: left;
}

.service-item .read-more a {
    color: #3949ab;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.service-item .read-more a:hover {
    color: #1a237e;
    border-color: #1a237e;
}

/* الترقيم Pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.pagination .page-link {
    display: block;
    padding: 10px 16px;
    background-color: #fff;
    color: #3949ab;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    border: 1px solid transparent;
}

.pagination .page-link:hover {
    background-color: #3949ab;
    color: #fff;
    border-color: #3949ab;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    cursor: not-allowed;
    background-color: #f0f0f0;
    border-color: #ddd;
}

.pagination .page-item.active .page-link {
    background-color: #1a237e;
    color: #fff;
    border-color: #1a237e;
}

/* استجابة */
@media (max-width: 767px) {
    .service-item .photo img {
        height: 180px;
    }
}












.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

/* الخط الكحلي الأساسي */
.navbar-nav .nav-link::after,
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0f52ba;
  transition: 0.3s ease;
}

/* عند تمرير أو عند كونه active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
  right: auto;
}

 
 
 :root {
      --main-blue: #0f52ba;
      --light-blue: #74b9ff;
      --text-dark: #0a1a3b;
      --glass-bg: rgba(255, 255, 255, 0.88);
    }







.header-glow-line {
      height: 6px;
      background: linear-gradient(to left, #0f52ba, #74b9ff);
      box-shadow: 0 0 14px rgba(0, 102, 255, 0.25);
    }






@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Regular.woff2') format('woff2'),
       url('fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.why-us-section {
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  padding: 80px 20px;
  direction: rtl;
  font-family: 'Almarai', sans-serif;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
	font-family:'Cairo' ;
  font-size: 36px;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #777;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease-in-out;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.feature-card .icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Cairo';
}


.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* دائرة كاملة */
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.icon-wrapper:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 30px rgba(99, 102, 241, 0.6);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* شكل دائري متطابق مع الإطار */
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}













/* ===== قسم الخدمات - تصميم صغير وأنيق ===== */
.service {
  padding: 40px 0;
  background-color: #fafaff;
  font-family: 'Cairo', sans-serif;
  color: #333;
}

.service .heading h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.3rem;
  color: #222;
  text-align: center;
}

.service .heading h3 {
  font-weight: 500;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.service-carousel .service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px 20px;
  margin: 10px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.service-carousel .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(102,16,242,0.15);
}

/* الصور دائرية وصغيرة */
.service-item .photo {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(102,16,242,0.2);
  transition: box-shadow 0.3s ease;
}

.service-item:hover .photo {
  box-shadow: 0 6px 18px rgba(102,16,242,0.35);
}

.service-item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.service-item:hover .photo img {
  transform: scale(1.07);
}

.service-item .text h3 {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 6px;
  font-weight: 700;
  text-align:right;
}

.service-item .text h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-item .text h3 a:hover {
  color: #6610f2;
}

.service-item .text p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: right;
  flex-grow: 1;
}

.service-item .read-more a {
  font-weight: 600;
  color: #6610f2;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid #6610f2;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.service-item .read-more a:hover {
  background-color: #6610f2;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .service-item .photo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  .service .heading h2 {
    font-size: 1.7rem;
  }
  .service .heading h3 {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .service-item .text h3 {
    font-size: 1rem;
  }
  .service-item .text p {
    font-size: 0.85rem;
  }
  .service-item .read-more a {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}






































.type-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.type-2 ul li {
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid #f0f0f5;
}

.type-2 ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 16, 242, 0.1);
  border-color: #ebe9f8;
  background-color: #fefeff;
}

.type-2 ul li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(102, 16, 242, 0.15);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.type-2 ul li:hover img {
  transform: scale(1.06);
}

.type-2 ul li a {
  color: #2f2f66;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.type-2 ul li a:hover {
  color: #6610f2;
  text-decoration: underline;
}























































.project {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* direction: rtl; للعربية */
}

.project .heading {
    text-align: center;
    margin-bottom: 40px;
}

.project .heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.project .heading h3 {
    font-size: 18px;
    color: #777;
    margin-top: 10px;
}

.project-carousel .project-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 15px;
    direction: rtl;
}

.project-carousel .project-item:hover {
    transform: translateY(-5px);
}

.project-carousel .photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-carousel .text {
    padding: 20px;
}

.project-carousel .text h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #222;
}

.project-carousel .text p {
    font-size: 14px;
    color: #555;
    height: 60px;
    overflow: hidden;
}

.project-carousel .read-more {
    margin-top: 15px;
}

.project-carousel .read-more a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.project-carousel .read-more a:hover {
    text-decoration: underline;
}
















.page-content {
    padding: 60px 0;
    background-color: #f0f2f5;
    direction: rtl;
}

.product-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.product-item .photo {
    height: 240px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item .photo img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-item:hover .photo img {
    transform: scale(1.05);
}

.product-item .text {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-item .text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
}

.product-item .text h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.product-item .text h3 a:hover {
    color: #007bff;
}

.product-item .price {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.product-item .price del {
    color: #999;
    margin-left: 8px;
    font-size: 14px;
}

.product-item .cart-button {
    margin-top: auto;
}

.product-item .cart-button form input[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: #fff;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.product-item .cart-button form input[type="submit"]:hover {
    background-color: #0056b3;
}

.product-item .stock-empty {
    display: block;
    background-color: #dc3545;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 8px;
}


























.page-content {
    padding: 60px 0;
    background-color: #f9f9f9;
    direction: rtl;
}

.single-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.single-section .featured-photo img {
	width: 20%;
	height: auto;

  margin-left: 330px;
 
    border-radius: 10px;
    margin-bottom: 20px;
	/* margin-right: 500px; */
}

.single-section .text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.single-section .text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar .widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.sidebar .type-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .type-2 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sidebar .type-2 ul li:last-child {
    border-bottom: none;
}

.sidebar .type-2 ul li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 10px;
}

.sidebar .type-2 ul li a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.sidebar .type-2 ul li a:hover {
    color: #0056b3;
}













/* التصفح Pagination    المشاريع*/
/* عام */

/* الحاوية */

/* شبكة البطاقات */
.row.project {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
 
}

/* بطاقة المشروع */
.project-item {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(46, 58, 89, 0.15);
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(46, 58, 89, 0.2);
}

/* الصورة */
.project-item .photo img {
  width: 100%;
  height: 370px;
  object-fit: contain;
  transition: scale 0.3s ease;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.project-item:hover .photo img {
  scale: 1.05;
}

/* محتوى النص */
.project-item .text {
  padding: 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.project-item h3 a {
  color: inherit;
  text-decoration: none;
}

.project-item:hover h3 a {
  color: #3b82f6;
}

.project-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
  min-height: 75px;
}

/* زر المزيد */
.project-item .read-more a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: text-decoration 0.3s ease;
  align-self: flex-start;
}

.project-item .read-more a:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination {
  display: flex;
 
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}



.pagination a, .pagination span {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  font-weight: 600;
  min-width: 44px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  color: #475569;
  background-color: #f9fafb;
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

.pagination a:hover {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
  box-shadow: 0 6px 12px rgb(59 130 246 / 0.5);
}

.pagination .active {
  background-color: #2563eb;
  border-color: #2563eb;
  color: white;
  cursor: default;
  box-shadow: 0 8px 16px rgb(37 99 235 / 0.6);
}

.pagination .disabled {
  cursor: not-allowed;
  color: #a1a1aa;
  background-color: #e4e4e7;
  border-color: #d4d4d8;
  box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .project-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .project-item .photo img {
    height: 180px;
  }
}



































h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #18253e;
}

p {
	text-align: justify;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.mtb-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

button:focus {
  outline: 0;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

.container {
  max-width: 1170px;
}

.common-btn {
  display: inline-block;
  color: #fff;
  background-color: #f93e45;
  padding: 12px 25px;
  font-weight: 500;
  border: 0;
  transition: 0.5s;
  opacity: 1 !important;
  z-index: 1;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.common-btn i {
  display: inline-block;
  font-size: 18px;
  margin-left: -1px;
  position: relative;
  top: 3px;
}
.common-btn:hover {
  color: #fff;
  background-color: #18253e;
}
.common-btn.two {
  border-radius: 30px;
}

.section-title {
  margin-bottom: 35px;
  text-align: center;
  margin-top: -5px;
  position: relative;
  z-index: 1;
}
.section-title .sub-title {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #f93e45;
}
.section-title h2 {
  font-size: 35px;
  margin-bottom: 0;
  line-height: 1.3;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.section-title p {
  margin-top: 10px;
  max-width: 595px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.section-title .counter-item {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
.section-title .counter-item h3 {
  font-size: 70px;
  color: #f93e45;
  margin-bottom: 0;
}
.section-title .counter-item h3 .odometer {
  font-family: "Playfair Display", serif;
}
.section-title .counter-item h3 .target {
  margin-left: -8px;
  position: relative;
  top: 17px;
}
.section-title .counter-item p {
  margin-bottom: 0;
  margin-top: 0;
}


.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: unset;
  padding: 12px 15px;
  color: #ffffff;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #f93e45;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: unset;
  right: -100%;
  top: 15px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover a {
  color: #f93e45;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  text-transform: unset;
  padding: 12px 15px;
  color: #18253e;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #f93e45;
}
.main-nav .dropdown-toggle::after {
  display: none;
}

.side-nav .left {
  display: inline-block;
  color: #fff;
  background-color: #232f4a;
  padding: 22px 25px;
  font-weight: 500;
}
.side-nav .left i {
  display: inline-block;
  font-size: 18px;
  margin-right: 2px;
  position: relative;
  top: 2px;
}
.side-nav .left.two {
  margin-left: -4px;
  background-color: #18253e;
  border-radius: 0 5px 5px 0;
}
.side-nav .left:hover {
  color: #fff;
  background-color: #f93e45;
}

/*-- Banner --*/
.banner-area {
  overflow: hidden;
}
.banner-area .owl-theme .owl-nav {
  margin-top: 0;
}
.banner-area .owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  left: 30px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 50px !important;
  border-radius: 5px;
  color: #fff !important;
  background-color: transparent !important;
  border: 1px solid #fff;
  transition: 0.5s;
  font-size: 30px;
}
.banner-area .owl-theme .owl-nav .owl-prev:hover {
  color: #fff !important;
  background-color: #f93e45 !important;
  border: 1px solid #f93e45;
}
.banner-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 48%;
  right: 30px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 50px !important;
  border-radius: 5px;
  color: #fff !important;
  background-color: transparent !important;
  border: 1px solid #fff;
  transition: 0.5s;
  font-size: 30px;
}
.banner-area .owl-theme .owl-nav .owl-next:hover {
  color: #fff !important;
  background-color: #f93e45 !important;
  border: 1px solid #f93e45;
}
.banner-area .owl-item.active .banner-content h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.7s;
}
.banner-area .banner-slider-item {
  height: 800px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}
.banner-area .banner-slider-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #18253e;
  opacity: 0.8;
}
.banner-area .tab .tabs_item {
  display: none;
}
.banner-area .tab .tabs_item:first-child {
  display: block;
}

.banner-slider-img-one {
  background-image: url("../images/banner/main1.jpg");
}

.banner-slider-img-two {
  background-image: url("../images/banner/main2.jpg");
}

.banner-slider-img-three {
  background-image: url("../images/banner/main3.jpg");
}

.banner-content {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.banner-content .banner-span {
  display: inline-block;
  color: #fff;
  background-color: #f93e45;
  font-weight: 500;
  border-radius: 30px;
  padding: 3px 18px;
  margin-bottom: 20px;
}
.banner-content h1 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.banner-content form .banner-form-tag {
  margin: 0;
  padding: 0;
  margin-bottom: 35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.banner-content form .banner-form-tag li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.banner-content form .banner-form-tag li.current a {
  color: #18253e;
  background-color: #fff;
}
.banner-content form .banner-form-tag li a {
  display: block;
  color: #fff;
  background-color: #18253e;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
}
.banner-content form .banner-form-tag li a:hover {
  color: #18253e;
  background-color: #fff;
}
.banner-content form .banner-form-area {
  position: relative;
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 210px;
}
.banner-content form .banner-form-area .col-lg-4 {
  position: relative;
}
.banner-content form .banner-form-area .col-lg-4:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80px;
  top: -15px;
  right: 0;
  border-right: 1px solid #e1e1e1;
}
.banner-content form .banner-form-area .form-group {
  position: relative;
}
.banner-content form .banner-form-area .form-group label {
  position: absolute;
  display: inline-block;
  top: 12px;
  right: 0;
  font-size: 20px;
  margin-bottom: 0;
}
.banner-content form .banner-form-area .form-group .form-control {
  height: 50px;
  border: 0;
  border-radius: 0;
  font-size: 15px;
}
.banner-content form .banner-form-area .form-group .form-control:focus {
  border: 0;
  box-shadow: none;
}
.banner-content form .banner-form-area .form-group .nice-select {
  width: 100%;
  border: 0;
  border-radius: 0;
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
}
.banner-content form .banner-form-area .form-group .nice-select .list {
  width: 100%;
  display: block;
  height: 160px;
  overflow-y: scroll;
}
.banner-content form .banner-form-area .form-group .nice-select ::-webkit-scrollbar {
  width: 5px;
}
.banner-content form .banner-form-area .form-group .nice-select ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.banner-content form .banner-form-area .form-group .nice-select ::-webkit-scrollbar-thumb {
  background: #888;
}
.banner-content form .banner-form-area .form-group .nice-select ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.banner-content form .banner-form-area .button-area {
  position: absolute;
  top: 15px;
  right: 20px;
}
.banner-content form .banner-form-area .button-area a {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  color: #18253e;
  background-color: #f0f2f9;
  border-radius: 5px;
  line-height: 57px;
  font-size: 30px;
  vertical-align: middle;
  margin-right: 10px;
}
.banner-content form .banner-form-area .button-area a:hover {
  color: #fff;
  background-color: #18253e;
}
.banner-content form .banner-form-area .button-area .common-btn {
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 45px;
  padding-left: 45px;
  vertical-align: middle;
}
.banner-content form .banner-form-area .button-area .common-btn i {
  top: 1px;
  margin-right: 3px;
}

/*-- Apartment --*/
.apartment-area .container-fluid {
  max-width: 1270px;
  margin-right: 0;
}
.apartment-area .owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  top: -75px;
  right: 105px;
}
.apartment-area .owl-theme .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 45px !important;
  border-radius: 5px;
  color: #18253e !important;
  background-color: transparent !important;
  border: 1px solid #18253e;
  transition: 0.5s;
  font-size: 30px;
}
.apartment-area .owl-theme .owl-nav .owl-prev:hover {
  color: #fff !important;
  background-color: #f93e45 !important;
  border: 1px solid #f93e45;
}
.apartment-area .owl-theme .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 45px !important;
  border-radius: 5px;
  color: #18253e !important;
  background-color: transparent !important;
  border: 1px solid #18253e;
  transition: 0.5s;
  font-size: 30px;
}
.apartment-area .owl-theme .owl-nav .owl-next:hover {
  color: #fff !important;
  background-color: #f93e45 !important;
  border: 1px solid #f93e45;
}
.apartment-area .section-title {
  text-align: left;
}
.apartment-area .section-title h2 {
  margin-left: 0;
}

.apartment-item {
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.apartment-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(24, 37, 62) 1%, rgba(255, 255, 255, 0) 93%);
  border-radius: 5px;
}
.apartment-item:hover .inner {
  bottom: 55px;
}
.apartment-item:hover .property-btn {
  opacity: 1;
  visibility: visible;
  left: 15px;
}
.apartment-item img {
  width: 100%;
  border-radius: 5px;
}
.apartment-item .inner {
  position: absolute;
  left: 0;
  bottom: -12px;
  z-index: 1;
  padding: 15px 15px 12px;
  transition: 0.5s;
}
.apartment-item .inner h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.apartment-item .inner h3 a {
  color: #fff;
}
.apartment-item .inner h3 a:hover {
  color: #f93e45;
}
.apartment-item .inner span {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.apartment-item .inner ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.apartment-item .inner ul li {
  list-style-type: none;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  border-right: 1px solid #fff;
  margin-right: 4px;
  padding-right: 8px;
}
.apartment-item .inner ul li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.apartment-item .inner .common-btn {
  opacity: 0;
  visibility: hidden;
}
.apartment-item .property-btn {
  position: relative;
  left: 0;
  bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

/*-- Choose --*/
.choose-area {
  background-image: url("../images/choose-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.choose-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #18253e;
  /* opacity: 0.8; */
  z-index: -1;
}
.choose-area:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 220px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}
.choose-area .section-title h2 {
  color: #fff;
  max-width: 100%;
}
.choose-area .section-title p {
  color: #fff;
}

.choose-item {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 30px 15px;
  margin-bottom: 30px;
  box-shadow: 0px 23px 20px -6px #f1ecec;
  transition: 0.5s;
}
.choose-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #18253e;
  transition: 0.5s;
  border-radius: 5px;
  z-index: -1;
}
.choose-item:hover {
  transform: translate(0, -5px);
}
.choose-item:hover:before {
  height: 100%;
  background-color: #0f6dc1;
}
.choose-item:hover i {
  color: #fff;
}
.choose-item:hover i:after {
  background-color: #fa6167;
}
.choose-item:hover h3 {
  color: #fff;
}
.choose-item:hover p {
  color: #fff;
}
.choose-item i {
  display: inline-block;
  font-size: 50px;
  line-height: 50px;
  position: relative;
  z-index: 1;
  color: #18253e;
  margin-bottom: 30px;
  transition: 0.5s;
}
.choose-item i:after {
  position: absolute;
  content: "";
  left: -15px;
  bottom: -15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #e5eeff;
  z-index: -1;
  transition: 0.5s;
}
.choose-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: 0.5s;
}
.choose-item p {
  margin-bottom: 0;
  transition: 0.5s;
}

/*-- Project --*/
.project-area .section-title {
  text-align: left;
  position: relative;
}
.project-area .section-title h2 {
  margin-left: 0;
}

.project-item {
  margin-bottom: 30px;
  text-align: center;
}
.project-item:hover .inner {
  background-color: #f93e45;
}
.project-item:hover .inner h3 a {
  color: #fff;
}
.project-item:hover .inner h3 a:hover {
  color: #18253e;
}
.project-item:hover .inner span {
  color: #fff;
}
.project-item a {
  display: block;
}
.project-item a img {
  width: 100%;
  border-radius: 5px;
}
.project-item .inner {
  background-color: #fff;
  box-shadow: 0px 23px 20px -6px #f1ecec;
  padding: 25px 15px;
  border-radius: 0 15px 15px 15px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -51px;
  position: relative;
  transition: 0.5s;
}
.project-item .inner h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.project-item .inner h3 a {
  color: #18253e;
}
.project-item .inner span {
  display: block;
  transition: 0.5s;
}

/*-- Find --*/
.find-area {
  background-image: url("../images/find-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.find-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #18253e;
  opacity: 0.8;
}
.find-area .find-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: -5px;
}
.find-area .find-content h2 {
  color: #fff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 35px;
  line-height: 1.3;
  margin-bottom: 30px;
  margin-top: -8px;
}
.find-area .find-content .common-btn {
  margin-left: 5px;
  margin-right: 5px;
}
.find-area .find-content .find-btn {
  background-color: #18253e;
}
.find-area .find-content .find-btn:hover {
  background-color: #f93e45;
}

/*-- Services --*/
.services-area {
  background-color: #f9f9f9;
  z-index: 1;
  position: relative;
}
.services-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 230px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}






































* {
	margin: 0;
	padding: 0;
}

body {
	
    font-family: 'Cairo', sans-serif;


	/* font-family: 'Sen', sans-serif; */
	color: #333;
	background: #fff;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
}

.slider-video iframe {
	width: 100%;
	height: 600px;
}


a {
	-webkit-transition: all 0.4s ease!important;
	transition: all 0.4s ease!important;
	text-decoration: none;
}

a:hover {
	text-decoration: none;	
}

.bg-lightblue {
	background: #f1f5f9;
}

.w-400 {
	width: 400px!important;
}
.w-300 {
	width: 300px!important;
}
.w-200 {
	width: 200px!important;
}
.w-100-p {
	width: 100%!important;
}
.w-auto {
	width: auto!important;
}

.h-70 {
	height: 70px!important;
}
.h-100 {
	height: 100px!important;
}
.h-200 {
	height: 200px!important;
}
.h-300 {
	height: 300px!important;
}

.bg_ffffff {
	background: #ffffff!important;
}
.bg_333333 {
	background: #333333!important;
}
.bg_f3f3f3 {
	background: #f3f3f3!important;
}
.bg_f58739 {
	background: #f58739!important;	
}

.c_f3f3f3 {
	color: #f3f3f3!important;	
}
.fz_40 {
	font-size: 40px!important;
}
.fw_700 {
	font-weight: 700!important;
}

.pos_r {position: relative!important;}



.btn-arf {
	color: #0d61af;
	border: 0;
}

.btn-arf:hover {
	background: #333!important;
}


.top {
	background: #031f5d;
	padding-top: 6px;
	margin-bottom: -4px;
}

.top-contact {
	color: #fff;
}

.top-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-contact li {
	display: inline-block;
	margin-right: 15px;
	margin-top: 5px;
	font-size: 14px;
}

.top-contact li:last-child {
	margin-right: 0;
}

.top-contact li i {
	vertical-align: middle;
	font-size: 14px;
}

.top-contact li span {
	margin-left: 8px;
}

.top-right {
	display: flex;
	justify-content: flex-end;
}

.top-social {
	direction: ltr;
	text-align: right;
	margin-right: 30px;
}

.top-social li {
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	margin-top: 5px;
}

.top-social li:last-child {
	margin-right: 0px;
}

.top-social a {
	display: block;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top-social a:hover {
	color: #022056;
}

.top-profile li {
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	margin-top: 5px;
	font-size: 14px;
}

.top-profile li a {
	/* padding-left: 40px; */
	color: #fff;
}
/* 
.top-profile li:last-child {
	margin-right: 50px;
} */

.top-profile li.cart {
	position: relative;
}

.top-profile li.cart .number {
	position: absolute;
	right: -18px;
	top: -6px;
	background: yellow;
	color: #333;
	width: 16px;
	height: 16px;
	line-height: 16px;
	border-radius: 16px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
	.top-contact,
	.top-contact ul {
		width: 100%;
	}

	.top-contact ul {
		text-align: center;
	}

	.top-social {
		margin-top: 10px;
	}

	.top-social,
	.top-social ul {
		width: 100%;
	}

	.top-social ul {
		text-align: center;
	}

	.top-right {
		display: block;
	}

	.top-profile ul {
		text-align: center;
		margin-top: -10px;
	}

	.top-profile ul li {
		display: inline-block;
	}
}



/* Main Nav */
.main-nav {
	direction: rtl;
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	background: #fff;
}

.main-nav .navbar {
	padding-left: 0;
	padding-right: 0;
}

.main-nav nav .navbar-nav .nav-item {
	padding-top: 28px;
	padding-bottom: 28px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
	top: 88px!important;
	text-align: right;
	background: #0a1d52 !important;
	padding: 0!important;
	border: none!important;
	border-radius: 0!important;
}

.main-nav nav .navbar-nav .nav-item a {
	position: relative;
      /* font-weight: 600; */
      font-size: 18px;
      color: var(--text-dark);
      text-decoration: none;
      padding-bottom: 6px;
      transition: 0.3s ease;
	
	color:#031e4c;
	font-weight: 600;
}






.main-nav nav .navbar-nav .nav-item a::before {
	content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(to left, var(--main-blue), var(--light-blue));
      transition: 0.3s ease;
      border-radius: 1px;
}
.mobile-nav.mean-container .mean-nav ul li a.active,
.main-nav nav .navbar-nav .nav-item a:hover, 
.main-nav nav .navbar-nav .nav-item a:focus, 
.main-nav nav .navbar-nav .nav-item a.active,
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, 
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, 
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, 
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, 
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
	color: #277ac1;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
	color: #fff!important;
	background: #333!important;
}

.main-nav img {
	height: 70px;
}


/* Sticky Nav */
.sticky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	z-index: 999;
}




/* Sidepanel */
.sidepanel {
  	height: 250px; /* Specify a height */
  	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 1; /* Stay on top */
	top: 0;
	left: 0;
	background-color: #111; /* Black*/
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 60px; /* Place content 60px from the top */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}
.sidepanel a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.sidepanel a:hover {
  	color: #f1f1f1;
}
.sidepanel .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
.openbtn {
	font-size: 20px;
	cursor: pointer;
	background-color: #111;
	color: white;
	padding: 10px 15px;
	border: none;
}
.openbtn:hover {
  	background-color: #444;
}







/* Slider */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.slider-item {
	width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.slider-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: #0a3041; */
    opacity: 0.6;
}

.slider-bg-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0a3041;
    opacity: 0.6;
    z-index: 99;
}

.slider-table {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 600px;
}

.slider-text {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.text-animated h1 {
	text-align: right;
    font-size: 40px;
    font-weight: 600;
    color: #130404;
    margin: 0;
    margin-bottom: 15px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    margin-bottom: 25px;
}

.text-animated p {
	text-align: right;
    font-size: 18px;
    color: #1f0303;
    margin: 0;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.text-animated ul {
	padding-left: 0;
	margin-top: 20px;
}

.text-animated li {
    display: inline-block;
    margin-top: 22px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.text-animated li a {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 11px 40px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.text-animated li a:hover {
    background-color: #f58739;
    color: #fff;
    border-color: #f58739;
}

.slide-carousel {
    overflow: hidden;
}

.slide-carousel .owl-nav .owl-prev,
.slide-carousel .owl-nav .owl-next {
	display: none;
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 38px;
    height: 54px;
    line-height: 52px;
    top: 50%;
    margin-top: -25px;
    color: #0d61af;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.slide-carousel .owl-nav .owl-prev {
    left: 0;
    margin-left: 0px;
}

.slide-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.slide-carousel .owl-nav .owl-prev:hover,
.slide-carousel .owl-nav .owl-next:hover {
    color: #0d61af;
}

.slide-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -21px;
}

.slide-carousel .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    display: inline-block;
    margin: 0 4px;
}

.slide-carousel .owl-dots .owl-dot.active {
    background: #fff;
}



/* Video Background */
.slider-video {
	position: relative;
	background-color: #00176e;
	color: #ffffff;
	height: 600px;
	overflow: hidden;
}
.slider-item-video .slider-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.slider-item-video .slider-table {
	z-index: 99;
	position: relative;
}
.slider-item-video .video-foreground,
.slider-item-video .video-foreground iframe {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  	.slider-item-video .video-foreground {
    	height: 300%;
    	top: -100%;
  	}
}
@media (max-aspect-ratio: 16/9) {
  	.slider-item-video .video-foreground {
    	width: 300%;
    	left: -100%;
  	}
}
@media all and (max-width: 600px) {
  	.slider-item-video .vid-info {
    	width: 50%;
    	padding: 0.5rem;
  	}
  	.slider-item-video .vid-info h1 {
    	margin-bottom: 0.2rem;
  	}
}
@media all and (max-width: 500px) {
 	.slider-item-video .vid-info .acronym {
    	display: none;
  	}
}



/* =============================================== */
/* ================= Mobile Menu ================= */
/* =============================================== */
.mobile-nav img {
	height: 40px;
}
.mean-container .mean-bar {
	background-color: #fff;
}
.mean-container a.meanmenu-reveal span {
	color: #0d61af;
}
.mean-container a.meanmenu-reveal {
	color: #0d61af;
}




.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #134050;
	opacity: 0.7;
}


.feature {
	background: white;
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.feature .heading {
	text-align: center;
	margin-bottom: 30px;
}

.feature .heading h2 {
	font-family: 'Cairo';
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.feature .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.feature .feature-item {   
	background: #106fc3cf;    
	padding: 30px 20px;
	color: #0a0101;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin-bottom: 25px;
}

.feature .feature-item .icon {
	font-size: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.feature .feature-item .icon img {
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	background: #fff;
	color: #f58739;
	display: inline-block;
	padding: 10px;
}

.feature .feature-item h4 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #fff;
}

.feature .feature-item p {
	text-align: right;
	font-size: 15px;
}

.feature .feature-item:hover {
	background:#126abc63;
}


.corona-case {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.corona-case .heading {
	text-align: center;
	margin-bottom: 50px;
}

.corona-case .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.corona-case .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.corona-case .corona-case-item {
	background: #fff;
	padding: 20px;
	color: #0d61af;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin-bottom: 25px;
}

.corona-case .corona-case-item .icon {
	font-size: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.corona-case .corona-case-item .icon img {
	width: 80px;
	height: auto;
	text-align: center;
	display: inline-block;
	padding: 10px;
}

.corona-case .corona-case-item h4 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #f58739;
	font-weight: 700;
}

.corona-case .corona-case-item h5 {
	font-size: 34px;
	font-weight: 700!important;
}

.corona-case .corona-case-item:hover {
	background: #333;
}


.countrywise {
	padding-top: 70px;
	padding-bottom: 80px;
	color: #0d61af;
	overflow: hidden;
}

.countrywise .heading {
	text-align: center;
	margin-bottom: 30px;
}

.countrywise .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.countrywise .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.countrywise .dataTables_length,
.countrywise div.dataTables_wrapper div.dataTables_info {
	display: none;
}

.countrywise div.dataTables_wrapper div.dataTables_filter label {
	color: #fff;
}

.countrywise div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
	display: none;
}

.countrywise table.dataTable.display tbody tr {
	background: transparent;
}

.countrywise table.dataTable.display tbody tr>.sorting_1 {
	background: transparent;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button,
.countrywise .dataTables_wrapper .dataTables_paginate .ellipsis {
	color: #fff!important;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current {
	color: #333!important;
}

.countrywise .dataTables_wrapper .dataTables_filter input {
	border: 0;
	border-radius: 4px;
	outline: none;
	height: 30px;
	padding-left: 3px;
	padding-right: 3px;
}

.countrywise .dataTables_empty {
	color: #fff!important;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button {
    background: transparent!important;
    color: #fff!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #fff!important;
    color: #0d61af!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #fff!important;
    color: #f58739!important;
    padding: 6px 13px!important;
    border: 1px solid #fff!important;
    font-weight: 700;
}

.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.countrywise .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: #bbbbbb!important;
    background: #f9f9f9!important;
    padding: 6px 13px!important;
    border: 1px solid #c9c6f5!important;
}

.countrywise .dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 0;
}



.special {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.special h2 {
	color: #b3b3b3;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
}

.special h3 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
}

.special p {
	color: #fff;
	font-size: 15px;
}

.special .read-more {
	margin-top: 30px;
}

.special .read-more a {
	background: #0d79dd;
	border: 2px solid #0d79dd;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.special .read-more a:hover {
	background: transparent;
	border-color: #fff;
}

.video-section {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}
.video-section-bg {
	background: #fff;
	opacity: 0.3;
}
.video-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
}

.video-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #0d79dd;
	border-radius: 50%;
	animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #f58739;
	border-radius: 50%;
	transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes video-pop {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@media only screen and (max-width: 768px) {
	.video-section {
		margin-top: 40px;
	}
}




@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.service .service-item .photo img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.service .service-item .photo img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.service .service-item .photo img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.service .service-item .photo img {
		object-fit: fill;
		height: auto;
	}	
}




/* 
.project {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.project .heading {
	text-align: center;
	margin-bottom: 30px;
}

.project .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.project .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.project .project-item .photo img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.project .project-item .text {
	color: white;
	background: #022056;
	padding: 20px;
}

.project .project-item .text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.project .project-item .text h3 a {
	color: white
}

.project .project-item .text h3 a:hover {
	color: #f58739;
}

.project .project-item .text p {
	font-size: 15px;
}

.project .read-more {
	text-align: left;
	margin-top: 15px;
}

.project .read-more a {
	background: #0e68b9;
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.project .read-more a:hover {
	background: #333;
}


.project .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.project .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.project .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project .project-item .photo img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project .project-item .photo img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.project .project-item .photo img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.project .project-item .photo img {
		object-fit: fill;
		height: auto;
	}	
}




.testimonial {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
	color: #0d61af;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.testimonial-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #0d61af;
	opacity: 0.8;
}

.testimonial .heading {
	text-align: center;
	margin-bottom: 60px;
}

.testimonial .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.testimonial .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.testimonial .testimonial-item .photo {
	text-align: center;
}

.testimonial .testimonial-item .photo img {
	width: 80px;
	height: 80px;
	display: inline-block;
}

.testimonial .testimonial-item .text {
	padding: 20px 150px;
	text-align: center;
}

.testimonial .testimonial-item .text h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	position: relative;
	margin-top: 40px;
}

.testimonial .testimonial-item .text h3:before {
	content: '';
	position: absolute;
	left: calc(50% - 20px);
	top: -20px;
	width: 40px;
	height: 2px;
	background: #fff;
}

.testimonial .testimonial-item .text h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.testimonial .testimonial-item .text p {
	font-size: 15px;
	color: #fff;
}

.testimonial .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.testimonial .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.testimonial .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #fff;
}

@media only screen and (max-width: 992px) {
	.testimonial .testimonial-item .text {
		padding-left: 10px;
		padding-right: 10px;
	}
}






/* Counter */
.counter-area {
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
    padding-bottom: 90px;
}
.bg-counter {
    position: absolute;
    background: #f58739;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.counter {
    padding: 0;
}

.count-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.count-text {
    font-size: 18px;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.counter .icon {
	margin-bottom: 20px;
}

.counter .icon .fa-2x {
	width: 70px;
	height: 70px;
	padding-top: 15px;
	text-align: center;
	background: transparent;
	border: 3px solid #fff;
	border-radius: 50%;
    margin: 0 auto;
    float: none;
    display: table;
    color: #fff;
    font-size: 34px;
}




/* Pricing */
.pricing {
	padding-top: 70px;
	padding-bottom: 80px;
	background: #f1f5f9;
	overflow: hidden;
}

.pricing .heading {
	text-align: center;
	margin-bottom: 30px;
}

.pricing .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.pricing .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.pricing .card {
	border: none;
	border-radius: 1rem;
	transition: all 0.2s;
	box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  	margin: 1.5rem 0;
}

.pricing .card-title {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	letter-spacing: .1rem;
	font-weight: bold;
}

.pricing .card-price {
  	font-size: 3rem;
  	margin: 0;
}

.pricing .card-price .period {
  	font-size: 12px;
}

.pricing ul li {
  	margin-bottom: 16px;
}

.pricing .text-muted {
  	opacity: 0.7;
}

.pricing .btn {
	background: #f58739;
	font-size: 20px;
	border-radius: 5rem;
	font-weight: 700;
	padding: 10px;
	border: 0;
}
.pricing .btn:hover {
	background: #333;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
  	.pricing .card:hover {
		margin-top: -.25rem;
		margin-bottom: .25rem;
		box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  	}
  	.pricing .card:hover .btn {
    	opacity: 1;
  	}
}




/* Call To Action */
.cta {
	background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding-top: 70px;
    padding-bottom: 80px;
}
.cta .overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #022056;
    /* opacity: 0.8; */
}
.cta .cta-box h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}
.cta .cta-box p {
	color: #fff;
	font-size: 20px;
}
.cta .cta-box .btn {
    border-radius: 30px;
    padding: 10px 40px;
    background: #0d61af;
    font-size: 20px;
    border: 0;
    margin-top: 30px;
}





/* Newsletter */
.newsletter-area {
    width: 100%;
    height: auto;
    text-align: center;
    background: #f58739;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding-top: 70px;
    padding-bottom: 80px;
}
.newsletter-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f68b9;
    opacity: 0.8;
}
.newsletter-text {
    margin-bottom: 30px;
}
.newsletter-text h2 {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.newsletter-text p {
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
}

.newsletter-button input[type='text'] {
    width: 300px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border: 0;
    padding-left: 15px;
    padding-right: 15px;
    outline: none;
}
.newsletter-button input[type='submit'] {
    width: 100px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    background: #333;
    color: #fff;
    border: 0;
    margin-left: -4px;
    text-transform: uppercase;
}






/* Blog */
.blog-area {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.blog-area .heading {
	text-align: center;
	margin-bottom: 30px;
}

.blog-area .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.blog-area .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
	margin-bottom: 15px;
}

.blog-area .blog-item h3 a {
    color: #333;
    font-size: 22px;
    font-weight: 700;
}

.blog-area .blog-item h3 a:hover {
    color: #f58739;
}

.blog-area .blog-item:hover .date {
    bottom: 0;
}

.blog-area .blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-area .blog-item p {
    font-size: 15px;
}

.blog-area .blog-image {
    overflow: hidden;
    position: relative;
}

.blog-area .blog-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-area .blog-image .date {
    text-align: center;
    position: absolute;
    bottom: -26px;
    right: 12px;
    padding: 10px 16px;
    color: #fff;
    background: #f58739;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-area .blog-image .date h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 6px;
    line-height: 1.1;
    color: #fff;
}

.blog-area .blog-image .date h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    color: #fff;
}

.blog-area .blog-text {
    background: #f5f5f5;
    padding: 20px;
}

.blog-area .read-more {
	margin-top: 15px;
}

.blog-area .read-more a {
	background: #f58739;
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.blog-area .read-more a:hover {
	background: #333;
}

.blog-area .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.blog-area .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.blog-area .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-area .blog-image img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-area .blog-image img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-area .blog-image img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.blog-area .blog-image img {
		object-fit: fill;
		height: auto;
	}	
}





/* Partner */
.partner {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.partner .heading {
	text-align: center;
	margin-bottom: 30px;
}

.partner .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.partner .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
	margin-bottom: 15px;
}

.partner .partner-carousel {
	position: relative;
}

.partner-carousel .inner {
	padding-left: 20px;
	padding-right: 20px;
}


/* Scroll to Top */
.scroll-top {
	cursor: pointer;
	text-align: center;
	font-size: 22px;
	position: fixed;
	width: 50px;
	height: 50px;
	line-height: 46px;
	bottom: 20px;
	right: 20px;
	background: #0e68b9;
	color: #fff;
	opacity: 0.7;
	z-index: 9999;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.scroll-top:hover {
	opacity: 1;
	color: #fff;
	background: #313131;
}




/* Footer */
.footer-area {
	direction: rtl;
    padding-top: 30px;
    padding-bottom: 60px;
    background: #022056;
    color: white;
}
.footer-item {
	direction: rtl;
    margin-top: 30px;
}
.footer-item h2 {
	text-align: right;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 30px;
    color: #fff;
}
.footer-item p {
    line-height: 1.7;
    margin: 0;
}
.footer-item ul li {
    margin-bottom: 5px;
	text-align: right;
    list-style-type: none;
    padding-left: 0!important;
    background: none!important;
}
.footer-item ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #c7c7c7;
    transition: all 0.4s;
    padding-left: 5px;
}
.footer-item ul.fmain li:before {
    font-family: 'Fontawesome';
    content: '\f0a9';
    color: #c7c7c7;
}
.footer-item ul li a:hover {
    color: #f58739;
}
.footer-social-link {
    margin-top: 30px;
}
.footer-social-link h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 20px;
}
.footer-social-link ul li {
    display: inline-block;
    margin-right: 5px;
}
.footer-social-link ul li a {
    text-align: center;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #277ac1;
    border: 1px solid #f3f1ef;
    color: #fff;
    transition: all 0.4s;
    padding-left: 0;
}
.footer-social-link ul li a:hover {
    background-color: transparent;
    color: #fff;
}
.footer-contact ul li {
	position: relative;
	padding-left: 26px!important;
	font-size: 15px;
	margin-bottom: 8px;
}

.footer-contact ul li:before {
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	font-size: 16px;
}
.footer-contact ul li:nth-child(1):before {
	content: '\f041';
}
.footer-contact ul li:nth-child(2):before {
	content: '\f003';
	font-size: 14px;	
}
.footer-contact ul li:nth-child(3):before {
	content: '\f095';
}
.copyright {
    text-align: center;
    color: #c7c7c7;
    border-top: 1px solid #c7c7c7;
    margin-top: 20px;
    padding-top: 20px;
}
.copyright p {
    margin: 0;
}



/* Page Banner */
.page-banner {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.bg-page {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #333;
	opacity: 0.7;
}

.page-banner .text {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
	z-index: 99;
}

.page-banner .text h1 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin: 0!important;
}

.page-banner .breadcrumb {
	direction: rtl;
	background-color: transparent;
	text-align: center;
	margin-bottom: 0;
}

.page-banner .breadcrumb-item {
	color: #bdbaba;
	font-weight: 600;
	font-size: 18px;
}

.page-banner .breadcrumb-item a {
	color: #fff;
}

.page-banner .breadcrumb-item a:hover {
	color: #f58739;
}

.page-banner .breadcrumb-item::before {
	color: #fff!important;
}

@media only screen and (max-width: 991px) {
	.page-banner .text {
		padding-top: 125px;
	}
}




/* Page Content */
/* .page-content {
	background: #fafaff;
	direction: rtl;
	padding-top: 30px;
	padding-bottom: 30px;
	overflow: hidden;
} */

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	margin-bottom: 20px!important;
}

.page-content ul,
.page-content ol {
	margin-bottom: 20px;
}

.page-content ul li {
	list-style-type: none;
	position: relative;
	background-image: url(../images/tick.png);
	background-size: 16px 16px;
	background-position: 0 4px;
	background-repeat: no-repeat;
	padding-left: 25px;
	margin-bottom: 10px;
}

.page-content ol li {
	margin-bottom: 15px;	
}


/* Single Section */
.single-section .blog-item {
	margin-bottom: 50px;
}

.single-section h2 {
	text-align: right;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.single-section h2 a {
	color: #333;
}

.single-section h3 {
	font-size: 18px;
	color: #1270c4;
}

.single-section .featured-photo {
	margin-bottom: 30px;
}


	

.single-section .read-more {
	margin-top: 30px;
}

.single-section .read-more a {
	background: #1270c4;
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.single-section .read-more a:hover {
	background: #333;
}

@media only screen and (max-width: 767px) {
	.single-section {
		margin-bottom: 30px;
	}
}


/* Sidebar */
.sidebar .widget {
	text-align: right;
	padding: 20px;
	background: #031f5d;
	margin-bottom: 30px;
}

.sidebar .widget h3 {
	color: whitesmoke;
padding: 15px;
	background-color: #1270c4;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.sidebar .widget .type-1 ul li {
	list-style-type: none;
	padding-left: 20px;
	position: relative;
	margin-bottom: 10px;
	background: none!important;
}

.sidebar .widget .type-1 ul li:before {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: 0;
	color: #1270c4;
}

.sidebar .widget .type-1 ul li a {
	color: white;
}

.sidebar .widget .type-1 ul li a:hover {
	color: #1270c4;
}

.sidebar .widget .type-2 img {
	width: 70px;
	height: 60px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	object-fit: cover;
}

.sidebar .widget .type-2 ul li {
	list-style-type: none;
	position: relative;
	margin-bottom: 10px;
}

.sidebar .widget .type-2 ul li a {
	width: calc(100% - 85px);
	color: white;
	display: inline-block;
	vertical-align: top;
}

.sidebar .widget .type-2 ul li a:hover {
	color:#1270c4
}

.sidebar .widget .type-2 ul li {
	background: none;
	padding-left: 0;
}

.sidebar .widget .search .input-group-append {
	width: 36px;
}

.sidebar .widget .search button {
	background: #1270c4;
	border: 0;
	width: 36px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.sidebar .widget .search button i {
	color: #fff;
}

.sidebar .widget .type-3 button {
	border: 0;
	background: #f58739;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.sidebar .widget .type-3 button:hover {
	background: #333;
}

.sidebar .widget .project-detail .item {
	margin-bottom: 25px;
}

.sidebar .widget .project-detail .item h4 {
	color: white;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.sidebar .widget .project-detail .item p {
	color: #555;
	font-size: 15px;
}




.team {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.team .heading {
	text-align: center;
	margin-bottom: 30px;
}

.team .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-top: 0;
}

.team .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.team-item {
	border: 1px solid #ddd;
	margin-top: 30px;
}

.team-photo img {
	width: 100%;
	height: 292px;
	object-fit: cover;
}

.team-photo-anchor {
	width: 100%;
	height: 100%;
}

.team-text {
	text-align: center;
	background: #022056;
	color: #fff;
	padding: 15px;
}

.team-text h4 {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin: 0;
	margin-bottom: 4px!important;
}

.team-text h4 a {
	color: #fff;
}

.team-text p {
	margin: 0;
	font-size: 14px;
}

.team-social {
	text-align: center;
	background: #277ac1;
	width: 100%;
	padding: 10px 0;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin-top: 15px;
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 0!important;
}

.team-social li {
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 0!important;
	background: none!important;
	padding-left: 0!important;
}

.team-social li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	border: 1px solid #ddd;
	margin: 5px 0;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-social li a:hover {
	background: #f58739;
	color: #fff;
	border: 1px solid #f58739;
}

.team .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.team .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.team .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #333;
	border: 7px solid #afafaf;
}

.team-member-photo img {
    width: 100%;
    height: auto;
}
.team-single ul.social {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.team-single ul.social li {
    list-style-type: none;
    display: inline-block;
}

.team-single ul.social li a {
    background: #5ac736;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    margin-right: 6px;
    font-size: 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.team-single ul.social li a:hover {
    background: #333;
}
.team-single table {
    background: #fff;
}
.team-single table tr td:nth-of-type(1) {
    width: 200px;
    font-weight: 500;
}
.team-single .description h2 {
	font-size: 24px;
	font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-photo img {
		height: 240px;
	}
	.team-social li a {
		width: 24px;
		height: 24px;
		line-height: 24px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-photo img {
		height: 378px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team-photo img {
		height: 588px;
	}
}

@media only screen and (max-width: 575px) {
	.team-photo img {
		object-fit: fill;
		height: auto;
	}	
}





/* Portfolio Carousel */
.project-photo-carousel {
	overflow: hidden;
	margin-top: 30px;
}

.project-photo-carousel .owl-nav .owl-prev,
.project-photo-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 48px;
	background: #f58739;
	color: #fff;
	margin-top: -25px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.project-photo-carousel .owl-nav .owl-prev {
	left: 0;
}

.project-photo-carousel .owl-nav .owl-next {
	right: 0;
}

.project-photo-carousel .owl-nav .owl-prev:hover,
.project-photo-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.single-project .iframe-container {
	overflow: hidden;
	clear: both;
}

.single-project iframe {
	width: 100%;
	height: 400px;
}

.single-project img.featured-photo {
	width: 100%;
	height: auto;
}

.project-photo-carousel .p-item {
	position: relative;
}

.project-photo-carousel .p-item .p-item-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    opacity: 0;
    background: #333;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.project-photo-carousel .p-item:hover .p-item-bg {
	opacity: 0.6;
}

.project-photo-carousel .p-item .plus-icon {
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	text-align: center;
	z-index: 99;
	font-size: 30px;
	color: #fff;
}

.project-photo-carousel .p-item:hover .plus-icon {
	visibility: visible;
	display: flex;
	align-items: center;
  	justify-content: center;
}

.project-photo-carousel .p-item img {
	width: 100%;
	height: 440px;
	object-fit: cover;
}








/* Comment */
.comment button {
	border: 0;
	background: #f58739;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.comment > h2 {
	margin-bottom: 30px!important;
}

.comment button:hover {
	background: #333;
}

.comment-item {
	margin-bottom: 20px;
	display: contents;
	justify-content: left;
}

.comment-item .photo {
	width: 70px;
	margin-right: 15px;
}

.comment-item .photo img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid #ddd;
}

.comment-item .text h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px!important;
}

.comment-item .text .date {
	font-size: 14px;
	color: #848484;
	margin-bottom: 15px;
}

.comment-item .text .des {
	font-size: 14px;
}




/* Career Detail */
.career-detail .item {
	margin-bottom: 30px;
}

.career-detail .item h3 {
	font-size: 22px;
	font-weight: 700;
}

.career-detail .item p {
	font-size: 16px;
}

.career-detail .item ul li {
	list-style-type: none;
	position: relative;
	padding-left: 25px;
}

.career-detail .item ul li:before {
	content: '\f105';
    font-family: 'FontAwesome';
	position: absolute;
	left: 10px;
	top: 0;
}




/* FAQ */
.faq {
	margin-top: 30px;
	background: #fff;
}

.faq .panel-body ol li,
.faq .panel-body ul li {
	list-style-position: inside;
}

.faq .panel {
	box-shadow: none!important;
	border-radius: 0!important;
	margin-bottom: 10px;
}

.faq .panel-group {
	margin-bottom: 40px;
}

.faq .panel-default>.panel-heading {
	background: #eee;
	color: #333;
	padding: 0;
	border-radius: 0;
	border: 1px solid #eee;
	position: relative;
}

.faq .panel-group .panel-heading a:after {
	content: '\f068';
	font-family: 'FontAwesome';
	position: absolute;
	font-weight: normal;
	right: 20px;
	top: 10px;
	font-size: 14px;
}

.faq .panel-group .panel-heading a.collapsed:after {
  	content: '\f067';
  	font-family: 'FontAwesome';
  	font-size: 14px;
}


.faq h4.panel-title {
	margin-bottom: 0!important;
	border: 1px solid #ddd;
}
.faq h4.panel-title a {
	display: block;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0d61af;
}

.faq .panel-body {
	border-top: 0;
	padding: 15px;
	border: 1px solid #ddd;
	border-top: 0;
}






/* Contact Form */
.contact-item {
	text-align: center;
	border: 1px solid #e1e1e1;
	min-height: 180px;
	position: relative;
	background: #fafafa;
	padding: 30px 15px;
	padding-top: 60px;
	margin-top: 71px;
}

.contact-icon {
	position: absolute;
	width: 82px;
	height: 82px;
	line-height: 92px;
	top: 0px;
	left: 50%;
	background: #fafafa;
    color: #1270c3;
	border-radius: 50%;
	border: 1px solid #e1e1e1;
	margin-top: -41px;
	transform: translate(-50%, 0%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-icon img {
	width: 40px;
	height: 40px;
}

.contact-icon i {
	font-size: 34px;
}
.contact-item:hover .contact-icon{
    background: #424d89;
    color: #fafafa;
	border: 1px solid #13085b;
}
.contact-text {
	margin-top: 0px;
}

.contact-text h4 {
	font-size: 18px;
    font-weight: 700;
	margin-bottom: 5px;
}

.contact-text p {
	margin: 0;
}

.contact-form textarea {
	
	height: 190px
}

.contact-form .btn {
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	padding: 14px 30px;
	border: 1px solid #0d61af;
	background: #0d61af;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-form .btn:hover {
	color: #fff;
	background: #313131;
	border: 1px solid #313131;
}

.map-area iframe {
	width: 100%;
	height: 450px;
	margin-bottom: -5px;
}

h4.contact-form-title {
	font-weight: 700;
	font-size: 24px;
}

.contact-form {
	text-align: end;
	margin-bottom: 50px;
}

.contact-form button {
	background: #f58739;
	border: 2px solid #f58739;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.contact-form button:hover {
	background: transparent;
	border-color: #fff;
}




/* Photo Gallery */
.gallery-photo {
	margin-bottom: 30px;
}

.gallery-photo img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallery-photo .gallery-photo-bg {
	position: absolute;
	left: 15px;
	top: 0;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
    opacity: 0;
    background: #333;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-photo:hover .gallery-photo-bg {
	opacity: 0.6;
}

.gallery-photo .plus-icon {
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	text-align: center;
	z-index: 99;
	font-size: 30px;
	color: #fff;
}

.gallery-photo:hover .plus-icon {
	visibility: visible;
	display: flex;
	align-items: center;
  	justify-content: center;
  	margin-top: -15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.gallery-photo img {
		height: 207px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.gallery-photo img {
		height: 236px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.gallery-photo img {
		height: 364px;
	}
}

@media only screen and (max-width: 575px) {
	.gallery-photo img {
		object-fit: fill;
		height: auto;
	}	
}




/* Video Gallery */
.video-item {
	margin-bottom: 70px;
}
.video-item iframe {
	width: 100%;
	height: 350px;
}
.video-item .video-caption {
	font-weight: 700;
	font-size: 18px;
}




/* Product
.product-item {
	margin-bottom: 80px!important;
}

.product-item .photo img {
	width: 100%;
	height: 270px;
	object-fit: cover;
	border: 1px solid #e3e3e3;
}

.product-item .text h3 {
	text-align: right;
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px!important;
}

.product-item .text h3 a {
	color: #333;
}

.product-item .text h3 a:hover {
	color: #f58739;
}

.product-item .text p {
	margin-bottom: 10px!important;
}

.product-item .text .price {
	text-align: right;
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 18px;
}

.product-item .text .price del {
	color: red;
}
.product-item .text .cart-button {
	overflow: hidden;
}
.product-item .text .cart-button a,
.product-item .text .cart-button input[type="submit"] {
	background: #0d61af;
	color: #fff;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 14px;
	border: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: inline-block;
}

.product-item .text .cart-button a.stock-empty {
	background: #ead1d1;
	color: #ff0000;
}

.product-item .text .cart-button a.stock-empty:hover {
	background: #ead1d1;
	color: #ff0000;	
}

.product-item .text .cart-button a:hover,
.product-item .text .cart-button input[type="submit"]:hover {
	background: #333;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.product-item .photo img {
		height: 220px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.product-item .photo img {
		height: 347px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.product-item .photo img {
		height: 540px;
	}
}

@media only screen and (max-width: 575px) {
	.product-item .photo img {
		object-fit: fill;
		height: auto;
	}	
}




/* Product Detail */
.product-detail .photo img {
	width: 100%;
	height: auto;
	border: 1px solid #e3e3e3;
}

.product-detail h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px!important;
}

.product-detail p {
	font-size: 16px;
}

.product-detail .price {
	font-size: 28px;
	font-weight: 600;
	color: #0d61af;
}

.product-detail .price del {
	color: red;
}

.product-detail .delivery-time {
	font-size: 18px;
}

.product-detail .qty {
	font-size: 18px;
}

.product-detail .qty input[type="number"] {
	width: 100px;
}

.product-detail button {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border: 0;
    border-radius: 50px;
    background: #f58739;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-detail button:hover {
	background: #333;
}

.product-detail .nav-pills .nav-link.active {
	background: #0d61af;
	color: #fff;
}

.product-detail .nav-pills .nav-link {
	background: #f1f5f9;
	color: #0d61af;	
}

.product-detail li.nav-item {
	margin-right: 10px;
}

.product-detail li {
	background: none!important;
	padding-left: 0!important;
}

.product-detail a.stock-available-amount {
	background: #ffc107;
	color: #333;
	border: 0;
	border-radius: 16px;
	padding: 5px 18px;
	font-size: 14px;
}

.product-detail a.stock-empty {
	background: #ead1d1;
	color: #ff0000;
	border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    display: inline-block;
    margin-top: 30px;
    text-transform: uppercase;
}

.product-detail a.stock-empty:hover {
	background: #ead1d1;
	color: #ff0000;	
}

@media only screen and (max-width: 767px) {
	.product-detail .photo img {
		margin-bottom: 30px;
	}
}



/* Cart */
.cart table img {
	width: 100px;
	height: auto;
}

.cart input[type="number"] {
	width: 100px;
}

.cart .total {
	font-size: 18px;
	font-weight: 600;
}

.cart-buttons {
	display: flex;
	justify-content: flex-start;
}

.cart-buttons a,
.cart-buttons input[type="submit"] {
	margin-right: 10px;
}

@media only screen and (max-width: 767px) {
	.cart-buttons {
		margin-bottom: 30px;
	}	
}



.checkout-login-form h2 {
	font-size: 24px;
	font-weight: 700;
}

.checkout-login-form .inner {
	display: flex;
	justify-content: center;
}

.checkout-login-form input {
	width: 400px;
}

.checkout-login-form .new-user {
	margin-top: 15px;
	font-weight: 600;
}

.checkout-login-form .new-user a {
	color: #f58739;
}

.checkout-login-form .new-user a:hover {
	color: #333;
}

.checkout h2 {
	font-size: 24px;
	font-weight: 700;
}

.checkout-billing h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.checkout-tab .nav-link {
	font-size: 20px;
	padding: 15px 30px;
	font-weight: 700;
	background: #ddd;
	color: #6c757d;
	margin-right: 10px;
}
.checkout-tab .nav-link i {
	background: #6c757d;
	color: #ddd;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
}
.checkout-tab .nav-link.active {
	font-size: 20px;
	padding: 15px 30px;
	font-weight: 700;
	background: #0d61af;
}
.checkout-tab .nav-link.active i {
	background: #fff;
	color: #0d61af;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
}

.checkout-tab li {
	padding-left: 0!important;
	background: none!important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.checkout-tab .nav-link {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 16px;
	}
	.checkout-tab .nav-link.active {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.checkout-tab .nav-link {
		padding-left: 25px;
		padding-right: 25px;
		font-size: 18px;
	}
	.checkout-tab .nav-link.active {
		padding-left: 25px;
		padding-right: 25px;
		font-size: 18px;
	}
	.page-content-checkout button {
		margin-bottom: 30px;
	}
	.order-summery-area {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 575px) {
	.page-content-checkout ul.nav-pills li {
		width: 100%!important;
	}
}




/* Login */
.reg-login-form h2 {
	font-size: 24px;
	font-weight: 700;
}

.reg-login-form .inner {
	display: flex;
	justify-content: center;
}

.reg-login-form input {
	width: 400px;
}

.reg-login-form .new-user {
	margin-top: 15px;
	font-weight: 600;
}

.reg-login-form .new-user a {
	color: #0d61af;
}

.reg-login-form .new-user a:hover {
	color: #333;
}

@media only screen and (max-width: 991px) {
	.reg-login-form input {
		width: 100%;
	}
	.reg-login-form select {

	}
	.reg-login-form .inner {
		display: block;
	}
}





/* User Panel */
.user-sidebar ul {
	display: flex;
	flex-direction: column;
}

.user-sidebar ul li {
	list-style-type: none;
	margin-bottom: 5px;
	padding-left: 0;
	background: none;
}

.modal-table {
	font-size: 14px;
}

.modal-table tr th {
	width: 150px;
}

.modal-full-width {
	max-width: 100%!important;
}

.modal-full-width .top-area {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dee2e6;
}

.modal-full-width .top-right {
	font-size: 20px;
	font-weight: 700;
	float: right;
	margin-top: 30px;
}

@media only screen and (min-width: 992px) {
	.modal-full-width {
		max-width: calc(100% - 200px)!important;
	}
}

.customer-invoice {
	padding-top: 30px;
}
.customer-invoice .top-head {
	border-bottom: 1px solid #efebeb;
}
.customer-invoice .left img {
	height: 70px;
}
.customer-invoice .left .company-info {
	font-size: 14px;
	margin-bottom: 30px;
	text-align: right;
}
.customer-invoice .right {
	text-align:left;
	font-size: 18px;
	font-weight: 700;
	margin-top: 30px;
}
.customer-invoice .i3 {
	margin-top: 30px;
}
.customer-invoice .i3 h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px!important;
}
.customer-invoice .i3 p {
	font-size: 14px;
	margin-bottom: 0;
}
@media print {
	@page { margin: 0; }
}




.chosen-drop {
    z-index: 999999 !important;
}

.nav-doctor li {
	padding-left: 0!important;
	background: none!important;
}

.doc_detail_social li {
	padding-left: 0!important;
	background: none!important;
	float: left;
	margin-right: 5px;
}

.doc_detail_social li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	background: #0d61af;
	color: #fff;
	border-radius: 4px;
	transition: all 0.4s ease;
}
.doc_detail_social li:hover i {
	background: #333;
}

.nav-doctor .nav-link {
	background: #e6e6e6;
	margin-right: 10px;
	color: #333;
}
.nav-doctor .nav-link.active, 
.nav-doctor .show > .nav-link {
	background: #0d61af;
}


/* Bootstrap Pagination
.pagination li {
	background: none!important;
	padding-left: 0!important;
} */


.dashboard-stat .text {
	font-size: 20px;
}
.dashboard-stat .total {
	font-size: 30px;
}

@media only screen and (max-width: 767px) {
	.dashboard-stat-item {
		margin-bottom: 30px;
	}
}



.share_buttons a {
	text-align: center;
}
.share_buttons a i {
    border: 1px solid #3b5998;
    color: #fff!important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    margin-right: 4px;
}
.share_buttons a.facebook i {
	background: #3b5998;
    border-color: #3b5998;
}
.share_buttons a.facebook:hover i {
	color: #3b5998!important;
	background: #fff;
}
.share_buttons a.twitter i {
	background: #00aced;
    border-color: #00aced;
}
.share_buttons a.twitter:hover i {
	color: #00aced!important;
	background: #fff;
}
.share_buttons a.pinterest i {
	background: #EB4823;
    border-color: #EB4823;
}
.share_buttons a.pinterest:hover i {
	color: #EB4823!important;
	background: #fff;
}
.share_buttons a.linkedin i {
	background: #0e76a8;
    border-color: #0e76a8;
}
.share_buttons a.linkedin:hover i {
	color: #0e76a8!important;
	background: #fff;
}  




/* ===== إصلاحات عرض الجوال ===== */
@media (max-width: 575.98px) {
  html, body { overflow-x: hidden; }

  .top { padding: 6px 10px; }
  .top .top-contact ul,
  .top .top-social ul,
  .top .top-profile ul { display:flex; flex-wrap:wrap; gap:8px; }
  .top .top-contact li,
  .top .top-social li,
  .top .top-profile li { margin-right:8px; font-size:12px; }
  .top .top-profile li a { font-size:12px; }
  .top .cart .number { top:-6px; left:-6px; font-size:10px; }

  /* القوائم المنسدلة لا تخرج خارج الشاشة */
  .dropdown-menu-end { right: 0 !important; left: auto !important; }

  /* هيدر ثابت وخفيف */
  .mobile-nav,
  .navbar-area,
  .navbar-area .main-nav,
  .navbar-area .main-nav .navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
  }

  .navbar .navbar-brand img { height: 32px; width: auto; }
  .main-nav .navbar { padding: 8px 0; }
  .navbar .nav-link { padding: .6rem .75rem; font-size: 14px; }
  .main-nav nav .navbar-nav .nav-item { padding-top: 10px; padding-bottom: 10px; }

  /* تقليل ارتفاع السلايدر لمنع الفراغ الكبير */
  .banner-area .banner-slider-item,
  .slider-table { height: 300px !important; }
  .slider-video iframe { height: 240px !important; }

  .page-content { padding: 20px 0 !important; }

  .service-item .photo img,
  .project-item .photo img,
  .product-item .photo img {
    height: 180px !important; object-fit: cover;
  }

  .single-section .featured-photo img {
    width: 100% !important; height: auto !important; margin: 0 !important;
  }
}

/* منع التمرير الأفقي من أي عنصر أوسع من الشاشة */
*, *::before, *::after { box-sizing: border-box; }

/* ===== إصلاحات قوية للجوال ===== */
@media (max-width: 575.98px) {
  html, body { overflow-x: hidden; }

  /* شريط علوي أخف */
  .top { padding: 6px 10px; }
  .top .top-contact ul,
  .top .top-social ul,
  .top .top-profile ul { display:flex; flex-wrap:wrap; gap:8px; }
  .top .top-contact li,
  .top .top-social li,
  .top .top-profile li { margin-right:8px; font-size:12px; }
  .top .top-profile li a { font-size:12px; }
  .top .cart .number { top:-6px; left:-6px; font-size:10px; }

  /* افتح القوائم المنسدلة يمين كي لا تخرج خارج الشاشة */
  .dropdown-menu-end { right: 0 !important; left: auto !important; }

  /* هيدر/نافبار ثابت وخفيف */
  .mobile-nav,
  .navbar-area,
  .navbar-area .main-nav,
  .navbar-area .main-nav .navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
  }
  .navbar .navbar-brand img { height: 32px; width: auto; }
  .main-nav .navbar { padding: 8px 0; }
  .navbar .nav-link { padding: .6rem .75rem; font-size: 14px; }
  .main-nav nav .navbar-nav .nav-item { padding-top: 10px; padding-bottom: 10px; }

  /* تقليل ارتفاع السلايدر ومنع التراكب */
  .banner-area .banner-slider-item { height: auto !important; }
  .slider-table { display: flex; align-items: center; min-height: 280px; height: auto !important; }
  .slider-video iframe { height: 240px !important; }
  .banner-content { margin-top: 0 !important; padding: 12px; }
  .banner-content h1,
  .text-animated h1 { font-size: 24px !important; line-height: 1.7; margin-bottom: 12px; text-align: right; }
  .text-animated p { font-size: 14px !important; text-align: right; }

  /* صور الكروت */
  .service-item .photo img,
  .project-item .photo img,
  .product-item .photo img {
    height: 110px !important; object-fit: cover;
  }

  /* صورة المقال المفرد */
  .single-section .featured-photo img {
    width: 100% !important; height: auto !important; margin: 0 !important;
  }

  /* مسافات المحتوى */
  .page-content { padding: 20px 0 !important; }
}

/* منع تمرير أفقي */
*, *::before, *::after { box-sizing: border-box; }
