:root {
    --primary-color: #0097a7;
    --primary2-color: #064469;
    --footer-text-color: #555;
    --secondary-color: #f5f7fa;
    --text-color: #334155;
    --accent-color: #00bcd4;
    --primary: #f9fafb;
    --border: #e5e7eb;
    --bg: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
}

.accordion-collapse.collapse {
  visibility: visible !important;
  display: none;
}

.accordion-collapse.collapse.show {
  display: block !important;
  visibility: visible !important;
}

.accordion-collapse.collapsing {
  visibility: visible !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* #ngo-register {
    background-image: linear-gradient(145deg, rgba(0,151,167,0.05), rgba(245,247,250,1));
} */

label {
    font-size: 0.9rem !important;
}
/* 🌟 الأزرار الأساسية */
/* button, */
.btn {
  border: none !important;
  border-radius: 50px;
  padding: 4px 14px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn2 {
  border: none !important;
  border-radius: 0 50px 50px 0px;
  padding: 4px 14px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

[dir="rtl"] .btn2 {
  border: none !important;
  border-radius: 50px 0 0 50px;
  padding: 4px 14px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

button:hover,
.btn:hover {
  transform: translateY(-1px);
  border-radius: 50px; /* بيضوية */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* 🌟 أزرار outline رئيسية */
.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 4px 14px;
  font-size: 0.75rem;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 🌟 زر الرجوع - ثانوي */
.btn-outline-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color) !important;
  border-radius: 50px;
  padding: 4px 14px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-outline-secondary:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* 🌟 زر success */
.btn-success {
  background: linear-gradient(135deg, #28a745, #5cd65c);
  padding: 4px 14px;
  font-size: 0.75rem;
}

.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-success:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* 🌟 زر danger */
.btn-danger {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: #fff !important;
  padding: 4px 14px;
  font-size: 0.75rem;
}

.btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-danger:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
}
[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] nav,
[dir="rtl"] header,
[dir="rtl"] main,
[dir="rtl"] footer {
    direction: rtl;
}

[dir="rtl"] .flex-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .mr-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .flex.items-center.gap-1 svg {
    transform: rotate(180deg);
}
header {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

/* عند التمرير */
header.sticky {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

nav a {
    position: relative;
    transition: color .3s ease;
}

/* تأثير خط جميل تحت الرابط عند hover */
nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width .3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* لون عند hover */
nav a:hover {
    color: var(--primary-color);
}

/* === Dropdown desktop === */
.dropdown-panel {
    background-color: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transform-origin: top;
    transition: all 0.2s ease-out;
}

.dropdown-panel a {
    transition: background-color .2s, color .2s;
}

.dropdown-panel a:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* === زر اللغة و login === */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff !important;
    transition: background-color .3s ease, transform .2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
}

select.form-select {
    border: 1px solid #cbd5e1;
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
    color: #475569;
    background-color: #fff;
    transition: border-color .3s;
}

select.form-select:hover {
    border-color: var(--primary-color);
}

/* === Mobile menu animation === */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#mobile-menu.open {
    max-height: 800px;
}

details summary {
    font-weight: 600;
    color: #334155;
    transition: color .3s ease;
}

details[open] summary {
    color: var(--primary-color);
}

details div a {
    border-radius: 0.4rem;
    padding: 0.25rem 0.5rem;
    display: block;
    transition: background-color .3s ease;
}

details div a:hover {
    background-color: rgba(0,151,167,0.1);
    color: var(--primary-color);
}

[dir="rtl"] nav a::after {
    left: auto;
    right: 0;
}

/* question */

/* ⚙️ الحاوية العامة للسؤال */
.survey-section {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 18px;
  margin-bottom: 22px;
}

.profile-text {
  font-weight: 600;
  font-size: 1.4rem !important;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  word-break: break-word;
}

/* 🧩 عنوان السؤال */
.survey-legend {
  font-weight: 600;
  font-size: 0.86rem !important;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  word-break: break-word;
}

/* 🔵 رقم السؤال */
.question-number {
  background-color: var(--border);
  color: var(--primary-color);
  border-radius: 50%;
  min-width: 22px;
  min-height: 22px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 🟢 الخيارات */
.survey-option {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.survey-option:hover {
  background: #eff6ff;
  border-color: var(--primary-color);
}

/* ✅ الإدخالات */
.survey-option input[type="radio"],
.survey-option input[type="checkbox"] {
  transform: scale(1.1);
  margin-right: 10px;
}

[dir="rtl"] .survey-option input[type="radio"],
[dir="rtl"] .survey-option input[type="checkbox"] {
  transform: scale(1.1);
  margin-left: 10px;
}

.survey-option input[type="radio"],
.survey-option input[type="checkbox"]{
    accent-color: var(--primary-color) !important;
}

.survey-option label {
  margin: 0;
  font-weight: 500;
  font-size: 0.83rem !important;
  color: var(--text);
  cursor: pointer;
}

/* ✏️ حقل Other */
.other-input {
  margin-top: 10px;
}

.other-input input {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 8px;
}

/* 📱 على الشاشات الصغيرة */
@media (max-width: 640px) {
  .survey-section {
    padding: 14px;
  }
  .survey-legend {
    font-size: 1.1rem;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .question-number {
    min-width: 20px;
    min-height: 20px;
    font-size: 0.72rem;
  }
  .survey-option {
    font-size: 0.8rem;
    padding: 7px 10px;
  }
  .survey-option label {
    font-size: 0.8rem;
  }
}

.text-muted {
    color: #6c757d !important;
    text-align: center;
}
#modalMessage{
    text-align: start;
}
.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem;
}
tbody, td, tfoot, th, thead, tr {
    text-align: start !important;
}
.upload-file {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.2rem !important;
    font-size: 14px !important;
}

.status {
font-weight: bold;
padding: 12px;
}

.iti {
    width: 100%;
}

.iti__country-list {
left: 0;
right: auto;
text-align: left;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logos-container img.partner-logo {
    max-height: 60px;
    max-width: 150px;
    transition: transform 0.3s ease !important;
}

.logos-container img.partner-logo:hover {
    transform: scale(1.1) !important;
}

.decorative-line {
    width: 60px;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), #00bcd4);
    border-radius: 2px;
}

.welcome-title, .welcome-title-ar {
    font-size: 1.5rem;
    font-weight: 700;
}

.welcome-subtitle, .welcome-subtitle-ar {
    font-size: 1rem;
    color: #555;
}

.card {
    border-radius: 20px;
}

.card-header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.btn-success {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}
.card-header {
    background: linear-gradient(135deg, #e6e6e6, #e6e6e6, #e6e6e6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 50px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, #00bcd4, var(--primary-color));
}

input:checked + .slider:before {
    transform: translateX(20px);
}
.section-title {
    color: var(--primary2-color) !important;
    font-weight: 600;
}
#progressBadge {
    background-color: rgba(0, 151, 167, 0.1) !important;
    color: #0097a7;
    border: 1px solid #0097a7;
    font-weight: 600;
    padding: 0.35em 0.75em;
    border-radius: 12px;
    font-size: 0.85rem;
}

.progress {
    height: 8px;
    background-color: #e0f3f5;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0097a7, #00bcd4);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.modal-header .btn-close {
    margin: 0 !important;
}

.text-start {
    text-align: start !important;
}

.form-select {
    padding: .375rem 2.25rem .375rem .75rem !important;
}
html[dir="ltr"] .auto-align {
    justify-content: flex-end;
}

html[dir="rtl"] .auto-align {
    justify-content: flex-end;
}

.logo-upload-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
    margin-bottom: 5px;
}
.logo-preview {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    background-color: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.3s ease;
}
.logo-upload-wrapper:hover .upload-overlay {
    opacity: 1;
}
.upload-icon {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

/* 🎨 Select2 Custom Theme */
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 50px !important;
  height: 45px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-color);
  line-height: 30px;
  font-size: 0.95rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}

/* Dropdown Styling */
.select2-container--default .select2-results__option {
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color);
  color: #fff;
}

/* Search box inside dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 30px;
  border: 1px solid var(--border);
  padding: 6px 12px;
  font-size: 0.9rem;
}

.select2-container--default .select2-selection--multiple {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 45px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0097a7;
    color: #fff;
    border-radius: 50px;
    padding: 0 8px;
    margin-top: 5px;
}
/* Single Select (كما لديك بالفعل) */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 50px !important;
    height: 45px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text);
    line-height: 30px;
    font-size: 0.95rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
    border-color: var(--primary2-color);
    box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}

/* Multiple Select Styling */
.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 50px !important; /* البيضاوي */
    min-height: 45px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--text);
    font-size: 0.95rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary2-color);
    color: #fff;
    border-radius: 25px !important; /* بيضاوي للـ tags */
    padding: 0 10px;
    margin-top: 4px;
}

.select2-container--default .select2-selection--multiple:hover,
.select2-container--default .select2-selection--multiple:focus {
    border-color: var(--primary2-color);
    box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}

/* Dropdown Styling (مشترك)
.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-text);
    color: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 30px;
    border: 1px solid var(--border);
    padding: 6px 12px;
    font-size: 0.9rem;
} */


.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    text-shadow: 0 0 5px rgba(0, 188, 212, 0.3);
}

/* === Section Hero === */
#hero {
    width: 100%;
    height: 100vh; /* كامل ارتفاع الشاشة */
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay للنصوص */
#hero .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Carousel container مركزي */
#hero .carousel-container {
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 40%;      /* حجم container أصغر */
    height: 50%;
    margin: auto;
    z-index: 2;
}

/* RTL support */
html[dir="rtl"] #hero .carousel-container {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* نصوص Carousel */
#hero .carousel-content {
    text-align: center;
    color: #fff;
}

#hero .carousel-content h4 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

#hero .carousel-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#hero .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

#heroCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 151, 167, 0.4);
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators .active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Carousel Control Buttons */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 151, 167, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    filter: invert(1);
}
/* 📱 Hero Section responsiveness */
@media (max-width: 991px) { /* Tablets */
    #hero .carousel-container {
        width: 60%;
        height: 50%;
    }

    #hero .carousel-content h4 {
        font-size: 1.8rem;
    }

    #hero .carousel-content p {
        font-size: 1rem;
    }

    #hero .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 640px) { /* Mobiles */
    #hero {
        height: 80vh; /* أقل ارتفاع لتناسب الجوال */
    }

    #hero .carousel-container {
        width: 80%;
        height: 55%;
        padding: 0 10px;
    }

    #hero .carousel-content h4 {
        font-size: 1.5rem;
    }

    #hero .carousel-content p {
        font-size: 0.95rem;
    }

    #hero .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    #heroCarousel .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    #heroCarousel .carousel-indicators .active {
        width: 12px;
        height: 12px;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* 🌟 Carousel text animations */
@-webkit-keyframes fadeInUpCustom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUpCustom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero .carousel-content.animate__fadeInUp {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
}

/* تحسين التدرج عند تغيير الصورة */
#hero .carousel-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* للـ overlay أيضاً تأثير fade-in خفيف */
#hero .carousel-overlay {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

section {
    padding: 60px 0;
    overflow: hidden;
}
/* === Section Hero Incubates === */
#hero-incubates {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero-incubates .carousel,
#hero-incubates .carousel-inner,
#hero-incubates .carousel-item,
#hero-incubates .carousel-item::before {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-incubates .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

#hero-incubates .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 40%;
    height: 50%;
    margin: auto;
    z-index: 2;
}

html[dir="rtl"] #hero-incubates .carousel-container {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

#hero-incubates .carousel-content {
    text-align: center;
    color: #fff;
}

#hero-incubates .carousel-content h4 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

#hero-incubates .carousel-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#hero-incubates .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Indicators */
#heroIncubatesCarousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

#heroIncubatesCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 151, 167, 0.4);
    transition: all 0.3s ease;
}

#heroIncubatesCarousel .carousel-indicators .active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Controls */
#heroIncubatesCarousel .carousel-control-prev,
#heroIncubatesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 151, 167, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
}

#heroIncubatesCarousel .carousel-control-prev:hover,
#heroIncubatesCarousel .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

#heroIncubatesCarousel .carousel-control-prev-icon,
#heroIncubatesCarousel .carousel-control-next-icon {
    filter: invert(1);
}

/* Responsiveness */
@media (max-width: 991px) {
    #hero-incubates .carousel-container {
        width: 60%;
        height: 50%;
    }
    #hero-incubates .carousel-content h4 {
        font-size: 1.8rem;
    }
    #hero-incubates .carousel-content p {
        font-size: 1rem;
    }
    #hero-incubates .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 640px) {
    #hero-incubates {
        height: 80vh;
    }
    #hero-incubates .carousel-container {
        width: 80%;
        height: 55%;
        padding: 0 10px;
    }
    #hero-incubates .carousel-content h4 {
        font-size: 1.5rem;
    }
    #hero-incubates .carousel-content p {
        font-size: 0.95rem;
    }
    #hero-incubates .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Animation */
@keyframes fadeInUpCustom {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
#hero-incubates .carousel-content.animate__fadeInUp {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
}
#hero-incubates .carousel-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
#hero-incubates .carousel-overlay {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

#hero-events-news {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero-events-news .carousel,
#hero-events-news .carousel-inner,
#hero-events-news .carousel-item,
#hero-events-news .carousel-item::before {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-events-news .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

#hero-events-news .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 40%;
    height: 50%;
    margin: auto;
    z-index: 2;
}

html[dir="rtl"] #hero-events-news .carousel-container {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

#hero-events-news .carousel-content {
    text-align: center;
    color: #fff;
}

#hero-events-news .carousel-content h4 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

#hero-events-news .carousel-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#hero-events-news .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Indicators */
#heroEventsNewsCarousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

#heroEventsNewsCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 151, 167, 0.4);
    transition: all 0.3s ease;
}

#heroEventsNewsCarousel .carousel-indicators .active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Controls */
#heroEventsNewsCarousel .carousel-control-prev,
#heroEventsNewsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 151, 167, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
}

#heroEventsNewsCarousel .carousel-control-prev:hover,
#heroEventsNewsCarousel .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

#heroEventsNewsCarousel .carousel-control-prev-icon,
#heroEventsNewsCarousel .carousel-control-next-icon {
    filter: invert(1);
}

/* Responsiveness */
@media (max-width: 991px) {
    #hero-events-news .carousel-container {
        width: 60%;
        height: 50%;
    }
    #hero-events-news .carousel-content h4 {
        font-size: 1.8rem;
    }
    #hero-events-news .carousel-content p {
        font-size: 1rem;
    }
    #hero-events-news .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 640px) {
    #hero-events-news {
        height: 80vh;
    }
    #hero-events-news .carousel-container {
        width: 80%;
        height: 55%;
        padding: 0 10px;
    }
    #hero-events-news .carousel-content h4 {
        font-size: 1.5rem;
    }
    #hero-events-news .carousel-content p {
        font-size: 0.95rem;
    }
    #hero-events-news .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Animation */
@keyframes fadeInUpCustom {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
#hero-events-news .carousel-content.animate__fadeInUp {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
}
#hero-events-news .carousel-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
#hero-events-news .carousel-overlay {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

.events-news .item {
    margin: 0 5px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    width: 100%;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;

}

.events-news .item .item-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}


.events-news .item .item-info {
    padding: 25px 15px;
    background: #ECECEC;
}


.events-news .item .item-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--primary2-color);
    height: 50px;
}

.events-news .item .item-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}


.events-news .item .item-info p {
    height: 70px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #7E7E7E;
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-news .item .item-info .btn-get-started {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 20px;
    transition: 0.5s;
    margin: 10px;
    background: var(--primary2-color);
    border: 1px solid var(--primary2-color);
    border-radius: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: #F9F9F9;

}

.events-news .item .item-info .btn-get-started:hover {
    background: var(--primary2-color);
    color: #fff;
    text-decoration: none;
}

/* === Section Hero Causes === */
#hero-causes {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero-causes .carousel,
#hero-causes .carousel-inner,
#hero-causes .carousel-item,
#hero-causes .carousel-item::before {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-causes .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

#hero-causes .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 40%;
    height: 50%;
    margin: auto;
    z-index: 2;
}

html[dir="rtl"] #hero-causes .carousel-container {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

#hero-causes .carousel-content {
    text-align: center;
    color: #fff;
}

#hero-causes .carousel-content h4 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

#hero-causes .carousel-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#hero-causes .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Indicators */
#heroCausesCarousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

#heroCausesCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 151, 167, 0.4);
    transition: all 0.3s ease;
}

#heroCausesCarousel .carousel-indicators .active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Controls */
#heroCausesCarousel .carousel-control-prev,
#heroCausesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 151, 167, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
}

#heroCausesCarousel .carousel-control-prev:hover,
#heroCausesCarousel .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

#heroCausesCarousel .carousel-control-prev-icon,
#heroCausesCarousel .carousel-control-next-icon {
    filter: invert(1);
}

/* Responsiveness */
@media (max-width: 991px) {
    #hero-causes .carousel-container {
        width: 60%;
        height: 50%;
    }
    #hero-causes .carousel-content h4 {
        font-size: 1.8rem;
    }
    #hero-causes .carousel-content p {
        font-size: 1rem;
    }
    #hero-causes .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 640px) {
    #hero-causes {
        height: 80vh;
    }
    #hero-causes .carousel-container {
        width: 80%;
        height: 55%;
        padding: 0 10px;
    }
    #hero-causes .carousel-content h4 {
        font-size: 1.5rem;
    }
    #hero-causes .carousel-content p {
        font-size: 0.95rem;
    }
    #hero-causes .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Animation */
@keyframes fadeInUpCustom {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
#hero-causes .carousel-content.animate__fadeInUp {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
}
#hero-causes .carousel-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
#hero-causes .carousel-overlay {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

/* Flex layout */
.logo-ecosystem .ecosystem-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    align-content: center;
}

/* Logo Section */
.logo-ecosystem .logo-section {
    flex: 2.5;
    min-width: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.logo-ecosystem .logo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Main Logo */
.logo-ecosystem .main-logo {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.6s ease, filter 0.3s ease;
    z-index: 10;
    background: transparent;
    border-radius: 50%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    isolation: isolate;
}

.logo-ecosystem .main-logo:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.logo-ecosystem .main-logo img {
    max-width: 80%;
    max-height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transform: translateZ(20px);
}

@-webkit-keyframes main-logo-spin {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(5deg); }
}

@keyframes main-logo-spin {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(5deg); }
}
.logo-ecosystem .main-logo.auto-spin {
    -webkit-animation: main-logo-spin 15s linear infinite;
            animation: main-logo-spin 15s linear infinite;
}

/* Satellites */
.logo-ecosystem .orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(52, 152, 219, 0.2);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

@-webkit-keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

.main-section-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: var(--primary2-color) !important;
    position: relative;
    text-align: center !important;
}

.plant_post_title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    /* margin-bottom: 20px !important; */
    color: var(--primary2-color) !important;
    /* position: relative; */
    /* text-align: center !important; */
}

.logo-ecosystem .satellite {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.6s ease, filter 0.3s ease;
    z-index: 10;
    background: transparent;
    border-radius: 50%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.logo-ecosystem .satellite img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transform: translateZ(20px);
}

.logo-ecosystem .satellite:hover {
    transform: scale(1.2) rotateY(15deg);
    filter: brightness(1.1);
}


.logo-ecosystem .text-section {
    flex: 1.2;
    min-width: 250px;
    padding: 0;
    /* margin-left: 80px; */
    position: relative;
    z-index: 2;
    transform: translateZ(40px);
}

.logo-ecosystem .text-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
    z-index: -1;
}

.logo-ecosystem .tooltip {
    position: absolute;
    background: var(--footer-text-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
    transform: translateY(-10px) scale(0.9) rotateX(15deg);
    will-change: opacity, transform;
    transform-origin: bottom center;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.logo-ecosystem .tooltip.active {
    opacity: 1;
    transform: translateY(-20px) scale(1) rotateX(0deg);
}

.logo-ecosystem .tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--footer-text-color);
}

/* Titles & Descriptions */
.logo-ecosystem .main-section-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: var(--primary2-color) !important;
    position: relative;
    text-align: start !important;
}

.logo-ecosystem .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Buttons */
.logo-ecosystem .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.logo-ecosystem .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* RTL adjustments */
html[dir="rtl"] .logo-ecosystem .main-section-title:after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .logo-ecosystem .text-section {
    text-align: right;
}

/* Media Queries */

/* Medium screens */
@media (max-width: 1024px) {
    .logo-ecosystem .logo-section {
        flex: 2;
    }

    .logo-ecosystem .text-section {
        flex: 1;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .logo-ecosystem .ecosystem-content {
        flex-direction: column;
        padding: 0;

    }

    .logo-ecosystem .text-section,
    .logo-ecosystem .logo-section {
        width: 100%;
        flex: unset;
    }

    .logo-ecosystem .main-section-title {
        font-size: 2rem;
    }

    .logo-ecosystem .main-logo {
        width: 120px;
        height: 120px;
    }

    .logo-ecosystem .satellite {
        width: 60px;
        height: 60px;
    }

    .logo-ecosystem .logo-section {
        min-height: 400px;
        margin-top: 40px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .logo-ecosystem {
        padding: 40px 0;
    }

    .logo-ecosystem .main-section-title {
        font-size: 1.75rem;
    }

    .main-section-title {
        font-size: 2rem !important;
    }

    .logo-ecosystem .section-description {
        font-size: 1rem;
    }

    .logo-ecosystem .main-logo {
        width: 100px;
        height: 100px;
    }

    .logo-ecosystem .satellite {
        width: 50px;
        height: 50px;
    }

    .logo-ecosystem .logo-section {
        min-height: 350px;
    }
}

.partners .partner-content {
    padding: 15px;
    position: relative;
}

.partners .partner-content h3 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    text-transform: capitalize;
    color: var(--primary2-color) !important;
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
}

.partners .partner-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.partners .partner-content h3 a:hover {
    color: #777777;
}

.partners .partner-content p {
    font-size: 14px;
    color: #777777;
}

.partners .partner-content h4 {
    font-size: 14px;
    background: var(--primary2-color) !important;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}

.logos-container img.partner-logo:hover {
    transform: scale(1.1) !important;
}
.modal-header h4 {
    color: var(--primary2-color) !important;
    font-weight: 700 !important;
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* LaBadia Educate Platform Features */
.home-page .services .icon-box {
    display: grid;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border-bottom: 3px solid #fff;
    filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.14));
    height: 411.45px;
    left: 44.05px;
    right: 1145.43px;
    border-radius: 20px;
}
@media (max-width: 800px) {
    .home-page .services .title {
        padding: 0px 20px;
    }

}
@media (max-width: 580px) {
    .home-page .services .icon-box {
        margin: 0px 60px 40px 60px;
    }
    .home-page .services .title {
        padding: 0px 0px;
    }

}

.home-page .services .icon-box:hover {
    transform: translateY(-5px);
    border-color: #62B247;
}

.home-page .services .icon  {
    width: 273px;
    height: 148px;
    fill: #62B247;
}

.home-page .services .title {
    font-weight: 900;
    font-size: 18px;
    height: 63px;
    text-decoration: underline;
    margin: auto;
    margin-top: auto;
    color: #FFFFFF;
}

.home-page .services .title a {
    color: #111;
}

.home-page .services .description {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 127.13%;
    margin: auto;
    margin-top: auto;
    color: #FFFFFF;
}



/*--------------------------------------------------------------
# Our services
--------------------------------------------------------------*/


.home-page .services .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 330px;
    background-size: cover;
    background-position: center;
    border: 1px solid #5691AB;
    border-radius: 10px;
}
.home-page .services h2 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 59px;
    text-align: justify;
    text-transform: capitalize;
    color: var(--primary2-color) !important;
}
.home-page .services .member .member-img {
    position: relative;
    overflow: hidden;
}



.home-page .services .member .member-info {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: white;
    padding: 10px;
    background: rgba(255, 255, 255, 0.32);
    -webkit-backdrop-filter: blur(12.5px);
            backdrop-filter: blur(12.5px);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;

}
.home-page .services .member .member-info:hover {
    height: 35%;
}

.home-page .services .member .member-info h4 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 47px;
    text-align: justify;
    text-transform: capitalize;
    color: var(--primary2-color) !important;
    text-shadow: 0px 0px 5px #FFFFFF;
    text-transform: capitalize;
}

.home-page .services .member .member-info p {
    color: white;
    height: 100px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 127.13%;
    text-align: justify;
}


.participants .item {
    border: none;
    padding: 2px;
}

.participants .item .item-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.participants .item .item-wrap:after {
    z-index: 2;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary2-color) !important;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    background: linear-gradient(90deg, #065969, #028e9e) !important;
}

.participants .item .item-wrap img {
    transition: 0.3s transform ease;
    transform: scale(1);
    width: 100%;
}

.participants .item .item-wrap > .work-info {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    z-index: 3;
    transform: translateY(-50%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: 0.3s all ease;
}

.participants .item .item-wrap > .work-info h3 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 47px;
    text-align: center;
    text-transform: capitalize;
    color: #EBEBEB;
}

.participants .item .item-wrap > .work-info span {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 59px;
    text-align: center;
    text-transform: capitalize;
    color: #EBEBEB;
}

.participants .item .item-wrap:hover {
    text-decoration: none;
}

.participants .item .item-wrap:hover img {
    transform: scale(1.05);
}

.participants .item .item-wrap:hover:after {
    opacity: 1;
    visibility: visible;
}

.participants .item .item-wrap:hover .work-info {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}

.section-info {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container-info {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container-info h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary2-color);
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.container-info h2 {
    font-size: 24px;
    color: var(--primary2-color);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: capitalize;
}

.container-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.container-info p span {
    font-weight: bold;
    color: var(--primary2-color);
}

.container-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.container-info li {
    margin-bottom: 10px;
}

.container-info a {
    color: var(--primary2-color);
    text-decoration: none;
}

.container-info a:hover {
    text-decoration: underline;
    color: #6caace;
}

.footer-note {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.policy-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f0f4f4;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
}

.policy-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.policy-label {
    font-weight: bold;
    color: var(--primary2-color);
}

.table-info {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    direction: inherit;
}

.table-info th,
.table-info td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: start;
}

.table-info th {
    background-color: var(--primary2-color);
    color: #fff;
    font-weight: bold;
}

.table-info tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-info tr:hover {
    background-color: #f1f1f1;
}

html[dir="rtl"] .table-info th,
html[dir="rtl"] .table-info td {
    text-align: start;
}

#hero-marketplace {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero-marketplace .carousel,
#hero-marketplace .carousel-inner,
#hero-marketplace .carousel-item {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-marketplace .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

#hero-marketplace .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 40%;
    height: 50%;
    margin: auto;
    z-index: 2;
}

html[dir="rtl"] #hero-marketplace .carousel-container {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

#hero-marketplace .carousel-content {
    text-align: center;
    color: #fff;
}

#hero-marketplace .carousel-content h4 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

#hero-marketplace .carousel-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#hero-marketplace .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Responsiveness */
@media (max-width: 991px) {
    #hero-marketplace .carousel-container {
        width: 60%;
        height: 50%;
    }
    #hero-marketplace .carousel-content h4 {
        font-size: 1.8rem;
    }
    #hero-marketplace .carousel-content p {
        font-size: 1rem;
    }
    #hero-marketplace .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 640px) {
    #hero-marketplace {
        height: 80vh;
    }
    #hero-marketplace .carousel-container {
        width: 80%;
        height: 55%;
        padding: 0 10px;
    }
    #hero-marketplace .carousel-content h4 {
        font-size: 1.5rem;
    }
    #hero-marketplace .carousel-content p {
        font-size: 0.95rem;
    }
    #hero-marketplace .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Animation */
@keyframes fadeInUpCustom {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
#hero-marketplace .carousel-content.animate__fadeInUp {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
}
#hero-marketplace .carousel-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
#hero-marketplace .carousel-overlay {
    -webkit-animation: fadeInUpCustom 1s ease forwards;
            animation: fadeInUpCustom 1s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}


.marketplace {
    padding: 30px 0;
}
.marketplace .item {
    margin: 0 5px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    width: 100%;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;

}

.marketplace .item .item-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}


.marketplace .item .item-info {
    padding: 25px 15px;
    height: 200px;
    background: #ECECEC;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.marketplace .item .item-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #262626;
}

.marketplace .item .item-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}


.marketplace .item .item-info p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 40px;
    color: #7E7E7E;
    display: flex;
    justify-content: space-between;
}
.marketplace .item .item-info p span {
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 40px;
    color: #7E7E7E;
}

.marketplace .item .item-info p span img {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}





.filter_box_marketplace {
    padding: 40px 0;
    position: absolute;
    z-index: 6;
    /* top: 100%; */
    transform: translateY(-10%);
    left: 0;
    right: 0;
    bottom: -130px;
    /* menu hover set */
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 15px;
}
.filter_box_marketplace .justify-content-center{
    margin: 10px 20px;
}


.filter_box_marketplace h2 {
    font-family: "Poppins", sans-serif;
    color: #064469;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter_box_marketplace h3 span {
    color: #064469;
}

.filter_box_marketplace p {
    padding: 0;
    margin: 0;
}

.filter_box_marketplace .filter_box_marketplace-rest {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    transition: 0.4s;
    width: 200px;
    border-radius: 4px;
    color: #ffffff;
    background: #064469;
    text-align: center;
    border: none;
}

.filter_box_marketplace .filter_box_marketplace-rest:hover {
    color: #696969;
    border: 2px solid #696969;
    background: none;
}

.filter_box_marketplace .filter_box_marketplace-search {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    transition: 0.4s;
    margin: 10px;
    width: 200px;
    color: #696969;
    border: 2px solid #696969;
    border-radius: 5px;
    text-align: center;
    background: none;
}
.filter_box_marketplace .filter_box_marketplace-search:hover {
    background: #064469;
    color: #fff;
    border: 2px solid #064469;
}
.filter_box_marketplace .has-search  {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.filter_box_marketplace .has-search .form-control {
    padding-right: 2.375rem;
    height: 45px;
    background-color: #F3EBF7;
    border: var(--bs-border-width) solid #064469;
}
.filter_box_marketplace .form-check {
    display: flex;
    align-items: flex-end;
}
.filter_box_marketplace .form-check-input{
    background-color: #F3EBF7;
    border: 2px solid #064469;
    padding: 5px;
    margin: 0px 10px;
    height: 25px;
    width: 25px;
}
.filter_box_marketplace .form-check-input:checked{
    background-color: #064469;
}
.filter_box_marketplace .form-check-input:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.filter_box_marketplace .form-check-input:focus {
    outline: none;
    border: 2px solid #064469;
    box-shadow: 0 0 8px #064469;
}

.filter_box_marketplace .has-search .form-control:focus {
    background-color: #F3EBF7;
    border: var(--bs-border-width) solid #064469;
    box-shadow: 0 0 8px #064469;
}


.filter_box_marketplace .has-search .form-control-feedback {
    padding-right: 3.375rem;
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;

}
.filter_box_marketplace .has-search .form-control-feedback  img {
    width: 50px;
}

@media (max-width: 988px) {
    .filter_box_marketplace {
        background-attachment: scroll;
        bottom: -300px;

    }
}

@media (min-width: 769px) {
    .filter_box_marketplace .filter_box_marketplace-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}
@media (max-width: 769px) {
    .filter_box_marketplace {
        max-width: 80%;
        bottom: -400px;

    }
}
.marketplace p {
    text-align: justify;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #5691ab29 !important;
}

.marketplace html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif
}

.marketplace body {
    margin: 0
}

.marketplace ins {
    background: 0 0;
    text-decoration: none
}



.marketplace progress {
    display: inline-block
}

.marketplace img:not([src]):not([srcset]) {
    visibility: hidden
}

.marketplace progress {
    vertical-align: baseline
}

.marketplace [hidden] {
    display: none
}

.marketplace a {
    -webkit-text-decoration-skip: objects;
    background-color: transparent
}

.marketplace a:active,.marketplace a:hover {
    outline-width: 0
}

.marketplace strong {
    font-weight: inherit;
    font-weight: bolder
}

.marketplace small {
    font-size: 80%
}

.marketplace img {
    border-style: none
}

.marketplace svg:not(:root) {
    overflow: hidden
}

.marketplace code {
    font-family: monospace, monospace;
    font-size: 1em
}

.marketplace button,.marketplace input,.marketplace select,.marketplace textarea {
    font: inherit;
    margin: 0
}

.marketplace button,.marketplace input {
    overflow: visible
}

.marketplace button,.marketplace select {
    text-transform: none
}

.marketplace [type=submit],.marketplace button,.marketplace html [type=button] {
    -webkit-appearance: button
}

.marketplace [type=button]::-moz-focus-inner,.marketplace [type=submit]::-moz-focus-inner,.marketplace button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

.marketplace [type=button]:-moz-focusring,.marketplace [type=submit]:-moz-focusring,.marketplace button:-moz-focusring {
    outline: 1px dotted ButtonText
}

.marketplace textarea {
    overflow: auto
}

.marketplace [type=checkbox],.marketplace [type=radio] {
    box-sizing: border-box;
    padding: 0
}

.marketplace [type=number]::-webkit-inner-spin-button,.marketplace [type=number]::-webkit-outer-spin-button {
    height: auto
}

.marketplace [type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

.marketplace [type=search]::-webkit-search-cancel-button,.marketplace [type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

.marketplace ::-webkit-input-placeholder {
    color: inherit;
    opacity: .54
}

.marketplace ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

.marketplace .text-red {
    color: #cb4321 !important
}

.marketplace .text-green {
    color: #2f8a33 !important
}

.marketplace .text-gray {
    color: #999 !important
}

.marketplace .marketplace .btn,.marketplace .marketplace .form-control:focus {
    box-shadow: none
}

.marketplace .btn {
    font-size: 1em;
    text-decoration: none
}

.marketplace .btn:focus {
    box-shadow: none
}

.marketplace .btn.loading {
    opacity: .65;
    pointer-events: none
}

.marketplace .btn.loading, .marketplace .btn.loading .svg-icon {
    align-items: center;
    display: flex;
    justify-content: center
}

.marketplace .btn.loading .svg-icon {
    height: 1em;
    padding-left: 5px;
    padding-right: 5px;
    width: 1em
}

.marketplace .btn.loading .marketplace .svg-icon svg {
    display: none
}

.marketplace .btn.loading .svg-icon:before {
    -webkit-animation: lds-dual-ring .5s linear infinite;
            animation: lds-dual-ring .5s linear infinite;
    border-color: #777 transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    content: " ";
    display: inline-block;
    height: 11px;
    margin-right: 2px;
    position: absolute;
    width: 11px
}

.marketplace .btn.marketplace .btn-sm {
    font-size: .75rem;
    padding: .25rem .75rem
}

.marketplace .btn-secondary {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    padding: .5rem 1rem;
    position: relative;
    text-align: center
}

.marketplace .btn-secondary .svg-icon {
    margin-right: 5px
}

.marketplace .btn-secondary:focus, .marketplace .btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff
}

/*

.marketplace .btn-primary.disabled, .marketplace .btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #6c757d
} */

.marketplace .alert a.box-shadow {
    box-shadow: inset 0 0 0 transparent, inset 0 -1px 0 #fff
}

.marketplace .alert-info {
    background-color: #3d9cd2;
    color: #fff
}

.marketplace .rounded-7 {
    border-radius: .7rem !important
}

.marketplace p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6em
}

.marketplace p span {
    font-family: inherit;
    font-size: inherit
}

.marketplace a, .marketplace p span {
    color: inherit
}

.marketplace a {
    position: relative;
    transition: all .4s ease
}

.marketplace a:hover {
    color: var(--primary-color)
}

.marketplace button,.marketplace input,.marketplace select,.marketplace textarea {
    outline: none;
    border-radius: 50px !important;
}

.marketplace a {
    outline: none;
}

.marketplace a:hover, .marketplace h1:focus, .marketplace h2:focus,.marketplace h3:focus,.marketplace h4:focus,.marketplace h5:focus,.marketplace h6:focus {
    text-decoration: none
}

.marketplace a:focus,.marketplace  button:focus,.marketplace  input:focus,.marketplace  select:focus,.marketplace  textarea:focus {
    outline: none;
    text-decoration: none
}

.marketplace img {
    max-width: 100%
}

.marketplace .svg-icon img{
    max-width: 50%
}

.marketplace .svg-icon img:hover{
    transform: scale(1.1) !important;
}

.marketplace a {
    outline: none;
    text-decoration: none;
    transition: .5s
}

.marketplace .cart--mini {
    display: block;
    position: relative
}

.marketplace .cart--mini .header-item-counter {
    top: 0
}

.marketplace .cart--mini .cart__content {
    display: none;
    min-width: 370px;
    opacity: 0;
    padding-top: 10px;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(20px);
    transition: all .4s ease;
    visibility: hidden;
    z-index: 30
}

.marketplace .cart--mini .mini-cart-content .widget-shopping-cart-content {
    background-color: #fff;
    border: 1px solid #ccc
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list {
    border-radius: 3px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list::-webkit-scrollbar {
    background: 0 0;
    width: 7px
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list::-webkit-scrollbar-thumb {
    background-color: #ccc
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list li.mini-cart-item {
    border-bottom: 1px solid #ccc;
    display: flex;
    list-style: none;
    margin-top: 20px;
    padding-bottom: 20px;
    position: relative
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list li.mini-cart-item:last-child {
    border: none
}

.marketplace .cart--mini .mini-cart-content ul.mini-product-cart-list li.mini-cart-item img {
    padding: 10px
}

.marketplace .cart--mini .mini-cart-content .product-content {
    padding-right: 40px
}

.marketplace .cart--mini .mini-cart-content .product-content .product-image {
    flex: none;
    height: 60px;
    margin-right: 20px;
    width: 60px
}

.marketplace .cart--mini .mini-cart-content .product-content .product-name {
    margin-bottom: 5px
}

.marketplace .cart--mini .mini-cart-content .product-content .product-name a {
    color: #000;
    line-height: 1.5
}

.marketplace .cart--mini .mini-cart-content .product-content .product-name a:hover {
    color: #26901b
}

.marketplace .cart--mini .mini-cart-content .quantity .price-amount {
    font-weight: 700
}

.marketplace .cart--mini .mini-cart-content .control-buttons {
    border-top: 1px solid #e1e1e1;
    padding: 0 25px 30px
}

.marketplace .cart--mini .mini-cart-content .mini-cart__total {
    align-items: center;
    color: #000;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    padding-top: 10px
}

.marketplace .cart--mini .mini-cart-content .mini-cart__total .price-amount {
    color: var(--primary-color);
    font-size: 16px
}

.marketplace .cart--mini .mini-cart-content .mini-cart__buttons {
    margin: 20px 0 0
}

.marketplace .cart--mini .mini-cart-content .mini-cart__buttons .marketplace .btn {
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    padding: 8px 20px;
    text-align: center;
    transition: .5s ease;
    width: 100%
}

.marketplace .cart--mini .mini-cart-content .mini-cart__buttons .marketplace .btn.checkout {
    border-color: transparent;
    color: #fff
}

@media (min-width: 1200px) {
    .marketplace .cart--mini:focus .cart__content, .marketplace .cart--mini:hover .cart__content {
        opacity: 1;
        transform: translate(0);
        visibility: visible
    }

    .marketplace .cart--mini .cart__content {
        display: block
    }

    .marketplace .cart--mini .cart__content .panel__header {
        display: none
    }

    .marketplace .cart--mini .cart__items {
        position: relative
    }

    .marketplace .cart--mini .cart__items:before {
        background-color: #fff;
        border-left: 1px solid #e1e1e1;
        border-top: 1px solid #e1e1e1;
        content: "";
        display: inline-block;
        height: 16px;
        position: absolute;
        right: 30px;
        top: -8px;
        transform: rotate(45deg);
        transform-origin: 50% 50%;
        width: 16px
    }
}

@media (max-width: 1199px) {
    .marketplace .cart--mini .cart__content {
        display: block;
        opacity: 1;
        padding-top: 0;
        right: 0;
        transform: none;
        transition: none;
        visibility: visible
    }

    .marketplace .cart--mini .cart__content.active {
        height: 100dvh;
        left: auto;
        overflow-y: auto;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10001
    }

    .marketplace .cart--mini .cart__content.active .mini-cart-content {
        opacity: 1;
        transform: translateX(0);
        visibility: visible
    }

    .marketplace .cart--mini .cart__content .backdrop {
        background: hsla(0, 3%, 60%, .369);
        bottom: 0;
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%
    }

    .marketplace .cart--mini .cart__content .mini-cart-content {
        background-color: #fff;
        height: 100dvh;
        left: auto;
        max-width: 400px;
        overflow-y: auto;
        padding-top: 0;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: all .5s cubic-bezier(.7, 0, .3, 1) 0s;
        width: 82%;
        z-index: 10001
    }

    .marketplace .cart--mini .cart__content .mini-cart-content .widget-shopping-cart-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between
    }

    .marketplace .cart--mini .cart__content .mini-cart-content .widget-shopping-cart-content .cart__items {
        height: 100%;
        overflow-y: auto
    }
}

.marketplace .cart-form__contents > :not(:first-child) {
    border-top-width: 0
}

.marketplace .cart-form__contents tbody td {
    padding: 20px 10px;
    vertical-align: top
}

.marketplace .cart-form__contents tbody td.product-thumbnail {
    width: 90px
}

.marketplace .cart-form__contents tbody td  .marketplace .product-button .quantity {
    margin-bottom: 0
}

.marketplace .cart-form__contents tbody td.product-quantity {
    min-width: 120px
}

.marketplace .cart-form__contents thead th {
    background-color: #f5f5f5;
    color: #555;
    font-weight: 400;
    padding: 11px 10px
}

.marketplace .cart-form__contents thead tr {
    border-top: 1px solid #eee
}

.marketplace .cart-form__contents tbody tr, .marketplace .cart-form__contents thead tr {
    border-bottom: 1px solid #eee
}

.marketplace .cart-form__contents tbody td, .marketplace .cart-form__contents tbody th, .marketplace .cart-form__contents thead td, .marketplace .cart-form__contents thead th {
    border-bottom-width: 0
}

.marketplace .cart-form__contents tbody td:first-child, .marketplace .cart-form__contents tbody th:first-child, .marketplace .cart-form__contents thead td:first-child, .marketplace .cart-form__contents thead th:first-child {
    border-left-width: 1px
}

.marketplace .cart-form__contents tbody td:last-child, .marketplace .cart-form__contents tbody th:last-child, .marketplace .cart-form__contents thead td:last-child, .marketplace .cart-form__contents thead th:last-child {
    border-right-width: 1px
}

@media (max-width: 992px) {
    .marketplace .cart-form__contents tbody td {
        padding: 10px
    }
}

@media (max-width: 767px) {
    .marketplace .cart-form__contents tbody td {
        padding: 10px 7px
    }

    .marketplace .cart-form__contents tbody td.product-md {
        border-top-width: 0;
        padding-top: 0
    }

    .marketplace .cart-form__contents tbody td.product-subtotal .box-price .amount {
        color: #2f8a33
    }
}

.marketplace .wishlist-page-content  .cart-form__contents .cart_item  .marketplace .product-button .quantity {
    display: none
}

.marketplace .menu--product-categories .sub-toggle {
    right: -30px
}


.marketplace .marketplace  .product-gallery__variants .slick-slide {
    cursor: pointer
}

.marketplace .marketplace  .product-gallery__variants .slick-slide .item .border {
    border: 1px solid #ccc !important
}

.marketplace .marketplace  .product-gallery__variants .slick-slide .item .border img {
    height: 50px;
    width: 50px
}

.marketplace .marketplace  .product-gallery__variants .slick-slide.slick-current .item .border {
    border-color: var(--primary-color) !important
}

.marketplace .product-inner {
    border: solid transparent;
    border-width: 1px 1px 0;
    padding: 20px 25px 30px
}

.marketplace .product-inner .product-thumbnail {
    margin-bottom: 20px;
    position: relative
}

.marketplace .product-inner .product-thumbnail  .marketplace .product-loop__buttons {
    display: block;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0
}

.marketplace .product-inner .product-thumbnail  .marketplace .product-loop__buttons .product-loop_button {
    margin-bottom: 10px
}

.marketplace .product-inner .product-thumbnail  .marketplace .product-loop__buttons .product-loop_button a {
    transform: translateX(10px);
    transition-delay: 0s;
    transition: .3s
}

.marketplace .product-inner:hover {
    border-color: #c9c9c9;
    position: relative
}

.marketplace .product-inner:hover  .marketplace .product-loop__buttons {
    opacity: 1;
    z-index: 1
}

.marketplace .product-inner:hover  .marketplace .product-loop__buttons .product-loop_button a {
    transform: translateX(0)
}

.marketplace .product-inner:hover  .marketplace .product-loop__buttons .quick-view-button .quick-view {
    transition-delay: 0s
}

.marketplace .product-inner:hover  .marketplace .product-loop__buttons .wishlist-button .wishlist {
    transition-delay: 75ms
}

.marketplace .product-inner:hover  .marketplace .product-loop__buttons .compare-button .compare {
    transition-delay: .15s
}

.marketplace .product-inner:hover .product-bottom-box {
    display: block;
    z-index: 9
}

.marketplace .product-inner .product-bottom-box {
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-top: 0 solid #c9c9c9;
    display: none;
    left: -26px;
    padding: 17px 25px 25px;
    position: absolute;
    right: -26px;
    top: 100%;
    z-index: -1
}

.marketplace .product-inner .product-bottom-box  .marketplace .product-loop__buttons {
    display: none
}

.marketplace .product-inner .product__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #09f;
    display: -webkit-box;
    font-size: 14px;
    font-weight: 400;
    height: 3em;
    line-height: 1.5em;
    margin-bottom: 5px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%
}

.marketplace .product-inner .product__title a {
    box-shadow: none;
    color: #09f;
    line-height: 20px;
    text-decoration: none;
    transition: .3s ease
}

.marketplace .product-inner .product__title a:hover {
    color: var(--primary-color)
}

.marketplace .product-inner .meta-sku {
    display: none
}

.marketplace .product-button .add-to-cart-button {
    padding-left: 7px;
    padding-right: 7px;
    width: 100%
}

.marketplace .product-inner .deal-sold .deal-text {
    margin-top: 5px;
    order: 2;
    width: 100%
}

.marketplace .product-inner .deal-sold .deal-progress {
    order: 1;
    width: 100%
}

.marketplace .product-details .sold-by-meta {
    font-weight: 700
}

.marketplace .product-details .product-entry-meta {
    align-items: center;
    display: flex;
    margin-bottom: 5px;
    margin-top: 5px
}

.marketplace .product-details .product-entry-meta > div {
    margin-right: 14px;
    padding-right: 15px;
    position: relative
}

.marketplace .product-details .meta-sku .meta-value {
    color: #888;
    margin-left: 5px
}

.marketplace .product-price {
    align-items: center;
    color: #690;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px
}

.marketplace .product-price del {
    color: #888;
    font-size: .85em;
    font-weight: 400;
    margin-right: 4px;
    order: 2
}

.marketplace .product-price ins {
    background-color: transparent;
    color: #cb4321;
    margin-right: 4px;
    order: 1
}

.marketplace .product-stock:not(.without-bg) {
    background-color: #ebfae9;
    border: 1px solid #82d45e;
    border-radius: 5px;
    font-weight: 700;
    margin: 14px 0 20px;
    padding: 7px 15px
}

.marketplace .product-stock label {
    color: #222;
    font-weight: 400;
    margin-right: 8px
}

.marketplace .product-stock.in-stock {
    color: #26901b;
    font-weight: 700
}

.marketplace .product-stock.out-of-stock {
    background-color: #ffe9e1;
    border-color: #f79090;
    color: #e84506
}

.marketplace .product-stock.out-of-stock.without-bg {
    background-color: unset;
    font-weight: 700
}

.marketplace .product-loop__buttons {
    display: flex
}

.marketplace .product-loop__buttons .wishlist-button .wishlist .svg-icon:nth-of-type(2) {
    color: var(--primary-color)
}

.marketplace .product-loop__buttons .wishlist-button .wishlist.added-to-wishlist .svg-icon:first-of-type,  .marketplace .product-loop__buttons .wishlist-button .wishlist:not(.added-to-wishlist) .svg-icon:nth-of-type(2) {
    display: none
}

.marketplace .product-loop__buttons .product-loop_button {
    margin-bottom: 10px
}

.marketplace .product-loop__buttons .product-loop_button a {
    color: var(--primary-color);
    display: block;
    font-size: 15px;
    line-height: 1;
    text-align: right
}

.marketplace .product-loop__buttons .product-loop_button span:not(.svg-icon) {
    display: none
}

.marketplace .product-loop__buttons .product-loop_button .product-loop_action.loading {
    align-items: center;
    display: flex;
    justify-content: center
}

.marketplace .product-loop__buttons .product-loop_button .product-loop_action.loading .svg-icon {
    align-items: center;
    color: transparent;
    display: flex;
    justify-content: center
}

.marketplace .product-loop__buttons .product-loop_button .product-loop_action.loading .svg-icon:before {
    -webkit-animation: lds-dual-ring .5s linear infinite;
            animation: lds-dual-ring .5s linear infinite;
    border-color: #777 transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    content: " ";
    display: inline-block;
    height: 11px;
    margin-right: 2px;
    position: absolute;
    width: 11px
}

.marketplace .ribbons .ribbon {
    background-color: #26901b;
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 700;
    height: 20px;
    left: 0;
    line-height: 19px;
    margin: 0;
    min-height: inherit;
    min-width: inherit;
    padding: 0 7px;
    position: absolute;
    text-align: center;
    top: 0
}

.marketplace .ribbons .ribbon.out-of-stock {
    background-color: #222
}

.marketplace .ribbons .ribbon.featured {
    background-color: #ff8c46
}

.marketplace .product-button {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.marketplace .product-button .quantity {
    flex: 0 1 100px;
    margin-bottom: .5rem;
    margin-right: .5rem
}

.marketplace .product-button .quantity .qty-box {
    border: 1px solid #ddd;
    border-radius: 3px;
    position: relative;
    width: 100%;
    border-radius: 50px !important;
}

.marketplace .product-button .quantity .qty {
    -moz-appearance: textfield;
    appearance: textfield;
    -webkit-appearance: textfield;
    background-color: #fff;
    border-radius: 3px;
    border-width: 0;
    color: #000;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    height: 38px;
    line-height: 38px;
    padding: 10px 0;
    text-align: center;
    width: 100%
}

.marketplace .product-button .quantity .qty::-webkit-inner-spin-button,  .marketplace .product-button .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.marketplace .product-button .quantity .decrease,  .marketplace .product-button .quantity .increase {
    align-items: center;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: .5s;
    width: 30px
}

.marketplace .product-button .quantity .increase {
    left: auto;
    right: 0
}

.marketplace .product-button .label-quantity {
    display: none;
    margin-bottom: 10px
}

.marketplace .product-button .box-price {
    align-items: center;
    display: flex;
    font-size: 13px;
    margin-bottom: 10px
}

.marketplace .product-button .box-price .title-price {
    color: #888;
    margin: 0 5px 0 0
}

.marketplace .product-button .box-price .price-current {
    color: #690;
    font-weight: 700
}

.marketplace  .marketplace #product-quick-view-modal .product-button {
    align-items: flex-end;
    border-top: 1px solid #eee;
    display: flex;
    padding: 17px 0 0
}

.marketplace  .marketplace #product-quick-view-modal .product-button .label-quantity {
    display: block
}

.marketplace  .marketplace #product-quick-view-modal .product-button .box-price {
    display: none
}

.marketplace  .product-button .add-to-cart-button {
    padding-left: 20px;
    padding-right: 20px;
    width: auto
}

.marketplace #product-quick-view-modal .product-entry-meta > div:not(:last-child):after {
    background-color: #e5e5e5;
    content: "";
    height: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px
}

.marketplace #product-quick-view-modal .marketplace  .product-gallery__wrapper .marketplace  .product-gallery__image .img-fluid-eq .img-fluid-eq__dummy {
    margin-top: 77%
}

.marketplace #product-quick-view-modal .entry-product-header {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between
}

.marketplace  .marketplace #product-quick-view-modal .product-loop__buttons {
    margin-left: 10px
}

.marketplace  .marketplace #product-quick-view-modal .product-loop__buttons .quick-view {
    display: none
}

.marketplace  .marketplace #product-quick-view-modal .product-loop__buttons .product-loop_action {
    margin-right: 10px
}

.marketplace #product-quick-view-modal .marketplace .btn-close {
    border: 1px solid #ccc;
    border-radius: 3px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1
}

.marketplace #product-quick-view-modal.loading .modal-dialog {
    display: none
}

.marketplace #product-quick-view-modal.loading .modal-loading {
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    z-index: 99
}

.marketplace #product-quick-view-modal.loading .modal-loading:after {
    -webkit-animation: lds-dual-ring .5s linear infinite;
            animation: lds-dual-ring .5s linear infinite;
    border-color: #fff transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    content: " ";
    display: block;
    height: 30px;
    width: 30px
}

.marketplace .product-detail-container .cart-form {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 30px;
    padding: 17px 0
}

.marketplace .product-detail-container   .product-details .product-meta-sold-by a {
    color: #09f;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase
}

.marketplace .product-detail-container   .product-details .product-entry-meta {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 20px;
    padding-bottom: 10px
}

.marketplace .product-detail-container   .product-details .product-entry-meta a {
    color: #09f
}

.marketplace .product-detail-container   .product-details .product-entry-meta p,  .marketplace .product-detail-container   .product-details .product-entry-meta small {
    font-size: 13px
}

.marketplace .product-detail-container   .product-details  .marketplace .product-price ins {
    font-size: 24px;
    font-weight: 700
}

.marketplace .product-detail-container   .product-details  .marketplace .product-price del {
    font-size: 16px;
    font-weight: 500
}

.marketplace .product-detail-container   .product-button .label-quantity {
    display: inline-block
}

.marketplace .product-button .add-to-cart-button {
    flex: 1 1 30%;
    margin-right: .5rem;
    white-space: nowrap
}

.marketplace .product-detail-container   .product-button .quantity .qty {
    height: 46px
}

.marketplace .product-detail-container .box-price {
    display: none
}

.marketplace .product-detail-container   .product-loop__buttons {
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 100%;
    width: 100%
}

.marketplace .product-detail-container   .product-loop__buttons .quick-view-button {
    display: none
}

.marketplace .product-detail-container   .product-loop__buttons .product-loop_button .product-loop_action {
    color: #000;
    display: flex;
    margin-right: 20px
}

.marketplace .product-detail-container   .product-loop__buttons .product-loop_button .product-loop_action .product-loop_icon {
    display: flex;
    margin-right: 7px
}

.marketplace .product-detail-container   .product-loop__buttons .product-loop_button .product-loop_action span.text {
    display: block
}

.marketplace .product-detail-container .deal-expire-date .expire-countdown {
    display: flex;
    text-align: center
}

.marketplace .product-detail-container .deal-expire-date .expire-countdown .timer {
    display: block
}

.marketplace .product-detail-container .deal-expire-date .expire-countdown .timer .digits {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    color: #e84506;
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 3px;
    padding: 10px 5px;
    white-space: nowrap
}

.marketplace .product-detail-container .deal-expire-date .expire-countdown .timer .text {
    display: block
}

.marketplace .product-detail-container .deal-expire-date .expire-countdown .divider {
    color: #aaa;
    font-size: 18px;
    font-weight: 700;
    padding-top: .3em;
    width: 14px
}

.marketplace .product-detail-container .product-detail-tabs .nav {
    background-color: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px;
    padding: 22px 25px;
    position: relative
}

.marketplace .product-detail-container .product-detail-tabs .nav .nav-link {
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0;
    color: var(--text-color);
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    position: relative;
    text-align: left;
    text-transform: inherit
}

.marketplace .product-detail-container .product-detail-tabs .nav .nav-link.active {
    background-color: var(--primary-color);
    color: #fff
}

.marketplace .product-detail-container .product-detail-tabs .nav .nav-link:last-child {
    border-bottom-color: transparent
}

.marketplace .product-detail-container .deal-sold {
    align-items: center
}

.marketplace .product-detail-container .deal-sold .deal-text .text {
    font-weight: 400
}

.marketplace .product-detail-container .col .site-info__item {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 15px
}

.marketplace .product-detail-container .col:last-child .site-info__item {
    border: none;
    padding: 0
}

.marketplace .product-detail-container .meta-categories,  .marketplace .product-detail-container .meta-sku {
    margin-bottom: 5px
}

.marketplace .product-detail-container .meta-categories .meta-label,  .marketplace .product-detail-container .meta-sku .meta-label {
    color: #888
}

.marketplace .product-detail-container .meta-categories .meta-value,  .marketplace .product-detail-container .meta-sku .meta-value {
    color: #000
}

.marketplace .product-detail-container .meta-categories a {
    color: #09f
}

.marketplace .product-panel-reviews .bar-rating .star-item {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 6px;
    width: 100%
}

.marketplace .product-panel-reviews .bar-rating .star-item .slabel,  .marketplace .product-panel-reviews .bar-rating .star-item .svalue {
    flex: 0 0 auto;
    text-align: center;
    width: 60px
}

.marketplace .product-panel-reviews .bar-rating .star-item .progress {
    width: 100%
}

.marketplace .store-social-wrapper .store-social {
    list-style: none;
    margin: 5px 0 0;
    padding: 0
}

.marketplace .store-social-wrapper .store-social li {
    display: inline-block;
    margin-left: 0;
    margin-right: 7px
}

.marketplace .store-social-wrapper .store-social li:last-child {
    margin-right: 0
}

.marketplace .store-social-wrapper .store-social li a {
    background-color: #1b4e9b;
    border-radius: 3px;
    color: #fff;
    display: block;
    height: 38px;
    line-height: 38px;
    text-align: center;
    width: 38px
}

.marketplace .vendor-info {
    background-color: #2f2f2f
}

.marketplace .vendor-avatar img {
    background-color: #fff
}

.marketplace .vendor-store-info {
    color: #fff;
    list-style: none
}


.marketplace .vendor-store-info li {
    display: block;
    list-style: none;
    margin-bottom: 5px;
    padding-bottom: 0;
    position: relative
}

.marketplace .vendor-store-info li.vendor-store-register-date span {
    color: #cbc4c4
}

.marketplace.marketplace  .shop-products-listing__list  .product-inner {
    border-color: transparent;
    border-width: 1px;
    display: flex
}

.marketplace.marketplace  .shop-products-listing__list  .product-inner:hover {
    border-color: #ddd
}

.marketplace.marketplace  .shop-products-listing__list  .product-inner .product-thumbnail {
    flex-basis: 21%;
    margin-bottom: 0;
    width: 21%
}

.marketplace.marketplace  .shop-products-listing__list  .product-inner  .marketplace .product-details {
    display: flex;
    flex: 1 0 0%;
    justify-content: space-between;
    padding-left: 30px
}

.marketplace.marketplace  .shop-products-listing__list  .product-inner  .marketplace .product-details .product-bottom-box {
    border-color: transparent;
    display: block;
    left: unset;
    max-width: 240px;
    position: unset;
    right: unset;
    top: unset
}

.marketplace .catalog-primary-sidebar .widget-wrapper {
    background: #f5f5f5;
    margin-bottom: 50px;
    padding: 20px
}

.marketplace .catalog-primary-sidebar .widget-wrapper .widget-title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 25px;
    text-transform: uppercase
}

.marketplace .catalog-primary-sidebar .widget-wrapper .widget-content ul {
    padding-left: 0
}

.marketplace .catalog-primary-sidebar .widget-wrapper .widget-filter-item {
    border: none;
    border-top: 1px solid #ccc;
    margin-top: 40px;
    padding-bottom: 0;
    padding-top: 40px
}

.marketplace .toolbar-view__icon a {
    margin-right: 7px;
    padding-right: 7px
}

.marketplace .toolbar-view__icon a.active {
    color: var(--primary-color)
}

.marketplace .toolbar-view__icon a.list {
    font-size: 28px
}

.marketplace .toolbar-view__icon a.grid {
    font-size: 21px
}

.marketplace .catalog-header__right .catalog-toolbar__ordering .dropdown .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #999;
    cursor: pointer;
    font-weight: 400;
    line-height: 42px;
    min-height: 44px;
    min-width: 170px;
    padding: 0 35px 0 15px;
    text-align: left
}

.marketplace .catalog-header__right .catalog-toolbar__ordering .dropdown .dropdown-toggle:after {
    font-weight: 700;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%)
}

.marketplace .catalog-header__right .catalog-toolbar__ordering .dropdown .dropdown-menu {
    min-width: 170px
}

.marketplace .catalog-header__right .text {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-right: 30px
}

.marketplace .widget-layered-nav-listul {
    list-style-type: none;
    -webkit-padding-end: 12px;
            padding-inline-end: 12px;
    -webkit-padding-start: 12px;
            padding-inline-start: 12px
}

.marketplace .widget-layered-nav-listul:first-child {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0
}

.marketplace .widget-layered-nav-listul li {
    margin: 6px 0;
    position: relative
}

.marketplace .widget-layered-nav-listul li.opened > .widget-layered-nav-list__item .cat-menu-close.closed-icon,  .marketplace .widget-layered-nav-listul li > .widget-layered-nav-list__item .cat-menu-close.opened-icon {
    display: none
}

.marketplace .widget-layered-nav-listul li.opened > .widget-layered-nav-list__item .cat-menu-close.opened-icon,  .marketplace .widget-layered-nav-listul li.opened > ul {
    display: block
}

.marketplace .widget-layered-nav-listul li ul {
    display: none
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .cat-menu-close {
    cursor: pointer;
    font-size: 12px;
    padding-right: 10px
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .nav-list__item-title .nav-list__item-link {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    min-width: 100px;
    overflow: hidden;
    position: relative
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .nav-list__item-title .nav-list__item-link.active,  .marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .nav-list__item-title .nav-list__item-link:hover {
    color: var(--primary-color)
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .form-check {
    font-weight: 600
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .form-check .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color)
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .form-check .form-check-label {
    cursor: pointer
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .form-check:hover {
    color: var(--primary-color)
}

.marketplace .widget-layered-nav-listul li .widget-layered-nav-list__item .form-check .count {
    color: #999;
    display: inline-block;
    margin-left: 5px;
    transition: .5s
}

.marketplace .loading-skeleton .btn, .marketplace .loading-skeleton .marketplace .form-control, .marketplace .loading-skeleton a, .marketplace .loading-skeleton h1, .marketplace .loading-skeleton h2, .marketplace .loading-skeleton h3, .marketplace .loading-skeleton h4, .marketplace .loading-skeleton h5, .marketplace .loading-skeleton h6, .marketplace .loading-skeleton label, .marketplace .loading-skeleton p {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--primary-color);
    border-color: #eee;
    color: transparent
}

.marketplace .loading-skeleton .btn::-moz-placeholder, .marketplace .loading-skeleton .marketplace .form-control::-moz-placeholder, .marketplace .loading-skeleton a::-moz-placeholder, .marketplace .loading-skeleton h1::-moz-placeholder, .marketplace .loading-skeleton h2::-moz-placeholder, .marketplace .loading-skeleton h3::-moz-placeholder, .marketplace .loading-skeleton h4::-moz-placeholder, .marketplace .loading-skeleton h5::-moz-placeholder, .marketplace .loading-skeleton h6::-moz-placeholder, .marketplace .loading-skeleton label::-moz-placeholder, .marketplace .loading-skeleton p::-moz-placeholder {
    color: transparent
}

.marketplace .loading-skeleton .btn:-ms-input-placeholder, .marketplace .loading-skeleton .marketplace .form-control:-ms-input-placeholder, .marketplace .loading-skeleton a:-ms-input-placeholder, .marketplace .loading-skeleton h1:-ms-input-placeholder, .marketplace .loading-skeleton h2:-ms-input-placeholder, .marketplace .loading-skeleton h3:-ms-input-placeholder, .marketplace .loading-skeleton h4:-ms-input-placeholder, .marketplace .loading-skeleton h5:-ms-input-placeholder, .marketplace .loading-skeleton h6:-ms-input-placeholder, .marketplace .loading-skeleton label:-ms-input-placeholder, .marketplace .loading-skeleton p:-ms-input-placeholder {
    color: transparent
}

.marketplace .loading-skeleton .btn::placeholder, .marketplace .loading-skeleton .marketplace .form-control::placeholder, .marketplace .loading-skeleton a::placeholder, .marketplace .loading-skeleton h1::placeholder, .marketplace .loading-skeleton h2::placeholder, .marketplace .loading-skeleton h3::placeholder, .marketplace .loading-skeleton h4::placeholder, .marketplace .loading-skeleton h5::placeholder, .marketplace .loading-skeleton h6::placeholder, .marketplace .loading-skeleton label::placeholder, .marketplace .loading-skeleton p::placeholder {
    color: transparent
}

@-webkit-keyframes loading-skeleton {
    0% {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes loading-skeleton {
    0% {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.marketplace .loading-skeleton {
    -webkit-animation: loading-skeleton 1s infinite alternate;
            animation: loading-skeleton 1s infinite alternate;
    pointer-events: none
}

.marketplace .loading-skeleton img {
    filter: grayscale(100) contrast(0) brightness(1.8)
}

.marketplace .text-swatch li {
    display: inline-block;
    margin-right: 5px
}

.marketplace .text-swatch li .marketplace input[type=checkbox], .marketplace .text-swatch li .marketplace input[type=radio] {
    display: none
}

.marketplace .text-swatch li .marketplace input[type=checkbox]:checked ~ span, .marketplace .text-swatch li .marketplace input[type=radio]:checked ~ span {
    border: 1px solid var(--primary-color)
}

.marketplace .text-swatch li .marketplace input[type=checkbox]:checked ~ span:after, .marketplace .text-swatch li .marketplace input[type=radio]:checked ~ span:after {
    bottom: -5px;
    color: #fff;
    content: "\e934";
    font-family: Linearicons !important;
    font-size: 8px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: -8px;
    width: 16px
}

.marketplace .text-swatch li .marketplace input[type=checkbox]:checked ~ span:before, .marketplace .text-swatch li .marketplace input[type=radio]:checked ~ span:before {
    border: 16px solid transparent;
    border-bottom: 16px solid var(--primary-color);
    bottom: -1px;
    content: "";
    position: absolute;
    right: -16px
}

.marketplace .text-swatch li span {
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 5px 15px;
    position: relative;
    transition: .2s
}

.marketplace .text-swatch li.attribute-swatch-item.pe-none span:after, .marketplace .text-swatch li.attribute-swatch-item.pe-none span:before {
    border-top: 1px dashed #999;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%
}

.marketplace .text-swatch li.attribute-swatch-item.pe-none span:before {
    transform: rotate(45deg)
}

.marketplace .text-swatch li.attribute-swatch-item.pe-none span:after {
    transform: rotate(-45deg)
}

.marketplace .custom-checkbox .marketplace input[type=checkbox], .marketplace .custom-checkbox .marketplace input[type=radio], .custom-radio .marketplace input[type=checkbox], .custom-radio .marketplace input[type=radio] {
    display: none
}

.marketplace .custom-checkbox label, .custom-radio label {
    display: block
}

.marketplace .custom-checkbox span, .custom-radio span {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 25px;
    position: relative;
    width: 25px
}

.marketplace .custom-checkbox .marketplace input[type=checkbox]:checked ~ span:before, .marketplace .custom-checkbox .marketplace input[type=radio]:checked ~ span:before, .custom-radio .marketplace input[type=checkbox]:checked ~ span:before, .custom-radio .marketplace input[type=radio]:checked ~ span:before {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    bottom: -4px;
    content: "";
    display: block;
    left: -4px;
    position: absolute;
    right: -4px;
    top: -4px
}

.marketplace .custom-checkbox.disabled label, .custom-radio.disabled label {
    position: relative
}

.marketplace .custom-checkbox.disabled label:after, .marketplace .custom-checkbox.disabled label:before, .custom-radio.disabled label:after, .custom-radio.disabled label:before {
    background-color: #ececec;
    content: "";
    height: 90%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: 50% 50%;
    transition: all .4s ease;
    width: 1px;
    z-index: 20
}

.marketplace .custom-checkbox.disabled label:before, .custom-radio.disabled label:before {
    transform: translate(-50%, -50%) rotate(45deg)
}

.marketplace .custom-checkbox.disabled label:after, .custom-radio.disabled label:after {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.marketplace .custom-checkbox.disabled span, .custom-radio.disabled span {
    opacity: .9
}

.marketplace .custom-checkbox.disabled .marketplace input[type=checkbox]:checked ~ span:before, .marketplace .custom-checkbox.disabled .marketplace input[type=radio]:checked ~ span:before, .custom-radio.disabled .marketplace input[type=checkbox]:checked ~ span:before, .custom-radio.disabled .marketplace input[type=radio]:checked ~ span:before {
    display: none
}

.marketplace .color-swatch li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 10px;
    vertical-align: top
}

.marketplace .nonlinear-wrapper .nonlinear {
    margin: 10px auto;
    width: 90%
}

.marketplace .nonlinear-wrapper .noUi-connect {
    background-color: var(--primary-color)
}

.marketplace .nonlinear-wrapper .noUi-horizontal {
    height: 8px
}

.marketplace .nonlinear-wrapper .noUi-horizontal .noUi-handle {
    height: 16px;
    left: -17px;
    top: -5px;
    width: 16px
}

.marketplace .nonlinear-wrapper .noUi-handle {
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: none
}

.marketplace .nonlinear-wrapper .noUi-handle:after, .marketplace .nonlinear-wrapper .noUi-handle:before {
    display: none
}

.marketplace .nonlinear-wrapper .slider__meta {
    background-color: #f3f3f3;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    margin: 8px;
    min-width: 100px;
    padding: 5px 13px
}

.marketplace html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -7px
}

@media (min-width: 768px) {
    .product-gallery__variants .slick-slide .item {
        width: auto !important
    }
}

@media (min-width: 992px) {
    .marketplace .product-detail-container   .product-details-content {
        border-left: 1px solid #d2d2d2
    }
}

@media (max-width: 991px) {
    .marketplace  .shop-products-listing {
        border: solid #c9c9c9;
        border-width: 0 0 0 1px
    }

    .marketplace  .shop-products-listing  .marketplace .product-inner {
        border: 1px solid #c9c9c9;
        border-left-width: 0;
        margin-top: -1px
    }

    .marketplace .product-inner {
        border-bottom-width: 1px
    }

    .marketplace .product-inner .product-bottom-box {
        border: none;
        display: block;
        padding: 15px 0 0;
        position: static;
        z-index: 1
    }

    .marketplace .product-inner .product-thumbnail  .marketplace .product-loop__buttons {
        opacity: 1;
        z-index: 1
    }

    .marketplace .product-inner .product-thumbnail  .marketplace .product-loop__buttons .product-loop_button .product-loop_action {
        transform: translateX(0);
        transition-delay: 0s
    }

    .marketplace     .product-deals-day__body .slick-track {
        display: flex
    }

    .marketplace     .product-deals-day__body  .marketplace .product-inner, .product-deals-day__body .slick-track .slick-slide {
        height: inherit
    }
}


@media (max-width: 576px) {
    .marketplace .product-inner {
        border-width: 1px;
        padding: 10px
    }

    .marketplace .product-inner  .marketplace .product-button {
        display: block
    }

    .marketplace .product-inner  .marketplace .product-button .quantity {
        width: 100px
    }

    .marketplace.marketplace  .shop-products-listing__list  .product-inner  .marketplace .product-details {
        display: block
    }

    .marketplace.marketplace  .shop-products-listing__list  .product-inner .product-thumbnail {
        flex-basis: 43%;
        width: 43%
    }
}


.marketplace  .product-gallery {
    align-content: flex-start;
    display: flex;
    flex-flow: row-reverse nowrap
}

.marketplace  .product-gallery .marketplace  .product-gallery__wrapper {
    display: block;
    max-width: calc(100% - 80px);
    padding-left: 10px;
    position: relative
}


.marketplace  .product-gallery .product-gallery__variants {
    max-width: 80px;
    min-width: 80px;
    width: 100%
}

.marketplace .product-comments-list .pagination {
    justify-content: center;
    margin-top: 20px
}

.marketplace .product-comments-list .pagination .page-item .page-link {
    background-color: #f5f5f5;
    border: none;
    color: #000;
    display: inline-block;
    font-size: 14px;
    height: auto;
    line-height: 32px;
    padding: 0 14px;
    position: relative;
    vertical-align: middle;
    width: auto;
    z-index: 30
}

.marketplace .product-comments-list .pagination .page-item.disabled .page-link {
    color: #6c757d;
    cursor: auto;
    pointer-events: none
}

.marketplace .product-comments-list .pagination .page-item a.page-link:hover, .marketplace .product-comments-list .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: #000
}

@media (max-width: 767px) {
    .marketplace .vendor-info-summary  .marketplace .vendor-info {
        background-image: none !important
    }

    .marketplace  .product-gallery {
        display: block
    }

    .marketplace  .product-gallery .marketplace  .product-gallery__wrapper {
        max-width: 100%;
        padding-left: 0
    }

    .marketplace  .product-gallery .product-gallery__variants {
        max-width: 100%
    }

    .marketplace  .product-gallery .product-gallery__variants .slick-slide {
        max-width: 60px
    }
}


.marketplace .svg-icon svg {
    fill: currentColor;
    display: inline-block;
    height: 1em;
    vertical-align: -.125em;
    width: 1em
}

.marketplace .form-control {
    border-radius: 3px;
    font-size: 1em;
    outline: none
}

.marketplace .form-control:not(.marketplace .form-control-lg) {
    padding: 8px 15px
}

.marketplace .form-select {
    font-size: 1em
}

.marketplace .required:after {
    color: #cb4321;
    content: " *"
}

.marketplace input[type=button], .marketplace input[type=reset], .marketplace input[type=submit] {
    background-color: var(--primary-color);
    border: 0;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 42px;
    outline: 0;
    padding: 0 36px;
    transition: .5s
}

.marketplace .input-group.input-group-with-text .form-control {
    border-color: #ccc;
    border-right-width: 0
}

.marketplace .input-group.input-group-with-text .input-group-text {
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1em
}

.marketplace .form-check .form-check-.marketplace input[type=checkbox] {
    border-radius: 0
}

.marketplace .form-check .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.marketplace .form-check .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: none
}

.marketplace .product-attributes .attribute-values > ul {
    margin: 10px 0;
    padding-left: 0
}

.marketplace .color-primary {
    color: var(--primary-color) !important
}

.marketplace .text-uppercase {
    text-transform: uppercase
}

.marketplace .color-swatch li:last-child, .marketplace .text-swatch li:last-child {
    margin-right: 0
}

.marketplace .btn-primary .btn-black {
    background-color: #000;
    color: #fff
}

.marketplace .breadcrumb li.breadcrumb-item.active {
    color: #000
}

.marketplace .breadcrumb li.breadcrumb-item a {
    color: #09c;
    line-height: 20px
}

.marketplace #product-quick-view-modal {
    z-index: 10000
}

.marketplace  .product-button .add-to-cart-button {
    margin-right: 10px
}

.marketplace  .marketplace #product-quick-view-modal .product-button .quantity .qty {
    height: 46px
}

.marketplace .marketplace .sticky-atc-wrap {
    background: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
    padding-bottom: 10px;
    position: fixed;
    right: 0;
    transform: translate3d(0, 100%, 0);
    transition: transform .25s ease;
    width: 100%;
    z-index: 340
}

.marketplace .marketplace .sticky-atc-wrap.sticky-atc-shown {
    transform: translateZ(0)
}

.marketplace .sticky-atc-wrap .product-button .quantity {
    flex: 0 1 80px
}

.marketplace .sticky-atc-wrap .sticky-atc-btn {
    -ms-flex-pack: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    margin-top: .5rem;
    width: 100%
}

.marketplace .sticky-atc-wrap .sticky-atc-btn .marketplace .btn {
    flex-basis: 0;
    flex-grow: 1;
    margin: 0;
    max-width: 100%;
    padding: .5rem;
    width: 100%
}

@media (max-width: 767px) {
    .marketplace .product-detail-container   .product-button .quantity {
        flex: none;
        width: 100%
    }

    .marketplace .product-button .add-to-cart-button {
        flex: none;
        margin-right: 0;
        max-width: 100%;
        width: 100%
    }

    .marketplace .product-detail-container   .product-details .product-entry-meta {
        display: block
    }

}

.marketplace .header--product {
    height: 0;
    opacity: 0;
    visibility: hidden
}

.marketplace .header--product .navigation {
    transform: translateY(-50%);
    transition: transform .25s ease
}

.marketplace .header--product.header--sticky {
    height: auto;
    opacity: 1;
    visibility: visible
}

.marketplace .header--product.header--sticky .navigation {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    left: 0;
    padding: 12px 0;
    position: fixed;
    top: 0;
    transform: translateY(0);
    width: 100%;
    z-index: 9999
}

.marketplace .header--product .ps-product--header-sticky {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between
}

.marketplace .header--product .ps-product--header-sticky > * {
    flex-basis: 100%
}

.marketplace .header--product .ps-product--header-sticky .ps-product__content {
    margin-right: 25px;
    max-width: 500px
}

.marketplace .header--product .ps-product--header-sticky .ps-product__title {
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.marketplace .header--product .ps-product--header-sticky ul {
    margin: 0;
    padding: 0
}

.marketplace .header--product .ps-product--header-sticky ul li {
    display: inline-block;
    margin-right: 20px
}

.marketplace .header--product .ps-product--header-sticky ul li a {
    color: var(--text-color);
    font-weight: 600
}

.marketplace .header--product .ps-product--header-sticky ul li a:hover, .marketplace .header--product .ps-product--header-sticky ul li.active a {
    color: var(--primary-color)
}

.marketplace .header--product .ps-product--header-sticky ul li:last-child {
    margin-right: 0
}


.marketplace .marketplace  .product-gallery__variants .slick-slide .item .border {
    text-align: center
}

.marketplace .marketplace  .product-gallery__variants .slick-slide .item .border img {
    display: inline-block
}

.marketplace .footer-widgets .widget.widget-custom-menu ul li a img {
    margin-top: 5px;
    vertical-align: top
}

.marketplace  .product-gallery--with-images img {
    opacity: 0
}

.marketplace  .product-gallery--with-images .slick-slide img {
    margin: 0 auto;
    opacity: 1
}

.marketplace .product-details .product-attributes .attribute-values {
    margin-bottom: 10px
}

.marketplace .product-details .product-attributes .attribute-values .dropdown-swatch,  .marketplace .product-details .product-attributes .attribute-values label {
    width: 100%
}

.marketplace .text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.marketplace .item .item-info form input
{
    border-radius: 50px !important;
}

#hero-causes {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-causes .carousel,
#hero-causes .carousel-inner,
#hero-causes .carousel-item,
#hero-causes .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero-causes .carousel-container {
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 810px;
    height: 465px;
    margin: auto;
}

html[dir="rtl"] #hero-causes .carousel-container {
     display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    position: absolute;
    bottom: 0;
    top: 0;
    width: 810px;
    height: 465px;
    margin: auto;
    left: auto;
    right: 120%;
}
@media (max-width: 1024px) {
    #hero-causes .carousel-container {
        width: 80%;
    }
}
#hero-causes .carousel-content {
    padding: 30px;
    color: #fff;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    /* background: rgba(255, 255, 255, 0.06);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
    border-radius: 20px; */
}

#hero-causes .carousel-content h2 {
    text-align: start;
    font-weight: 500;
    font-size: 25px;
    line-height: 29px;
    text-transform: capitalize;
    color: #F9F9F9;
}

#hero-causes .carousel-content p {
    font-style: normal;
    display: flex;
    align-items: center;
    /* text-align: justify; */
    mix-blend-mode: normal;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: #F9F9F9;
    text-align: center;
}

#hero-causes .btn-get-started {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 70px;
    transition: 0.5s;
    margin: 10px;
    background: var(--primary2-color);
    border: 1px solid var(--primary2-color);
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: #F9F9F9;

}

#hero-causes .btn-get-started:hover {
    background: var(--primary2-color);
    color: #fff;
    text-decoration: none;
}

#hero-causes .carousel-inner .carousel-item {
    transition-property: opacity;
}


#hero-causes .carousel-indicators li {
    cursor: pointer;
    list-style-type: none;
}

#hero-causes .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 2rem;
    margin-left: 15%;
}

@media (min-width: 1024px) {
    #hero-causes .carousel-control-prev,
    #hero-causes .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero-causes {
        height: calc(100vh - 70px);
    }
    #hero-causes .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 35px;
    }
    #hero-causes .carousel-content h4 {
        font-size: 2rem;
        line-height: 35px;
    }
    #hero-causes .carousel-content p {
        font-size: 14px;
        line-height: 35px;
    }
    #hero-causes .btn-get-started {
        font-size: 14px;
        padding: 13px 40px;
        line-height: 1;
    }

}

@media (max-height: 500px) {
    #hero-causes {
        height: 180vh;
    }
    #hero-causes .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 25px;
    }
    #hero-causes .carousel-content h4 {
        font-size: 14px;
        line-height: 25px;
    }
    #hero-causes .carousel-content p {
        font-size: 12px;
        line-height: 25px;
    }
    #hero-causes .btn-get-started {
        font-size: 12px;
        padding: 13px 20px;
        line-height: 1;
    }
    #hero-causes .carousel-content {
        padding: 10px;
    }
}



#details-cause .about-img {
    position: relative;
    transition: 0.5s;
    margin: 0 0 0 20px;
}
@media (max-width: 980px) {
    #details-cause .about-img {
        margin: 0;
    }
}
#details-cause .about-img img {
    max-width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;

}

#details-cause .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #5691AB;
    border-top: 5px solid #5691AB;
    transition: 0.5s;
}

#details-cause .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #5691AB;
    border-bottom: 5px solid #5691AB;
    transition: 0.5s;
}

#details-cause .about-img:hover {
    transform: scale(1.03);
}

#details-cause .about-img:hover::before {
    left: 10px;
    top: 10px;
}

#details-cause .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

#details-cause .play-btn {
    width: 94px;
    height: 94px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    z-index: 100;
    background: radial-gradient(#5691AB 50%, rgb(86 145 171 / 58%) 5%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

#details-cause .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#details-cause .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
            animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
            animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
            animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(205, 164, 94, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

#details-cause .play-btn:hover::after {
    border-left: 15px solid #5691AB;
    transform: scale(20);
}

#details-cause .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
            animation: none;
    border-radius: 0;
}
#details-cause p {
    text-align: justify;
}

.details-cause {
    padding: 40px 0 20px 0;
}

.details-cause .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.details-cause .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.details-cause .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.details-cause .entry .entry-title a {
    color: #054a85;
    transition: 0.3s;
}

.details-cause .entry .entry-title a:hover {
    color: #054a85;
}

.details-cause .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}
.details-cause .entry-single {
    margin-bottom: 30px;
}

.details-cause .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 980px) {
    .details-cause .sidebar {
        margin: 0;
    }
}
.details-cause .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #054a85;
    position: relative;
}

.details-cause .sidebar .sidebar-item {
    margin-bottom: 30px;
}

#pagination-links .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--primary2-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--primary2-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--primary2-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--primary2-color);;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--primary2-color);
    --bs-pagination-active-border-color: var(--primary2-color);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.causes .cause-image {
    width: 269px;
    height: 347px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 992px) {
    .causes .cause-image {
        width: 95%;
    }
    .causes .cause-content {
        padding-left: 0;
    }

}

.causes .cause-content {
    padding-left: 50px;
    display: flex;
    align-items: center;
}
.causes .cause-content p {
    text-align: justify;
}

.cause-content h3 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: var(--primary2-color);
}


.cause-content h3:hover {
    color:#0c7e92;
}

.causes .cause-content button {
    font-family: "Roboto", sans-serif;
    padding: 10px 24px;
    background: #C4150A;
    border-radius: 0px 85px 85px 0px;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
}

.total {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: justify;
    text-transform: capitalize;
    color: #C4150A;
}

.causes .cause-content input {
    font-family: "Roboto", sans-serif;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 85px;
    gap: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}

html[dir="rtl"] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
html[dir="rtl"] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
html[dir="rtl"] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
html[dir="rtl"] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.links a {
    margin: 0 3px;
}
.links a:hover {
    transform: scale(1.1) !important;
}

#causes-create {
     width: 100%;
     height: auto;
     overflow: hidden;
     position: relative;
     background-size: auto;
     background-repeat: no-repeat;
     background-position: center;
     padding: 100px 0;
 }

#causes-create .required-label {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: #212121;
}
#causes-create p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: #212121;
}
#causes-create h2 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
}
#causes-create h3 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
}
#causes-create .form-control {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
}
#causes-create .form-control:focus {
    border-radius: 0;
}
#causes-create .form-control:-webkit-autofill {
    border-radius: 0;
}

#causes-create .submit {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    text-transform: capitalize;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    border: 0;
    background: #5691AB;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #F9F9F9;
    margin: 12px 0;
    padding: 10px;
}

#causes-create .invalid-feedback {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
}

#causes-create .image-container {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
    align-items: flex-start

}

#causes-create img.img-circles {
    width: 570px;
    height: 309px;
    background: #EAEAEA;
    border: 1px dashed #000000;
}

#causes-create span.change-icon {
    margin: 12px 0;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    background: #064469;
    border-radius: 5px;
    color: #F9F9F9;
}

#causes-create .image-required {
    text-align: center;
    margin-top: 10px;
}

