/*===============================================
Template Name: educatex - education online course HTML5 Template
Author:  https://themeforest.net/user/dreamit-solution
Description: Description
Version: 1.0.0
Text Domain: educate
Tags: consulting, finance, corporate, business, consultant, multipurpose, technology, it-solution, software, agency, company, portfolio, bangking, insurance, digital-agency, digital-marketing.
================================================*/

/*TABLE OF CONTENTS*/
/*=====================
01. educate Header-top Area Css
02. educate sign up form Css
03. educate Header Area Css
04. header cart sidebar css
05. Cart Item Css
06.  educate Search Popup Css
07. educate Sidbar Css
08. educate hero Area css
09. educate feature Area Css
10. educate section title Css
11. educate about Area Css
12. educate marquee Area css
13. educate case study Area css
15. educate why choose Area css
16. educate course design offer Area css
17. educate team Area css
18. educate testimonial Area css
19. educate call to action Area css
20. educate blog Area css 
21. educate brand Area css
22. educate footer Area css
23. educate course category css
24. educate online course Area Css
25. educate reason choose area css
26. educate course program Area css
27. educate cumpus life section css
28. educate admission learning  section css
29. educate joint event area css
30. educate faq Area css
31. educate breadcub area css
32. instruction details section css
33. educate-details-course-area css
34.  educate event details area css
35. course details area css 
36. educate pricing Area css
37. educate shop details area css
38. educate shop section area css
39. educate shopping Cart Section css
40. Product Section checkout css
41. educate latest blog area css
42. educate blog details area css
43. educate Conatct Area css
44. educate Error area css
45. Loader Css
=======================*/



/*---=====================================================
   <!--educate Header-top Area Css-->
=========================================================---*/

/* ===== فونت Almarai ===== */
/* ===== فقط همین دو خط رو بذار ===== */

/* فونت برای کل صفحه */
/* فونت فارسی (همه چیز به جز آیکون‌ها) */
*:not(i):not([class^="fa-"]):not([class*=" fa-"]):not([class^="bi-"]):not([class*=" bi-"]):not([class^="flaticon"]):not([class*=" flaticon"]) {
  font-family: "Almarai", sans-serif;
}


.header-top-area {
    background-color: #f32929;
}

.row.header-top {
    padding: 13px 45px 13px 52px;
}

.header-top-welcome p {
    font-size: 15px;
    line-height: 24px;
    color: rgb(255 255 255 / 70%);
    font-weight: 400;
    font-family: "Open Sans";
}

.header-top-welcome p img {
    margin-right: 10px;
}

.header-top-welcome p a{
    display: inline-block;
    color: var(--top-color);
}

.header-top-right {
    text-align: right;
}

.educate-header-from a {
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
}

.educate-header-from a i {
    display: inline-block;
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

a.login-btn {
    display: inline-block;
    margin-right: 25px;
}
/* اضافه شده ها */


/* استایل کانتینر اصلی */
#portfolioContainer {
    display: flex;
    flex-wrap: nowrap; /* جلوگیری از رفتن به خط بعد */
    overflow-x: auto; /* اسکرول افقی در صورت نیاز */
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

/* استایل کارت‌ها */
.portfolio-card {
    flex: 0 0 350px; /* عرض ثابت برای هر کارت */
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
    /* بقیه استایل‌های قبلی */
}

/* استایل اسکرول‌بار برای مرورگرهای Webkit (Chrome, Safari) */
#portfolioContainer::-webkit-scrollbar {
    height: 8px;
}

#portfolioContainer::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

#portfolioContainer::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

/* نمایش کامل در صفحه‌های بزرگ */
@media (min-width: 1200px) {
    .portfolio-card {
        flex: 0 0 calc(25% - 20px); /* 4 کارت در یک ردیف */
    }
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}
#portfolioContainer {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    
    /* مخفی کردن اسکرول بار */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

/* Chrome, Safari, Opera */
#portfolioContainer::-webkit-scrollbar {
    display: none;
}

/* =============================================
دکمه‌های اسکرول - رنگ سبز
============================================= */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #28a745;  /* رنگ سبز */
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);  /* سایه سبز */
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: #218838;  /* سبز تیره‌تر برای هاور */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.5);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-left {
    left: -10px;
}

.scroll-right {
    right: -10px;
}


@media (max-width: 768px) {
    .scroll-btn {
        display: none !important; /* مخفی کردن در موبایل */
    }
}

/* حالت عادی - دسکتاپ */


/* لپ‌تاپ (992px تا 1200px) */
/* فقط برای دسکتاپ (بالای 1024px) */
@media (min-width: 1025px) {
    .about-shape53 {
        position: absolute;
        left: 400px;
       top: 100px;
    }
}

/* برای موبایل و تبلت - بدون position و تغییر */
@media (max-width: 1024px) {
    .about-shape53 {
        display: block !important; /* فقط نمایش بده */
        /* position و left و bottom رو حذف کن */
        
    }
}

@media (max-width: 768px) {
    .about-shape53 {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .about-shape53 {
        display: block !important;
        margin-top: 100px;
    }
}
.background-kids{
      background: url(../images/home-five/kids\ bck.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 870px;
}
.background-tinager {
    background: url(../images/home-five/tinager.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 870px; /* ارتفاع پیش‌فرض برای دسکتاپ */
}
.background-adults {
    background: url(../images/home-five/adults.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 870px; /* ارتفاع پیش‌فرض برای دسکتاپ */
}

/* تبلت (768px تا 1024px) */
@media (max-width: 1024px) {
    .background-tinager {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
    .background-kids {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
     .background-adults {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
}

/* موبایل (480px تا 768px) */
@media (max-width: 768px) {
    .background-tinager {
        height: 450px; /* ارتفاع کوتاه‌تر برای موبایل */
        background-position: center top;
    }
    .background-kids {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
    .background-adults {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
}

/* موبایل کوچک (زیر 480px) */
@media (max-width: 480px) {
    .background-tinager {
        height: 350px; /* ارتفاع مناسب برای صفحه‌های بسیار کوچک */
    }
    .background-kids {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
     .background-adults {
        height: 600px; /* ارتفاع کمتر برای تبلت */
        background-position: center top; /* تمرکز روی بخش بالایی تصویر */
    }
}


.mobile-menu{
    direction: rtl;
}
.mobile-logo img {
  max-height: 50px;
  border-radius: 50%;
  position: relative;
  bottom: 5px;
  box-shadow: 
    0 0 15px rgba(46, 204, 113, 0.6),
    0 0 30px rgba(46, 204, 113, 0.3),
    0 0 10px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-logo img:hover {
  box-shadow: 
    0 0 25px rgba(46, 204, 113, 0.8),
    0 0 50px rgba(46, 204, 113, 0.5),
    0 0 15px rgba(255, 107, 53, 0.6);
  transform: scale(1.05);
}




.about_content-1{
    direction: rtl;
}




#course-container {
    display: flex;
    flex-wrap: wrap;
    height: auto !important; 
    min-height: 400px;
}

.plan{
    direction: rtl;
}

/* ارسال نظرات */
.testimonial-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.login-required-msg {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
}
.login-required-msg i {
  font-size: 50px;
  color: #6c757d;
  margin-bottom: 20px;
}
.login-required-msg h4 {
  color: #343a40;
  margin-bottom: 10px;
}
.login-required-msg p {
  color: #6c757d;
  margin-bottom: 20px;
}
.login-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.btn {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary {
  background: #ff4b0a;
  color: white;
  border: none;
}
.btn-primary:hover {
  background: #00b100;
  transform: translateY(-2px);
}
.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #343a40;
}
.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4361ee;
}
.form-group textarea {
  resize: vertical;
}
#charCount {
  display: block;
  text-align: right;
  color: #6c757d;
  font-size: 12px;
  margin-top: 5px;
}
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
}
.rating-input input {
  display: none;
}
.rating-input label {
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.2s;
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: #ffc107;
  transform: scale(1.2);
}
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
.btn-block {
  width: 100%;
}


/* ====== حل مشکل نوسان ====== */
.testimonial-track {
    display: flex;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0); /* شتاب‌دهنده سخت‌افزاری */
}

.testimonial-slide {
    box-sizing: border-box;
    min-width: 0;
    padding: 0 15px;
}

/* لودینگ */
.loading-state {
    text-align: center;
    padding: 60px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #17a2b8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-state {
    text-align: center;
    padding: 60px;
}

.error-state .error-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.error-state button {
    padding: 10px 30px;
    background: linear-gradient(135deg, #17a2b8, #0dcaf0);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
/* ارسال نظرات */

/* =============================================
   فرم ثبت نظر - تم نارنجی و سبز
   ============================================= */

:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C5A;
    --orange-dark: #E55A2B;
    --orange-bg: #FFF3ED;
    
    --green-primary: #2ECC71;
    --green-light: #58D68D;
    --green-dark: #27AE60;
    --green-bg: #EAFAF1;
    
    --gradient-orange: linear-gradient(135deg, #FF6B35, #FF8C5A);
    --gradient-green: linear-gradient(135deg, #2ECC71, #58D68D);
    --gradient-mixed: linear-gradient(135deg, #FF6B35, #2ECC71);
}

.testimonial-form-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 24px 24px 0 0;
}

.testimonial-form-box:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

/* ====== هدر فرم ====== */
.form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--orange-bg);
}

.form-header-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.form-header-icon i {
    font-size: 30px;
    color: white;
}

.form-header h3 {
    color: var(--orange-dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    position: relative;
}

.form-header h3::after {
    content: '✨';
    position: absolute;
    margin-right: 10px;
}

.form-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* ====== فرم گروه ====== */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-label i {
    color: var(--orange-primary);
    font-size: 18px;
}

/* ====== تکست اریا ====== */
.textarea-wrapper {
    position: relative;
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 130px;
    background: #fafafa;
    color: #333;
    line-height: 1.7;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-textarea::placeholder {
    color: #bbb;
}

.char-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 3px;
    direction: ltr;
}

.counter-number {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 14px;
}

.counter-separator {
    color: #ddd;
}

.counter-total {
    font-weight: 600;
}

.counter-label {
    margin-right: 5px;
    font-size: 11px;
}

/* ====== امتیازدهی ====== */
.rating-container {
    background: var(--orange-bg);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.rating-container:focus-within {
    border-color: var(--orange-primary);
    background: white;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.star-label {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 80px;
    background: white;
    border: 2px solid transparent;
}

.star-label i {
    font-size: 28px;
    color: #ddd;
    transition: all 0.3s ease;
}

.star-text {
    font-size: 11px;
    color: #999;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* استایل hover و selected */
.rating-input input:checked + .star-label {
    background: white;
    border-color: var(--orange-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.rating-input input:checked + .star-label i {
    color: var(--orange-primary);
}

.rating-input input:checked + .star-label .star-text {
    color: var(--orange-dark);
    font-weight: 700;
}

/* انیمیشن ستاره‌ها */
.rating-input input:hover + .star-label,
.star-label:hover {
    transform: scale(1.1);
}

.rating-input input:hover + .star-label i,
.star-label:hover i {
    color: var(--orange-light);
    animation: starBounce 0.5s ease;
}

@keyframes starBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* وضعیت امتیاز */
.rating-status {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    color: #888;
    transition: all 0.3s ease;
}

.rating-status i {
    margin-left: 8px;
    color: var(--orange-primary);
}

.rating-status.has-rating {
    background: var(--green-bg);
    color: var(--green-dark);
}

.rating-status.has-rating i {
    color: var(--green-primary);
}

/* ====== دکمه ارسال ====== */
.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    transition: all 0.4s ease;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-content i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-content i {
    transform: translateX(-5px);
}

.btn-loading {
    display: none;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loading i {
    font-size: 20px;
}

.btn-submit.loading .btn-content {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
    background: var(--gradient-green);
}

/* ====== پیام وضعیت ====== */
.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: 16px;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
    animation: slideInMessage 0.4s ease;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    display: flex;
    background: var(--green-bg);
    border: 2px solid var(--green-primary);
    color: var(--green-dark);
}

.form-message.error {
    display: flex;
    background: #FFF5F5;
    border: 2px solid #FF6B6B;
    color: #C0392B;
}

.message-icon i {
    font-size: 24px;
}

.form-message.success .message-icon i {
    color: var(--green-primary);
}

.form-message.error .message-icon i {
    color: #FF6B6B;
}

.message-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

/* ====== فوتر فرم ====== */
.form-footer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.footer-item i {
    font-size: 16px;
    color: var(--orange-primary);
}

/* ====== واکنش‌گرایی ====== */
@media (max-width: 768px) {
    .testimonial-form-box {
        padding: 25px 20px;
    }
    
    .star-label {
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .star-label i {
        font-size: 22px;
    }
    
    .star-text {
        font-size: 10px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .star-label {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .star-label i {
        font-size: 18px;
    }
    
    .rating-input {
        gap: 3px;
    }
}



/* ====== محتوای کارت ====== */
.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1; /* مهم: محتوا فضای باقی‌مانده را پر می‌کند */
}

/* دسته‌بندی */
.course-category-tag {
    margin-bottom: 12px;
}

.tag-online {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--green-bg);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
}

/* عنوان */
.course-title {
    margin: 0 0 15px;
    flex: 1; /* مهم: عنوان فضای باقی‌مانده را می‌گیرد */
}

.course-title a {
    color: #222;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-title a:hover {
    color: var(--orange-primary);
}

/* متادیتا */
.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.course-lesson,
.course-student {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-lesson i,
.course-student i {
    color: var(--orange-primary);
    font-size: 16px;
}

/* رتبه‌بندی */
.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto; /* مهم: رتبه‌بندی به پایین کشیده می‌شود */
}

.course-rating ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2px;
}

.course-rating ul li i {
    color: #FFB800;
    font-size: 16px;
}

.rating-count {
    color: #999;
    font-size: 14px;
}

/* دکمه ثبت نام */
.course-btn {
    margin-top: auto; /* مهم: دکمه به پایین کشیده می‌شود */
}

.c-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.c-btn-link:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.c-btn-link i {
    transition: all 0.3s ease;
    font-size: 12px;
}

.c-btn-link:hover i {
    transform: translateX(-5px);
}

/* ====== انیمیشن ورود کارت‌ها ====== */
.grid-item {
    animation: fadeInUp 0.6s ease both;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.1s; }
.grid-item:nth-child(3) { animation-delay: 0.2s; }
.grid-item:nth-child(4) { animation-delay: 0.3s; }
.grid-item:nth-child(5) { animation-delay: 0.4s; }
.grid-item:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== حالت لودینگ ====== */
.course-loading {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.course-loading .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f0f0f0;
    border-top: 5px solid var(--orange-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====== واکنش‌گرایی ====== */
@media (max-width: 991px) {
    .section_title.two h2 {
        font-size: 26px;
    }
    
    .menu-filtering li {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .course-thumb {
        height: 200px;
    }
    
    .course-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .menu-filtering {
        gap: 8px;
    }
    
    .menu-filtering li {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .course-thumb {
        height: 180px;
    }
    
    .course-title a {
        font-size: 16px;
    }
    
    .course-meta {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .menu-filtering li {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .course-thumb {
        height: 160px;
    }
    
    .course-content {
        padding: 15px;
    }
}

.logo{
    height: 80px;
    border-radius: 20%;
}



/*---=====================================================
   <!-- educate sign up form Css -->
=========================================================---*/
section.course-sign-form-area {
    padding: 100px 0 100px;
}

.educate-header-area.upper {
    margin-bottom: 0;
}

.sign-form-wrapper {
    background-color: var(--color-white);
    box-shadow: 0px 4px 80px rgb(0 0 0 / 12%);
    border-radius: 8px;
    padding: 30px 30px;
    text-align: start;
}

h3.sign-in-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.sign-form-logo {
    margin-bottom: 20px;
}

p.subtitle {
    margin-bottom: 20px;
}

.form-input-title label {
    margin-bottom: 8px;
    text-transform: capitalize;
    font-size: 16px;
    text-align: left;
    display: block;
    color: var(--title-color);
}

.form-input input {
    outline: none;
    background-color: transparent;
    height: 50px;
    width: 100%;
    font-size: 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    color: var(--title-color);
    padding-inline-start: 16px;
    padding-inline-end: 16px;
    margin-bottom: 20px;
}

.sign-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-option {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.sign-forgot a {
    display: inline-block;
    font-size: 16px;
    color: var(--title-color);
    transition: 0.5s;
}

.sign-forgot a:hover{
    color: var(--primary-color);
}

.sign-btn a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--color-white);
    background-color: var(--primary-color);
    transition: all 0.3s linear;
    padding: 10px;
    display: inherit;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0 40px;
}

.bd-alter-sign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bd-alter-sign button {
    border: 1px solid;
    padding: 5px 30px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.bd-alter-sign button:hover{
    background-color: var(--primary-color);
    color:#fff;
}

.bd-alter-sign button span {
    display: inline-block;
    margin-right: 10px;
}

.bd-sign-up-label {
    text-align: center;
}

.bd-sign-up-label a {
    display: inline-block;
    font-size: 16px;
    margin-left: 10px;
    transition: 0.5s;
    color: var(--primary-color);
}

/*---=====================================================
   <!--educate Header Area Css-->
=========================================================---*/
.educate-header-area {
    position: relative;
    z-index: 2;
    margin-bottom: -102px;
    border-bottom: 1px solid  rgba(252, 86, 36, 0.102);
}

.educate-header-area.inner-style {
    position: relative;
    z-index: 3;
    background: transparent;
}

.educate-header-area.inner-style .header-menu ul li a {
    color: #ffffff;
}

.educate-header-area.inner-style.educate-header-area::before {
    display: none;
}

.educate-header-area.inner-style .header-logo {
    position: relative;
    top: 0;
    right: -102px;
}

.educate-header-area.inner-style .header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 315px;
    margin-right: 55px;
}

.educate-header-area.inner-style.educate-header-area::after {
    display: none;
}

.header-logo {
}
a.logo_two {
    display: none;
}
.sticky a.logo_two {
    display: block;
}
.sticky a.active_logo {
    display: none;
}
.header-menu {
    text-align: right;
    transition: 0.5s;
}
.educate-header-area  ul {
    display: inline-block;
}
.header-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
}
/* تنظیمات اصلی لینک‌ها */
.header-menu ul li a {
    display: inline-block;
    padding: 35px 12px 35px 12px;
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--title-color);
    font-weight: 500;
    font-family: 'Open Sans';
    transition: 0.5s;
    
}

/* آیکون پایین */
.header-menu ul li a i {
    display: inline-block;
    font-size: 8px;
    margin-left: 2px;
    transition: 0.5s;
    font-weight: 700;
    color: var(--title-color);
}
.header-menu ul li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 28px;
    right: 0;
    top: 35px;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 4px;
    transition: 0.5s;
}

.header-menu ul li a:hover:before{
    width: 100%;
    left: 12px;
}

.header-menu ul li a:hover{
    color:var(--color-white);
}

.header-menu ul li a:hover i{
    color:var(--color-white);
}

.sticky .header-menu > ul > li > a:before {
    background: #fff;
}

.sticky .header-menu ul li a:hover{
    color:var(--title-color);
}

.sticky .header-menu ul li a:hover i {
    color:var(--title-color);
}

.sticky .header-btn a::before {
    background: var(--color-white);
}

.sticky .header-btn a:hover{
    color: var(--title-color);
}

/* sticky header */
.educate-header-area.style-three.sticky .header-menu ul li a:hover {
    color: var(--title-color);
}

.educate-header-area.style-three.sticky .header-menu ul li a:hover i {
    color:var(--title-color);
}

.header-menu ul li span {
    font-size: 15px;
    color: #131414;
    margin-left: 5px;
    position: relative;
    top: -1px;
    display: inline-block;
    transform: rotate(88deg);
}
.educate-header-area .educate_btn a {
    margin-right: 23px;
    border-radius: 0;
}


/*** Sub Menu Style ***/
.header-menu ul .sub_menu {
    position: absolute;
    left: 0;
    top: 130%;
    width: 225px;
    text-align: left;
    background: #fff;
    margin: 0;
    z-index: 1;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: .5s;
    visibility: hidden;
    border-top: 3px solid var(--primary-color);
    opacity: 0;
    transition: 0.5s;
}

.header-menu ul li:hover>.sub_menu {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

.header-menu ul .sub_menu li {
    position: relative;
    margin: 0;
    display: block;
    
}

.header-menu ul .sub_menu li a {
    display: block;
    padding: 12px 25px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: normal;
    transition: .5s;
    visibility: inherit !important;
    color: #1a1a1a!important;
    font-size: 14px;
    
    font-weight: 500;
    position: relative;
    z-index: 1;
    
}
.header-menu ul .sub_menu li:hover>a {
    color: var(--primary-color) !important;
    margin-left: 10px;
}
.header-menu ul .sub_menu li a:before {
    position: absolute;
    content: "";
    left: 12px;
    top: 18px;
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transition: .5s;
}
.header-menu ul .sub_menu li a:hover:before {
    opacity: 1;
}
.sticky .header-menu ul .sub_menu li a:hover:before {
    left: 8px;
}
.sticky .header-menu ul .sub_menu li a:hover {
    margin-left: 15px;
}
/* sub menu style two */
.educate-header-area.style_two .header-menu ul .sub_menu li a {
    display: block;
    padding: 12px 20px;
}
.sticky .sub_menu li a {
    padding: 12px 20px !important;
}
/* header right */

.header_right {
    display: flex;
    align-items: center;
}
.header_right .nav-btn.navSidebar-button {
    margin-top: -8px;
}
.header-button {
    display: inline-block;
    margin: 10px 0 0;
}
.header-button a {
    display: inline-block;
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.5s;
}

.sign-desc{
    justify-content: center;
    text-align: center;
}
/* header button */


/* sticky */
.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #1e1e1e !important;
    transition: .5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 800ms running fadeInUp;
    animation-name: slideInDown;
}

.sticky .header-menu ul li a {
    color: #fff;
    transition: 0.5s;
}
.sticky .header-menu ul li a i {
    color: #fff;
}

.educate-header-area.style_two .header-menu ul .sub_menu li a:before {
    left: 6px;
}
.sticky .educate_btn a::before {
    background: #EFA122;
}

/* header menu right */
.row.header-wrap {
    padding: 0 48px 0 50px;
}

.header-right-wrapper {
    text-align: right;
}

.header-src-btn {
    display: inline-block;
}

button.cart_btn.headers-button {
    display: inline-block;
    font-size: 16px;
    position: relative;
    transition: 0.5s;
    outline: none;
    margin: 0 32px 0 10px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.15);
}

button.cart_btn.headers-button .cart_counter {
    top: -12px;
    right: -5px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Outfit";
}

.header-btn {
    display: inline-block;
}

.header-sidbar-button {
    display: inline-block;
    margin-left: 10px;
}

.header-sidbar-button a {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background-color: var(--title-color);
    color: var(--color-white);
    text-align: center;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-sidbar-button a:hover{
   background:var(--primary-color);
}

.header-sidbar-button a i {
    display: inline-block;
    font-size: 20px;
}

.header-btn a {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 23px;
    background-color: #1ec28e;
    padding: 10px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.header-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.header-btn a i {
    display: inline-block;
    margin-left: 10px;
}

/* ============================================== */
/* <!--educate Header Area Css style-two--> */
/* ============================================== */

.educate-header-area.style-two {
    margin-top: 18px;
    padding: 0 10px 0 10px;
}

.educate-header-area.style-two.sticky {
    margin-top: 0;
}

/* ============================================== */
/* <!--educate Header Area Css style-five--> */
/* ============================================== */
.educate-header-area.style-five {
    margin-bottom: 0;
    border-bottom: 0;
}

.educate-header-area.style-six {
    border: 0;
}

/* ============================================== */
/* <!--educate Header Area Css style-three--> */
/* ============================================== */
.educate-header-area.style-three .header-menu ul li a {
    color:var(--color-white);
}

.educate-header-area.style-three .header-menu ul li a i{
    color:var(--color-white);
}

.educate-header-area.style-three {
    border-bottom: 0;
}

.educate-header-area.style-three .search-box-btn.search-box-outer i {
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.educate-header-area.style-three button.cart_btn.headers-button {
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.educate-header-area.style-three .header-sidbar-button a {
    background-color: var(--primary-color);
    color: #fff;
}

.educate-header-area.style-three .header-sidbar-button a:hover {
    background-color: var(--color-white);
    color:var(--title-color);
}



/* =============================== */
/* header cart sidebar css */
/* =============================== */

.sidebar-menu-wrapper {
    display: block;
  }
  
  .cart_sidebar {
    top: 0;
    width: 300px;
    right: -320px;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    padding: 50px 20px;
    overflow-y: scroll;
    background-color: #fff;
    transition: 0.6s cubic-bezier(1, 0, 0, 1);
  }
  
  .cart_sidebar .mCustomScrollBox {
    overflow: visible !important;
  }
  
  .cart_sidebar.active {
    right: 0px;
  }
  
  .cart_sidebar .close_btn {
    top: 15px;
    right: 20px;
    line-height: 1;
    font-size: 24px;
    position: absolute;
    border: 0;
    background: transparent;
  }
  
  .cart_sidebar .close_btn:hover {
    color: red;
  }
  
  .cart_sidebar .heading_title {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000201;
  }
  
  .cart_sidebar .heading_title span {
    color: #f00;
  }
  
  .cart_sidebar .total_price {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    padding: 10px 0px;
    margin-bottom: 15px;
    align-items: center;
    color: #1b1b1b;
    border-top: 1px solid #000201;
    border-bottom: 1px solid #000201;
    justify-content: space-between;
  }
  
  .cart_sidebar .total_price span:first-child {
    font-family: "Montserrat", sans-serif;
  }
  
  .cart_sidebar .total_price span:last-child {
    color:var(--primary-color);
  }
  
  .cart_sidebar .btns_group {
    margin: -5px;
  }
  
  .btns_group.ul_li li {
    list-style: none;
  }
  
  .cart_sidebar .btns_group li {
    width: 50%;
    padding: 5px;
  }
  
  .cart_sidebar .btn {
    display: block;
    font-size: 12px;
    padding: 17px 20px;
  }
  
  .btn.btn_primary {
    background-color: #0681f7;
    color: #fff;
  }
  
  .cart_sidebar .btn.btn_border {
    padding: 15px 20px;
  }
  
  .cart_sidebar::-webkit-scrollbar {
    width: 0px;
  }
  
  .cart_sidebar_overlay {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .cart_sidebar_overlay.active {
    opacity: 1;
    display: block;
    transition: 0.5s;
  }
  
  .btn.btn_border {
    padding: 19px 42px;
    border: 2px solid transparent;
  }
  
  .btn.border_black {
    color: #1b1b1b;
    border-color: rgba(18, 16, 13, 0.3);
  }
  
  .cart_sidebar .btn.btn_border {
    padding: 15px 20px;
  }
  
  .btn.border_black:hover {
    color: #fff;
    border-color: #1b1b1b;
    background-color: #1b1b1b;
  }
  
  
  /*
  <!-- ============================================== -->
  <!-- Start Cart Item Css -->
  <!-- ============================================== -->*/
  
  .cart_item {
    display: flex;
    position: relative;
    align-items: center;
    padding-right: 25px;
    transition: 0.5s;
  }
  
  .cart_item.remove {
    display: none;
  }
  
  .cart_item:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .cart_item .item_image {
    display: block;
    min-width: 70px;
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
  }
  
  .cart_item .item_image img {
    width: 70px;
    height: 70px;
  }
  
  .cart_item .item_title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  .cart_item .item_price {
    line-height: 1;
    display: block;
    font-weight: 600;
    color:var(--primary-color);
  }
  
  .cart_item .remove_btn {
    top: 50%;
    right: 0px;
    color: red;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    transform: translateY(-50%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    border: 0;
    transition: 0.5s;
  }
  
  .cart_item .remove_btn:hover {
    color: #fff;
    background-color: red;
  }
  
  /*==========================================
    educate Search Popup Css
  =========================================*/
  
  .search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: #f5f5f5;
    -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    backdrop-filter: blur(5px);
  }
  
  .search-popup {
    width: 100%;
  }
  
  .search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
  }
  
  .search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background:var(--primary-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--primary-color);
    border-left: 3px solid #393939;
    border-top: 3px solid #fff;
    border-right: 3px solid #393939;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    height: 70px;
    line-height: 70px;
    text-align: center;
  }
  
  .search-popup .close-search i {
    position: relative;
    font-size: 30px;
    color: #fff;
  }
  
  .search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
  }
  
  .search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
  }
  
  .search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
  }
  
  .search-popup .form-group input[type="text"],
  .search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    padding-right: 100px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
  }
  
  .search-popup .form-group input::placeholder {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
  }
  
  .search-popup .form-group input[type="submit"],
  .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    transition: 0.5s;
  }
  
  .search-popup .form-group button i {
    transition: 0.5s;
  }
  
  .search-popup .form-group button:hover i {
    color: #f00;
  }
  
  .search-popup .form-group input {
    border-radius: 5px;
    border: 2px solid #f5f5f5;
  }
  
  .search-popup .form-group input[type="submit"]:hover,
  .search-popup .form-group button:hover {
    color: #000000;
  }
  
  .search-popup input::placeholder,
  .search-popup textarea::placeholder {
    color: #000000;
  }
  
  .search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #fff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .search-popup .close-search.style-two i {
    font-size: 20px;
    color: #181d4e;
    transition: 0.5s;
  }
  
  .search-popup .close-search.style-two i:hover {
    color: #f00;
  }
  
  .search-box-btn.search-box-outer i {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 500ms ease;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--title-color);
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.15);
}
  
.sticky .search-box-btn.search-box-outer i {
    color: #fff;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255);
}

.sticky button.cart_btn.headers-button {
    background-color: rgba(255,255,255);
    border: 1px solid rgba(255,255,255,0.5);
}

.sticky .header-sidbar-button a {
    background: var(--color-white);
    color: var(--title-color);
}

  /*===========================
<-- educate Sidbar Css -->
=============================*/

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 23px;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color:var(--title-color);
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color:var(--primary-color);
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}

.xs-bg-black {
    background-color:var(--primary-color);
}

/*html css*/
.nav-logo {
    margin: 0 0 50px;
}

.content-box h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.content-box p {
    display: inline-block;
    color: #fff;
    padding: 15px 0 0;
}
a.theme-btn.btn-style-two span {
    color: #fff;
    font-size: 20px;
    padding-top: 10px;
    display: inline-block;
}

a.theme-btn.btn-style-two i {
    color:var(--primary-color);
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

ul.list-style-one li {
    display: block;
    list-style: none;
    color: #fff;
    padding: 16px 0 0;
    overflow: hidden;
}

ul.list-style-one li span {
    font-size: 20px;
    font-weight: 600;
    color:var(--primary-color);
    margin: 0 10px 0 0px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color:var(--primary-color);
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background:var(--primary-color);
    color: #fff;
}



/*===========================================
<-- educate hero Area css style-one -->
==============================================*/


section.hero_area.style-one {
    background: url(../images/home-one/hero1-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 870px;
}

section.hero_area.style-one .hero_content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

section.hero_area.style-one .hero_content h5 {
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--title-color);
    font-weight: 400;
    border-radius: 5px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    padding: 0 18px 0 18px;
    margin-bottom: 15px;
}

section.hero_area.style-one .hero_content h5 i {
    display: inline-block;
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 18px;
}

section.hero_area.style-one .hero_content h1 {
    font-size: 60px;
    line-height: 70px;
    color:var(--title-color);
    font-weight: 600;
}

section.hero_area.style-one .hero_content p {
    margin: 0;
    padding: 12px 0 32px;
    width: 92%;
    opacity: 0.600;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    font-weight: 400;
    margin: 5px 0 0;
}
.hero_content h2{
    font-size: 60px;
    color: #dae3f1;
}

section.hero_area.style-one .hero-btn {
    display: inline-block;
    margin-right: 25px;
}

section.hero_area.style-one .hero-btn a {
    display:inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

section.hero_area.style-one .hero-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

section.hero_area.style-one .hero-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

section.hero_area.style-one .hero-btn a i {
    display: inline-block;
    margin-left: 10px;
}

section.hero_area.style-one .hero-course-btn {
    display: inline-block;
}

section.hero_area.style-one .hero-course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

section.hero_area.style-one .hero-course-btn a:hover{
    color: var(--primary-color);
}

section.hero_area.style-one .hero-course-btn a:hover::before{
    background: var(--primary-color);
}

section.hero_area.style-one .hero-course-btn a::before{
    position: absolute;
    content: '';
    width: 125px;
    height: 1px;
    background-color: rgba(30,30,30,0.5019607843137255);
    left: 0;
    bottom: 0;
}

section.hero_area.style-one .hero-course-btn a i{
    display: inline-block;
    margin-left: 10px;
}

section.hero_area.style-one .hero-rating-icon span {
    display: inline-block;
    font-size: 20px;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    background-color: var(--primary-color);
    border: 3px solid #e5fefe;
    text-align: center;
    margin-left: -10px;
    transition: 0.5s;
    position: relative;
    top: 5px;
}

section.hero_area.style-one .hero-rating-icon span:hover{
    background: var(--title-color);
}

section.hero_area.style-one .hero-star-icon ul li {
    display: inline-block;
    font-size: 16px;
    color: var( --Secondary-color);
}

section.hero_area.style-one .hero-rating-box {
    display: flex;
    gap: 10px;
    margin-top: 90px;
}

section.hero_area.style-one .hero-rating-num {
    display: inline-block;
}

section.hero_area.style-one .hero-star-icon {
    display: inline-block;
}

section.hero_area.style-one .hero-rating-num span {
    display: inline-block;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
}

section.hero_area.style-one .hero-rating-des p {
    font-size: 16px;
    line-height: 24px;
    color: var( --text-color);
    font-weight: 400;
    width: 70%;
    margin-top: 8px;
}

section.hero_area.style-one .hero-thumb-wrapper {
    position: relative;
    padding-top: 95px;
}

section.hero_area.style-one .hero-thumb {
    text-align: right;
    position: relative;
    left: 35px;
}

section.hero_area.style-one .hero-shape1 {
    position: absolute;
    top: 130px;
    left: 0;
}

section.hero_area.style-one .hero-arrow-shape {
    position: absolute;
    bottom: 280px;
    left: 0;
    animation: bounceleft 8s linear infinite;
}

section.hero_area.style-one .hero-dot-shape {
    position: absolute;
    right: -75px;
    top: 200px;
    animation: bounceleft 4s linear infinite;
}

section.hero_area.style-one .hero-shape3 {
    position: absolute;
    right: 135px;
    top: 95px;
}

section.hero_area.style-one .hero-autor-box {
    position: absolute;
    bottom: 122px;
    left: 0;
    width: 340px;
    backdrop-filter: blur(10px);
    height: 130px;
    border-radius: 20px;
    filter: drop-shadow(0px 20px 50px rgba(177,221,208,0.4));
    background-color: rgba(255,255,255,0.4);
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px 0 28px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

section.hero_area.style-one .hero-autor-content p{
    display: block;
    font-size: 16px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 400;
}

section.hero_area.style-one .hero-autor-content h3 {
    display: inline-block;
    font-size: 26px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 600;
}
section.hero_area.style-one .hero-autor-content span {
    display: inline-block;
    font-size: 26px;
    color:var(--title-color);
    font-weight: 600;
}


/*===========================================
<-- educate hero Area css style-two -->
==============================================*/

section.hero_area.style-two {
    background: url(../images/home-two/hero-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 900px;
    margin: 0px 20px 0 20px;
    border-radius: 30px;
}

.style-two .hero_content {
    padding-top: 85px;
}

.style-two .hero_content h5 {
    font-size: 17px;
    line-height: 46px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Open Sans";
    border-radius: 23px;
    background-color: rgb(30 194 142 / 10%);
    display: inline-block;
    padding: 0 24px 0 6px;
    margin-bottom: 18px;
}

.style-two .hero_content h5 i {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: #e0f5f1;
    text-align: center;
    margin-right: 10px;
}

.style-two .hero_content h1 {
    font-size: 60px;
    line-height: 70px;
    color:var(--title-color);
    font-weight: 700;
}

.style-two .hero_content h1 span{
    display: inline-block;
    color:var(--primary-color);
}

.style-two .hero_content > p {
    font-size: 16px;
    line-height: 26px;
    color: #152e41;
    font-weight: 400;
    width: 90%;
    margin: 20px 0 37px;
}

.style-two .hero-button {
    display: flex;
    gap: 20px;
}

.style-two .hero-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: var(--primary-color);
    padding: 15px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.style-two .hero-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .hero-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .hero-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .hero-student-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

section.hero_area.style-two .hero-student-content h3 {
    display: inline-block;
    font-size: 24px;
    line-height: 26px;
    color: var(--title-color);
    font-weight: 600;
    margin: 0;
}

.style-two .hero-student-content span {
    display: inline-block;
    font-size: 24px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 600;
}

.style-two .hero-student-content > p {
    font-size: 15px;
    color:var(--title-color);
}

.style-two .hero-thumb-wrapper {
    position: relative;
    text-align: right;
    padding-top: 100px;
}

.style-two .hero-thumb {
    position: relative;
    z-index: 1;
}

.style-two .hero-cricle {
    position: absolute;
    top: 108px;
    left: -80px;
}

.style-two .hero-line-shape {
    position: absolute;
    top: 205px;
    left: 45px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

.style-two .hero-victor-shape {
    position: absolute;
    right: -90px;
    top: 160px;
    animation: bounceleft 4s linear infinite;
}

.style-two .hero-Expression-box {
    position: absolute;
    bottom: 83px;
    left: 45px;
    z-index: 1;
    text-align: left;
    border-radius: 15px;
    background-color:var(--color-white);
    padding: 12px 28px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

.style-two .hero-expert-content h3 {
    display: inline-block;
    font-size: 38px;
    line-height: 48px;
    text-transform: uppercase;
    color:var(--primary-color);
    font-weight: 600;
}

.style-two .hero-expert-content span {
    display: inline-block;
    font-size: 38px;
    line-height: 48px;
    text-transform: uppercase;
    color:var(--primary-color);
    font-weight: 600;
}

.style-two .hero-expert-content p {
    font-size: 16px;
    color:var(--title-color);
    font-weight: 500;
}

/*===========================================
<-- educate hero Area css style-three -->
==============================================*/
section.hero_area.style-three {
    background: url(../images/home-three/hero-bg3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 850px;
    position: relative;
    z-index: 1;
}

section.hero_area.style-three.four {
    background: url(../images/home-three/hero-bg32.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 850px;
    position: relative;
    z-index: 1;
}

section.hero_area.style-three .hero_content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.style-three .hero_content h5 {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.050980392156862744);
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
}

.style-three .hero_content h5 i {
    display: inline-block;
    margin-right: 10px;
    color:var(--primary-color);
}

.style-three .hero_content h1 {
    font-size: 66px;
    line-height: 76px;
    color: #ffffff;
    font-weight: 600;
}

.style-three .hero_content h1 span{
    display: inline-block;
    color:var(--primary-color);
}

.style-three .hero_content p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    width: 95%;
    margin: 20px 0 35px;
}

section.hero_area.style-three .hero-btn {
    display: inline-block;
    margin-right: 25px;
}

section.hero_area.style-three .hero-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

section.hero_area.style-three .hero-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--Secondary-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

section.hero_area.style-three .hero-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

section.hero_area.style-three .hero-btn a i {
    display: inline-block;
    margin-left: 10px;
}

section.hero_area.style-three .hero-course-btn {
    display: inline-block;
}

section.hero_area.style-three .hero-course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

section.hero_area.style-three .hero-course-btn a:hover{
    color: var(--primary-color);
}

section.hero_area.style-three .hero-course-btn a:hover::before{
    background: var(--primary-color);
}

section.hero_area.style-three .hero-course-btn a::before{
    position: absolute;
    content: '';
    width: 125px;
    height: 1px;
    background-color: rgba(255,255,255,0.5019607843137255);
    left: 0;
    bottom: 0;
}

section.hero_area.style-three .hero-course-btn a i{
    display: inline-block;
    margin-left: 10px;
}

/* hero section shape */

.style-three .hero-shape31 {
    position: absolute;
    right: -100px;
    bottom: 30px;
    animation: bounceleft 4s linear infinite;
}

.style-three .hero-shape32 {
    position: absolute;
    top: 0;
    right: 105px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.style-three .hero-shape33 {
    position: absolute;
    left: -182px;
    bottom: -105px;
    animation: bounceleft 8s linear infinite;
}

/* course nav */

.owl-nav {
    position: absolute;
    right: 65px;
    bottom: 370px;
}

.owl-prev {
    display: block;
    margin-bottom: 12px;
}

.owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:#fff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}

.owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.owl-next {
    display: inline-block;
}

.owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color: #fff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}

.owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}


/*===========================================
<-- educate hero Area css style-four -->
==============================================*/

section.hero_area.style-four {
    background: url(../images/home-four/hero-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 890px;
}

section.hero_area.style-four .hero_content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

section.hero_area.style-four .hero_content h1 {
    font-size: 60px;
    line-height: 70px;
    color:var(--title-color);
    font-weight: 600;
}

section.hero_area.style-four .hero_content p {
    margin: 0;
    padding: 12px 0 32px;
    width: 80%;
    opacity: 0.600;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    font-weight: 400;
    margin: 5px 0 0;
}

section.hero_area.style-four .hero-btn {
    display: inline-block;
    margin-right: 25px;
}

section.hero_area.style-four .hero-btn a {
    display:inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

section.hero_area.style-four .hero-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

section.hero_area.style-four .hero-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

section.hero_area.style-four .hero-btn a img {
    display: inline-block;
    margin-right: 10px;
}

section.hero_area.style-four .hero-course-btn {
    display: inline-block;
}

section.hero_area.style-four .hero-course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

section.hero_area.style-four .hero-course-btn a:hover{
    color: var(--primary-color);
}

section.hero_area.style-four .hero-course-btn a:hover::before{
    background: var(--primary-color);
}

section.hero_area.style-four .hero-course-btn a::before{
    position: absolute;
    content: '';
    width: 125px;
    height: 1px;
    background-color: rgba(30,30,30,0.5019607843137255);
    left: 0;
    bottom: 0;
}

section.hero_area.style-four .hero-course-btn a i{
    display: inline-block;
    margin-left: 10px;
}

section.hero_area.style-four .hero-thumb-wrapper {
    position: relative;
    padding-top: 95px;
}

section.hero_area.style-four .hero-thumb {
    text-align: right;
    position: relative;
    left: 35px;
    z-index: 1;
}

section.hero_area.style-four .hero-shape1 {
    position: absolute;
    top: 260px;
    left: 70px;
    animation: float 3s ease-in-out infinite;
}

section.hero_area.style-four .hero-shape2 {
    position: absolute;
    bottom:175px;
    left: 120px;
    animation: flip 1.5s ease-in-out infinite;
}

section.hero_area.style-four .hero-shape3 {
    position: absolute;
    left: 16px;
    top: 166px;
    animation: rotateme 18s linear infinite;
}

section.hero_area.style-four .hero-shape4 {
    position: absolute;
    left: -65px;
    bottom: 30px;
    animation: bounceleft 4s linear infinite;
}

section.hero_area.style-four .hero-shape5 {
    position: absolute;
    right: -7px;
    top: 102px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

section.hero_area.style-four .hero-shape6 {
    position: absolute;
    right: -205px;
    top: 95px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

section.hero_area.style-four .hero-autor-box {
    position: absolute;
    bottom: 30px;
    left: 160px;
    width: 340px;
    height: 130px;
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px 0 28px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
    z-index: 1;
    border-radius: 10px;
    filter: drop-shadow(0px 20px 50px rgba(177,221,208,0.4));
    background-color: #ffffff;
}

section.hero_area.style-four .hero-autor-content p{
    display: block;
    font-size: 16px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 400;
}

section.hero_area.style-four .hero-autor-content h3 {
    display: inline-block;
    font-size: 26px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 600;
}
section.hero_area.style-four .hero-autor-content span {
    display: inline-block;
    font-size: 26px;
    color:var(--title-color);
    font-weight: 600;
}

/*===========================================
<-- educate hero Area css style-five -->
==============================================*/
section.hero_area.style-five {
    background: url(../images/home-five/image_full_2355019669.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
      min-height: 70vh;        /* حداقل ارتفاع برابر با ارتفاع صفحه */
    height: 200px;             /* ارتفاع بر اساس محتوا */
    padding: 100px 0;         /* فاصله از بالا و پایین برای اسلایدر */
    position: relative;
    /* z-index: -1; */
}
section.hero_area.style-five::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* عدد 0.5 میزان تاریکی (0=شفاف، 1=کاملا سیاه) */
    z-index: 1;
}
section.hero_area.style-five > * {
   
    z-index: 2;
}
section.hero_area.style-five.two {
    background: url(../images/home-five/image_full_735490402.jpg);
    background-repeat: no-repeat;
    background-size: cover;
      background-position: center;
      min-height: 70vh;        /* حداقل ارتفاع برابر با ارتفاع صفحه */
    height: 200px;             /* ارتفاع بر اساس محتوا */
    padding: 100px 0;         /* فاصله از بالا و پایین برای اسلایدر */
    position: relative;
    z-index: -1;
}
section.hero_area.style-five.three {
    background: url(../images/home-five/image_full_3884117680.jpg);
    background-repeat: no-repeat;
    background-size: cover;
      background-position: center;
      min-height: 70vh;        /* حداقل ارتفاع برابر با ارتفاع صفحه */
    height: 200px;             /* ارتفاع بر اساس محتوا */
    padding: 100px 0;         /* فاصله از بالا و پایین برای اسلایدر */
    position: relative;
    z-index: -1;
}
.style-five .hero_content {
    text-align: center;
   
}
.style-five .hero_content h5 {
    
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 17px);
    width: auto;                
    padding: 0 20px;            
    height: auto;
    line-height: normal;
    padding: 10px 20px;
    border-radius: 21px;
    background-color: rgba(255,255,255,0.050980392156862744);
    border: 1px solid rgba(255,255,255,0.12);
    margin: 0 auto 26px;
}
.hero-slider5 .owl-item.active .hero_content h5 {
    animation: fadeInLeftBig ease 2s;
}
.style-five .hero_content h1 {
    
    font-size: clamp(24px, 4vw, 48px);  /* حداقل 32، حداکثر 70 */
    line-height: 1.2;                    /* بهجای 80px ثابت */

    color: #ffffff;
    font-weight: 700;
}
.hero-slider5 .owl-item.active .hero_content h1 {
    animation: fadeInLeftBig ease 2s;
}
.style-five .hero-button {
    display: flex;
    gap: 20px;
justify-content: center;
 
}
.hero_content-topslide{
    padding-bottom: 30px;
}

section.hero_area.style-five .hero-btn {
    display: inline-block;
    margin-right: 25px;
}

section.hero_area.style-five .hero-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}
.hero-slider5 .owl-item.active .hero-btn a{
    animation: fadeInRightBig ease 2s;
}
section.hero_area.style-five .hero-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

section.hero_area.style-five .hero-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

section.hero_area.style-five .hero-btn a i {
    display: inline-block;
    margin-left: 10px;
}

section.hero_area.style-five .hero-course-btn {
    display: inline-block;
}

section.hero_area.style-five .hero-course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    transition: 0.5s;
    color: #ffffff;
}
.hero-slider5 .owl-item.active .hero-course-btn a{
    animation: fadeInRightBig ease 2s;
}
section.hero_area.style-five .hero-course-btn a::before {
    position: absolute;
    content: '';
    width: 125px;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: 0.5s;
    background-color: rgba(255,255,255,0.5019607843137255);
}

section.hero_area.style-five .hero-course-btn a:hover {
    color: var(--primary-color);
}

section.hero_area.style-five .hero-course-btn a:hover::before {
    background: var(--primary-color);
}

section.hero_area.style-five .hero-course-btn a i {
    display: inline-block;
    margin-left: 10px;
    transition: 0.5s;
}

.style-five .hero-arrow {
    display: inline-block;
    position: absolute;
    top: -50px;
    right: 280px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

/* hero owl dot */
.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot {
    margin-bottom: 20px;
    position: relative;
    width: 55px;
    height: 55px;
    line-height: 30px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.050980392156862744);
    border: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot::before {
    position: absolute;
    content: '01';
    left: 14px;
    top: 12px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Space Grotesk";
    text-align: center;
}

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot:nth-child(2)::before{
    content: '02';
} 

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot:nth-child(3)::before{
    content: '03';
} 

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dots {
    position: absolute;
    top: 320px;
    left: 60px;
}

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot.active {
    width: 52px;
    height: 52px;
    border-radius: 26px;
    background-color: rgba(30,194,142,0.9411764705882353);
    position: relative;
}

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-dot.active::after {
    position: absolute;
    content: '';
    left: -7px;
    top: -7px;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 2px dotted #1ec28e;
    text-align: center;
}

.hero-slider5.owl-carousel.owl-loaded.owl-drag .owl-stage-outer {
    position: relative;
    overflow: inherit;
    -webkit-transform: translate3d(0,0,0);
}

/* ============================================= */
/* دسکتاپ (عرض بیشتر از 992px) - پیش‌فرض */
/* ============================================= */

.style-five .hero-shape {
    position: absolute;
    left: 65%;
    bottom: -65px;
}

.style-five .hero-shape-icon {
    position: absolute;
    left: -56px;
    bottom: -32px;
    z-index: 22;
}

.style-five .hero-shape-icon a {
    display: inline-block;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    width: 156px;
    height: 156px;
    margin-bottom: 30px;
    margin-left: 50px;
}

.style-five .hero-shape-icon a img {
    position: relative;
    cursor: pointer;
    z-index: 1;
    top: 38px;
    left: 30px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 100px;
    text-align: center;
}

.style-five .text-inner {
    width: 155px;
    height: 155px;
    line-height: 155px;
    position: absolute;
    bottom: -11px;
  
}

.style-five .text-inner svg {
    width: 130px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 2px;
    transform: rotate(0) scaleX(1) scaleY(1);
    -webkit-animation: rotateme 8s linear infinite;
    animation: rotateme 8s linear infinite;
}

.style-five .text-inner path {
    fill: transparent;
    stroke: transparent;
    stroke-width: 1px;
    transition: 0.3s stroke, 0.3s fill;
}

.style-five .text-inner text {
    fill: #1e1e1e;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    font-size: 31px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #1e1e1e;
    font-weight: 500;
    text-align: center;
    font-family: "Heebo";
}

/* ============================================= */
/* تبلت (عرض بین 768px تا 991px) - کاملاً جدا */
/* ============================================= */
@media (min-width: 768px){
    
    .style-five .hero-shape {
        position: absolute;
        left: 46%;
        bottom: -65px;
    }

    .style-five .hero-shape-icon {
        position: absolute;
        left: -56px;
        bottom: -32px;
        z-index: 22;
    }

    .style-five .hero-shape-icon a {
        display: inline-block;
        line-height: 156px;
        border-radius: 50%;
        text-align: center;
        width: 156px;
        height: 156px;
        position: absolute;
        bottom: 10px;
        right: -198px;
    }

    .style-five .hero-shape-icon a img {
        position: relative;
        cursor: pointer;
        z-index: 1;
        top: 38px;
        left: 24px;
        width: 120px;
        height: 120px;
        line-height: 120px;
        border-radius: 100px;
        text-align: center;
    }

    .style-five .text-inner {
        width: 155px;
        height: 155px;
        line-height: 155px;
        position: absolute;
        bottom: -11px;
        left: 5px;
    }

    .style-five .text-inner svg {
        width: 130px;
        max-width: 100%;
        height: auto;
        overflow: visible;
        word-spacing: 2px;
        transform: rotate(0) scaleX(1) scaleY(1);
        -webkit-animation: rotateme 8s linear infinite;
        animation: rotateme 8s linear infinite;
    }

    .style-five .text-inner path {
        fill: transparent;
        stroke: transparent;
        stroke-width: 1px;
        transition: 0.3s stroke, 0.3s fill;
    }

    .style-five .text-inner text {
        fill: #1e1e1e;
        direction: ltr;
        transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
        font-size: 31px;
        letter-spacing: 1px;
        line-height: 42px;
        color: #1e1e1e;
        font-weight: 500;
        text-align: center;
        font-family: "Heebo";
    }
}

/* ============================================= */
/* موبایل (عرض کمتر از 767px) - کاملاً جدا */
/* ============================================= */
@media (max-width: 767px) {
    
    .style-five .hero-shape {
        position: absolute;
        left: 46%;
        bottom: -65px;
    }

    .style-five .hero-shape-icon {
        position: relative;
        left: 0px;
        bottom: 50px;
        z-index: 22;
    }

    .style-five .hero-shape-icon a {
        display: inline-block;
        line-height: 156px;
        border-radius: 50%;
        position: relative;
        right: 10px;
        width: 100px;
        height: 100px;
    }

    .style-five .hero-shape-icon a img {
        position: relative;
        cursor: pointer;
        z-index: 1;
        top: 140px;
        left: 58px;
        width: 90px;
        height: 90px;
        line-height: 90px;
        border-radius: 100px;
        text-align: center;
    }

    .style-five .text-inner {
        width: 100px;
        height: 100px;
        line-height: 30px;
        position: relative;
        bottom: 20px;
        left: 42px;
    }

    .style-five .text-inner svg {
        width: 130px;
        max-width: 100%;
        height: auto;
        overflow: visible;
        word-spacing: 2px;
        transform: rotate(0) scaleX(1) scaleY(1);
        -webkit-animation: rotateme 8s linear infinite;
        animation: rotateme 8s linear infinite;
    }

    .style-five .text-inner path {
        fill: transparent;
        stroke: transparent;
        stroke-width: 1px;
        transition: 0.3s stroke, 0.3s fill;
    }

    .style-five .text-inner text {
        fill: #1e1e1e;
        direction: ltr;
        transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
        font-size: 31px;
        letter-spacing: 1px;
        line-height: 42px;
        color: #1e1e1e;
        font-weight: 500;
        text-align: center;
        font-family: "Heebo";
    }
}
/* ============================================= */
/* موبایل (عرض کمتر از 767px) - کاملاً جدا */
/* ============================================= */
@media (max-width: 480px) {
    
    .style-five .hero-shape {
        position: absolute;
        left: 46%;
        bottom: -65px;
    }

    .style-five .hero-shape-icon {
        position: relative;
        left: 0px;
        bottom: 50px;
        z-index: 22;
    }

    .style-five .hero-shape-icon a {
        display: inline-block;
        line-height: 156px;
        border-radius: 50%;
        position: relative;
        right: 63px;
        top: 32px;
        width: 100px;
        height: 100px;
    }

    .style-five .hero-shape-icon a img {
        position: relative;
        cursor: pointer;
        z-index: 1;
        top: 140px;
        left: 58px;
        width: 90px;
        height: 90px;
        line-height: 90px;
        border-radius: 100px;
        text-align: center;
    }

    .style-five .text-inner {
        width: 100px;
        height: 100px;
        line-height: 30px;
        position: relative;
        bottom: 20px;
        left: 42px;
    }

    .style-five .text-inner svg {
        width: 130px;
        max-width: 100%;
        height: auto;
        overflow: visible;
        word-spacing: 2px;
        transform: rotate(0) scaleX(1) scaleY(1);
        -webkit-animation: rotateme 8s linear infinite;
        animation: rotateme 8s linear infinite;
    }

    .style-five .text-inner path {
        fill: transparent;
        stroke: transparent;
        stroke-width: 1px;
        transition: 0.3s stroke, 0.3s fill;
    }

    .style-five .text-inner text {
        fill: #1e1e1e;
        direction: ltr;
        transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
        font-size: 31px;
        letter-spacing: 1px;
        line-height: 42px;
        color: #1e1e1e;
        font-weight: 500;
        text-align: center;
        font-family: "Heebo";
    }
}

/* ============================================= */
/* انیمیشن‌ها (مشترک در همه دستگاه‌ها) */
/* ============================================= */
@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes softPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.03);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}

/*===========================================
<-- Responsive for Mobile (فقط سایز متن‌ها) -->
==============================================*/
   .style-five .hero_content h1, 
    .style-five .hero_content h2 {
        font-size: clamp(18px, 5vw, 30px) !important;
        line-height: 1.3 !important;
    }

@media (max-width: 768px) {
    .style-five .hero_content h1 ,
    .style-five .hero_content h2 {
        font-size: clamp(22px, 6vw, 36px) !important;
        line-height: 1.3 !important;
    }

    .style-five .hero_content h5 {
        font-size: clamp(10px, 3vw, 14px) !important;
        padding: 8px 18px !important;
    }

    section.hero_area.style-five .hero-btn a {
        font-size: clamp(12px, 3vw, 14px) !important;
        padding: 10px 25px !important;
    }

    section.hero_area.style-five .hero-course-btn a {
        font-size: clamp(12px, 3vw, 14px) !important;
    }
}

/* برای موبایل‌های خیلی کوچیک (480px) */
@media (max-width: 480px) {
    .style-five .hero_content h1,
    .style-five .hero_content h2 {
        font-size: clamp(18px, 5vw, 26px) !important;
        line-height: 1.3 !important;
    }

    .style-five .hero_content h5 {
        font-size: clamp(9px, 2.5vw, 12px) !important;
        padding: 6px 14px !important;
    }
    .style-five .hero_content p {
        font-size: clamp(9px, 2.5vw, 12px) !important;
        padding: 6px 14px !important;
    }

    section.hero_area.style-five .hero-btn a {
        font-size: clamp(11px, 2.5vw, 13px) !important;
        padding: 8px 20px !important;
    }

    section.hero_area.style-five .hero-course-btn a {
        font-size: clamp(11px, 2.5vw, 13px) !important;
    }
}


/*===========================================
<-- educate hero Area css style-six -->
==============================================*/
section.hero_area.style-six {
    background-color: #e4f6ef;
    height: 1090px;
    padding: 0 35px 0 40px;
    position: relative;
}
section.hero_area.style-six .row.hero-space {
    padding-top: 102px;
}
section.hero_area.style-six .hero_content {
    position: relative;
    padding: 140px 100px 142px 100px;
    border-radius: 20px;
    background-color: #043338;
    background: url(../images/home-six/hero-left-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

section.hero_area.style-six .hero_content h5 {
    display: inline-block;
    padding: 0 25px 0 35px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 35px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 0 20px 20px 0px;
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}
section.hero_area.style-six .hero_content h5::before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 4px;
    background-color: #ff853f;
    left: 15px;
    top: 13px;
}
section.hero_area.style-six .hero_content h1 {
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    font-weight: 600;
}
section.hero_area.style-six .hero_content h1 span{
    display: inline-block;
    font-size: 60px;
    line-height: 70px;
    color:#1ec28e;
    font-weight: 600;
}
section.hero_area.style-six .lines {
    padding: 30px 0 20px;
}
section.hero_area.style-six .lines .line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    overflow: hidden;
    z-index: 5;
}
section.hero_area.style-six .lines .line::after {
    content: "";
    display: block;
    position: relative;
    top: 0;
    left: 0px;
    width: 150px;
    height: 1px;
    background-color: #1ec28e;
    -webkit-animation: moveLeftBounces 35s linear infinite;
    animation: moveLeftBounces 35s linear infinite;
    overflow: hidden;
}
section.hero_area.style-six .lines .line:nth-child(1)::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
section.hero_area.style-six .hero_content p {
    padding: 12px 0 32px;
    width: 80%;
    margin: 0px 0 16px;
    font-size: 18px;
    line-height: 28px;
    color: #fefefe;
    font-weight: 400;
}
section.hero_area.style-six .hero-btn {
    display: inline-block;
    margin-right: 16px;
}
section.hero_area.style-six .hero-btn a {
    display:inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}
section.hero_area.style-six .hero-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}
section.hero_area.style-six .hero-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
section.hero_area.style-six .hero-btn a i {
    display: inline-block;
    margin-left: 10px;
}
section.hero_area.style-six .hero-course-btn {
    display: inline-block;
}
section.hero_area.style-six .hero-course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
section.hero_area.style-six .hero-course-btn a:hover{
    color: var(--primary-color);
}
section.hero_area.style-six .hero-course-btn a:hover::before{
    background: var(--primary-color);
}
section.hero_area.style-six .hero-course-btn a::before{
    position: absolute;
    content: '';
    width: 125px;
    height: 1px;
    background-color: rgba(30,30,30,0.5019607843137255);
    left: 0;
    bottom: 0;
}
section.hero_area.style-six .hero-course-btn a i{
    display: inline-block;
    margin-left: 10px;
}
section.hero_area.style-six .hero-thumb-wrapper {
    position: relative;
}
section.hero_area.style-six .hero-thumb img {
    width: 100%;
    height: 700px;
}
section.hero_area.style-six .hero-autor-box {
    position: absolute;
    bottom: 230px;
    left: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px 0 25px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
    border-radius: 20px;
    background-color: rgba(30,194,142,0.14901960784313725);
    border: 2px solid rgba(30,194,142,0.5);
    width: 291px;
    height: 139px;
}
section.hero_area.style-six .hero-autor-content p {
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #ffffff;
}
section.hero_area.style-six .hero-autor-content h3 {
    display: inline-block;
    font-size: 26px;
    line-height: 26px;
    color: #ffffff;
}
section.hero_area.style-six .hero-autor-content span {
    display: inline-block;
    font-size: 26px;
    color:#fff;
    font-weight: 600;
}
/* hero all shape */
.style-six .hero-shape61 {
    position: absolute;
    top: 145px;
    left: 385px;
    animation: bounceleft 4s linear infinite;
}
.style-six .hero-shape62 {
    position: absolute;
    right: 85px;
    bottom: 75px;
    animation: bounceleft 4s linear infinite;
}
.style-six .hero-shape64 {
    position: absolute;
    bottom: 40px;
    left: 640px;
}

/* hero course box */
.course-box-area {
    padding-top: 74px;
    position: relative;
}
.course-box-area .online-course-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.course-box-area .course-icon {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background-color: #e4f6ef;
    line-height: 100px;
    text-align: center;
}
.course-box-area .course-title h6 {
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 500;
}






/*===========================================
<-- educate feature Area Css  style-one -->
==============================================*/
section.feature-area.style-one {
    padding: 110px 0 120px;
    position: relative;
}

.style-one .single-feature-box{
    border-radius: 20px;
    background-color: #f0fbf8;
    padding: 48px 35px 48px 38px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.style-one .single-feature-box.box-2{
    background-color: #fdf7f3;  
}

.style-one .single-feature-box.box-3{
    background-color:#f1f9fc;
}

.style-one .single-feature-box .feature-icon {
    transition: 0.5s;
    width: 60px;
    height: 42px;
}

.style-one .single-feature-box:hover .feature-icon {
    filter: brightness(0) invert(1);
    animation: bd-bounce 800ms ease-out alternate;
    -webkit-animation: bd-bounce 800ms ease-out alternate;

}

.style-one h4.feature-title {
    font-size: 24px;
    color: var(--title-color);
    font-weight: 500;
    margin-top: 12px;
    transition: 0.5s;
}

.style-one .single-feature-box:hover h4.feature-title {
   color:#fff;
}

.style-one p.feature-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    transition: 0.5s;
}

.style-one .single-feature-box:hover p.feature-desc {
    color:rgb(255, 255, 255, 0.8);
 }

/* Box-hover */

.style-one .educate-hover-box {
    background-color:var(--primary-color);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}
  
.style-one .single-feature-box.box-2 .educate-hover-box {
    background-color:var(--Secondary-color);
}

.style-one .single-feature-box.box-3 .educate-hover-box {
    background-color:var(--tertiary-color);
}

.style-one .hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
    border-radius: 20px 0 0px 20px;
}
  
.style-one .hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}
  
.style-one .hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}
  
.style-one .hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-radius: 0 20px 20px 0;
}
  
.style-one .single-feature-box:hover .educate-hover-box {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
  
.style-one .feature-shape1 {
    position: absolute;
    top: 100px;
    left: 113px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

.style-one .feature-shape2 {
    position: absolute;
    top: 100px;
    right: 178px;
}



/*===========================================
<-- educate feature Area Css  style-two -->
==============================================*/
section.feature-area.style-two {
    background-color: #f0fbf8;
    padding: 72px 0 60px;
    position: relative;
    z-index: 1;
}

.style-two .single-feature-box {
    margin-bottom: 20px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.style-two .single-feature-box:hover{
    transform:translateY(-10px);
}

.style-two .feature-content {
    overflow: hidden;
    padding-right: 40px;
}

.style-two .feature-icon {
    float: left;
    margin-right: 23px;
    position: relative;
    top: 16px;
    transition: 0.5s;
}

.style-two .single-feature-box:hover .feature-icon{
    animation: wobble_vertical 1s forwards ease-in-out 0s;
}

.style-two h4.feature-title {
    font-size: 24px;
    color:var(--title-color);
    font-weight: 500;
    transition: 0.5s;
}

.style-two p.feature-desc {
    font-size: 16px;
    line-height: 30px;
    color:var(--text-color);
    font-weight: 400;
}

.style-two .feature-shape21 {
    position: absolute;
    right: 135px;
    bottom: -90px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}


/*===========================================
<-- educate section title Css  -->
==============================================*/
.section-sub-title h6 {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--title-color);
    font-weight: 500;
    transition: 0.5s;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.section-sub-title h6::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    line-height: 6px;
    background-color: var(--primary-color);
    left: 4px;
    top: 25px;
}

.section-sub-title h6::after {
    position: absolute;
    content: '';
    width: 635px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    left: 0;
    bottom: -8px;
}

.section_title h1 {
    font-size: 42px;
    line-height: 52px;
    color:var(--title-color);
    font-weight: 600;
}

.section-title-space {
    margin-bottom: 50px;
    direction: rtl;
}

.section-title-desc p{
    font-size: 16px;
    line-height: 26px;
    color:var(--text-color);
    font-weight: 400;
    margin: 13px 0 23px;
    width: 90%;
}

/* section title two */

.section-sub-title.two h6 {
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color:var(--primary-color);
    font-weight: 500;
    border-radius: 18px;
    background-color: rgb(30 194 142 / 10%);
    display: inline-block;
    padding: 3px 16px 3px 16px;
    margin-bottom: 25px;
}

.section-sub-title.two h6 img {
    margin-right: 10px;
}

.section_title.two h1 {
    font-size: 40px;
    line-height: 50px;
    color:var(--title-color);
    font-weight: 700;
}

.section_title.two h1 span{
    display: inline-block;
    color:var(--primary-color);
}

.section-title-desc.two p {
    opacity: 0.702;
    font-size: 16px;
    color: #152e41;
}

.section-sub-title.three h6 {
    color:var(--primary-color);
}

/* section title four */

.section-sub-title.four h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Open Sans";
    transition: 0.5s;
    padding-left: 20px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.section-sub-title.four h6::before {
    position: absolute;
    content: '';
    line-height: 8px;
    left: 2px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #ff853f;
}

.section-sub-title.four h6::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 10px;
    width: 166px;
    height: 1px;
    background-image: linear-gradient(90deg, #ffffff 0%, #1dc18d 50%, #ffffff 100%);
}

.section_title.four h1 {
    font-size: 45px;
    line-height: 55px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
}

/* section title six */
.section-sub-title.six h6 {
    display: inline-block;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    font-size: 15px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 600;
    font-family: "Open Sans";
    padding: 0;
}
.section-sub-title.six h6::after {
    position: absolute;
    content: '';
    background-color: rgba(30,30,30,0.10196078431372549);
    left: -15px;
    bottom: 9px;
    width: 146px;
    height: 1px;
    background-image: linear-gradient(90deg, #ffffff 0%, #1dc18d 50%, #ffffff 100%);
}
.section_title.six h1 {
    font-size: 45px;
    line-height: 55px;
    color: #1e1e1e;
    font-weight: 600;
}
.section_title.six h1 span{
    display: inline-block;
    color: #1ec28e;
}





/*===========================================
<--educate about Area Css  style-one -->
==============================================*/
section.about-area.style-one {
    background: url(../images/home-one/about-bg11.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 0px;
    position: relative;
}

section.about-area.style-one .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-one .about-thumb-wrapper {
    position: relative;
    margin-left: -236px;
}

.style-one .about-thumb {
    position: relative;
    z-index: 1;
}

.style-one .about-thumb-shape1 {
    position: absolute;
    top: 10px;
    left: 173px;
}

.style-one .about-thumb-shape2 {
    position: absolute;
    top: -15px;
    left: 405px;
}

.style-one .about-thumb-shape3 {
    position: absolute;
    top: 135px;
    left: 365px;
}

.style-one .about-shape4 {
    position: absolute;
    bottom: 82px;
    right: 110px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

.style-one .about-shape5 {
    position: absolute;
    top: 105px;
    right: 155px;
    animation: rotateme 18s linear infinite;
}

.style-one .about-item-list span {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
}

.style-one .about-item-list span img {
    margin-right: 10px;
}

.style-one .about-item-box h3.counter {
    display: inline-block;
    font-size: 56px;
    color:var(--primary-color);
    font-weight: 600;
}

.style-one .about-item-box span {
    display: inline-block;
    color: var(--primary-color);
    font-size: 56px;
    position: absolute;
    bottom: 14px;
    font-family: "Outfit";
}

.style-one .row.about-border {
    padding-top: 60px;
    position: relative;
}

.style-one .row.about-border::before {
    position: absolute;
    content: '';
    width: 648px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    top: 30px;
}

.style-one .row.about-border::after {
    position: absolute;
    content: '';
    width: 648px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    bottom: -26px;
}

.style-one .about-item-box {
    display: flex;
    align-items: center;
    gap: 42px;
}

.about-item-box.two {
    gap: 53px;
}

.style-one .about-item-desc p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    margin-left: 5px;
}

.style-one .about-item-desc.last p {
    margin-left: 21px;
}

.style-one .about-btn {
    display: inline-block;
    margin-top: 70px;
}

.style-one .about-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color:var(--primary-color);
    padding: 11px 33px;
    position: relative;
    z-index: 1;
}

.style-one .about-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-one .about-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-one .about-btn a i {
    display: inline-block;
    margin-left: 10px;
}


/*===========================================
<--educate about Area Css  style-two -->
==============================================*/
section.about-area.style-two {
    padding: 120px 0 80px;
    position: relative;
}

section.about-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

section.about-area.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-two .about-thumb-wrapper {
    position: relative;
    text-align: center;
}

.style-two .about-total-student {
    position: absolute;
    top: 33px;
    left: 0;
    filter: drop-shadow(-5px 0 15px rgba(204,204,204,0.25));
    border-radius: 10px;
    animation: bounceleft 4s linear infinite;
}

.style-two .about-thumb2 {
    position: absolute;
    bottom: -49px;
    left: -80px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

.style-two .about-shape21 {
    position: absolute;
    top: 133px;
    left: 146px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.style-two .about-shape22 {
    position: absolute;
    right: 90px;
    bottom: -180px;
    animation: upDown 1.5s ease-in-out 1.8s forwards infinite alternate;
}

.style-two .about-bg-shape {
    position: absolute;
    right: 0;
    top: 50px;
    z-index: -1;
}

.style-two .about_content {
    position: relative;
}

.style-two .about-item-list {
    margin-bottom: 35px;
}

.style-two .about-item-list ul li {
    font-size: 18px;
    line-height: 28px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    margin-bottom: 20px;
}

.style-two .about-item-list ul li i {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 12px;
    background-color:var(--primary-color);
    text-align: center;
    color:var(--color-white);
    margin-right: 10px;
}

.style-two .about-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 15px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.style-two .about-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .about-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .about-btn a i {
    display: inline-block;
    margin-left: 10px;
}

/* about shape */
.style-two .about-shape {
    position: absolute;
    left: 367px;
    bottom: 0;
}
  
  .style-two .about-shape-icon {
    left: -56px;
    bottom: -32px;
    z-index: 22;
  }
  
  .style-two .about-shape-icon a {
    display: inline-block;
    line-height: 156px;
    border-radius: 50%;
    text-align: center;
    width: 156px;
    height: 156px;
    background-color: #f0f8f5;
    border: 6px solid #E5E5E5;
}
  
.style-two .about-shape-icon a i {
    color:var(--color-white);
    font-size: 20px;
    transform: rotate(-45deg);
    position: relative;
    cursor: pointer;
    z-index: 1;
    top: -3px;
    width: 69px;
    height: 69px;
    line-height: 69px;
    border-radius: 34px;
    background-color:var(--primary-color);
    text-align: center;
    animation: rotateme 18s linear infinite;
}
  
  .style-two .text-inner {
    width: 155px;
    height: 155px;
    line-height: 155px;
    position: absolute;
    bottom: 2px;
    left: 28px;
  }
  
  .style-two .text-inner svg {
    width: 100px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 10px;
    transform: rotate(0) scaleX(1) scaleY(1);
    -webkit-animation: rotateme 8s linear infinite;
    animation: rotateme 8s linear infinite;
  }
  
  .style-two .text-inner path {
    fill: transparent;
    stroke: transparent;
    stroke-width: 1px;
    transition: 0.3s stroke, 0.3s fill;
  }
  
  .style-two .text-inner text {
    fill: #1e1e1e;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Open Sans";
}

/*===========================================
<--educate about Area Css  style-three -->
==============================================*/
section.about-area.style-three {
    padding: 120px 0 120px;
    position: relative;
}

section.about-area.style-three .section-title-desc p {
    margin: 13px 0 30px;
}

section.about-area.style-three.inner .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

section.about-area.style-three .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

section.about-area.style-three.inner .section-sub-title h6 {
    padding-left: 0;
}

section.about-area.style-three.inner .section-sub-title.three h6 img {
    margin-right: 12px;
}

.style-three .about-thumb-wrapper {
    position: relative;
    margin-left: -55px;
}

.style-three .about-thumb {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.style-three .about-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-three .about-thumb:hover::before {
    animation: shine 800ms;
}

.style-three .about-learn-box {
    border-radius: 10px;
    background-color: var(--primary-color);
    width: 300px;
    height: 118px;
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding: 31px 35px;
    position: absolute;
    right: 66px;
    top: 0;
    z-index: 1;
}

.style-three .learn-title h5 {
    font-size: 22px;
    line-height: 28px;
    color:var(--color-white);
    font-weight: 500;
}

.style-three .about-experience-count h3 {
    display: inline-block;
    font-size: 60px;
    line-height: 52px;
    text-transform: uppercase;
    color:var(--primary-color);
}

.style-three .about-experience-count span{
    display: inline-block;
    font-size: 60px;
    line-height: 52px;
    text-transform: uppercase;
    color:var(--primary-color);
}

.style-three .about-experience-count span {
    display: inline-block;
    font-size: 40px;
    text-transform: uppercase;
    color:var(--primary-color);
    position: relative;
    top: -16px;
}

.style-three .about-experience-count {
    display: inline-block;
    margin-right: 8px;
}

.style-three .about-experience-desc {
    display: inline-block;
}

.style-three .about-experience-box {
    position: absolute;
    bottom: 35px;
    left: 80px;
}

.style-three .about-shape32 {
    position: absolute;
    left: 40px;
    bottom: 57px;
    animation: bounceleft 8s linear infinite;
}

.style-three .about-shape31 {
    position: absolute;
    right: 60px;
    bottom: 0;
    animation: bounceleft 4s linear infinite;
}

.style-three .about-iteam-list ul li {
    font-size: 18px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    margin-bottom: 12px;
}

.style-three .about-iteam-list ul li img {
    margin-right: 10px;
}

.style-three .about-iteam-phone p {
    font-size: 22px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    margin: 32px 0 40px;
}

.style-three .about-iteam-phone p span {
    display: inline-block;
    margin-right: 12px;
}

.style-three .about-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color:var(--primary-color);
    padding: 11px 33px;
    position: relative;
    z-index: 1;
}

.style-three .about-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background:var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-three .about-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-three .about-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.about-education-box {
    border-radius: 20px;
    background-color: #f0fbf8;
    display: inline-block;
    width: 200px;
    height: 236px;
    padding: 35px 28px;
    position: absolute;
    right: 285px;
    bottom: 180px;
}

.education-icon span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--color-white);
    margin-bottom: 18px;
}

.education-content p {
    font-size: 20px;
    line-height: 28px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    margin-bottom: 15px;
}

.education-content span {
    display: inline-block;
    font-size: 15px;
    color: var(--title-color);
    font-family: "Outfit";
    position: relative;
    z-index: 1;
    margin-left: 25px;
}

.education-content span::before {
    position: absolute;
    content: '';
    width: 14px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--primary-color);
    left: -23px;
    top: 13px;
}

/*===========================================
<--educate about Area Css  style-four -->
==============================================*/
section.about-area.style-four {
    padding: 100px 0 100px;
}

section.about-area.style-four .about-thumb-wrapper {
    position: relative;
    z-index: 1;
    margin-left: -30px;
}

.style-four .about-thumb-shape1 {
    position: absolute;
    top: 70px;
    right: 85px;
    z-index: -1;
    animation: rotateme 18s linear infinite;
}

.style-four .about-thumb-shape2 {
    position: absolute;
    bottom: 34px;
    left: 55px;
    z-index: -1;
    animation: bounceleft 4s linear infinite;
}

section.about-area.style-four .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

section.about-area.style-four .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

section.about-area.style-four .section-sub-title h6 {
    padding-left: 0;
}

section.about-area.style-four .section-sub-title.three h6 img {
    margin-right: 12px;
}

.style-four .row.about-mission-space {
    margin-top: 30px;
}

.style-four .about-mission-box {
    border-radius: 10px;
    background-color: #f0fbf8;
    padding: 35px 30px 30px;
    transition: 0.5s;
}

.style-four .about-mission-title h3 {
    font-size: 26px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 10px;
}

.style-four .about-mission-desc p {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    margin-bottom: 42px;
}

.style-four .about-item-list ul li {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
    margin-bottom: 6px;
}

.style-four .about-item-list ul li img {
    margin-right: 12px;
}

.style-four .about-counter-box {
    border-radius: 10px;
    background-color: #fdf7f3;
    padding: 35px 30px 32px;
}

.style-four .about-iteam-count h3.counter {
    font-size: 56px;
    color: #fb8945;
    font-weight: 600;
    display: inline-block;
}

.style-four .about-iteam-count span {
    display: inline-block;
    font-size: 56px;
    color: #fb8945;
    font-weight: 600;
    font-family: "Outfit";
}

.style-four .about-call-box {
    display: flex;
    align-items:baseline;
    gap: 10px;
}

.style-four .about-call-icon {
    position: relative;
    top: 9px;
}

.style-four .about-item-desc p {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 80px;
}

.style-four .about-call-content h5 {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
}

.style-four .about-call-content h3 {
    font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-four .about-btn {
    margin-top: 37px;
}

.style-four .about-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color: var(--primary-color);
    padding: 11px 33px;
    position: relative;
    z-index: 1;
}

.style-four .about-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-four .about-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-four .about-btn a img {
    display: inline-block;
    margin-right: 10px;
}
/*===========================================
<--educate about Area Css  style-five -->
==============================================*/
section.about-area.style-five {
    padding: 200px 0 120px;
    position: relative;
}
.style-five .about-thumb-wrapper {
    position: relative;
}
.style-five .about-line-shape {
    position: absolute;
    top: -82px;
    left: -100px;
    animation: bounceleft 8s linear infinite;
}
.style-five .about-thumb-shape {
    position: absolute;
    top: -47px;
    left: -60px;
    z-index: -1;
}
.style-five .about-call-box {
    position: absolute;
    bottom: 58px;
   left: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 290px;
    height: 123px;
    border-radius: 15px;
    filter: drop-shadow(20px 0px 50px rgba(191,191,191,0.44));
    background-color: #ffffff;
    padding: 25px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.style-five .call-icon span {
    display: inline-block;
    color: #1ec28e;
    width: 62px;
    height: 62px;
    line-height: 62px;
    border-radius: 31px;
    background-color: rgb(30 194 142 / 20%);
    text-align: center;
    position: relative;
}
.style-five .call-icon span::after {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 35px;
    border: 1px dashed #1ec28e;
    top: -4px;
    left: -4px;
}
.style-five .call-content h5 {
    opacity: 0.800;
    font-size: 15px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Open Sans";
}
.style-five .call-content h3 {
    font-size: 18px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}
.style-five .about-shape51 {
    position: absolute;
    left: 1300px;
    top: 0;
    animation: bounceleft 10s linear infinite;
}
.style-five .about-shape53 {
    position: relative;
   
    animation: upDown 1.5s ease-in-out 1.8s forwards infinite alternate;
}
section.about-area.style-five .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}
section.about-area.style-five .section-title-desc p {
    width: 85%;
    color: #152e41;
}
.style-five .about-item-list {
    margin-bottom: 35px;
}
.style-five .about-item-list ul li {
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    margin-bottom: 22px;
}

.style-five .about-item-list ul li i {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background-color: #1ec28e;
    color: #fff;
    text-align: center;
    margin-right: 10px;
}

.style-five .about-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: var(--primary-color);
    padding: 15px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.style-five .about-btn a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
}
.style-five .about-btn a:hover:before {
    height: 100%;
    top: 0;
    bottom: auto;
}
.style-five .about-btn a i {
    display: inline-block;
    margin-left: 10px;
}
/*===========================================
<--educate about Area Css  style-five -->
==============================================*/
section.about-area.style-five.feature {
    padding: 120px 0 120px;
    position: relative;
}
section.about-area.style-five.feature .about-shape54 {
    position: absolute;
    bottom: 160px;
    right: 112px;
    animation: bounceleft 8s linear infinite;
}
section.about-area.style-five.feature .about-video-icon {
    position: absolute;
    right: 58px;
    bottom: 22px;
}
section.about-area.style-five.feature .about-video-icon a {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Open Sans";
    width: 69px;
    height: 69px;
    line-height: 69px;
    border-radius: 35px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
}
section.about-area.style-five.feature .about-video-icon a::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: url(../images/home-five/play-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: -17px;
    top: -16px;
    z-index: -1;
}
section.about-area.style-five.feature .about-video-icon a::after {
    position: absolute;
    content: '';
    width: 114px;
    height: 114px;
    border-radius: 57px;
    border: 2px dashed #1ec28e;
    top: -23px;
    left: -24px;
}
/*===========================================
<--educate about Area Css  style-six -->
==============================================*/
section.about-area.style-six {
    background: url(../images/home-six/about-bg6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 120px;
    position: relative;
}
section.about-area.style-six .about-thumb-wrapper {
    position: relative;
    z-index: 1;
}
section.about-area.style-six .about-thumb-shape61 {
    position: absolute;
    bottom: 145px;
    left: 190px;
}
section.about-area.style-six .about-thumb-shape62 {
    position: absolute;
    bottom: 10px;
    left: 56px;
    z-index: -1;
    animation: rotateme 18s linear infinite;
}
section.about-area.style-six .about-video-icon a {
    position: absolute;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    top: 13%;
    left: 74%;
    transform: translate(-50%, 50%);
    line-height: 69px;
    text-align: center;
    width: 70px;
    height: 69px;
    border-radius: 34px;
    background-color: #1ec28e;
    border: 1px solid rgba(255,255,255,0.35);
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
    animation: rippleGreen 1.5s infinite ease-out;
}
section.about-area.style-six .about-video-icon a::after {
    position: absolute;
    content: '';
    left: -17px;
    top: -17px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50px;
    border: 1px solid rgb(30 194 142 / 40%);
}
section.about-area.style-six .section-sub-title h6::before {
    position: absolute;
    content: '';
    left: 0;
    top: 22px;
    width: 9px;
    height: 9px;
    line-height: 9px;
    border-radius: 10px;
    background-color: #ff853f;
}
section.about-area.style-six .section-sub-title.six h6::after {
    position: inherit;
    background-color: transparent;
}
section.about-area.style-six .section-sub-title.six h6 {
    padding-left: 20px;
}
section.about-area.style-six .section-title-space {
    margin-bottom: 40px;
}
.style-six .about-icon-box {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}
.style-six .about-icon {
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 31px;
    filter: drop-shadow(0 0 25px rgba(30,194,142,0.15));
    background-color: #ffffff;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}
.style-six .about-icon::before {
    position: absolute;
    content: '';
    width: 85px;
    height: 85px;
    border-radius: 42px;
    background-color: rgba(30,194,142,0);
    border: 1px solid rgb(30 194 142 / 35%);
    left: -11px;
    top: -11px;
}
.style-six .about-icon::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 80px;
    border: 1px dashed rgb(30 194 142 / 35%);
    left: 30px;
    top: 62px;
}
.style-six .about-icon-box:last-child .about-icon::after{
display: none;
}
.style-six .about-content h5 {
    font-size: 22px;
    line-height: 42px;
    color: #000000;
    font-weight: 500;
}
.style-six .about-content p {
    font-size: 17px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    width: 65%;
}
.style-six .about-shape63 {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* ============================================= */
/* educate marquee Area css */
/* ============================================= */
.marquee-section {
    position: relative;
    padding: 38px 0;
    z-index: 1;
    background-color: var(--primary-color);
    overflow: hidden;
}

.marquee-section .inner-container {
    max-width: 1820px;
    margin: 0 auto;
}

.marquee-section .marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 0px;
}

.marquee-section .marquee-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0px;
    min-width: 100%;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.marquee-block h3 {
    font-size: 34px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 600;
    white-space: nowrap; /* جلوگیری از شکستن متن به دو خط */
    margin: 0 30px; /* فاصله ثابت بین آیتم‌ها */
}

.marquee-block h3 span {
    display: inline-block;
    margin-right: 20px;
    transition: 0.5s;
    animation: rotateme 18s linear infinite;
}

.marquee-block h3 span img {
    vertical-align: middle;
}

.marquee-section .marquee-block .content-box {
    position: relative;
    margin-right: 0px;
}

.marquee-section .marquee-block .content-box:last-child {
    margin-right: 0px;
}

.marquee-section .marquee-block .content-box:last-child::before {
    display: none;
}

.marquee-section .marquee-block .content-box .title {
    margin: 0;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* ============================================= */
/* ریسپانسیو بهبود یافته برای موبایل */
/* ============================================= */

@media (max-width: 992px) {
    .marquee-block h3 {
        font-size: 28px;
        margin: 0 20px;
    }
    
    .marquee-block h3 span {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .marquee-section {
        padding: 25px 0;
    }
    
    .marquee-block h3 {
        font-size: 18px;
        margin: 0 12px;
    }
    
    .marquee-block h3 span {
        margin-right: 10px;
    }
    
    .marquee-block h3 span img {
        width: 24px;
        height: 24px;
    }
    
    /* کاهش سرعت انیمیشن برای خوانایی بهتر */
    .marquee-section .marquee-block {
        -webkit-animation: scroll 40s linear infinite;
        animation: scroll 40s linear infinite;
    }
}

@media (max-width: 576px) {
    .marquee-section {
        padding: 20px 0;
    }
    
    .marquee-block h3 {
        font-size: 14px;
        margin: 0 8px;
    }
    
    .marquee-block h3 span {
        margin-right: 6px;
    }
    
    .marquee-block h3 span img {
        width: 18px;
        height: 18px;
    }
    
    /* کاهش بیشتر سرعت برای موبایل‌های خیلی کوچک */
    .marquee-section .marquee-block {
        -webkit-animation: scroll 35s linear infinite;
        animation: scroll 35s linear infinite;
    }
}

/* برای دستگاه‌های با صفحه خیلی باریک (مثل گوشی‌های کوچک) */
@media (max-width: 400px) {
    .marquee-block h3 {
        font-size: 12px;
        margin: 0 6px;
    }
    
    .marquee-block h3 span {
        margin-right: 4px;
    }
    
    .marquee-block h3 span img {
        width: 16px;
        height: 16px;
    }
}
/* ================================================ */
    /* educate case study Area css */
/* ================================================ */

.case-study-area.style-one {
    padding: 110px 0 90px;
    position: relative;
}

.style-one .case_study_menu {
    margin-bottom: 50px;
    text-align: center;
    margin-top: 10px;
}

.style-one .case_study_menu ul li {
    display: inline-block;
    text-align: center;
    padding: 9px 30px;
    cursor: pointer;
    margin: 0 8px;
    font-size: 16px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color: #f0fbf8;
    transition: 0.5s;
}

.style-one .case_study_menu ul li:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-one li.current_menu_item {
    color: #fff !important;
    background:var(--primary-color)!important;
}

.style-one .case-study-single-box {
    border-radius: 20px;
    background-color: #f1f9fc;
    padding: 30px 32px 32px;
    margin-bottom: 30px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    height: 670px;
}

.style-one .case-study-single-box:hover .course-btn a {
    opacity: 1;
    transform: translateY(-25px);
}

.style-one .case-study-single-box:hover .course-lesson {
    opacity: 0;
}

.style-one .case-study-single-box:hover .course-student{
    opacity: 0;
}

.style-one .case-study-single-box.box-2 {
    background-color:var(  --box-bg);
}

.style-one .case-study-single-box.box-3 {
    background-color:var(  --box-bg2);
}

.style-one .case-study-thumb {
    position: relative;
    transition: 0.5s;
}

.style-one .case-study-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-one .case-study-single-box:hover .case-study-thumb::before {
    animation: shine 800ms;
}

.style-one .case-study-thumb img {
    width: 100%;
    border-radius: 20px;
}

.style-one .case-study-content{
    transition: 0.5s;
}

.style-one .case-meta-top span {
    display: inline-block;
    font-size: 20px;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 35px;
    background-color: var(--tertiary-color);
}

.style-one .case-study-single-box.box-2 .case-meta-top span {
    background-color:var(--Secondary-color);
}

.style-one .case-study-single-box.box-3 .case-meta-top span {
    background-color:var(--primary-color);
}

.style-one .case-meta-top {
    position: absolute;
    bottom: 22px;
    left: 18px;
}

.style-one .case-study-content h5 {
    font-size: 14px;
    line-height: 30px;
    color: var(--tertiary-color);
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(21,193,250,0.10196078431372549);
    border: 1px solid rgba(21,193,250,0.3);
    display: inline-block;
    padding: 0 20px;
    margin: 25px 0 17px;
}

.style-one .case-study-single-box.box-2 .case-study-content h5 {
    color: var(--Secondary-color);
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
}

.style-one .case-study-single-box.box-3 .case-study-content h5 {
    color: var(--primary-color);
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
}

.style-one .case-study-content h4 {
    margin-bottom: 3px;
}

.style-one .case-study-content h4 a{
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color: var(--title-color);
    font-weight: 500;
    transition: 0.5s;
}

.style-one .case-study-single-box .case-study-content h4 a:hover{
    color:var(--tertiary-color);
}

.style-one .case-study-single-box.box-2 .case-study-content h4 a:hover{
    color:var(--Secondary-color);
}

.style-one .case-study-single-box.box-3 .case-study-content h4 a:hover{
    color:var(--primary-color);
}

.style-one .case-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-one .case-rating ul {
    display: inline-block;
}

.style-one .case-rating-num {
    display: inline-block;
}

.style-one .case-rating-num span {
    display: inline-block;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 400;
}

.style-one .case-autor-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    border-bottom: 1px solid  rgba(30,30,30,0.10196078431372549);
    margin-bottom: 17px;
    padding-bottom: 27px;
}

.style-one .case-autor-content h3 {
    font-size: 18px;
    line-height: 30px;
    color:var(--title-color);
    font-weight: 500;
}

.style-one .case-autor-content p {
    font-size: 15px;
    color:var(--text-color);
    font-weight: 400;
}

.style-one .course-lesson span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
}

.style-one .course-lesson span {
    display: inline-block;font-size: 16px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
}

.style-one .course-student span {
    display: inline-block;font-size: 16px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
}

.style-one .course-student {
    display: inline-block;
}

.style-one .course-lesson {
    display: inline-block;
    margin-right: 20px;
}

.style-one .course-lesson span i {
    display: inline-block;
    margin-right: 6px;
    color: var(--tertiary-color);
}

.style-one .case-study-single-box.box-2 .course-lesson span i {
    color: var(--Secondary-color);
}

.style-one .case-study-single-box.box-2 .course-lesson span i {
    color: var(--Secondary-color);
}

.style-one .case-study-single-box.box-3 .course-lesson span i {
    color: var(--primary-color);
}

.style-one .case-study-single-box.box-3 .course-lesson span i {
    color: var(--primary-color);
}

.style-one .course-student span i {
    display: inline-block;
    margin-right: 6px;
    color: var(--tertiary-color);
}

.style-one .case-study-single-box.box-2 .course-student span i {
    color: var(--Secondary-color);
}

.style-one .case-study-single-box.box-2 .course-student span i {
    color: var(--Secondary-color);
}

.style-one .case-study-single-box.box-3 .course-student span i {
    color: var(--primary-color);
}

.style-one .case-study-single-box.box-3 .course-student span i {
    color: var(--primary-color);
}

.style-one .course-btn a {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color:var(--tertiary-color);
    padding: 9px 28px;
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.style-one .course-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-one .course-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-one .case-study-single-box.box-2 .course-btn a{
    background-color:var(--Secondary-color);
}

.style-one .case-study-single-box.box-3 .course-btn a{
    background-color:var(--primary-color);
}

.style-one .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-one .case-shape1 {
    position: absolute;
    bottom: 0;
    left: 55px;
    animation: bounceleft 4s linear infinite;
}

/* ================================================ */
    /* educate why choose Area css style-one */
/* ================================================ */
.why-choose-area.style-one {
    background: url(../images/home-one/choose-bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 105px 0 125px;
}

.why-choose-area.style-one .section-title-desc p {
    width: 78%;
}

.why-choose-area.style-one .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-one .choose-item-menu {
    position: relative;
    z-index: 1;
    transition: 0.5s;
    margin-top: 38px;
}

.style-one .choose-item-menu ul li:nth-child(1), .style-one .choose-item-menu ul li:nth-child(2), .style-one .choose-item-menu ul li:nth-child(3), .style-one .choose-item-menu ul li:nth-child(4) {
    display: inline-block;
    font-size: 17px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 10px;
    background-color: rgba(30,194,142,0.10196078431372549);
    margin: 0 25px 20px 0;
    padding: 14px 100px 14px 25px;
    transition: 0.5s;
}

.style-one .choose-item-menu ul li {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
}

.style-one .choose-item-menu ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background:var(--primary-color);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    transition: 0.5s;
}

.choose-item-menu ul li:nth-child(2)::before{
    background-color: var(--Secondary-color);
}

.choose-item-menu ul li:nth-child(3)::before{
    background-color: var(--fourtiary-color);
}

.choose-item-menu ul li:nth-child(4)::before{
    background-color: var(--tertiary-color);
}

.style-one .choose-item-menu ul li:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.style-one .choose-item-menu ul li:hover{
    color:#fff;
}

.style-one .choose-item-menu ul li:hover img{
    filter: brightness(0) invert(1);
}

.style-one .choose-item-menu ul li img:nth-child(1), .style-one .choose-item-menu ul li img:nth-child(2), .style-one .choose-item-menu ul li img:nth-child(3), .style-one .choose-item-menu ul li img:nth-child(4) {
    margin-right:9px;
}

.style-one .choose-item-menu ul li:nth-child(2) {
    background-color: rgba(255,133,63,0.10196078431372549);
    padding: 14px 55px 14px 25px;
}

.style-one .choose-item-menu ul li:nth-child(3) {
    background-color: rgba(166,76,249,0.10196078431372549);
    padding: 14px 100px 14px 25px;
}

.style-one .choose-item-menu ul li:nth-child(4) {
    background-color: rgba(21,193,250,0.10196078431372549);
    padding: 14px 90px 14px 25px;
}

.style-one p.choose-suport-des {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
    align-items: center;
    display: flex;
    margin-bottom: 35px;
}

.style-one p.choose-suport-des img {
    margin-right: 10px;
}

.style-one .choose-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 26px;
    background-color: #1ec28e;
    padding: 12px 34px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.style-one .choose-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-one .choose-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-one .choose-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-one .choose-skill-content h3 {
    display: inline-block;
    font-size: 26px;
    line-height: 26px;
    color:var(--title-color);
    font-weight: 600;
}

.style-one .choose-skill-content span {
    display: inline-block;
    font-size: 26px;
    color:var(--title-color);
    font-weight: 600;
}

.style-one .choose-skill-content p {
    display: block;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
}

.style-one .choose-thumb {
    position: relative;
}

.style-one .choose-shape-dot {
    position: absolute;
    top: 0;
    right: 192px;
    animation: upDown 1.5s ease-in-out 1.8s forwards infinite alternate;
}

.style-one .choose-shape-star {
    position: absolute;
    bottom: 145px;
    left: -10px;
    animation: rotateme 8s linear infinite;
}

.style-one .choose-skill-box {
    position: absolute;
    right: -82px;
    bottom: 62px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 10px;
    background-color: var(--color-white);
    width: 279px;
    height: 99px;
    padding: 0 0 0 30px;
    animation: upDown 1.5s ease-in-out 1.8s forwards infinite alternate;
}

.style-one .choose-shape1 {
    position: absolute;
    bottom: 100px;
    left: 865px;
    animation: bounceleft 4s linear infinite;
}

.style-one .choose-shape2 {
    position: absolute;
    right: 120px;
    top: -60px;
    animation: rotateme 18s linear infinite;
}

/* ================================================ */
    /* educate course design offer Area css style-one */
/* ================================================ */
.course-design-offer-area.style-one {
    padding: 120px 0 90px;
}

.course-design-offer-area.style-one.inner {
    padding: 120px 0 120px;
}

.style-one .course-design-thumb {
    position: relative;
    overflow: hidden;
}

.style-one .course-design-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-one .course-design-thumb:hover::before{
    animation: shine 800ms;
}

.style-one .course-design-thumb img {
    width: 100%;
}

.style-one .course-video-icon a {
    position: absolute;
    display: inline-block;
    font-size: 20px;
    color:var(--primary-color);
    top: 34%;
    left: 51%;
    transform: translate(-50%, 50%);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 32px;
    background-color:var(--color-white);
    text-align: center;
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
}

.style-one .course-video-icon a::before {
    position: absolute;
    content: '';
    width: 86px;
    height: 86px;
    border-radius: 43px;
    background-color: rgba(255,255,255,0.30196078431372547);
    left: -11px;
    top: -11px;
}

.style-one .course-video-icon a::after {
    position: absolute;
    content: '';
    width: 122px;
    height: 122px;
    border-radius: 61px;
    background-color: rgba(255,255,255,0);
    border: 2px solid rgba(255,255,255,0.3);
    left: -30px;
    top: -30px;
}

.style-one .single-course-offer-box {
    border-radius: 20px;
    background-color: #e2f7f1;
    position: relative;
    overflow: hidden;
    padding: 50px 0 52px 40px;
}

.style-one .offer-thumb {
    position: absolute;
    bottom: -90px;
    right: -50px;
}

.style-one .course-offer-content h6 {
    font-size: 14px;
    line-height: 28px;
    color:var(--primary-color);
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 0 18px;
    margin-bottom: 18px;
}

.style-one .course-offer-content h4 {
    font-size: 28px;
    line-height: 36px;
    color:var(--title-color);
    font-weight: 600;
}

.style-one .offer-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}
.style-one .offer-rating-rate span {
    display: inline-block;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 400;
}

.style-one .offer-rating ul {
    display: inline-block;
}

.style-one .offer-rating-rate {
    display: inline-block;
}

.style-one .course-offer-price span {
    display: inline-block;
    font-size: 22px;
    color:var(--primary-color);
    font-weight: 500;
    margin: 17px 0 43px;
}

.style-one .course-offer-price span del {
    font-size: 22px;
    color:var(--text-color);
    font-weight: 400;
}

.style-one .course-offer-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 23px;
    background-color: var(--primary-color);
    padding: 10px 30px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.style-one .course-offer-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-one .course-offer-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.style-one .course-offer-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-one .course-offer-discount h5 {
    font-size: 22px;
    line-height: 16px;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
}

.style-one .course-offer-discount span {
    display: inline-block;
    font-size: 14px;
    line-height: 12px;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    text-transform: uppercase;
}

.style-one .offer-rating {
    margin-top: 15px;
}

.style-one .course-offer-discount {
    position: absolute;
    bottom: 180px;
    left: 320px;
    z-index: 1;
}

.style-one .course-offer-discount::before {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    background: url(../images/home-one/off-price-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: -20px;
    top: -20px;
    z-index: -1;
    animation: rotateme 18s linear infinite;
}


/* ================================================ */
    /* educate course design offer Area css style-two */
/* ================================================ */
.course-design-offer-area.style-two {
    padding: 100px 0 90px;
}

.style-two .course-design-thumb {
    position: relative;
    overflow: hidden;
}

.style-two .course-design-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-two .course-design-thumb:hover::before{
    animation: shine 800ms;
}

.style-two .course-design-thumb img {
    width: 100%;
}

.style-two .course-video-icon a {
    position: absolute;
    display: inline-block;
    font-size: 20px;
    color:var(--color-white);
    top: 34%;
    left: 51%;
    transform: translate(-50%, 50%);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 32px;
    background-color:var(--primary-color);
    text-align: center;
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
}

.style-two .course-video-icon a::before {
    position: absolute;
    content: '';
    width: 86px;
    height: 86px;
    border-radius: 43px;
    background-color: rgba(255,255,255,0.30196078431372547);
    left: -11px;
    top: -11px;
}

.style-two .course-video-icon a::after {
    position: absolute;
    content: '';
    width: 122px;
    height: 122px;
    border-radius: 61px;
    background-color: rgba(255,255,255,0);
    border: 2px solid rgba(255,255,255,0.3);
    left: -30px;
    top: -30px;
}

.style-two .single-course-offer-box {
    border-radius: 20px;
    background-color: #e2f7f1;
    position: relative;
    overflow: hidden;
    padding: 50px 0 52px 40px;
}

.style-two .offer-thumb {
    position: absolute;
    bottom: -8px;
    right: -30px;
}

.style-two .course-offer-content h6 {
    font-size: 14px;
    line-height: 28px;
    color:var(--primary-color);
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 0 18px;
    margin-bottom: 18px;
}

.style-two .course-offer-content h4 {
    font-size: 28px;
    line-height: 36px;
    color:var(--title-color);
    font-weight: 600;
}

.style-two .offer-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}
.style-two .offer-rating-rate span {
    display: inline-block;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 400;
}

.style-two .offer-rating ul {
    display: inline-block;
}

.style-two .offer-rating-rate {
    display: inline-block;
}

.style-two .course-offer-price span {
    display: inline-block;
    font-size: 22px;
    color:var(--primary-color);
    font-weight: 500;
    margin: 17px 0 43px;
}

.style-two .course-offer-price span del {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.600;
}

.style-two .course-offer-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 23px;
    background-color: var(--primary-color);
    padding: 10px 30px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.style-two .course-offer-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-two .course-offer-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.style-two .course-offer-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .course-offer-discount h5 {
    font-size: 22px;
    line-height: 16px;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
}

.style-two .course-offer-discount span {
    display: inline-block;
    font-size: 14px;
    line-height: 12px;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    text-transform: uppercase;
}

.style-two .offer-rating {
    margin-top: 15px;
}

.style-two .course-offer-discount {
    position: absolute;
    bottom: 280px;
    left: 380px;
    z-index: 1;
}

.style-two .offer-arrow {
    position: absolute;
    left: 290px;
    bottom: 65px;
    animation: bounceleft 4s linear infinite;
}

.style-two .course-offer-discount::before {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    background: url(../images/home-one/off-price-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: -20px;
    top: -20px;
    z-index: -1;
    animation: rotateme 18s linear infinite;
}

/* ================================================ */
    /* educate team Area css style-one */
/* ================================================ */
.team-area.style-one {
    padding: 10px 0 100px;
    position: relative;
}

.team-area.style-one.inner {
    padding: 100px 0 100px;
}

.team-area.style-one.inner .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.team-area.style-one.inner .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.team-area.style-one.inner .section-sub-title h6 {
    padding-left: 0;
}

.team-area.style-one.inner .section-sub-title.three img {
    margin-right: 12px;
}

.style-one .single-team-box {
    border-radius: 20px;
    background-color: #f1f9fc;
    padding: 20px 20px 25px;
    transition: 0.5s;
    margin-bottom: 20px;
    text-align: center;
}

.style-one .single-team-box.box-2 {
    background-color: #f0fbf8; 
}

.style-one .single-team-box.box-3 {
    background-color: #fdf7f3;
}

.style-one .single-team-box.box-4 {
    background-color: #f8f4fb;
}

.style-one .team-thumb {
    position: relative;
    z-index: 1;
}

.style-one .team-thumb::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, rgba(21, 193, 250,0.9999999999999999) 0%, rgba(21, 193, 250,0.9999999999999999) 20%, rgba(29,193,141,0) 50%, rgba(29,193,141,0) 100%);
    border-radius: 16px;
    transition: 0.5s;
}

.style-one .single-team-box.box-2 .team-thumb::before {
    background-image: linear-gradient(0deg, rgb(30, 194, 142) 0%, rgba(29,193,141,0.9999999999999999) 20%, rgba(29,193,141,0) 50%, rgba(29,193,141,0) 100%);
    transition: 0.5s;
}

.style-one .single-team-box.box-3 .team-thumb::before {
    background-image: linear-gradient(0deg, rgb(255, 133, 63) 0%, rgba(255, 133, 63,0.9999999999999999) 20%, rgba(29,193,141,0) 50%, rgba(29,193,141,0) 100%);
    transition: 0.5s;
}

.style-one .single-team-box.box-4 .team-thumb::before {
    background-image: linear-gradient(0deg, rgb(166, 76, 249) 0%, rgba(166, 76, 249,0.9999999999999999) 20%, rgba(29,193,141,0) 50%, rgba(29,193,141,0) 100%);
    transition: 0.5s;
}

.style-one .single-team-box:hover .team-thumb::before {
    height: 100%;
}

.style-one .team-thumb img {
    width: 100%;
}

.style-one .team-social {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transition: 0.5s;
    transform: translateY(0px);
}

.style-one .single-team-box:hover .team-social {
    opacity: 1;
    transform: translateY(18px);
}

.style-one .team-icon-1 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}

.style-one .single-team-box:hover .team-icon-1{
    opacity: 1;
    transform: translateY(-40px);
}

.style-one .team-icon-2 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease-in-out;
}

.style-one .single-team-box:hover .team-icon-2{
    opacity: 1;
    transform: translateY(-40px);
}

.style-one .team-icon-3 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}

.style-one .single-team-box:hover .team-icon-3{
    opacity: 1;
    transform: translateY(-40px);
}

.style-one .team-social ul li {
    display: inline-block;
    margin: 0 2px;
}

.style-one .team-social ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.6);
    text-align: center;
    color: #fff;
    font-size: 13px;
    transition: 0.5s;
}

.style-one .team-social ul li a:hover{
    color: var(--tertiary-color);
    background-color: var(--color-white);
}

.style-one .single-team-box.box-2 .team-social ul li a:hover{
    color: var(--primary-color);
    background-color: var(--color-white);
}

.style-one .single-team-box.box-3 .team-social ul li a:hover{
    color: var(--Secondary-color);
    background-color: var(--color-white);
}

.style-one .single-team-box.box-4 .team-social ul li a:hover{
    color: var(--fourtiary-color);
    background-color: var(--color-white);
}

.style-one .team-title h3 {
    margin-top: 10px;
}
.style-one .team-title h3 a{
    display: inline-block;
    font-size: 24px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-one .team-title h3 a:hover{
    color: var(--tertiary-color);
}

.style-one .single-team-box.box-2 .team-title h3 a:hover{
    color: var(--primary-color);
}

.style-one .single-team-box.box-3 .team-title h3 a:hover{
    color: var(--Secondary-color);
}

.style-one .single-team-box.box-4 .team-title h3 a:hover{
    color: var(--fourtiary-color);
}

.style-one .team-sub-title h5 {
    font-size: 14px;
    line-height: 28px;
    color: var(--tertiary-color);
    font-weight: 500;
    border-radius: 15px;
    background-color: rgba(21,193,250,0.10196078431372549);
    border: 1px solid rgba(21,193,250,0.3);
    display: inline-block;
    padding: 0 18px;
    margin-bottom: 20px;
    margin-top: 3px;
}

.style-one .single-team-box.box-2 .team-sub-title h5 {
    color: var(--primary-color);
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
}

.style-one .single-team-box.box-3 .team-sub-title h5 {
    color: var(--Secondary-color);
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
}

.style-one .single-team-box.box-4 .team-sub-title h5 {
    color: var(--fourtiary-color);
    background-color: rgba(166,76,249,0.10196078431372549);
    border: 1px solid rgba(166,76,249,0.3);
}

.style-one .team-ratting ul li {
    display: inline-block;
    color:var(--Secondary-color)
}

.style-one .team-rating-rate span {
    display: inline-block;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 400;
}

.style-one .team-ratting {
    display: inline-block;
}

.style-one .team-rating-rate {
    display: inline-block;
}

.style-one .team-shape1 {
    position: absolute;
    top: -10px;
    left: 125px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}

.style-one .team-shape2 {
    position: absolute;
    right: 10px;
    bottom: 0;
    animation: bounceleft 6s linear infinite;
}

/* ============================================= */
    /* educate team Area css style-two */
/* ============================================= */
.team-area.style-two {
    padding: 20px 120px 86px 106px;
}

.team-area.style-two .section-title-space {
    margin-bottom: 70px;
    display: flex;
    align-items: end;
}

.team-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.team-area.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.team-area.style-two .team_menu ul li {
    display: inline-block;
    padding: 8px 20px;
    cursor: pointer;
    margin: 0 4px;
    transition: 0.5s;
    font-size: 17px;
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 8px;
    color: #5d5f62;
    background-color: #eff9f6;
}

.team-area.style-two .team_menu ul li:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.team-area.style-two li.current_menu_item {
    color: #fff !important;
    background: var(--primary-color)!important;
}

.style-two .section-mentor {
    text-align: right;
}

.style-two .section-mentor a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 15px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.style-two .section-mentor a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .section-mentor a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .section-mentor i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .single-team-box {
    position: relative;
    margin-bottom: 30px;
    transition: 0.5s;
    overflow: hidden;
}

.style-two .team-thumb {
    position: relative;overflow: hidden;
}

.style-two .team-thumb img {
    width: 100%;
}

.style-two .team-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-two .single-team-box:hover .team-thumb::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-two .team-plus {
    position: absolute;
    right: 78px;
    bottom: 48px;
}

.style-two .team-plus i {
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: 0.5s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #1e1e1e;
}

.style-two .team-title h3 a {
    display: inline-block;
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
    transition: 0.5s;
    padding-top: 9px;
}

.style-two .team-title h3 a:hover{
    color:var(--primary-color);
}

.style-two .team-sub-title h5 {
    opacity: 0.702;
    font-size: 16px;
    line-height: 1;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Open Sans";
}

.style-two .team-social-icon {
    z-index: 1;
    display: inline-block;
    position: absolute;
    right: 78px;
    padding: 16px 0px 5px 0px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-45px);
}

.style-two .team-icon.active .team-social-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-290px);
}

.style-two .team-social-icon ul li {
    list-style: none;
    margin-bottom: 6px;
}

.style-two .team-social-icon ul li a {
    display: inline-block;
    transition: 0.5s;
}

.style-two .team-social-icon ul li a i {
    display: inline-block;
    background: #fff;
    text-align: center;
    font-size: 16px;
    transition: 0.5s;
    color: #1e1e1e;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
}

.style-two .team-social-icon ul li a i:hover{
    color: #fff;
    background-color: var(--primary-color);
}


/* ================================================ */
    /* educate testimonial Area css style-one */
/* ================================================ */
.testimonial-area.style-one {
    background-color: #f0fbf8;
    padding: 110px 0 0px;
    position: relative;
}

.style-one .single-testi-box {
    border-radius: 20px;
    filter: drop-shadow(0px 30px 35px rgba(229,238,235,0.5));
    background-color: rgba(255,255,255,0.8);
    padding: 40px 40px 45px;
    margin-bottom: 25px;
}

.style-one .testimonial-thumb {
    text-align: center;
    position: relative;
    z-index: 1;
}

.style-one .testi-title h3 {
    font-size: 26px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    display: inline-block;
}

.style-one .testi-quote {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 10px;
}

.style-one .testi-title {
    display: inline-block;
}

.style-one .testi-desc p {
    font-size: 18px;
    line-height: 30px;
    color:var(--text-color);
    font-weight: 400;
    font-family: "Open Sans";
    margin: 18px 0 18px;
}

.style-one .testi-ratting ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-one .testi-autor {
    display: inline-block;
}

.style-one .testi-autor-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.style-one h5.autor-title {
    font-size: 24px;
    line-height: 34px;
    color:var(--title-color);
    font-weight: 500;
}

.style-one p.autor-desi {
    font-size: 15px;
    color:var(--text-color);
    font-weight: 400;
    font-family: "Open Sans";
}

.style-one.testimonial-area .owl-dot:nth-child(1) {
    background: url(../images/home-one/testi-autor1.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
    width: 75px;
    height: 75px;
    display: inline-block;
    position: absolute;
    left: -680px;
    bottom: 18px;
}

.style-one.testimonial-area .owl-dot:nth-child(2) {
    background: url(../images/home-one/testi-autor3.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
    width: 75px;
    height: 75px;
    position: absolute;
    left: -650px;
    top: 40px;
}

.style-one.testimonial-area .owl-dot:nth-child(3) {
    background: url(../images/home-one/testi-autor4.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
    width: 75px;
    height: 75px;
    position: absolute;
    right: 780px;
    top: 200px;
}

.style-one.testimonial-area .owl-dot.active {
    
 }
 
 .style-one.testimonial-area .owl-dot.active::before {
    position: absolute;
    content: '';
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    background-color: #f0fbf8;
    border: 1px solid #1ec28e;
    left: -5px;
    top: -5px;
    z-index: -1;
}

/* testi nav */
.style-one.testimonial-area .owl-nav {
    position: absolute;
    right: 12px;
    bottom: 9px;
}

.style-one.testimonial-area .owl-prev {
    display: inline-block;
    margin-right: 10px;
}

.style-one.testimonial-area .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color: #1e1e1e;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-one.testimonial-area .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-one.testimonial-area .owl-next {
    display: inline-block;
}

.style-one.testimonial-area .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color: #1e1e1e;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-one.testimonial-area .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}



/* testi shape */

.style-one .testi-dot-shape {
    position: absolute;
    left: 235px;
    bottom: 370px;
    animation: bounceleft 4s linear infinite;
}

.style-one .testi-map-shape {
    position: absolute;
    top: 175px;
    left: 275px;
    animation: rotateme 18s linear infinite;
}

/* ================================================ */
    /* educate testimonial Area css style-two */
/* ================================================ */
.testimonial-area.style-two {
    background: url(../images/home-two/testi-bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 120px 0 120px;
    margin: 0 20px 0 20px;
    border-radius: 30px;
}

.testimonial-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.testimonial-area.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.testimonial-area.style-two .section-title-desc.two p {
    margin: 22px 0 33px;
    width: 95%;
}

.style-two .testi-mentor-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: var(--primary-color);
    padding: 15px 30px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.style-two .testi-mentor-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .testi-mentor-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .testi-mentor-btn i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .single-testi-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 50px 30px 48px 30px;
    margin-bottom: 42px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.style-two .single-testi-box::before {
    position: absolute;
    content: '';
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    background-color: #ffffff;
    left: 0;
    right: 0;
    bottom: -14px;
    margin: 0 auto;
    transform: rotate(45deg);
}

.style-two .testi-quote img {
    width: 12% !important;
    margin: 0 auto;
}

.style-two .testi-desc p {
    font-size: 18px;
    line-height: 32px;
    color: #5d5f62;
    font-weight: 500;
    font-family: "Open Sans";
    margin: 22px 0 25px;
}

.style-two .testi-ratting ul li {
    display: inline-block;
    font-size: 15px;
    color: #ffb608;
}

.style-two .testi-autor-box {
    text-align: center;
}

.style-two .testi-autor img {
    width: 19% !important;
    margin: 0 auto;
}

.style-two h5.autor-title {
    font-size: 22px;
    line-height: 30px;
    color: #031812;
    font-weight: 500;
    margin-top: 18px;
}

.style-two p.autor-desi {
    opacity: 0.702;
    font-size: 17px;
    color: #1e1e1e;
    font-weight: 500;
    margin-top: 8px;
}

.style-two .testi-plus-shape {
    position: absolute;
    right: 655px;
    bottom: 166px;
    animation: upDown 1.8s ease-in-out 1.8s forwards infinite alternate;
}

/* ================================================ */
    /* educate testimonial Area css style-three */
/* ================================================ */

.testimonial-area.style-three {
    background-color: var(--title-color);
    padding: 110px 0 255px;
    position: relative;
}

.testimonial-area.style-three .section-sub-title h6::after {
    background-color: rgba(255,255,255,0.10196078431372549);
}

.testimonial-area.style-three .section_title h1 {
    color:var(--color-white);
}

.style-three .single-testi-box {
    border-radius: 20px;
    padding: 35px 40px 50px;
    transition: 0.5s;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.050980392156862744);
    transition: 0.5s;
}

.style-three .single-testi-box:hover {
    background-color: rgba(255,255,255,0.15);
}

.style-three .testi-quote {
    display: inline-block;
    margin-right: 10px;
}

.style-three .testi-title {
    display: inline-block;
}

.style-three .testi-title h3 {
    font-size: 24px;
    color:var(--color-white);
    font-weight: 500;
}

.style-three .testi-desc p {
    opacity: 0.600;
    font-size: 17px;
    line-height: 28px;
    color:var(--color-white);
    font-weight: 400;
    margin: 18px 0 26px;
}

.style-three .testi-ratting ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-three .testi-autor {
    display: inline-block;
}

.style-three .testi-autor-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 66px;
    position: relative;
    transition: 0.5s;
}

.style-three .testi-autor-box::before {
    position: absolute;
    content: '';
    width: 344px;
    height: 1px;
    background-color: rgba(255,255,255,0.10196078431372549);
    top: -35px;
    left: 0;
    transition: 0.5s;
}

.style-three .single-testi-box:hover .testi-autor-box::before {
    background-color:var(--primary-color);
}

.style-three h5.autor-title {
    font-size: 22px;
    line-height: 34px;
    color:var(--color-white);
    font-weight: 500;
}

.style-three p.autor-desi {
    opacity: 0.600;
    font-size: 15px;
    color:var(--color-white);
}

.style-three .testi-shape31 {
    position: absolute;
    top: 135px;
    left: 720px;
    animation: rotateme 6s linear infinite;
}

/* testi dot */

.testimonial-area.style-three .owl-dots {
    text-align: center;
    position: relative;
    top: 35px;
}

.testimonial-area.style-three .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 8px;
    text-align: center;
    width: 12px;
    height: 12px;
    line-height: 12px;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.2);
}

.testimonial-area.style-three .owl-dot.active {
    line-height: 10px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #1ec28e;
    position: relative;
}

.testimonial-area.style-three .owl-dot.active::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(30,194,142,0);
    border: 1px solid #1ec28e;
    left: -5px;
    top: -5px;
}

/* ================================================ */
    /* educate testimonial Area css style-four */
/* ================================================ */
.testimonial-area.style-four {
    padding: 45px 0 130px;
    position: relative;
}

.style-four .testi-thumb-wrapper {
    position: relative;
}

.style-four .testimonial-thumb2 {
    position: absolute;
    right: 50px;
    top: 243px;
    animation: upDown 1.8s ease-in-out 1.9s forwards infinite alternate;
}

.style-four .testi-dot-shape4 {
    position: absolute;
    right: 69px;
    top: 125px;
    animation: rotateme 18s linear infinite;
}

.style-four .testi-arrow-shape4 {
    position: absolute;
    left: 40px;
    bottom: -70px;
    animation: bounceleft 4s linear infinite;
}

.style-four .testi-like-shape {
    position: absolute;
    left: 110px;
    bottom: -105px;
    animation: flip2 3s infinite alternate ease-in-out;
}

.testimonial-area.style-four .section-sub-title h6 {
    padding-left: 0;
}

.testimonial-area.style-four .section-sub-title h6 img{
    margin-right: 12px;
}

.testimonial-area.style-four .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.testimonial-area.style-four .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-four .single-testi-box {
    padding: 40px 40px 45px;
    margin-bottom: 25px;
    border-radius: 20px;
    background-color: rgba(253,247,243,0.8);
}

.style-four .testi-quote {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 10px;
}

.style-four .testi-title {
    display: inline-block;
}

.style-four .testi-title h3 {
    font-size: 26px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    display: inline-block;
}

.style-four .testi-desc p {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    font-family: "Open Sans";
    margin: 18px 0 18px;
}

.style-four .testi-ratting ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-four .testi-autor-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.style-four .testi-autor {
    display: inline-block;
}

.style-four h5.autor-title {
    font-size: 24px;
    line-height: 34px;
    color: var(--title-color);
    font-weight: 500;
}

.style-four p.autor-desi {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
    font-family: "Open Sans";
}

/* testi nav */
.style-four.testimonial-area .owl-nav {
    position: absolute;
    right: 12px;
    bottom: 9px;
}

.style-four.testimonial-area .owl-prev {
    display: inline-block;
    margin-right: 10px;
}

.style-four.testimonial-area .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color: #1e1e1e;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-four.testimonial-area .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-four.testimonial-area .owl-next {
    display: inline-block;
}

.style-four.testimonial-area .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color: #1e1e1e;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-four.testimonial-area .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-four.testimonial-area .testi-book-shape {
    position: absolute;
    top: 115px;
    right: 120px;
    animation: flip 1.5s ease-in-out infinite;
}

/* ================================================ */
    /* educate testimonial Area css style-five */
/* ================================================ */
.testimonial-area.style-five {}
.testimonial-area.style-five .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}
.style-five .single-testi-box {
    border-radius: 20px;
    filter: drop-shadow(0 0 35px rgba(212,216,215,0.3));
    background-color: rgba(255,255,255,0.8);
    padding: 30px 40px 30px;
    transition: 0.5s;
    margin: 50px 0px 0;
}
.testi-autor-thumb img {
    width: 50% !important;
     justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.testi-autor-thumb {
    justify-content: center;
      align-items: center;
      margin-right: 100px;
 
}
.style-five .testi-autor-details {
    padding-bottom: 40px;
    position: relative;
}
.style-five .testi-autor-details::before {
    position: absolute;
    content: '';
    width: 525px;
    height: 1px;
    border-radius: 0px;
    background-color: rgba(30,30,30,0.8);
    opacity: 0.082;
    bottom: 14px;
    left: 0;
}
.style-five .testi-desc p {
    font-size: 17px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}
.style-five .testi-autor-reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.style-five h5.autor-title {
    font-size: 24px;
    line-height: 34px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}
.style-five p.autor-desi {
    font-size: 15px;
    line-height: 34px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}
.style-five .testi-ratting ul li {
    display: inline-block;
    font-size: 18px;
    color: #ff9415;
}
/* testi dot */
.testimonial-area.style-five .owl-dots {
    text-align: center;
    position: relative;
    top: 48px;
}
.testimonial-area.style-five .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 8px;
    text-align: center;
    width: 12px;
    height: 12px;
    line-height: 12px;
    border-radius: 12px;
    background-color: rgba(30,194,142,0.4);
}
.testimonial-area.style-five .owl-dot.active {
    line-height: 10px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #1ec28e;
    position: relative;
}
.testimonial-area.style-five .owl-dot.active::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(30,194,142,0);
    border: 1px solid #1ec28e;
    left: -5px;
    top: -5px;
}
/* ================================================ */
    /* educate testimonial Area css style-six */
/* ================================================ */

.testimonial-area.style-six {
    background: url(../images/home-six/testi-bg6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 120px;
    position: relative;
}
.testimonial-area.style-six::before {
    position: absolute;
    content: '';
    background: url(../images/home-six/testi-thumb6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 43%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0px 30px 30px 0px;
}
.testimonial-area.style-six .section-sub-title.six h6::after {
    position: inherit;
    background-color: transparent;
}
.testimonial-area.style-six .section-sub-title h6::before {
    position: absolute;
    content: '';
    line-height: 9px;
    left: 15px;
    top: 14px;
    width: 9px;
    height: 9px;
    border-radius: 10px;
    background-color: #ff853f;
}
.testimonial-area.style-six .section-sub-title.six h6 {
    display: inline-block;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Open Sans";
    border: 1px solid rgba(30,194,142,0.25);
    padding: 2px 24px 2px 36px;
    border-radius: 0px 30px 30px 0px;
    margin-bottom: 13px;
}
.testimonial-area.style-six .single-testi-box {
    border-radius: 15px;
    background-color: #ffffff;
    padding: 50px 50px 50px;
}
.testimonial-area.style-six .section_title.six h1 {
    font-size: 30px;
    line-height: 55px;
    color: #000000;
    font-weight: 600;
}
.testimonial-area.style-six .testi-ratting {
    margin: 25px 0 25px;
}
.testimonial-area.style-six .testi-ratting ul li {
    display: inline-block;
    font-size: 16px;
    color: #1ec28e;
}
.testimonial-area.style-six .testi-desc p {
    font-size: 17px;
    line-height: 30px;
    color: #616161;
    font-weight: 400;
}
.testimonial-area.style-six .testi-autor-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}
.testimonial-area.style-six .testi-autor {
    width: 65px;
    height: 65px;
    border-radius: 32px;
    background-color: #1ec28e;
}
.testimonial-area.style-six .testi-autor-content h5 {
    font-size: 22px;
    line-height: 32px;
    color: #1e1e1e;
    font-weight: 500;
}
.testimonial-area.style-six .testi-autor-content p {
    font-size: 15px;
    text-transform: uppercase;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    padding-left: 20px;
    position: relative;
}
.testimonial-area.style-six .testi-autor-content p::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #ff853f;
    left: 0;
    top: 10px;
}

/* ================================================ */
    /* educate testimonial Area css style-inner */
/* ================================================ */
.testimonial-area.style-inner {
    background-color: #f0fbf8;
    padding: 100px 0 45px;
    position: relative;
}

.testimonial-area.style-inner .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.testimonial-area.style-inner .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.testimonial-area.style-inner .section-sub-title h6 {
    padding-left: 0;
}

.testimonial-area.style-inner .section-sub-title.three h6 img {
    margin-right: 12px;
}

/* testi reviews box */
.style-inner .testi-review-box {
    margin-top: 40px;
    position: relative;
}

.style-inner .testi-review-box::before {
    position: absolute;
    content: '';
    width: 424px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    left: 0;
    bottom: -14px;
}

.style-inner .testi-review-content h3 {
    display: inline-block;
    font-size: 26px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
}

.style-inner .testi-review-content span{
    display: inline-block;
    font-size: 26px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
}

.style-inner .testi-review-content p {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    margin-left: 10px;
}

.style-inner .testi-review-content {
    display: flex;
    align-items: center;
}

.style-inner .testi-inner-shape {
    position: absolute;
    bottom: 50px;
    right: 200px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}

.style-inner .single-testi-box {
    padding: 35px 40px 50px;
    margin-bottom: 20px;
    transition: 0.5s;
    border-radius: 20px;
    background-color: #ffffff;
}

.style-inner .testi-quote {
    display: inline-block;
    margin-right: 10px;
}

.style-inner .testi-title {
    display: inline-block;
}

.style-inner .testi-title h3 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-inner .testi-desc p {
    font-size: 17px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 18px 0 26px;
}

.style-inner .testi-ratting ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-inner .testi-autor-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 66px;
    position: relative;
    transition: 0.5s;
}

.style-inner .testi-autor-box::before {
    position: absolute;
    content: '';
    width: 344px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    top: -35px;
    left: 0;
    transition: 0.5s;
}

.style-inner .single-testi-box:hover .testi-autor-box::before{
    background-color: #1ec28e;
}

.style-inner .testi-autor {
    display: inline-block;
}

.style-inner h5.autor-title {
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    color: #1e1e1e;
}

.style-inner p.autor-desi {
    font-size: 15px;
    color: #1e1e1e;
}

/* course nav */

.style-inner .owl-nav {
    position: absolute;
    left: -425px;
    bottom: 55px;
}

.style-inner .owl-prev {
    display: inline-block;
    margin-right: 12px;
}

.style-inner .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
    color: var(--title-color);
}

.style-inner .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-inner .owl-next {
    display: inline-block;
}

.style-inner .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
    color: var(--title-color);
}

.style-inner .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}


/* ================================================ */
    /* educate call to action Area css style-one */
/* ================================================ */
.call-to-action.style-one {
    position: relative;
    margin-top: -90px;
    z-index: 1;
}

.style-one .row.call-to-bg {
    border-radius: 20px;
    background-color: var(--primary-color);
    padding: 48px 10px 48px 47px;
}

.style-one .call-to-title h3 {
    font-size: 34px;
    line-height: 42px;
    color:var(--color-white);
    font-weight: 600;
}

.style-one .call-to-wrapper {
    position: relative;
}

.style-one .call-to-box {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.style-one .call-to-arrow {
    position: absolute;
    left: 0;
    top: -5px;
    animation: bounceleft 8s linear infinite;
}

.style-one .call-to-icon {
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    border-radius: 50%;
}

.style-one .call-to-content h6 {
    font-size: 16px;
    line-height: 1;
    color:var(--color-white);
    font-weight: 400;
}

.style-one .call-to-content h4 {
    font-size: 24px;
    line-height: 48px;
    color:var(--color-white);
    font-weight: 500;
}

.style-one .call-logo-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-left: 20px;
}

.style-one .call-logo-box::before {
    position: absolute;
    content: '';
    background: var(--color-white);
    border-radius: 20px;
    background-color: var(--color-white);
    border: 10px solid var(--primary-color);
    width: 312px;
    height: 180px;
    top: -52px;
    left: 0;
    z-index: -1;
}

.style-one .call-rating p span {
    display: inline-block;
    font-size: 16px;
    color:var(--primary-color);
    font-weight: 500;
}

.style-one .call-rating p {
    font-size: 16px;
    color: var(--title-color);
    font-weight: 500;
    margin-top: 10px;
}

/* ================================================ */
    /* educate call to action Area css style-two */
/* ================================================ */
.call-to-action.style-two {
    background: url(../images/home-three/call-to-bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 50px 0 60px;
}

.style-two .call-to-title h3 {
    font-size: 36px;
    line-height: 44px;
    color: #ffffff;
    font-weight: 500;
}

.style-two .call-to-btn {
    text-align: right;
}

.style-two .call-to-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 26px;
    background-color: rgba(255,255,255,0.14901960784313725);
    border: 1px solid rgba(255,255,255,0.7);
    padding: 12px 36px;
    position: relative;
    z-index: 1;
}

.style-two .call-to-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-two .call-to-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-two .call-to-btn a i {
    margin-left: 10px;
}

.style-two .call-to-shape31 {
    position: absolute;
    right: 560px;
    top: 45px;
    animation: bounceleft 8s linear infinite;
}


/* ================================================ */
    /* educate blog Area css style-one */
/* ================================================ */
.blog-area.style-one {
    padding: 110px 0 100px;
}

.blog-area.style-one.blog {
    padding: 120px 0 120px;
}

.style-one .single-blog-box {
    border-radius: 20px;
    background-color: #f1f9fc;
    margin-bottom: 20px;
    transition: 0.5s;
    padding: 25px 25px 35px;
    overflow: hidden;
}

.style-one .single-blog-box.box-2 {
    background-color: #f0fbf8;
}

.style-one .single-blog-box.box-3 {
    background-color: #fdf7f3;
}

.style-one .single-blog-thumb {
    position: relative;
    transition: 0.5s;
}

.style-one .single-blog-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-one .single-blog-box:hover .single-blog-thumb::before {
    animation: shine 800ms;
}

.style-one .single-blog-thumb img {
    border-radius: 20px;
    width: 100%;
}

.style-one .blog-meta-top span {
    display: inline-block;
    font-size: 14px;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 16px;
    background-color:#e04e0a;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 2px 18px;
}

.style-one .single-blog-box.box-2 .blog-meta-top span {
    background-color:var(--primary-color);
}

.single-blog-box.box-3 .blog-meta-top span {
    background-color:var(--Secondary-color);
}

.style-one .blog-content {
    padding: 0 10px 0;
}

.style-one .blog-author h4 {
    font-size: 16px;
    line-height: 30px;
    color:var(--title-color);
    font-weight: 500;
    margin: 30px 0 18px;
}
.blog-author{
    direction: rtl;
}

.style-one .blog-author h4 img {
    margin-right: 10px;
}

.style-one .blog-title{
direction: rtl;
}

.style-one .blog-title h3 a {
    display: inline-block;
    
    font-size: 24px;
    line-height: 32px;
    color:#131313;
    font-weight: 600;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-one .blog-title h3 a:hover{
    color: var(--tertiary-color);
}

.style-one .single-blog-box.box-2 .blog-title h3 a:hover{
    color: var(--primary-color);
}

.style-one .single-blog-box.box-3 .blog-title h3 a:hover{
    color: var(--Secondary-color);
}

.style-one .blog-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 30px;
    color:white;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 25px;
    background-color: rgb(20, 171, 0);
    border: 1px solid rgb(255, 255, 255);
    padding: 8px 17px 8px 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.style-one .blog-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:#E55A2B;
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-one .single-blog-box.box-2 .blog-btn a::before {
    background:var(--primary-color);
}

.style-one .single-blog-box.box-3 .blog-btn a::before {
    background:var(--Secondary-color);
}

.style-one .blog-btn a:hover{
    color:var(--color-white);  
}

.style-one .blog-btn a:hover img{
    filter: brightness(0) invert(1);  
}


.style-one .blog-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-one .single-blog-box.box-2 .blog-btn a {
    color:var(--primary-color);
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
}


.style-one .single-blog-box.box-2 .blog-btn a:hover{
    color:var(--color-white);
}

.style-one .single-blog-box.box-3 .blog-btn a {
    color:var(--Secondary-color);
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
}

.style-one .single-blog-box.box-3 .blog-btn a:hover{
    color:var(--color-white);
}


/* pagination */

.blog-area.style-one.blog .pagination-menu {
    margin-top: 40px;
}

.blog-area.style-one.blog .pagination-menu ul li {
    display: inline-block;
}

.blog-area.style-one.blog .pagination-menu ul li a {
    display: inline-block;
    opacity: 0.800;
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #ffffff;
    border: 1px solid rgba(1,14,34,0.1);
    transition: 0.5s;
}

.blog-area.style-one.blog .pagination-menu ul li a:hover{
    background-color: var(--primary-color);
    color:#fff;
}

/* ================================================ */
    /* educate blog Area css style-four */
/* ================================================ */
.blog-area.style-one.four {
    background: url(../images/home-four/blog-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 160px 0 100px;
}

.blog-area.style-one.four .section-sub-title.three h6 img {
    margin-right: 12px;
}

.blog-area.style-one.four .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.blog-area.style-one.four .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.blog-area.style-one.four .single-blog-box{
    background-color: #ffffff;
}

.blog-area.style-one.four .single-blog-box.box-3 {
    background-color: #ffffff;
}

.blog-area.style-one.four .single-blog-box.box-3 {
    background-color: #ffffff;
}

/* ================================================ */
    /* educate blog Area css style-five */
/* ================================================ */

.blog-area.style-one.five .single-blog-box.box-2 {
    border-radius: 20px;
    background-color: #f1f9fc;
}
.blog-area.style-one.five .single-blog-box.box-3 {
    border-radius: 20px;
    background-color: #f1f9fc;
}
/* .blog-area.style-one.five .blog-author h4 {
    font-size: 16px;
    line-height: 30px;
    margin: 20px 0 12px;
    color: #041633;
    font-weight: 500;
    font-family: "Open Sans";
    padding-left: 20px;
    position: relative;
} */
.blog-area.style-one.five .blog-author h4::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #15c1fa;
    left: 0;
    top: 10px;
}
.blog-area.style-one.five .single-blog-box.box-2 .blog-author h4::before{
    background-color: #1ec28e;
}
.blog-area.style-one.five .single-blog-box.box-3 .blog-author h4::before{
    background-color: #df9245;
}
.blog-area.style-one.five .blog-author h4 span {
    display: inline-block;
    padding-left: 18px;
}
.blog-area.style-one.five .blog-btn a {
    margin-top: 50px;
}
.blog-area.style-one.five .blog-title h3 a {
    position: relative;
}
.blog-area.style-one.five .blog-title h3 a::before {
    position: absolute;
    content: '';
    width: 347px;
    height: 1px;
    background-color: rgba(4,28,51,0.10196078431372549);
    left: 0;
    bottom: -30px;
}


/* ================================================ */
    /* educate blog Area css style-six */
/* ================================================ */
.blog-area.style-one.six {
    background: url(../images/home-six/blog-bg6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 384px;
    position: relative;
}
.blog-area.style-one.six .section-title-space {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-end;
}
.blog-area.style-one.six .section-sub-title.six h6 {
    color: #1e1e1e;
    padding-left: 20px;
}
.blog-area.style-one.six .section-sub-title h6::before {
    position: absolute;
    content: '';
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #ff853f;
}
.blog-area.style-one.six .section-sub-title.six h6::after {
    position: inherit;
    background-color: transparent;
}
.blog-area.style-one.six .blog-section-btn {
    text-align: right;
}
.blog-area.style-one.six .blog-section-btn a {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 26px;
    background-color: #1ec28e;
    padding: 13px 33px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
.blog-area.style-one.six .blog-section-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}
.blog-area.style-one.six .blog-section-btn a:hover::before {
    width: 100%;
    left: 0;
}
.blog-area.style-one.six .blog-section-btn a i {
    display: inline-block;
    margin-left: 10px;
}
.blog-area.style-one.six .blog-star-shape {
    position: absolute;
    top: 150px;
    right: 700px;
    animation: rotateme 8s linear infinite;
}
.blog-area.style-one.six .blog-rolling-shape {
    position: absolute;
    left: 100px;
    bottom: 305px;
    animation: scaleAnimation 3s infinite ease-in-out;
}
.blog-area.style-one.six .blog-rolling2-shape {
    position: absolute;
    right: 100px;
    top: 380px;
    animation: shakeAnimation 5s infinite ease-in-out;
}

/* ================================================ */
    /* educate brand Area css style-one */
/* ================================================ */
.brand-area.style-one {
    background-color: #f0fbf8;
    padding: 78px 0;
    position: relative;
    
}

.brand-area.style-one.inner {
    background: #fff;
}

.brand-area.style-one .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.brand-arrow-shape {
    position: absolute;
    top: 80px;
    left: 175px;
    animation: bounceleft 8s linear infinite;
}

.brand-star-shape {
    position: absolute;
    top: 83px;
    left: 772px;
    animation: rotateme 8s linear infinite;
}

.brand-line-shape {
    position: absolute;
    right: 150px;
    top: -90px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}

.brand-thumb img {
    width: 100% !important;
    transition: 0.5s;
}

/* home 5 brand */
.brand-area.style-one.five {
    padding: 250px 0 120px;
    position: relative;
    margin-top: -75px;
}
.brand-area.style-one.five .brand-arrow-shape {
    position: absolute;
    top: 280px;
    left: 175px;
    animation: bounceleft 8s linear infinite;
}
.brand-area.style-one.five .brand-star-shape {
    position: absolute;
    top: 270px;
    left: 772px;
    animation: rotateme 8s linear infinite;
}
.brand-area.style-one.five .brand-shape51 {
    position: absolute;
    top: -99%;
    left: -170px;
}

/*===========================================
<-- educate footer Area css-->
==============================================*/
.footer-area {
    background-color: var(--title-color);
    padding: 60px 0 20px;
}

.row.subscribe {
    border-radius: 20px;
    background-color: rgba(255,255,255,0.07058823529411765);
    padding: 35px 35px 35px 35px;
    margin-bottom: 60px;
}

.footer-subcribe-title h3 {
    font-size: 24px;
    color:var(--color-white);
    font-weight: 600;
}

.footer-subcribe-title h3 span {
    display: inline-block;
    color: var(--primary-color);
}

.subscribe-box input {
    font-size: 15px;
    color:var(--title-color);
    background: transparent;
    border: 0;
}

.subscribe-box input::placeholder {
    opacity: 0.502;
    font-size: 15px;
    line-height: 30px;
    color:var(--color-white);
    font-weight: 400;
    font-family: "Open Sans";
}

.subscribe-box {
    width: 100%;
    height: 52px;
    border-radius: 26px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 0 0 36px;
}

.subscribe-box input {
    font-size: 15px;
    color:var(--color-white);
    background: transparent;
    border: 0;
    outline: 0;
}

.subscribe-box button {
    width: 52px;
    height: 52px;
    border-radius: 26px;
    background-color:var(--primary-color);
    border: 0;
    color:var(--color-white);
    float: right;
    position: relative;
    margin-top: -10px;
}

.subscribe-box span {
    display: inline-block;
    margin-right: 4px;
    color:var(--primary-color);
}

.subscribe-box button span {
    display: inline-block;
    color:var(--color-white);
}

.footer-widget-title h4 {
    font-size: 24px;
    color:var(--color-white);
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-desc p {
    opacity: 0.502;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 20px;
    width: 90%;
}

.footer-widget-menu ul li {
    margin-bottom: 10px;
}

.footer-widget-menu ul li a {
    display: inline-block;
    opacity: 0.600;
    font-size: 16px;
    line-height: 30px;
    color:var(--color-white);
    font-weight: 400;
    font-family: "Outfit";
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover{
    color:var(--primary-color)
}

.footer-widget-menu ul li img {
    margin-right: 12px;
}

.footer-widget-blog.first {
    margin-top: 30px;
}

.footer-widget-blog {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-widget-blog-content a {
    display: inline-block;
    font-size: 17px;
    line-height: 24px;
    color:var(--color-white);
    font-weight: 400;
    font-family: "Outfit";
    transition: 0.5s;
}

.footer-widget-blog-content a:hover{
    color: var(--primary-color);
}

.footer-widget-blog-content p {
    font-size: 15px;
    line-height: 24px;
    color:var(--primary-color);
    font-weight: 400;
}

.footer-contact-phone p {
    font-size: 22px;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-contact-phone p img {
    margin-right: 10px;
}

.footer-contact-address span i {
    display: inline-block;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact-address span {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Outfit";
}

.row.add-footer-class {
    border-bottom: 1px solid  rgba(255,255,255,0.10196078431372549);
    padding-bottom: 84px;
    margin-bottom: 24px;
}

.footer-bottom-desc p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
}

.footer-bottom-desc p a {
    display: inline-block;
    color:var(--primary-color)
}

.footer-bottom-social-icon ul li {
    display: inline-block;
    margin: 0 3px;
}

.footer-bottom-social-icon {
    text-align: right;
}

.footer-bottom-social-icon ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.10196078431372549);
    text-align: center;
    color: #fff;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.footer-bottom-social-icon ul li a::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:var(--primary-color);
    border-radius: 100%;
    margin: auto;
    z-index: -1;
    transition: .5s;
}

.footer-bottom-social-icon ul li a:hover::before{
    width: 100%;
  }

  .footer-bottom-social-icon ul li a:hover{
    color: #fff;
}
.footer-area.five {
    padding: 100px 0 20px;
}
.footer-area.six {
    padding-top: 202px;
}

/* ============================================= */
    /* educate course category css style-two*/
/* ============================================= */
.course-category-section.style-two {
    padding: 80px 0 120px;
}

.course-category-section.style-two .section-title-space {
    margin-bottom: 60px;
}

.course-category-section.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.course-category-section.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.category-items-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 17px;
}

.category-items-box:not(:last-of-type) {
    margin-bottom: 26px;
}

.category-items-box .category-item:not(:last-of-type) {
    margin-right: 24px;
}

.category-items-box .category-item a {
    padding: 6px 20px 10px 9px;
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
    font-size: 20px;
    line-height: 1;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 100px;
    background-color: #efdceb;
    transition: 0.5s;
}

.category-items-box .category-item a:hover{
    background:#d471bf;
    color:#fff;
}

.category-items-box .category-item a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    background-color:var(--color-white);
}

.category-items-box .category-item a span img {
    height: 22px;
    width: 22px;
}

.category-item.item-2 a {
    background: rgb(30 194 142 /80%);
}

.category-item.item-2 a:hover{
    background: rgb(30 194 142 /60%);
    color: #fff;
}

.category-item.item-3 a {
    background-color: #e2dcf3;
}

.category-item.item-3 a:hover{
    background:#8362e1;
    color: #fff;
}

.category-item.item-4 a {
    background-color: #dff6f5;
}

.category-item.item-4 a:hover{
    background-color: #8be2de;
    color: #fff;
}

.category-item.item-5 a {
    background-color: #f1e0da;
}

.category-item.item-5 a:hover{
    background-color: #dc8e72;
    color: #fff;
}

.category-item.item-6 a {
    background-color: #daf1dc;
}

.category-item.item-6 a:hover{
    background-color: #69de73;
    color: #fff;
}

.category-item.item-7 a {
    background-color: #daecf1;
}

.category-item.item-7 a:hover{
    background-color: #6dc8e1;
    color: #fff;
}

.category-item.item-8 a {
    background-color: #e7f1da;
}

.category-item.item-8 a:hover{
    background-color: #a8e856;
    color: #fff;
}

.category-item.item-9 a {
    background-color: #e8daf1;
}

.category-item.item-9 a:hover{
    background-color: #c485ed;
    color: #fff;
}

.category-item.item-10 a {
    background-color: #f1ecda;
}

.category-item.item-10 a:hover{
    background-color: #dfc154;
    color: #fff;
}

.category-item.item-11 a {
    background-color: #dae3f1;
}

.category-item.item-11 a:hover{
    background-color: #6496e5;
    color: #fff;
}

.category-item.item-12 a {
    background-color: #daf1e8;
}

.category-item.item-12 a:hover{
    background-color: #6496e5;
    color: #fff;
}

.category-item.item-13 a {
    background-color: #f1deda;
}

.category-item.item-13 a:hover{
    background-color: #e78671;
    color: #fff;
}


/*=================================================
<-- educate online course Area Css style-two -->
===================================================*/

.online-course-section{
    direction: rtl;
}
.online-course-section.style-two {
    
    background: url(../images/home-two/course-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 120px 0 90px;
    margin: 0 20px 0 20px;
    border-radius: 30px;
}

.online-course-section.style-two .section-title-space {
    margin-bottom: 56px;
    display: flex;
    align-items: flex-end;
}

.online-course-section.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.online-course-section.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-two .course_menu ul li {
    display: inline-block;
    text-align: center;
    padding: 11px 20px;
    cursor: pointer;
    margin: 0 4px;
    transition: 0.5s;
    font-size: 16px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 25px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.14);
}

.style-two .course_menu ul li:hover{
    background-color: var(--primary-color);
    color:var(--color-white);
}

.style-two li.current_menu_item {
    color: #fff !important;
    background: var(--primary-color)!important;
}

.style-two .course-single-box {
    border-radius: 20px;
    background-color: var(--color-white);
    padding: 30px 30px 35px;
    margin-bottom: 30px;
    transition: 0.5s;
}

.style-two .course-thumb {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.style-two .course-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-two .course-single-box:hover .course-thumb::before {
    animation: shine 800ms;
}

.style-two .course-thumb img {
    width: 100%;
}

.style-two .course-content {
    padding: 30px 30px 0 0;
}

.style-two .course-content h5 {
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 18px;
    background-color: rgb(30 194 142 / 8%);
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.style-two .course-content > span {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    color:var(--primary-color);
    font-weight: 600;
    font-family: "Outfit";
    float: right;
}

.style-two .course-content h3 a {
    display: inline-block;
    font-size: 22px;
    line-height: 28px;
    color: var(--title-color);
    font-weight: 600;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-two .course-content h3 a:hover{
    color:var(--primary-color)
}

.style-two .course-lesson {
    display: inline-block;
    margin: 8px 0 15px;
}

.style-two .course-lesson span {
    font-size: 16px;
    line-height: 28px;
    color: rgb(30 30 30 / 80%);
    font-weight: 400;
    font-family: "Open Sans";
}

.style-two .course-lesson span i {
    display: inline-block;
    margin-right: 6px;
}

.style-two .course-student {
    display: inline-block;
    margin-left: 25px;
}

.style-two .course-rating {
    margin-bottom: 30px;
}

.style-two .course-rating ul li {
    display: inline-block;
    font-size: 15px;
    color:var(--Secondary-color);
}

.style-two .course-rating ul {
    display: inline-block;
}

.style-two .course-rating-num {
    display: inline-block;
    margin-left: 15px;
}

.style-two .course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    font-weight: 500;
    border-radius: 28px;
    padding: 7px 20px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(30,30,30,0.16);
    overflow: hidden;
}

.style-two .course-btn a:hover{
    color:var(--color-white);
}

.style-two .course-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--primary-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .course-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .course-shape {
    position: absolute;
    left: 115px;
    top: 295px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

/*=================================================
<-- educate online course Area Css style-five -->
===================================================*/
.online-course-section.style-five {
    background: url(../images/home-five/course-bg5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 100px 0 90px;
}
.online-course-section.style-five .section-title-space {
    margin-bottom: 56px;
    display: flex;
    align-items: flex-end;
}
.online-course-section.style-five .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}
.style-five .course_menu ul li {
    display: inline-block;
    text-align: center;
    padding: 11px 20px;
    cursor: pointer;
    margin: 0 4px;
    transition: 0.5s;
    font-size: 16px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 25px;
    background-color: #daf2ec;
}
.style-five .course_menu ul li:hover{
    background-color: var(--primary-color);
    color:var(--color-white);
}

.style-five li.current_menu_item {
    color: #fff !important;
    background: var(--primary-color)!important;
}

.style-five .course-single-box {
    border-radius: 20px;
    background-color: var(--color-white);
    padding: 30px 30px 35px;
    margin-bottom: 30px;
    transition: 0.5s;
}

.style-five .course-thumb {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.style-five .course-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-five .course-single-box:hover .course-thumb::before {
    animation: shine 800ms;
}

.style-five .course-thumb img {
    width: 100%;
}
.style-five .course-thumb .price {
    position: absolute;
   
    right: 15px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Outfit";
    width: 70px;
    height: 45px;
    line-height: 45px;
    border-radius: 35px;
    background-color: #1ec28e;
    text-align: center;
}
.style-five .course-content {
    padding: 30px 30px 0 0;
}

.style-five .course-content h5 {
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 18px;
    background-color: rgb(30 194 142 / 8%);
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.style-five .course-content > span {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    color:var(--primary-color);
    font-weight: 600;
    font-family: "Outfit";
    float: right;
}

.style-five .course-content h3 a {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: var(--title-color);
    font-weight: 600;
    font-family: "Outfit";
    transition: 0.5s;
}


.style-five .course-content h3 a:hover{
    color:var(--primary-color)
}

.style-five .course-lesson {
    display: inline-block;
    margin: 8px 0 15px;
}

.style-five .course-lesson span {
    font-size: 16px;
    line-height: 28px;
    color: rgb(30 30 30 / 80%);
    font-weight: 400;
    font-family: "Open Sans";
}

.style-five .course-lesson span i {
    display: inline-block;
    margin-right: 6px;
}

.style-five .course-student {
    display: inline-block;
    margin-left: 25px;
}

.style-five .course-rating {
    margin-bottom: 30px;
}

.style-five .course-rating ul li {
    display: inline-block;
    font-size: 15px;
    color: #FFC942;
}

.style-five .course-rating ul {
    display: inline-block;
}

.style-five .course-rating-num {
    display: inline-block;
    margin-left: 15px;
}

.style-five .course-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    font-weight: 500;
    border-radius: 28px;
    padding: 7px 20px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(30,30,30,0.16);
    overflow: hidden;
}

.style-five .course-btn a:hover{
    color:var(--color-white);
}

.style-five .course-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--primary-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-five .course-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

 .style-five .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-five .course-shape {
    position: absolute;
    left: 110px;
    bottom: 325px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

/*=================================================
<-- educate popular course Area Css style-six -->
===================================================*/
.popular-course-area.style-six {
    padding: 100px 0 100px;
    position: relative;
}
.popular-course-area.style-six .section-title-space {
    margin-bottom: 58px;
}
.popular-course-area.style-six .popular-course-box {
    display: flex;
    margin-bottom: 20px;
}
.popular-course-area.style-six .popular-course-thumb {
    position: relative;
}

.popular-course-area.style-six .popular-course-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.popular-course-area.style-six .popular-course-thumb:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
}
.popular-course-area.style-six .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}
.popular-course-area.style-six .section-title-desc p {
    font-size: 17px;
    line-height: 28px;
    color: var(--text-color);
    width: 50%;
    margin: 16px auto 0px;
}
.style-six .popular-course-content {
    position: relative;
    z-index: 1;
    padding: 33px 40px 15px 0;
    margin-left: -35px;
    transition: 0.5s;
}
.style-six .popular-course-content::before {
    position: absolute;
    content: '';
    width: 378px;
    height: 333px;
    border-radius: 20px;
    background-color: #f0fbf8;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}
.popular-course-content.style-2::before {
    background-color: #f2f6fb;
}
.popular-course-content.style-3::before {
    background-color: #fdf7f3;
}
.popular-course-content.style-4::before {
    background-color: #f1f9fc;
}
.style-six .popular-course-content::after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 14px;
    background-color: #1ec28e;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-content::after {
    width: 378px;
    left: -38px;
}
.style-six .course-tag {
    display: flex;
    justify-content: space-between;
}
.style-six .course-rating ul li {
    display: inline-block;
    font-size: 16px;
    color: #1ec28e;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .course-rating ul li{
    color:#fff;
}
.style-six li.ratting-num {
    color: #1e1e1e !important;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover li.ratting-num{
    color:#fff !important;
}
.style-six .course-rating {
    display: inline-block;
}
.style-six .popular-sub-title h5 {
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 400;
    font-family: "Open Sans";
    border-radius: 17px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(21,193,250,0.3);
    padding: 2px 19px;
    margin-bottom: 10px;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-sub-title h5{
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 1px solid rgba(255,255,255,0.3);
    color:#fff;
}
.style-six .popular-price h6 {
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 500;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-price h6{
    color:#fff;
}
.style-six .popular-course-title h3 a {
    display: inline-block;
    font-size: 24px;
    line-height: 36px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    margin-bottom: 34px;
    transition: 0.5s;
    position: relative;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-title h3 a {
    color:#fff;
}
.style-six .popular-course-title h3 a::before {
    position: absolute;
    content: '';
    width: 296px;
    height: 1px;
    background-color: rgba(97,97,97,0.2);
    bottom: -17px;
    left: 0;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-title h3 a::before{
    background-color: rgba(255,255,255,0.30196078431372547);
}
.style-six .popular-course-desc p {
    font-size: 16px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    margin: 10px 0 27px;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-desc p{
    color:#fff;
}
.style-six .popular-course-btn a {
    display: inline-block;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit";
    color: #1e1e1e;
    text-transform: uppercase;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-btn a{
    color:#fff;
}
.style-six .popular-course-btn a i {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    transition: 0.5s;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-btn a i{
    color:#fff;
}
.style-six .popular-course-btn a span {
    margin-left: -3px;
    display: inline-block;
    transition: 0.5s;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit";
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-btn a span{
    color:#fff;
}
.popular-course-area.style-six .popular-course-box:hover .popular-course-btn a span {
    margin-left: 12px;
    opacity: 1;
}
/* popular shape */
.style-six .popular-course-shape1 {
    position: absolute;
    top: 96px;
    left: 10px;
    animation: scaleAnimation 3s infinite ease-in-out;
}
.style-six .popular-course-shape2 {
    position: absolute;
    right: 65px;
    bottom: 96px;
    animation: liftDumbbell 1.5s ease-in-out infinite;
}

/* ============================================= */
    /* educate reason choose area css */
/* ============================================= */
.reason-choose-area.style-two {
    padding: 120px 0 70px;
    position: relative;
}

.reason-choose-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.reason-choose-area.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-two .single-choose-video {
    border-radius: 10px;
    background-color: #eff9f6;
    padding: 40px 32px 42px;
    margin-bottom: 30px;
}

.style-two .single-choose-video.student {
    background-color: #f9f0eb;
}

.style-two .choose-video-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 15px;
    background-color: #d8f1ea;
    text-align: center;
}

.style-two .single-choose-video.student .choose-video-icon {
    background-color: #f5e4db;
}

.style-two .reason-choose-thumb {
    position: relative;overflow: hidden;
}

.style-two .reason-choose-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-two .reason-choose-thumb:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-two span.counter-plus {
    font-size: 48px;
    color:var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.style-two h3.counter {
    font-size: 48px;
    color:var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin: 25px 0 10px;
}

.style-two span.counter-text {
    font-size: 48px;
    color:var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.style-two .reason-choose-content p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 28px;
    color:var(--title-color);
    font-weight: 500;
}

.style-two .reason-content-box {
    background: url(../images/home-two/reason-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 60px 60px 75px;
    border-radius: 20px;
}

.style-two .reason-choose-item {
    margin: 32px 0 28px;
}

.style-two .reason-choose-item ul li {
    font-size: 18px;
    line-height: 28px;
    color:var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
    border-radius: 23px;
    background-color:var(--color-white);
    margin-bottom: 20px;
    padding: 8px 20px 8px 20px;
    display: inline-block;
    margin-right: 10px;
}

.style-two .reason-choose-item ul li i {
    display: inline-block;
    margin-right: 8px;
    color: var(--primary-color);
}

.style-two .reason-choose-btn a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--color-white);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color:var(--primary-color);
    padding: 15px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.style-two .reason-choose-btn a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background: var(--title-color);
    transition: .5s;
    z-index: -1;
    border-radius: 30px;
    top: auto;
} 

.style-two .reason-choose-btn a:hover:before{
    height: 100%;
    top: 0;
    bottom: auto;
 }

.style-two .reason-choose-btn i {
    display: inline-block;
    margin-left: 10px;
}

.style-two .reason-shape1 {
    position: absolute;
    top: 114px;
    right: 60px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

.style-two .reason-shape2 {
    position: absolute;
    left: 36px;
    bottom: 40px;
    animation: upDown 1.6s ease-in-out 1.8s forwards infinite alternate;
}


/* ============================================= */
    /* educate course program Area css style-three */
/* ============================================= */
.course-program-area.style-three {
    padding: 110px 0 100px;
    background-color: #f0fbf8;
    position: relative;
}

.course-program-area.style-three .section-title-space {
    margin-bottom: 60px;
}

/* === course program Tab === */
  
.style-three .tab {
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.style-three .tabs li {
    position: relative;
    margin-bottom: 20px;
}
  
.style-three .tabs li a {
    outline: none;
    padding: 22px 30px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    font-size: 20px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 16px;
    background-color:var(--color-white);
    width: 374px;
}

.style-three .tabs li a:hover{
    background-color: var(--primary-color);
    color:var(--color-white);
}

.style-three .tabs li a:hover span{
    background-color:var(--color-white);
    color: var(--primary-color);
}

.style-three .tabs li a span {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background:var(--primary-color);
    color:var(--color-white);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.5s;
}

.style-three .tabs_item {
    display: none;
    padding: 8px 0 0;
}
  
.style-three .tabs_item:first-child {
    display: block;
}
  
.style-three li.current a {
    color:var(--color-white);
    border-radius: 16px;
    background-color:var(--primary-color) !important;
}

.style-three li.current a span {
    display: inline-block;
    background:var(--color-white) !important;
    color:var(--primary-color) !important;
}

/* couse box */

.style-three .single-course-box {
    border-radius: 20px;
    background-color:var(--color-white);
    padding: 28px 30px 40px;
    margin-bottom: 20px;
}

.style-three .course-thumb {
    position: relative;
    overflow: hidden;
}

.style-three .course-thumb img {
    border-radius: 20px;
}

.style-three .course-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-three .course-thumb:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-three .course-content h5 {
    font-size: 14px;
    line-height: 28px;
    color:var(--primary-color);
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 0 18px;
    margin: 30px 0 10px;
}

.style-three .single-course-box.box-2 .course-content h5{
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
    color: var(--Secondary-color);
}

.style-three .course-content h3 {
    margin-bottom: 7px;
}

.style-three .course-content h3 a{
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-three .course-content h3 a:hover{
    color: var(--primary-color);
}

.style-three .single-course-box.box-2 .course-content h3 a:hover{
    color: var(--Secondary-color);
}

.style-three .course-rating ul {
    display: inline-block;
}

.style-three .course-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-three .course-rating-num {
    display: inline-block;
}

.style-three .course-rating-num span {
    display: inline-block;
    font-size: 16px;
    color: var(--title-color);
    font-weight: 400;
}

.style-three .course-price span {
    display: inline-block;
    font-size: 24px;
    color:var(--primary-color);
    font-weight: 500;
    font-family: "Outfit";
    margin: 20px 0 28px;
}

.style-three .single-course-box.box-2 .course-price span{
    color:var(--Secondary-color);
}

.style-three .course-btn a {
    display: inline-block;
    font-size: 14px;
    color:var(--primary-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color: rgba(30,194,142,0);
    border: 1px solid rgba(30,194,142,0.5);
    text-transform: uppercase;
    padding: 8px 23px;
    position: relative;
    z-index: 1;
}

.style-three .course-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background:var(--primary-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-three .course-btn a:hover{
    color:var(--color-white);
}

.style-three .course-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-three .single-course-box.box-2 .course-btn a::before {
    background:var(--Secondary-color);
}

.style-three .single-course-box.box-2 .course-btn a:hover{
    color:var(--color-white);
}

.style-three .single-course-box.box-2 .course-btn a{
    color:var(--Secondary-color);
    border: 1px solid rgb(255, 133, 63,0.5);
}

.style-three .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

/* instructor box */
.style-three .course-instuctor-wrapper {
    position: relative;
    padding-top: 175px;
    padding-left: 85px;
}

.style-three .course-instuctor-box {
    position: relative;
    z-index: 1;
}

.style-three .course-instructor-content {
    display: flex;
    align-items: center;
}

.style-three .course-instructor-content h3 {
    display: inline-block;
    font-size: 26px;
    color:var(--title-color);
    font-weight: 600;
}

.style-three .course-instructor-content span {
    display: inline-block;
    font-size: 26px;
    color:var(--title-color);
    font-weight: 600;
}

.style-three .course-instructor-content p {
    display: inline-block;
    margin-left: 10px;
}

.style-three .instuctor-dot-shape {
    position: absolute;
    top: 100px;
    left: 152px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.style-three .instuctor-arrow-shape {
    position: absolute;
    top: 175px;
    left: 0;
    animation: bounceleft 8s linear infinite;
}

/* course nav */

.style-three.course-program-area .owl-nav {
    position: absolute;
    right: -75px;
    bottom: 290px;
}

.style-three.course-program-area .owl-prev {
    display: block;
    margin-bottom: 12px;
}

.style-three.course-program-area .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-three.course-program-area .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.style-three.course-program-area .owl-next {
    display: inline-block;
}

.style-three.course-program-area .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.style-three.course-program-area .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}


/* ============================================= */
    /* educate cumpus life section css */
/* ============================================= */

.campus-life-section.style-three {
    padding: 120px 0 120px;
    position: relative;
}

.campus-life-section.style-three .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.campus-life-section.style-three .section-title-desc p {
    margin: 13px 0 33px;
}

.style-three .campus-life-thumb {
    position: relative;
    margin-left: -190px;
    transition: 0.5s;
    overflow: hidden;
}

.style-three .campus-life-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-three .campus-life-thumb:hover::before {
    animation: shine 800ms;
}

.style-three .campus-video-icon {
    position: absolute;
    top: 75px;
    right: 115px;
}

.style-three .campus-video-icon a {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 80px;
    border-radius: 50px;
    background-color:var(--primary-color);
    text-align: center;
    color:var(--color-white);
    font-size: 20px;
    position: relative;
    z-index: 1;
    border: 5px solid #fff;
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
}

.style-three .campus-title h5 {
    font-size: 20px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
    padding-top: 53px;
}

.style-three .campus-single-box {
    border-radius: 20px;
    background-color: #f0fbf8;
    padding: 40px 28px 35px;
    text-align: center;
}

.style-three .campus-single-box.two {
    background-color: #fdf7f3;
}

.style-three .campus-single-box.three {
    background-color: #f1f9fc;
}

.style-three .row.box-space {
    margin-bottom: 40px;
}

.style-three .campus-icon {
    transition: 0.5s;
    width: 60px;
    height: 42px;
    margin: 0 auto;
}

.style-three .campus-single-box:hover .campus-icon{
    animation: wobble_vertical 1s forwards ease-in-out 0s;
}

.style-three .campus-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color: var(--primary-color);
    padding: 11px 35px;
    position: relative;
    z-index: 1;
}

.style-three .campus-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-three .campus-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-three .campus-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-three .campus-life-shape1 {
    position: absolute;
    top: 120px;
    right: 124px;
    animation: rotateme 8s linear infinite;
}

.style-three .campus-life-shape2 {
    position: absolute;
    right: 104px;
    bottom: 150px;
    animation: bounceleft 8s linear infinite;
}

/* ============================================= */
    /* educate admission learning  section css */
/* ============================================= */
.addmission-learning-section {
    position: relative;
    margin-top: -100px;
}

.row.addmission-bg {
    background: url(../images/home-three/addmission-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 80px 66px 135px;
    border-radius: 20px;
}

.addmission-learning-section .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.addmission-btn {
    display: inline-block;
    margin-top: 35px;
}

.addmission-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color: var(--primary-color);
    padding: 11px 35px;
    position: relative;
    z-index: 1;
}

.addmission-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.addmission-btn a:hover::before {
    width: 100%;
    left: 0;
}

.addmission-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.addmission-star {
    position: absolute;
    bottom: 150px;
    left: 350px;
    animation: rotateme 6s linear infinite;
}

.addmission-dot {
    position: absolute;
    right: -60px;
    bottom: -60px;
    z-index: -1;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/* ============================================= */
    /* educate joint event area css style-one */
/* ============================================= */
.joint-event-area.style-one {
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}

.style-one .joint-event-box {
    border-radius: 20px;
    background-color: #f0fbf8;
    padding: 60px 40px 65px 58px;
    transition: .5s;
    position: relative;
    margin-bottom: 20px;
}

.style-one .joint-event-box.box-2 {
    background-color: #fdf7f3;
}

.style-one .joint-event-box.box-3 {
    background-color: #f1f9fc;
}

.style-one .joint-event-box.box-4 {
    background-color: #f8f4fb;
}

.style-one .event-inner-box.upper {
    display: flex;
    align-items: flex-start;
    padding-top: 17px;
    gap: 16px;
}

.style-one .joint-event-date h1 {
    display: inline-block;
    font-size: 80px;
    color:var(--primary-color);
    font-weight: 600;
}

.style-one .joint-event-box.box-2 .joint-event-date h1 {
    color:var(--Secondary-color);
}

.style-one .joint-event-box.box-3 .joint-event-date h1 {
    color:var(--tertiary-color);
}

.style-one .joint-event-box.box-4 .joint-event-date h1 {
    color:var(--fourtiary-color);
}

.style-one .joint-event-month h5 {
    font-size: 16px;
    line-height: 30px;
    color:var(--title-color);
    font-weight: 500;
}

.style-one .joint-event-month p {
    font-size: 16px;
    color:var(--title-color);
    font-weight: 500;
    font-family: "Outfit";
}

.style-one .joint-event-month {
    display: inline-block;
}

.style-one .event-title h3 {
    font-size: 30px;
    line-height: 38px;
    color: var(--title-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.style-one .event-title h3::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100px;
    background-color: rgba(30,30,30,0.10196078431372549);
    left: -72px;
    top: -10px;
}

.style-one .event-title h3::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100px;
    background-color: rgba(30,30,30,0.10196078431372549);
    right: 15px;
    top: -10px;
}

.style-one .event-title h3 a {
    display: inline-block;
    font-size: 30px;
    line-height: 38px;
    color:var(--title-color);
    font-weight: 600;
    transition: 0.5s;
}

.style-one .event-title h3 a:hover{
    color: var(--primary-color);
}

.style-one .joint-event-box.box-2 .event-title h3 a:hover{
    color: var(--Secondary-color);
}

.style-one .joint-event-box.box-3 .event-title h3 a:hover{
    color: var(--tertiary-color);
}

.style-one .joint-event-box.box-4 .event-title h3 a:hover{
    color: var(--fourtiary-color);
}

.style-one .event-location ul li {
    font-size: 15px;
    line-height: 26px;
    color:var(--text-color);
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 8px;
}

.style-one .event-location ul li img {
    margin-right: 12px;
}

.style-one .event-thumb {
    position: absolute;
    top: 80px;
    right: 285px;
    transition: .7s;
    z-index: 1;
}

.style-one .event-thumb img {
    z-index: -22;
    transition: .7s;
    opacity: 0;
}

.style-one .joint-event-box:hover .event-thumb img{
    opacity: 1;
}

.style-one .joint-event-box:hover .event-thumb {
    top: 40px;
}

.style-one .joint-event-box .event-thumb img:hover {
    transform: skew(0deg, 6deg);
}

.style-one .joint-event-btn a {
    display: inline-block;
    font-size: 14px;
    color:var(--primary-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.5);
    padding: 10px 30px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.style-one .joint-event-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-one .joint-event-box.box-2 .joint-event-btn a::before {
    background: var(--Secondary-color);
}

.style-one .joint-event-box.box-3 .joint-event-btn a::before {
    background: var(--tertiary-color);
}

.style-one .joint-event-box.box-4 .joint-event-btn a::before {
    background: var(--fourtiary-color);
}

.style-one .joint-event-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-one .joint-event-box.box-2 .joint-event-btn a:hover{
    color: var(--color-white);
}

.style-one .joint-event-box.box-3 .joint-event-btn a:hover{
    color: var(--color-white);
}

.style-one .joint-event-box.box-4 .joint-event-btn a:hover{
    color: var(--color-white);
}

.style-one .joint-event-btn a:hover{
    color: var(--color-white);
}

.style-one .joint-event-btn a i{
    margin-left: 10px;
}

.style-one .joint-event-box.box-2 .joint-event-btn a {
    background-color:rgb(255, 137, 68,0.10);
    border: 1px solid rgba(255,137,68,0.5);
    color: var(--Secondary-color);
}

.style-one .joint-event-box.box-3 .joint-event-btn a {
    background-color: rgba(21,193,250,0.10196078431372549);
    border: 1px solid rgba(21,193,250,0.5);
    color: var(--tertiary-color);
}

.style-one .joint-event-box.box-4 .joint-event-btn a {
    background-color: rgba(166,76,249,0.10196078431372549);
    border: 1px solid rgba(166,76,249,0.5);
    color: var(--fourtiary-color);
}

.style-one .event-shape {
    position: absolute;
    top: 94px;
    left: 130px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}

/* ============================================= */
    /* educate joint event area css style-two */
/* ============================================= */
.joint-event-area.style-two {
    background: url(../images/home-four/event-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 150px 0 155px;
}

.joint-event-area.style-two .section-sub-title.three h6 img {
    margin-right: 12px;
}

.joint-event-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.joint-event-area.style-two .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-two .joint-event-box {
    border-radius: 16px;
    background-color: #ffffff;
    padding: 20px 20px 20px;
    margin-bottom: 30px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    gap: 30px;
}

.style-two .event-thumb {
    position: relative;
    overflow: hidden;
}

.style-two .event-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-two .joint-event-box:hover .event-thumb::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-two .event-thumb img {
    width: 100%;
}

.style-two .event-content h5 {
    font-size: 16px;
    line-height: 30px;
    color: #1ec28e;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.style-two .joint-event-box.box-2 .event-content h5 {
    color: #ff853f;
}

.style-two .joint-event-box.box-3 .event-content h5 {
    color: #15c1fa;
}

.style-two .joint-event-box.box-4 .event-content h5 {
    color: #a44ff9;
}

.style-two .event-content h5 img {
    margin-right: 10px;
}

.style-two .event-content h3 a {
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-two .event-content h3 a:hover{
    color: var(--primary-color);
}

.style-two .joint-event-box.box-2 .event-content h3 a:hover{
    color: #ff853f;
}

.style-two .joint-event-box.box-3 .event-content h3 a:hover{
    color: #15c1fa;
}

.style-two .joint-event-box.box-4 .event-content h3 a:hover{
    color: #a44ff9;
}

.style-two .event-location {
    margin-top: 12px;
}

.style-two .event-location ul li {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    margin-bottom: 7px;
}

.style-two .event-location ul li img {
    margin-right: 10px;
}

.style-two .joint-event-btn a {
    display: inline-block;
    font-size: 14px;
    color: var(--color-white);
    background-color: var(--primary-color);
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    padding: 5px 18px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    margin-top: 19px;
}

.style-two .joint-event-box.box-2 .joint-event-btn a {
    background-color: #ff853f;
}

.style-two .joint-event-box.box-3 .joint-event-btn a {
    background-color: #15c1fa;
}

.style-two .joint-event-box.box-4 .joint-event-btn a{
    background-color: #a44ff9;
}

.style-two .joint-event-btn a i {
    margin-left: 10px;
}

.style-two .joint-event-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-two .joint-event-btn a:hover::before {
    width: 100%;
    left: 0;
}

/* joint event shape */

.style-two .joint-event-shape1 {
    position: absolute;
    top: 200px;
    left: 203px;
    animation: flip2 3s infinite alternate ease-in-out;
}

.style-two .joint-event-shape2 {
    position: absolute;
    right: 190px;
    top: 280px;
    z-index: -1;
    animation: bounceleft 4s linear infinite;
}


/* ============================================= */
    /* educate faq Area css */
/* ============================================= */
.faq-area.style-one {
    background-color: #f0fbf8;
    padding: 100px 0 20px;
    position: relative;
}

.faq-area.style-one .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

/* faq section */


.style-one .tab_container {
    overflow: hidden;
    margin: 38px 0 20px;
    position: relative;
}
  
.style-one .accordion li {
    list-style: none;
    padding: 0px 0px 20px;
}
  
.style-one .accordion li a {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 18px 15px 20px 25px;
    z-index: 1;
    font-size: 20px;
    line-height: 26px;
    color: #1e1e1e !important;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 10px;
    background-color: #ffffff;
}
  
.style-one .accordion li p {
    display: none;
    padding: 25px 30px 30px 32px;
    margin: 0;
    background: #fff;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 0px 0px 10px 10px;
    background-color: #ffffff;
}
  
.style-one .accordion a:before {
    width: 2px;
    height: 12px;
    background: #fff;
    position: absolute;
    right: 35px;
    content: " ";
    top: 23px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}
  
.style-one .accordion a:after {
    width: 12px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 30px;
    content: " ";
    top: 28px;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
  
.style-one .accordion a.active:after {
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out;
    background: #fff;
}
  /* Active */

.style-one .accordion a.active:after {
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out;
}
  
.style-one .accordion a.active:before {
    display: none;
}
  
.style-one .accordion a.active {
    border-radius: 10px 10px 0 0;
    filter: drop-shadow(0px 20px 15px rgba(219,231,228,0.4));
    background-color: #ffffff;
}
  
.style-one .accordion li a.active span {
    color: #fff;
}

.style-one .accordion li a span {
    position: relative;
    z-index: 1;
}

.style-one .accordion li a span:before {
    position: absolute;
    content: "";
    top: 1px;
    right: -585px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--primary-color);
}

.style-one .faq-button a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 26px;
    background-color: var(--primary-color);
    padding: 11px 32px;
    position: relative;
    z-index: 1;
}

.style-one .faq-button a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-one .faq-button a:hover::before {
    width: 100%;
    left: 0;
}

.style-one .faq-button a i {
    display: inline-block;
    margin-left: 10px;
}

.style-one .faq-circle {
    position: absolute;
    right: 240px;
    top: 230px;
    animation: rotateme 18s linear infinite;
}

.style-one .faq-thumb-wrapper {
    position: relative;
    z-index: 1;
    bottom: -20px;
}

.style-one .faq-dot {
    position: absolute;
    top: 210px;
    left: -45px;
    animation: bounceleft 4s linear infinite;
    z-index: -1;
}

.style-one .faq-star {
    position: absolute;
    top: 144px;
    left: 15px;
    animation: rotateme 8s linear infinite;
}

.style-one .faq-qestion {
    position: absolute;
    top: 218px;
    right: 110px;
    animation: upDown 1.5s ease-in-out 1.6s forwards infinite alternate;
}

.style-one .faq-suport-box {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 162px;
    left: -20px;
    width: 270px;
    height: 103px;
    border-radius: 20px;
    filter: drop-shadow(0px 20px 40px rgba(205,216,213,0.2));
    background-color: rgba(255,255,255,0.5019607843137255);
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    padding-left: 30px;
    animation: upDown 1.10s ease-in-out 1.10s forwards infinite alternate;
}

.style-one .suport-content h3 {
    font-size: 22px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-one .suport-content p {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
}

/* ============================================= */
    /* educate Our Courses Area css */
/* ============================================= */
.our-course-area.style-four {
    background: url(../images/home-four/course-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 170px;
    position: relative;
}

.our-course-area.style-four .section-title-space {
    margin-bottom: 60px;
}

.our-course-area.style-four .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}
.our-course-area.style-four .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.our-course-area.style-four .section-sub-title.three h6 img {
    margin-right: 12px;
}

.style-four .course-single-box {
    background: url(../images/home-four/box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 30px 40px;
    margin-bottom: 30px;
}

.style-four .course-thumb {
    position: relative;
    overflow: hidden;
}

.style-four .course-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-four .course-thumb:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-four .course-thumb img {
    width: 100%;
}

.style-four .course-content {
    padding-left: 20px;
}

.style-four .course-content h5 {
    font-size: 14px;
    line-height: 30px;
    color: #1ec28e;
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    margin-top: 30px;
    padding: 0 20px;
    margin-bottom: 14px;
}

.style-four .course-single-box.box-2 .course-content h5 {
    color: #fb8945;
    background-color: rgba(251,137,69,0.10196078431372549);
    border: 1px solid rgba(251,137,69,0.3);
}

.style-four .course-content h3 a {
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-four .course-single-box.box-2 .course-content h3 a:hover{
    color: var(--Secondary-color);
}

.style-four .course-content h3 a:hover{
    color: var(--primary-color);
}
.style-four .course-rating {
    display: inline-block;
    margin-top: 5px;
}

.style-four .course-rating ul li {
    display: inline-block;
    color: #ff9415;
}

.style-four li.ratting-count {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e !important;
    font-weight: 400;
    font-family: "Outfit";
}

.style-four .course-price h6 {
    font-size: 24px;
    color: #1ec28e;
    font-weight: 500;
}

.style-four .course-single-box.box-2 .course-price h6 {
    color: #ff9415;
}

.style-four .course-single-box.box-2 .course-price h6 del {
    opacity: 0.502;
    font-size: 24px;
    text-decoration: line-through;
    color: #616161;
    font-weight: 400;
}

.style-four .course-btn a {
    display: inline-block;
    font-size: 14px;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color: rgba(30,194,142,0);
    border: 1px solid rgba(30,194,142,0.5);
    padding: 9px 28px;
    position: relative;
    z-index: 1;
    margin-top: 17px;
}

.style-four .course-single-box.box-2 .course-btn a{
    color: #ff9415;
    border: 1px solid #ff9415;
}

.style-four .course-single-box.box-2 .course-btn a:hover{
    color:#fff;
}

.style-four .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.style-four .course-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-four .course-single-box.box-2 .course-btn a::before{
    background:#fb8945;
}

.style-four .course-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-four .course-btn a:hover{
    color:#fff;
}

.style-four .course-btn a:hover i{
    color:#fff;
}

/* our course nav */

.our-course-area.style-four .owl-nav {
    position:inherit;
}

.our-course-area.style-four .owl-prev {
    display: inline-block;
    margin-bottom: 12px;
    position: absolute;
    left: -5px;
    bottom: 48px;
}

.our-course-area.style-four .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.our-course-area.style-four .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.our-course-area.style-four .owl-next {
    display: inline-block;
    position: absolute;
    right: -135px;
    bottom: 48px;
}

.our-course-area.style-four .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.our-course-area.style-four .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

/* our course shape */
.our-course-shape1 {
    position: absolute;
    top: 200px;
    left: 196px;
    animation: animatePen 3s infinite ease-in-out;
}

.our-course-shape2 {
    position: absolute;
    right: 126px;
    top: 200px;
    animation: flip 1.5s ease-in-out infinite;
}

/* ============================================= */
    /* educate activities kids Area css */
/* ============================================= */

.activitie-kids-area.style-one {
    padding: 80px 0 100px;
    position: relative;
}

.style-one.activitie-kids-area .section-title-space {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
}

.style-one.activitie-kids-area .section-title-desc p {
    width: 95%;
}

.style-one.activitie-kids-area .section-sub-title h6 {
    padding-left: 0;
}

.style-one.activitie-kids-area .section-sub-title.three h6 img {
    margin-right: 12px;
}

.style-one.activitie-kids-area .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.style-one.activitie-kids-area .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-one .single-activitie-box {
    background: url(../images/home-four/activite-bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: baseline;
    gap: 30px;
    border-radius: 10px;
    padding: 26px 35px 42px;
    margin-bottom: 20px;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.style-one .single-activitie-box::before {
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.style-one .single-activitie-box:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.style-one .single-activitie-box.box-2 {
    background: url(../images/home-four/activite-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.style-one .single-activitie-box.box-3 {
    background: url(../images/home-four/activite-bg3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.style-one .single-activitie-box.box-4 {
    background: url(../images/home-four/activite-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.style-one .single-activitie-box.box-5 {
    background: url(../images/home-four/activite-bg5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.style-one .single-activitie-box.box-6 {
    background: url(../images/home-four/activite-bg6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 58px 35px 58px;
    text-align: center;
    display: inherit;
}

.style-one .activitie-icon {
    position: relative;
    top: 12px;
}

.style-one .activitie-content h3 {
    font-size: 22px;
    line-height: 40px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-one .activitie-content p {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
}

.style-one .activiite-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 25px;
    background-color: #1ec28e;
    padding: 9px 34px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.style-one .activiite-btn a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--title-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-one .activiite-btn a:hover::before {
    width: 100%;
    left: 0;
}

.style-one .activiite-btn a i{
    display: inline-block;
    margin-left: 10px;
}

/* activitie shape */
.style-one .activitie-shape1 {
    position: absolute;
    left: 103px;
    top: 118px;
    animation: float 3s ease-in-out infinite;
}

.style-one .activitie-shape2 {
    position: absolute;
    right: 120px;
    top: 120px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

.style-one .activitie-shape3 {
    position: absolute;
    right: 45px;
    bottom: -62px;
    animation: bounceleft 6s linear infinite;
}

/* ============================================= */
    /* educate our program child Area css */
/* ============================================= */
.our-program-child-area.style-four {
    background: url(../images/home-four/program-bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 175px;
    position: relative;
}

.our-program-child-area.style-four .section-sub-title h6 {
    padding-left: 0;
}

.our-program-child-area.style-four .section-sub-title.three h6 img {
    margin-right: 12px;
}

.our-program-child-area.style-four .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.our-program-child-area.style-four .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.style-four .single-program-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 30px 30px 40px;
    margin-bottom: 20px;
    transition: 0.5s;
    text-align: center;
}

.style-four .program-thumb {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.style-four .program-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-four .program-thumb:hover::before {
    animation: shine 800ms;
}

.style-four .program-thumb img {
    width: 100%;
}

.style-four .program-content h5 {
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 500;
    border-radius: 16px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 0 18px;
    margin: 28px 0 6px;
}

.style-four .single-program-box.box-2 .program-content h5{
    color: #ff853f;
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
}

.style-four .single-program-box.box-3 .program-content h5{
    color: #15c1fa;
    background-color: rgba(21,193,250,0.10196078431372549);
    border: 1px solid rgba(21,193,250,0.3);
}

.style-four .program-content h3 a {
    display: inline-block;
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.style-four .program-content h3 a:hover{
    color: var(--primary-color);
}

.style-four .single-program-box.box-2 .program-content h3 a:hover{
    color: var(--Secondary-color);
}

.style-four .single-program-box.box-3 .program-content h3 a:hover{
    color: var(--tertiary-color);
}

/* progra shape */
.program-shape1 {
    position: absolute;
    top: 225px;
    left: 430px;
    animation: flip 1.5s ease-in-out infinite;
}

.program-shape2 {
    position: absolute;
    right: 435px;
    top: 225px;
    animation: animateShape 3s infinite ease-in-out;
}

/* program nav */

.our-program-child-area.style-four .owl-nav {
    position:inherit;
}

.our-program-child-area.style-four .owl-prev {
    display: inline-block;
    margin-bottom: 12px;
    position: absolute;
    left: -5px;
    bottom: -135px;
}

.our-program-child-area.style-four .owl-next i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.our-program-child-area.style-four .owl-next i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

.our-program-child-area.style-four .owl-next {
    display: inline-block;
    position: absolute;
    right: -135px;
    bottom: -135px;
}

.our-program-child-area.style-four .owl-prev i {
    display: inline-block;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    color:var(--title-color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.1);
}

.our-program-child-area.style-four .owl-prev i:hover{
    background-color: var(--primary-color);
    color:var(--color-white)
}

/* ============================================= */
    /* educate counter area css style-one */
/* ============================================= */
/* =============================================
   کانتر آمار - تم نارنجی و سبز
   ============================================= */

:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C5A;
    --orange-dark: #E55A2B;
    --orange-bg: #FFF3ED;
    
    --green-primary: #2ECC71;
    --green-light: #58D68D;
    --green-dark: #27AE60;
    --green-bg: #EAFAF1;
    
    --gradient-orange: linear-gradient(135deg, #FF6B35, #FF8C5A);
    --gradient-green: linear-gradient(135deg, #2ECC71, #58D68D);
    --gradient-mixed: linear-gradient(135deg, #FF6B35, #2ECC71);
}

/* ====== بخش کانتر ====== */
.counter-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* پس زمینه دایره‌ای */
.counter-area::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(46, 204, 113, 0.05));
    z-index: 0;
}

.counter-area::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(255, 107, 53, 0.05));
    z-index: 0;
}

/* ====== هر باکس ====== */
.single-counter-box {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    margin-bottom: 30px;
}

.single-counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transition: all 0.4s ease;
}

.single-counter-box.box-2::before {
    background: var(--gradient-green);
}

.single-counter-box.box-3::before {
    background: linear-gradient(135deg, #FF6B35, #2ECC71);
}

.single-counter-box.box-4::before {
    background: linear-gradient(135deg, #2ECC71, #FF6B35);
}

.single-counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.1);
}

.single-counter-box.box-2:hover {
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.1);
}

.single-counter-box.box-3:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.08);
    border-color: rgba(46, 204, 113, 0.08);
}

.single-counter-box.box-4:hover {
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.08);
}

/* ====== آیکون ====== */
.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.single-counter-box .counter-icon {
    background: var(--orange-bg);
    color: var(--orange-primary);
}

.single-counter-box.box-2 .counter-icon {
    background: var(--green-bg);
    color: var(--green-primary);
}

.single-counter-box.box-3 .counter-icon {
    background: linear-gradient(135deg, var(--orange-bg), var(--green-bg));
    color: var(--orange-primary);
}

.single-counter-box.box-4 .counter-icon {
    background: linear-gradient(135deg, var(--green-bg), var(--orange-bg));
    color: var(--green-primary);
}

.counter-icon i {
    font-size: 32px;
    transition: all 0.5s ease;
}

.single-counter-box:hover .counter-icon i {
    transform: scale(1.1) rotate(-10deg);
}

.single-counter-box:hover .counter-icon {
    transform: translateY(-5px);
}

/* ====== عدد و شمارنده ====== */
.counter-content {
    position: relative;
}

.counter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.counter-number h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.single-counter-box.box-2 .counter-number h3 {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-counter-box.box-3 .counter-number h3 {
    background: linear-gradient(135deg, #FF6B35, #2ECC71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-counter-box.box-4 .counter-number h3 {
    background: linear-gradient(135deg, #2ECC71, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-plus,
.counter-percent {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1;
}

.single-counter-box.box-2 .counter-plus {
    color: var(--green-primary);
}

.single-counter-box.box-3 .counter-plus {
    color: var(--orange-primary);
}

.single-counter-box.box-4 .counter-percent {
    color: var(--green-primary);
}

/* متن توضیحات */
.counter-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.single-counter-box:hover .counter-content p {
    color: #444;
}

/* ====== اشکال تزئینی ====== */
.counter-shape {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: all 0.5s ease;
}

.single-counter-box:hover .counter-shape {
    opacity: 1;
    bottom: 15px;
}

.shape-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-primary);
}

.single-counter-box.box-2 .shape-dot {
    background: var(--green-primary);
}

.single-counter-box.box-3 .shape-dot {
    background: linear-gradient(135deg, #FF6B35, #2ECC71);
}

.single-counter-box.box-4 .shape-dot {
    background: linear-gradient(135deg, #2ECC71, #FF6B35);
}

.shape-line {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
}

.single-counter-box.box-2 .shape-line {
    background: linear-gradient(90deg, var(--green-primary), transparent);
}

.single-counter-box.box-3 .shape-line {
    background: linear-gradient(90deg, #FF6B35, transparent);
}

.single-counter-box.box-4 .shape-line {
    background: linear-gradient(90deg, #2ECC71, transparent);
}

/* ====== انیمیشن ورود ====== */
.single-counter-box {
    animation: counterFadeIn 0.8s ease both;
}

.single-counter-box:nth-child(1) { animation-delay: 0s; }
.single-counter-box:nth-child(2) { animation-delay: 0.15s; }
.single-counter-box:nth-child(3) { animation-delay: 0.3s; }
.single-counter-box:nth-child(4) { animation-delay: 0.45s; }

@keyframes counterFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== واکنش‌گرایی ====== */
@media (max-width: 1199px) {
    .counter-number h3 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .counter-area {
        padding: 60px 0;
    }
    
    .counter-number h3 {
        font-size: 38px;
    }
    
    .counter-plus,
    .counter-percent {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .counter-area {
        padding: 50px 0;
    }
    
    .single-counter-box {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .counter-number h3 {
        font-size: 36px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
    }
    
    .counter-icon i {
        font-size: 28px;
    }
    
    .counter-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .single-counter-box {
        padding: 20px 15px;
    }
    
    .counter-number h3 {
        font-size: 32px;
    }
    
    .counter-plus,
    .counter-percent {
        font-size: 24px;
    }
    
    .counter-content p {
        font-size: 13px;
    }
}

/* =============================================
   عنوان بخش نظرات - مدرن و مینیمال
   ============================================= */

:root {
    --orange-pastel: #FFE0C2;
    --orange-soft: #FFD4A8;
    --orange-mid: #FFB882;
    --orange-glow: rgba(255, 184, 130, 0.4);
    --orange-text: #C4471F;
}

.section-sub-title {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* ====== عنوان اصلی (بک‌گراند سفید، مدرن) ====== */
.testimonial-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-text);
    background: #FFFFFF;
    padding: 12px 35px;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    
    /* ====== استایل مینیمال ====== */
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    
    /* ====== سایه خیلی ملایم ====== */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ====== باکس نور نارنجی پاستیلی ====== */
.testimonial-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 20px;
    background: var(--orange-pastel);
    z-index: -1;
    
    /* ====== مخفی در حالت عادی ====== */
    opacity: 0;
    transform: scale(0.92);
    filter: blur(12px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====== حالت فعال (نور پاستیلی روشن می‌شه) ====== */
.testimonial-title.active {
    box-shadow: none;
}

.testimonial-title.active::before {
    opacity: 1;
    transform: scale(1);
    filter: blur(15px);
    
    /* ====== خاموش و روشن شدن ملایم ====== */
    animation: pastelGlow 3s ease-in-out infinite;
}

/* ====== انیمیشن خاموش و روشن شدن نور پاستیلی ====== */
@keyframes pastelGlow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(15px);
        background: var(--orange-pastel);
    }
    25% {
        opacity: 0.9;
        filter: blur(10px);
        background: var(--orange-soft);
    }
    50% {
        opacity: 0.15;
        filter: blur(20px);
        background: var(--orange-mid);
    }
    75% {
        opacity: 0.7;
        filter: blur(12px);
        background: var(--orange-pastel);
    }
}

/* ====== افکت hover ساده ====== */
.testimonial-title:hover {
    cursor: default;
}

/* ====== انیمیشن ورود از پایین ====== */
.testimonial-title {
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* انیمیشن برای نمایش تدریجی اخبار */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* استایل برای وقتی خبری نیست */
.empty-news {
    text-align: center;
    padding: 60px 20px;
}

.empty-news i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

/* نمونه کار */

/* ============================================= */
/* استایل بخش نمونه کارها - تم نارنجی و سبز */
/* ============================================= */

:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C5A;
    --orange-dark: #E55A2B;
    --orange-bg: #FFF5F0;
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    
    --green-primary: #2ECC71;
    --green-light: #58D68D;
    --green-dark: #27AE60;
    --green-bg: #F0FFF4;
    --green-gradient: linear-gradient(135deg, #2ECC71 0%, #58D68D 100%);
    
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --text-light: #B2BEC3;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* ============================================= */
/* پس‌زمینه بخش - نارنجی خیلی کمرنگ */
/* ============================================= */
.portfolio-section {
   
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF0E8 50%, #FFF5EE 100%);
    position: relative;
    overflow: hidden;
}

/* خطوط تزئینی پس‌زمینه */
.portfolio-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================= */
/* عنوان بخش */
/* ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title .sub-title {
    display: inline-block;
    padding: 8px 25px;
    background: var(--orange-gradient);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================= */
/* فیلتر دسته‌بندی */
/* ============================================= */
.portfolio-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    background: var(--orange-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.filter-btn.active {
    background: var(--green-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* ============================================= */
/* گرید نمونه کارها */
/* ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ============================================= */
/* کارت نمونه کار */
/* ============================================= */
.portfolio-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

/* ============================================= */
/* تصویر کارت */
/* ============================================= */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--orange-bg);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image img {
    transform: scale(1.1);
}

/* اوورلی نارنجی شفاف */
.card-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(46, 204, 113, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content .view-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--orange-primary);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay-content .view-btn:hover {
    background: var(--green-light);
    color: var(--white);
    transform: scale(1.05);
}

/* ============================================= */
/* نشان ویژه - نارنجی و سبز */
/* ============================================= */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* نوع دوم نشان ویژه - سبز */
.green-badge {
    background: var(--green-gradient);
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.4);
}

/* ============================================= */
/* محتوای کارت */
/* ============================================= */
.card-content {
    padding: 25px;
    position: relative;
}

/* خط تزئینی بالای محتوا */
.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.card-content .student-name {
    font-size: 14px;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content .project-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.portfolio-card:hover .project-title {
    color: var(--orange-primary);
}

.card-content .project-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================= */
/* تکنولوژی‌ها - نارنجی */
/* ============================================= */
.technologies {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tech-badge {
    padding: 4px 12px;
    background: var(--orange-bg);
    color: var(--orange-primary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--orange-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* نوع دوم - سبز */
.tech-badge-green {
    background: var(--green-bg);
    color: var(--green-primary);
    border-color: rgba(46, 204, 113, 0.2);
}

.tech-badge-green:hover {
    background: var(--green-gradient);
    color: var(--white);
}

/* ============================================= */
/* دکمه‌های پایین کارت */
/* ============================================= */
.card-footer {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--orange-bg);
}

.card-footer .action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: inherit;
    text-decoration: none;
}

.action-btn.live-view {
    background: var(--orange-gradient);
    color: var(--white);
}

.action-btn.live-view:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.action-btn.github-link {
    background: var(--green-gradient);
    color: var(--white);
}

.action-btn.github-link:hover {
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

/* ============================================= */
/* مودال نمایش زنده - نارنجی/سبز */
/* ============================================= */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.portfolio-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 52, 54, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    margin: 2.5vh auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
    border: 2px solid var(--orange-light);
}

/* ============================================= */
/* هدر مودال - نارنجی */
/* ============================================= */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--orange-gradient);
    color: var(--white);
    border-bottom: 3px solid var(--orange-dark);
}

.modal-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-info p {
    font-size: 14px;
    opacity: 0.9;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-btn {
    padding: 10px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--white);
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.4);
}

/* ============================================= */
/* بدنه مودال */
/* ============================================= */
.modal-body {
    flex: 1;
    position: relative;
    min-height: 60vh;
}

.iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.iframe-container iframe {
    width: 100%;
    height: calc(95vh - 150px);
    border: none;
}

/* لودینگ - نارنجی */
.iframe-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.iframe-loader .loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--orange-bg);
    border-top: 5px solid var(--orange-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.iframe-loader p {
    color: var(--orange-primary);
    font-size: 14px;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* ============================================= */
/* فوتر مودال */
/* ============================================= */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--orange-bg);
    border-top: 2px solid var(--orange-light);
}

.github-btn {
    padding: 10px 20px;
    background: var(--green-gradient);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.github-btn:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* ============================================= */
/* دکمه اسکرول به بالا - نارنجی */
/* ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* ============================================= */
/* انیمیشن‌ها */
/* ============================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================= */
/* استایل های اضافی */
/* ============================================= */

/* شمارنده بازدید */
.view-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 10px;
    background: var(--orange-bg);
    border-radius: 20px;
}

/* خط زمان (Timeline) برای کارت‌ها */
.card-timeline {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* ============================================= */
/* ریسپانسیو */
/* ============================================= */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title .sub-title {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .portfolio-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-filter {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-image {
        height: 180px;
    }
}

strong{
    font-size: 50px;
    color:#E55A2B;
}
/*===========================================
<-- educate subscribe Area css-->
==============================================*/
.subscribe-area.style-five {
    
    padding: 60px 0 70px;
    position: relative;
}
.subscribe-area.style-five .row.subscribe {
    border-radius: 20px;
    background-color: rgba(255,255,255,0.07058823529411765);
    padding: 35px 35px 35px 35px;
    margin-bottom: 0;
}
.subscribe-area.style-five .subscribe-shape1 {
    position: absolute;
    top: -105px;
    right: 175px;
    animation: upDown 1.7s ease-in-out 1.6s forwards infinite alternate;
}
.subscribe-area.style-five .subscribe-shape2 {
    position: absolute;
    top: 68px;
    left: 70px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 2) 0s infinite alternate;
}
.subscribe-area.style-five .subscribe-box {
    width: 410px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0 0 36px;
    height: 60px;
    border-radius: 30px;
    background-color: #def1ec;
    display: inline-block;
}
.subscribe-area.style-five .subscribe-box input {
    font-size: 15px;
    color:#1e1e1e;
    background: transparent;
    border: 0;
    outline: 0;
}
.subscribe-area.style-five  .subscribe-box input::placeholder {
    opacity: 0.800;
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Open Sans";
}
.subscribe-area.style-five .subscribe-box span {
    display: inline-block;
    margin-right: 4px;
    opacity: 0.800;
    font-size: 15px;
    color: #1e1e1e;
}
.subscribe-area.style-five form.subscribe {
    display: flex;
    align-items: center;
    gap: 15px;
}
.subscribe-area.style-five .subscribe-btn button {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
    border-radius: 30px;
    background-color: #1ec28e;
    display: inline-block;
    padding: 17px 28px;
}
/* ============================================= */
    /* educate gym program area css */
/* ============================================= */
section.gym-program-area.style-one {
    padding: 100px 0 100px;
    position: relative;
}
section.gym-program-area.style-one .section-title-space {
    margin-bottom: 60px;
}
section.gym-program-area.style-one .section-sub-title.six h6::before {
    position: inherit;
    background-color: transparent;
}
section.gym-program-area.style-one .single-gym-box {
    border: 1px solid #78bda0;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: 0.5s;
    position: relative;
}
section.gym-program-area.style-one .gym-content-inner {
    border-radius: 14px;
    background-color: #f0fbf8;
    margin: 10px;
    padding: 45px 20px 35px 35px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner.box-2 {
    background-color: #f2f6fb;
}
section.gym-program-area.style-one .gym-content-inner.box-3 {
    background-color: #fdf7f3;
}
section.gym-program-area.style-one .gym-content-inner.box-4 {
    background-color: #f1f9fc;
}
section.gym-program-area.style-one .gym-content-inner:before {
    position: absolute;
    content: "";
    z-index: -1;
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 14px;
    background-color: #1ec28e;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover:before{
    width: 100%;
    left: 0;
}
section.gym-program-area.style-one .lines {
    padding: 32px 0 16px;
    transition: 0.5s;
}
section.gym-program-area.style-one .lines .line {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    height: 1px;
    background-color: rgb(30 30 30 / 10%);
    padding: 0 0 0;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover .lines .line{
    background-color: rgb(255 255 255 / 30%); 
} 
section.gym-program-area.style-one .line::after {
    content: "";
    display: block;
    position: relative;
    top: 0;
    left: 0px;
    -webkit-animation: moveLeftBouncestwo 35s linear infinite;
    animation: moveLeftBouncestwo 35s linear infinite;
    overflow: hidden;
    width: 80px;
    height: 1px;
    background-color: #ff853f;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover .line::after{
    background-color:#fff; 
} 
section.gym-program-area.style-one .lines .line:nth-child(1)::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
section.gym-program-area.style-one .gym-content-inner:hover .gym-icon img {
    filter: brightness(0)invert(1);
}
section.gym-program-area.style-one h4.gym-title {
    font-size: 26px;
    color: #1e1e1e;
    font-weight: 600;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover h4.gym-title{
    color: #fff;
}
section.gym-program-area.style-one p.gym-desc {
    font-size: 17px;
    line-height: 30px;
    color: #616161;
    font-weight: 400;
    margin-bottom: 20px;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover p.gym-desc{
    color: #fff;
}
section.gym-program-area.style-one .gym-btn a {
    display: inline-block;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit";
    color: #1e1e1e;
    text-transform: uppercase;
}
section.gym-program-area.style-one .gym-btn a span {
    margin-left: -3px;
    display: inline-block;
    transition: 0.5s;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit";
}
section.gym-program-area.style-one .gym-content-inner:hover .gym-btn a span{
    color: #fff;
}
section.gym-program-area.style-one .gym-btn a i {
    font-size: 16px;
    font-weight: 600;
    color: #1ec28e;
    transition: 0.5s;
}
section.gym-program-area.style-one .gym-content-inner:hover .gym-btn a i{
    color: #fff;
}
section.gym-program-area.style-one .gym-content-inner:hover .gym-btn a span {
    margin-left: 12px;
    opacity: 1;
}
section.gym-program-area.style-one .gym-shape1 {
    position: absolute;
    top: 160px;
    left: 145px;
    animation: scaleAnimation 2s infinite ease-in-out;
}
section.gym-program-area.style-one .gym-shape2 {
    position: absolute;
    bottom: 98px;
    right: 76px;
    animation: shakeAnimation 5s infinite ease-in-out;
}
/* ============================================= */
    /* educate contact area css style-six*/
/* ============================================= */
section.contact_area.style-six {
    position: relative;
    margin-top: -288px;
    z-index: 1;
    margin-bottom: -110px;
}
section.contact_area.style-six .section-sub-title.six h6::after {
    position: inherit;
    background-color: transparent;
}
section.contact_area.style-six .section-sub-title.six h6 {
    color: #1e1e1e;
    padding-left: 20px;
}
section.contact_area.style-six .section-sub-title h6::before {
    position: absolute;
    content: '';
    line-height: 8px;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #ff853f;
}
section.contact_area.style-six .section_title.six h1 {
    font-size: 32px;
    line-height: 42px;
    color: #1e1e1e;
    font-weight: 700;
    font-family: "Open Sans";
}
section.contact_area.style-six .section-title-desc p {
    width: 80%;
}
section.contact_area.style-six .row.contact-bg {
    border-radius: 20px;
    background-color: #e4f6ef;
    border: 5px solid #fff;
    padding: 70px 75px 70px 75px;
}
section.contact_area.style-six .form-box {
    margin-bottom: 20px;
}
section.contact_area.style-six .form-box input {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 0;
    outline: 0;
    padding-left: 20px;
}
section.contact_area.style-six .form-box input::placeholder {
    opacity: 0.702;
    font-size: 16px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}
section.contact_area.style-six .contact-form button {
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
    text-align: center;
    width: 100%;
    height: 56px;
    border-radius: 28px;
    background-color: #1ec28e;
    position: relative;
    z-index: 1;
}
section.contact_area.style-six .contact-form button::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--color-white);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}
section.contact_area.style-six .contact-form button:hover::before {
    width: 100%;
    left: 0;
}
section.contact_area.style-six .contact-form button:hover{
    opacity: 0.702;
    color: #616161;
}

/* ============================================= */
    /* educate breadcumb area css */
/* ============================================= */
.breadcumb-area {
    padding: 250px 0 152px;
    position: relative;
    background: url(../images/inner-img/breadcumb-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: -101px;
}

.breadcumb-area.two {
    background: url(../images/inner-img/breadcam-bg2.png);
}

.breadcumb-title h4 {
    display: inline-block;
    font-size: 50px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcumb-content ul li {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.breadcumb-content ul li a {
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
}

.breadcumb-content ul li a span {
    display: inline-block;
    margin: 0 8px 0;
}

.breadcumb-shape {
    position: absolute;
    left: 745px;
    bottom: 190px;
    animation: bounce 4s linear infinite;
}

.breadcumb-shape2 {
    position: absolute;
    right: 230px;
    bottom: 255px;
    animation: scaleZoom 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

.bread-shape {
    position: absolute;
    top: 225px;
    left: 390px;
    animation: upDown 1.5s ease-in-out 1.8s forwards infinite alternate;
}

.bread-dot {
    position: absolute;
    right: 200px;
    bottom: -40px;
    animation: bounceleft 4s linear infinite;
}

.bread-dot2 {
    position: absolute;
    right: 200px;
    bottom: 130px;
    animation: bounceleft 4s linear infinite;
}

/* breadcumb autor box */
.row.breadcumb-autor {
    margin-top: 55px;
}

.breadcumb-autor-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcumb-autor-content h5 {
    font-size: 18px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.breadcumb-autor-content p {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.breadcumb-category {
    padding-left: 30px;
    position: relative;
}

.breadcumb-category::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 50px;
    background-color: rgba(30,30,30,0.14901960784313725);
    left: 0;
    top: 5px;
}

.breadcumb-category::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 50px;
    background-color: rgba(30,30,30,0.14901960784313725);
    right: 15px;
    top: 5px;
}

.breadcumb-category span {
    display: inline-block;
    font-size: 15px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.breadcumb-category h6 {
    font-size: 18px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
}

.breadcumb-ratting span {
    display: inline-block;
    font-size: 15px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.breadcumb-star ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.breadcumb-ratting-num span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}
.breadcumb-star {
    display: inline-block;
}

.breadcumb-ratting-num {
    display: inline-block;
}

/* =================================================== */
    /* instruction details section css style-inner */
/* =================================================== */

.instruction-details-section .row.instructor-details-bg {
    border-radius: 10px;
    filter: drop-shadow(0px 20px 50px rgba(219,228,223,0.4));
    background-color: #ffffff;
    padding: 30px 18px 30px;
    position: relative;
    margin-top: -60px;
}

.instruction-details-section .instructor-info {
    padding-top: 15px;
}

.instruction-details-section h3.instructor-name {
    font-size: 28px;
    color: #1e1e1e;
    font-weight: 600;
}

.instruction-details-section .instructor-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.instruction-details-section .instructor-rating {
    display: inline-block;
}

.instruction-details-section .instructior-ratting-count {
    display: inline-block;
}

.instruction-details-section span.rating-count {
    display: inline-block;
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.instruction-details-section .instructior-designation h5 {
    font-size: 14px;
    line-height: 28px;
    color: #1ec28e;
    font-weight: 500;
    border-radius: 15px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 0 18px;
    margin: 16px 0 18px;
}

.instruction-details-section .instructor-course-info ul li {
    display: inline-block;
}

.instruction-details-section li.total-course {
    margin-right: 20px;
}

.instruction-details-section .instructor-course-info ul li a i {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 8px;
}

.instruction-details-section .instructor-course-info ul li a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.instruction-details-section .instructor-social-icon ul li {
    display: inline-block;
    margin-right: 7px;
}

.instruction-details-section .instructor-social-icon ul li a {
    display: inline-block;
}

.instruction-details-section .instructor-social-icon ul li a {
    display: inline-block;
    font-size: 13px;
    color: #1e1e1e;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.14901960784313725);
    border: 1px solid rgba(30,30,30,0.1);
    text-align: center;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.instruction-details-section .instructor-social-icon ul li a::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:var(--primary-color);
    border-radius: 100%;
    margin: auto;
    z-index: -1;
    transition: .5s;
}

.instruction-details-section .instructor-social-icon ul li a:hover::before{
    width: 100%;
  }

  .instruction-details-section .instructor-social-icon ul li a:hover{
    color: #fff;
}

.instruction-details-section .instruction-details-box {
    padding-left: 40px;
    position: relative;
    padding-top: 15px;
}

.instruction-details-section .instruction-details-box::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 241px;
    background-color: rgba(30,30,30,0.10196078431372549);
    left: -2px;
    top: 30px;
}

.instruction-details-section h3.instructor-details-title {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 500;
}

.instruction-details-section p.instructor-details-desc {
    font-size: 16px;
    color: #616161;
    margin: 6px 0 36px;
    width: 82%;
}

.instruction-details-section .instructor-info-list ul li a {
    display: inline-block;
    font-size: 15px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Open Sans";
}

.instruction-details-section .instructor-info-list ul li {
    margin-bottom: 7px;
}

.instruction-details-section .instructor-info-list ul li a i {
    display: inline-block;
    color: var(--primary-color);
    margin-right: 8px;
}

.instruction-details-section .instructor-social-icon {
    margin-top: 50px;
}


/* =================================================== */
    /* educate-details-course-area css style-inner */
/* =================================================== */
.educate-details-course-area.style-inner {
    padding: 105px 0 90px;
}

.educate-details-course-area.style-inner .section-title-space {
    margin-bottom: 60px;
}

.style-inner .course-details-box {
    border: 1px solid rgba(30,30,30,0.1);
    margin-bottom: 25px;
    position: relative;
    height: 600px;
    border-radius: 20px;
    padding: 20px 20px 32px;
    transition: 0.5s;
    overflow: hidden;
}

.style-inner .course-details-box:hover{
    border: 1px solid #1ec28e;
}

.style-inner .course-details-thumb {
    position: relative;
    transition: 0.5s;
}

.style-inner .course-details-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.style-inner .course-details-box:hover .course-details-thumb::before {
    animation: shine 800ms;
}

.style-inner .course-details-thumb img {
    width: 100%;
    border-radius: 20px;
}

.style-inner .course-meta-top {
    position: absolute;
    bottom: 22px;
    left: 18px;
}

.style-inner .course-meta-top span {
    display: inline-block;
    text-transform: capitalize;
    text-align: center;
    background-color: #1ec28e;
    border-radius: 16px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    padding: 2px 20px;
}

.style-inner .course-details-content h4 {
    margin-top: 22px;
    margin-bottom: 2px;
}

.style-inner .course-details-content h4 a {
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color: var(--title-color);
    font-weight: 500;
    transition: 0.5s;
    font-family: "Outfit";
}

.style-inner .course-details-content h4 a:hover{
    color: var(--primary-color);
}

.style-inner .course-rating ul {
    display: inline-block;
}

.style-inner .course-rating ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-inner .course-rating-num {
    display: inline-block;
}

.style-inner .course-rating-num span {
    display: inline-block;
    font-size: 16px;
    color: var(--title-color);
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner .course-price h3 {
    font-size: 24px;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
    padding: 5px 0 40px;
    position: relative;
}

.style-inner .course-price h3 del {
    opacity: 0.502;
    font-size: 24px;
    text-decoration: line-through;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    margin-left: 8px;
}

.style-inner .course-price h3::before {
    position: absolute;
    content: '';
    width: 364px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    bottom: 23px;
    left: 0;
}

.style-inner .course-lesson {
    display: inline-block;
    margin-right: 20px;
}

.style-inner .course-details-box:hover .course-lesson {
    opacity: 0;
}

.style-inner .course-lesson span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner .course-lesson span i {
    display: inline-block;
    font-size: 15px;
    color: #1ec28e;
    margin-right: 5px;
}

.style-inner .course-student {
    display: inline-block;
}

.style-inner .course-details-box:hover .course-student{
    opacity: 0;
}

.style-inner .course-student span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner .course-student span i{
    display: inline-block;
    font-size: 15px;
    color: #1ec28e;
    margin-right: 5px;
}

.style-inner .course-btn a {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 22px;
    background-color: var(--primary-color);
    padding: 9px 28px;
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.style-inner .course-details-box:hover .course-btn a {
    opacity: 1;
    transform: translateY(-30px);
}

.style-inner .course-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-inner .course-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-inner .course-btn a i {
    display: inline-block;
    margin-left: 10px;
}

/* =================================================== */
    /* educate event details area css style-inner */
/* =================================================== */
section.event-details-area.style-inner {
    padding: 120px 0 70px;
}

.style-inner .event-details-thumb img {
    width: 100%;
}

.style-inner .event-details-heading h2 {
    font-size: 36px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 600;
    padding: 40px 0 27px;
}

.style-inner .event-details-content p {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
}

.style-inner p.description-2 {
    padding: 23px 0 40px;
}

.style-inner h3.event-details-content-title {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 10px;
}

.style-inner .event-post-details-list ul li {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 8px;
}

.style-inner .event-post-details-list ul li img {
    margin-right: 10px;
}

.style-inner .post-details-list-desc p {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    padding-top: 20px;
}

/* event sidebar */
.style-inner .event-sidebar {
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(206,206,206,0.3));
    background-color: #ffffff;
    padding: 42px;
    position: relative;
    z-index: 1;
}

.style-inner .event-info-title h3 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-inner .event-sidebar::before {
    position: absolute;
    content: '';
    width: 418px;
    height: 5px;
    border-radius: 2px;
    background-color: #1ec28e;
    left: 0;
    top: 0;
}

.style-inner .event-info-list ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    border-bottom: 1px solid  rgba(30,30,30,0.10196078431372549);
}

.style-inner .event-info-list ul li:last-child{
    border:0;
}

.style-inner .label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-inner .event-info-list ul li span {
    display: inline-block;
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.style-inner span.value-dollar {
    display: inline-block;
    font-size: 20px !important;
    color: #1ec28e !important;
}

.style-inner .event-info-btn {
    margin: 37px 0 40px;
}

.style-inner .event-info-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 30px;
    background-color: var(--primary-color);
    padding: 13px 105px;
    position: relative;
    z-index: 1;
}

.style-inner .event-info-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background:var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.style-inner .event-info-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.style-inner .event-info-btn a i {
    display: inline-block;
    margin-left: 10px;
}

/* Start Count Down css*/
.style-inner #clockdiv {
    border-radius: 10px;
    background-color: #f0fbf8;
    border: 1px solid rgba(30,194,142,0.2);
    padding: 20px 16px  20px;
}

.style-inner #clockdiv > div {
    display: inline-block;
}
  
.style-inner #clockdiv div > span {
    margin-right: 12px;
}
  
.style-inner .count-text {
    font-size: 15px;
    line-height: 30px;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    text-align: center;
    text-transform: uppercase;
}
  
.style-inner span.days, .hours, .minutes, .seconds {
    display: inline-block;
    font-size: 24px;
    color: #1ec28e !important;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 59px;
    height: 59px;
    line-height: 59px;
    border-radius: 10px;
    filter: drop-shadow(0px 10px 25px rgba(219,232,229,0.5));
    background-color: #ffffff;
}

.style-inner span.hours{
    color:var(--Secondary-color)!important;
}

.style-inner span.minutes{
    color:var(--tertiary-color)!important;
}

.style-inner span.seconds{
    color:var(--fourtiary-color)!important;
}
  /*End Count Down css*/

  .style-inner .event-sidebar-location {
    border-radius: 20px;
    background-color: #edf8f5;
    margin-top: 25px;
    padding: 40px 40px 30px;
}

.style-inner .event-map iframe {
    width: 100%;
    height: 230px;
}

.style-inner .event-sidebar-title h4 {
    font-size: 24px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    padding-bottom: 22px;
}

/* =================================================== */
    /* course details area css style-inner */
/* =================================================== */
section.course-details-area.style-inner {
    padding: 105px 0 120px;
}

.style-inner h2.course-details-title {
    font-size: 32px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 25px;
}

.style-inner h3.course-details-content-title {
    font-size: 22px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 20px;
}

.style-inner .course-post-details-list ul li img {
    margin-right: 10px;
}

.style-inner .course-post-details-list ul li {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    margin-bottom: 8px;
}

.style-inner .course-details-list-desc p {
    margin: 20px 0 45px;
}

.style-inner .accordion-title h2 {
    font-size: 30px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 35px;
}


/* course details accordion */

/*accordion*/
.style-inner .tab_container {
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(30,194,142,0.2);
}

.style-inner .accordion li {
    list-style: none;
    padding: 2px 0px 15px;
}

.style-inner .accordion li:last-child {
    padding:0;
}

.style-inner .accordion li a {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    background: #f4f8f9;
    padding: 25px 40px 25px;
    z-index: 1;
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    color: #1e1e1e;
    border-radius: 10px;
    background-color: #f0fbf8;
    font-family: "Outfit";
}

.style-inner .accordion li p {
    display: none;
    margin: 0;
    font-size: 17px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner a.active {
    color: #fff !important;
    background: #1ec28e !important;
    filter: drop-shadow(0px 10px 100px rgba(12,110,109,0.1)) !important;
}
.style-inner .accordion li a span {
    position: relative;
    z-index: 1;
}
.style-inner .accordion li a i {
    font-size: 15px;
    color: #063232;
    transform: rotate(0deg);
}
.style-inner .accordion li a.active i {
    transform: rotate(90deg);
    color: #fff;
}
.style-inner .accordion li.ctive {
    background: #0c6e6d !important;
}

.style-inner span.title i {
    display: inline-block;
    font-size: 20px;
    color: #1ec28e;
    margin-right: 10px;
    cursor: pointer;
}

.style-inner ul.accordion li p {
    padding: 20px 28px 0;
}

.style-inner span.title {
    font-size: 17px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner span.duration {
    float: right;
}

.style-inner span.duration {
    float: right;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.style-inner span.duration i {
    display: inline-block;
    color: #616161;
    margin-left: 20px;
}

.style-inner .course-details-instructors {
    border-radius: 16px;
    filter: drop-shadow(0px 10px 50px rgba(206,206,206,0.3));
    background-color: #ffffff;
    margin: 60px 0 40px;
    padding: 20px 20px 20px;
}

.style-inner .course-instructors-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.style-inner .instructors-info span{
    display: inline-block;
    font-size: 18px;
    color: #1ec28e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner .instructors-info h3 {
    font-size: 28px;
    color: #1e1e1e;
    font-weight: 600;
}

.style-inner .course-instructors-rating ul li {
    display: inline-block;
    color:var(--Secondary-color);
}

.style-inner li.instructor-rate {
    font-size: 18px;
    color: #1e1e1e !important;
    font-weight: 600;
}

.style-inner h5.designation {
    font-size: 14px;
    line-height: 28px;
    color: #1ec28e;
    font-weight: 500;
    border-radius: 20px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
    display: inline-block;
    padding: 2px 18px;
    margin: 15px 0 26px;
}

.style-inner .instructor-dtls-social ul li {
    display: inline-block;
    margin: 0 5px;
}

.style-inner .instructor-dtls-social ul li a {
    display: inline-block;
    font-size: 13px;
    color: #1e1e1e;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.14901960784313725);
    border: 1px solid rgba(30,30,30,0.1);
    text-align: center;
    transition: 0.5s;
}

.style-inner .instructor-dtls-social ul li a:hover{
    background-color: var(--primary-color);
    color: var(--color-white);
}

/* instructor ratting box */
.style-inner .instructor-ratting-box {
    border-radius: 16px;
    background-color: #f0fbf8;
    text-align: center;
    padding: 50px 0 60px;
}

.style-inner .ins-rating-box-number h4 {
    font-size: 36px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-inner .ins-rating-box-icon ul li {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-inner .rating-box-desc {
    font-size: 16px;
    color: #616161;
    margin-top: 10px;
}


/* prossess ber plugin */
.style-inner .instuctor-review-progress-wrapper {
    border-radius: 16px;
    background-color: rgba(255,148,21,0.07058823529411765);
    padding: 0 35px 10px 30px;
    position: relative;
}
.style-inner .prossess-ber-plugin span {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}
.style-inner span.prosses-bar {
    position: relative;
    top: 20px;
    left: -25px;
}
.style-inner .prossess-ber-plugin span i {
    display: inline-block;
    color: var(--Secondary-color);
    margin-right: 4px;
}

.style-inner .barfiller {
    position: relative;
    margin-bottom: 5px;
    margin-top: 4px;
    width: 88% !important;
    height: 8px;
    border-radius: 5px;
    background-color: rgba(255,148,21,0.2);
    margin-left: 40px;
}
.style-inner span.fill {
    background-color: #ff9415 !important;
}
.style-inner .barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    background: #333;
    z-index: 1;
    border-radius: 5px;
}
.style-inner .barfiller .tip {
    margin-top: -25px;
    position: absolute;
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 400;
    left: 0;
}

.style-inner p.bd-review-number {
    position: absolute;
    right: 12px;
    margin-top: -5px;
}

/* students reviews */
.style-inner li.post-comment-box-1 {
    position: relative;
    padding-bottom: 57px;
}

.style-inner li.post-comment-box-1::before {
    position: absolute;
    content: '';
    width: 872px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    left: 0;
    bottom: 28px;
}

.style-inner .course-detalis-reviews {
    padding: 55px 0 0 10px;
}

.style-inner h3.course-details-content-title {
    font-size: 30px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-inner .reviews-postbox-comment-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.style-inner .reviews-postbox-comment-name > a {
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.style-inner .post-rating a {
    display: inline-block;
    color: var(--Secondary-color);
}

.style-inner a.post-time {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #616161 !important;
    font-weight: 400;
}

.style-inner .reviews-postbox-comment-box p {
    margin-top: 20px;
    width: 85%;
}

/* event sidebar wrapper */
section.course-details-area.style-inner .event-sidebar::before {
    width: 466px;
}

section.course-details-area.style-inner .event-info {
    padding-top: 20px;
}

section.course-details-area.style-inner .event-sidebar-wrapper {
    position: absolute;
    margin-top: -154px;
}

section.course-details-area.style-inner .event-sidebar-thumb {
 position: relative;
}

section.course-details-area.style-inner .course-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.course-details-area.style-inner .course-video-icon a {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 54px;
    background-color: #ffffff;
    border-radius: 50px;
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    z-index: 1;
    border: 5px solid #fff;
    webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
}

section.course-details-area.style-inner .course-video-icon a::before {
    position: absolute;
    content: '';
    width: 86px;
    height: 86px;
    border-radius: 43px;
    background-color: rgba(255,255,255,0.30196078431372547);
    left: -11px;
    top: -18px;
}

section.course-details-area.style-inner .course-video-icon a::after {
    position: absolute;
    content: '';
    width: 122px;
    height: 122px;
    border-radius: 61px;
    background-color: rgba(255,255,255,0);
border: 2px solid rgba(255,255,255,0.3);
    left: -30px;
    top: -39px;
}

.course-share-title h5 {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
}

.course-share-icon ul li {
    display: inline-block;
    margin: 0 3px;
}

.course-share-icon ul li a {
    display: inline-block;
    font-size: 13px;
    color: #1e1e1e;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 1px solid rgba(30,30,30,0.1);
    text-align: center;
    transition: 0.5s;
}

.course-share-icon ul li a:hover{
    background-color: var(--primary-color);
    color: var(--color-white);
}

.educate-details-course-area.style-inner.details {
    background-color: #f0fbf8;
    padding: 110px 0 90px;
}

section.course-details-area.style-inner .event-info-btn a {
    padding: 13px 135px;
}

/* =================================================== */
    /* educate pricing Area css style-inner */
/* =================================================== */
.pricing-area.style-inner {
    padding: 100px 0 100px;
}

.pricing-area.style-inner .section-title-space {
    margin-bottom: 40px;
}

.pricing-area.style-inner  .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

.pricing-area.style-inner  .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

.pricing-area.style-inner .section-sub-title.three h6 img {
    margin-right: 12px;
}

.style-inner .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 242px;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(240,251,248,0);
    border: 1px solid rgba(30,30,30,0.1);
    margin: 0 auto 40px;
}

.style-inner .pricing-toggle span {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.style-inner .switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
    margin: 0;
}

.style-inner .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.style-inner .slider {
    position: absolute;
    cursor: pointer;
    top: -3px;
    left: -7px;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    width: 58px;
    height: 28px;
    border-radius: 14px;
    background-color: rgba(30,194,142,0.10196078431372549);
    border: 1px solid rgba(30,194,142,0.3);
}

.style-inner .slider:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -1px;
    transition: 0.4s;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: #1ec28e;
}

.style-inner input:checked + .slider {
    background-color: #fdf7f3;
}

.style-inner input:checked + .slider:before {
    transform: translateX(26px);
}
.style-inner h2.price-yearly {
    display: none;
}

/* pricing box */

.style-inner .single-pricing-box {
    border-radius: 10px;
    background-color: #fdf7f3;
    padding: 50px 40px 50px;
    transition: 0.5s;
    margin-bottom: 20px;
}

.style-inner .single-pricing-box.box-2{
    background-color: #f0fbf8;
}

.style-inner .single-pricing-box.box-3{
    background-color: #f1f9fc;
}

.style-inner .pricing-icon {
    width: 76px;
    height: 76px;
    line-height: 76px;
    border-radius: 38px;
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.3);
    text-align: center;
    display: inline-block;
    transition: 0.5s;
}

.style-inner .single-pricing-box:hover .pricing-icon{
 background-color: var(--Secondary-color);
}

.style-inner .single-pricing-box:hover .pricing-icon img {
    filter: brightness(0)invert(1);
}

.style-inner .single-pricing-box.box-2 .pricing-icon{
    background-color:rgb(30, 194, 142,0.10);
    border: 1px solid rgb(30, 194, 142,0.3);
}

.style-inner .single-pricing-box.box-2:hover .pricing-icon{
    background-color: var(--primary-color);
}

.style-inner .single-pricing-box.box-3:hover .pricing-icon img {
    filter: brightness(0)invert(1);
}

.style-inner .single-pricing-box.box-3 .pricing-icon{
    background-color: rgba(21,193,250,0.2);
    border: 1px solid rgba(21,193,250,0.3);
}

.style-inner .single-pricing-box.box-3:hover .pricing-icon{
    background-color: var(--tertiary-color);
}

.style-inner .single-pricing-box.box-3:hover .pricing-icon img {
    filter: brightness(0)invert(1);
}

.style-inner .pricing-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.style-inner .pricing-head-content h1 {
    font-size: 24px;
    line-height: 35px;
    color: #1e1e1e;
    font-weight: 500;
}

.style-inner .pricing-head-content p {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.style-inner .pricing-list {
    padding-top: 34px;
}

.style-inner .pricing-list ul li {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 12px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.style-inner .pricing-list ul li:last-child{
    border:none;
}

.style-inner .pricing-list ul li img {
    margin-right: 10px;
}

.style-inner .pricing-rate h2 .dollar {
    font-size: 22px;
    line-height: 26px;
    color: #ff853f;
    font-weight: 600;
    font-family: "Outfit";
    position: relative;
    top: -14px;
}

.style-inner .single-pricing-box.box-2 .pricing-rate h2 .dollar{
    color:var(--primary-color)
}

.style-inner .single-pricing-box.box-3 .pricing-rate h2 .dollar{
    color:var(--tertiary-color)
}

.style-inner .pricing-rate {
    padding: 16px 0 35px;
}

.style-inner .pricing-rate h2 {
    font-size: 46px;
    line-height: 26px;
    color: #ff853f;
    font-weight: 600;
    font-family: "Outfit";
}

.style-inner .single-pricing-box.box-2 .pricing-rate h2{
    color:var(--primary-color)
}

.style-inner .single-pricing-box.box-3 .pricing-rate h2{
    color:var(--tertiary-color)
}

.style-inner .pricing-rate h2 .month {
    font-size: 16px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.style-inner .pricing-button a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #ff853f;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 24px;
    background-color: rgba(255,133,63,0.10196078431372549);
    border: 1px solid rgba(255,133,63,0.2);
    padding: 10px 33px;
    position: relative;
    z-index: 1;
}
.style-inner .pricing-button a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background:var(--Secondary-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}

.style-inner .single-pricing-box.box-2 .pricing-button a::before{
    background:var(--primary-color);
}

.style-inner .single-pricing-box.box-3 .pricing-button a::before{
    background:var(--tertiary-color);
}

.style-inner .single-pricing-box:hover .pricing-button a::before{
    width: 100%;
    left: 0;
}

.style-inner .single-pricing-box:hover .pricing-button a{
    color:#fff;
}

.style-inner .single-pricing-box.box-2:hover .pricing-button a::before{
    width: 100%;
    left: 0;
}

.style-inner .single-pricing-box.box-2:hover .pricing-button a{
    color:#fff;
}

.style-inner .single-pricing-box.box-3:hover .pricing-button a::before{
    width: 100%;
    left: 0;
}

.style-inner .single-pricing-box.box-3:hover .pricing-button a{
    color:#fff;
}
.style-inner .single-pricing-box.box-2 .pricing-button a{
    background-color: rgb(30, 194, 142,0.10);
    border: 1px solid rgb(30, 194, 142,0.2);
    color: var(--primary-color);
}
.style-inner .single-pricing-box.box-3 .pricing-button a{
    background-color: rgba(21,193,250,0.2);
    border: 1px solid rgba(21,193,250,0.2);
    color:var(--tertiary-color);
}
.style-inner .pricing-button a i{
    margin-left: 10px;
}

/* =================================================== */
    /* educate pricing Area css style-one */
/* =================================================== */
.pricing-area.style-one {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.pricing-area.style-one .section-title-space {
    margin-bottom: 30px;
}
.pricing-area.style-one .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}
.style-one .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 56px;
}
.style-one .pricing-toggle span {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}
.style-one .switch {
    position: relative;
    display: inline-block;
    width: 105px;
    height: 40px;
    margin: 0;
}
.style-one .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.style-one .slider {
    position: absolute;
    cursor: pointer;
    top: -3px;
    left: 8px;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    width: 90px;
    height: 46px;
    border-radius: 23px;
    background-color: #ddf1ec;
}
.style-one .slider:before {
    position: absolute;
    content: "";
    left: 4px;
    bottom: 4px;
    transition: 0.4s;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1fc28e;
}
.style-one input:checked + .slider {
    background-color: #fdf7f3;
}
.style-one input:checked + .slider:before {
    transform: translateX(42px);
}
.style-one h2.price-yearly {
    display: none;
}

/* pricing box */
.style-one .single-pricing-box {
    padding: 30px 30px 40px;
    transition: 0.5s;
    margin-bottom: 20px;
    border-radius: 20px;
    filter: drop-shadow(0 0 35px rgba(212,216,215,0.5));
    background-color: rgba(255,255,255,0.8);
}
.style-one .pricing-head-title h1 {
    font-size: 20px;
    text-transform: uppercase;
    color: #041424;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
}
.style-one .pricing-head {
    text-align: center;
    border-radius: 20px;
    background-color: #f2efe6;
    padding: 40px 0 46px;
}
.style-one .single-pricing-box.box-2 .pricing-head {
    background-color: #e7f5f1;
}
.style-one .single-pricing-box.box-3 .pricing-head {
    background-color: #e8f5e8;
}
.style-one .pricing-rate h2 {
    font-size: 45px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
}
.style-one h2.price.price-yearly {
 color:#1ec28e;
}
.style-one .pricing-rate h2 .month {
    font-size: 17px;
    line-height: 31px;
    color: #041424;
    font-weight: 400;
    font-family: "Open Sans";
}
.style-one .pricing-list {
    padding: 50px 0 43px 28px;
}
.style-one .pricing-list ul li i {
    display: inline-block;
    margin-right: 10px;
    color: #1fc28e;
}
.style-one .pricing-list ul li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Open Sans";
}
.style-one .pricing-button a {
    display: inline-block;
    border-radius: 30px;
    padding: 14px 40px;
    position: relative;
    z-index: 1;
    font-size: 17px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 100%;
    background-color: #f1eee4;
}
.style-one .single-pricing-box.box-2 .pricing-button a{
    background-color: #e7f5f1;
}
.style-one .single-pricing-box.box-3 .pricing-button a{
    background-color: #e8f5e8;
}
.style-one .pricing-button a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background:var(--primary-color);
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}
.style-one .single-pricing-box:hover .pricing-button a::before{
    width: 100%;
    left: 0;
}
.style-one .single-pricing-box:hover .pricing-button a{
   color:#fff;
}
.style-one .pricing-shape11 {
    position: absolute;
    top: -75px;
    right: 0;
}
.style-one .pricing-shape12 {
    position: absolute;
    left: 90px;
    top: 140px;
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
/* =================================================== */
    /* educate pricing Area css style-two */
/* =================================================== */
.pricing-area.style-two {
    padding: 100px 0 100px;
    position: relative;
}
.pricing-area.style-two .section-title-space {
    margin-bottom: 60px;
}
.pricing-area.style-two .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}
.style-two .single-pricing-box {
    border-radius: 16px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgb(120 189 160 / 20%);
}
.style-two .pricing-box-inner {
    border-radius: 14px;
    background-color: #f0fbf8;
    margin: 25px 25px 25px 25px;
    padding: 40px 28px 45px 40px;
}
.style-two .pricing-box-inner.style-2 {
    background-color: #fdf7f3;
}
.style-two .pricing-box-inner.style-3 {
    background-color: #f1f9fc;
}
.style-two .pricing-head {
    position: relative;
}
.style-two .pricing-circle {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 5px;
    right: 10px;
}
.style-two .pricing-head-title h1 {
    font-size: 17px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.style-two .pricing-head-title h1::before {
    position: absolute;
    content: '';
    width: 189px;
    height: 44px;
    background-color: #ffffff;
    z-index: -1;
    left: -40px;
    top: 3px;
    border-radius: 0px 30px 30px 0px;
}
.style-two .pricing-rate {
    padding: 25px 0 10px;
}
.style-two .pricing-rate h2 {
    font-size: 50px;
    line-height: 56px;
    color: #1e1e1e;
    font-weight: 600;
}
.style-two .pricing-rate h2 span.month {
    font-size: 17px;
    color: #1e1e1e;
    font-weight: 400;
}
.style-two .pricing-rate-desc p {
    font-size: 16px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
}
.style-two .pricing-list {
    padding: 32px 0 15px 25px;
}
.style-two .pricing-list ul li {
    font-size: 16px;
    line-height: 28px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 18px;
    position: relative;
}
.style-two .pricing-list ul li::before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background-color: #ff853f;
    left: -25px;
    top: 9px;
}
.style-two .pricing-button a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color:#fff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 28px;
    background-color: #1ec28e;
    padding: 10px 33px;
    position: relative;
    z-index: 1;
}
.style-two .pricing-button a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background:#1e1e1e;
    z-index: -1;
    border-radius: 26px;
    transition: 0.5s;
}
.style-two .pricing-button a i {
    margin-left: 10px;
}
.style-two .single-pricing-box:hover .pricing-button a{
    color:#fff;
}
.style-two .single-pricing-box:hover .pricing-button a::before{
    width: 100%;
    left: 0;
}
.pricing-hand-shape {
    position: absolute;
    top: 115px;
    left: 120px;
    animation: flexAnimation 1.5s infinite ease-in-out;
}
.style-two .pricing-star-shape {
    position: absolute;
    top: 105px;
    right: 100px;
    animation: rotateme 8s linear infinite;
}


/* =================================================== */
    /* educate shop details area css*/
/* =================================================== */

.shop-detials .row.shop-bgd {
    border-radius: 10px;
    filter: drop-shadow(0px 20px 50px rgba(219,228,223,0.4));
    background-color: #ffffff;
    padding: 40px;
    position: relative;
    margin-top: -60px;
}

.shop-detials .category-title h2 {
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 600;
}

.shop-detials .category-icon-list ul li {
    display: inline-block;
    color: #ff9415;
    font-size: 18px;
}

.shop-detials li.category-text {
    font-size: 18px;
    line-height: 26px;
    color: #1e1e1e !important;
    font-weight: 400;
    margin-left: 5px;
}

.shop-detials .category-price {
    margin: 4px 0 10px;
}

.shop-detials .category-price h1 {
    font-size: 22px;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
}

.shop-detials .category-price h1 span {
    display: inline-block;
    opacity: 0.502;
    font-size: 22px;
    text-decoration: line-through;
    color: #616161;
    font-family: "Outfit";
    margin-left: 7px;
}

.shop-detials .category-count-button {
    margin-top: 40px;
    display: inline-flex;
}

.shop-detials .category-count-button {
    display: inline-flex;
    padding: 0px 0 30px;
}

.shop-detials .quantity-with_btn {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	vertical-align: middle;
}

.shop-detials .quantity .cart-plus-minus {
	position: relative;
	width: 170px;
	text-align: left;
	height: 54px;
	overflow: hidden;
	border-radius: 5px;
}

.shop-detials .quantity .cart-plus-minus>.ctnbutton {
	cursor: pointer;
	position: absolute;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	width: 38px;
	-webkit-box-align: center;
	align-items: center;
	vertical-align: middle;
	color: var(--text-white);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background: var(--theme-color1);
}

.shop-detials .quantity .cart-plus-minus>.cart-plus-minus-box {
    font-size: 16px;
    font-weight: 600;
    width: 160px;
    height: 48px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(13,14,20,0.1);
    padding: 0 30px;
}

.shop-detials .quantity .cart-plus-minus>.ctnbutton.dec {
    top: 60%;
    left: 66%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    border-radius: 0 30px 30px 0;
}

.shop-detials .quantity .cart-plus-minus>.ctnbutton.inc {
    top: 30%;
    right: 12%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
    border-radius: 30px 0 0 30px;
}

.shop-detials table.category-table td.table-title {
    font-size: 16px;
    color: #0D0E14;
    font-weight: 500;
}

.shop-detials table.category-table tr td {
    padding-right: 25px;
    padding-bottom: 12px;
}

.shop-detials table.category-table td.table-text {
    color: #616161;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
}

.shop-detials table.category-table td.table-text:before {
    position: absolute;
    content: ":";
    left: -15px;
    top: 0;
    font-size: 20px;
    color: #0D0E14;
}

.shop-detials .category-button {
    display: inline-block;
}

.shop-detials .category-button a {
    padding: 11px 30px;
    font-size: 15px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--color-white);
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: 24px;
}
.shop-detials .category-button a:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background:var(--Secondary-color);
    border-radius: 24px;
    transition: .5s;
}

.shop-detials .category-button a i {
    padding-left: 10px;
    font-size: 16px;
}

.shop-detials .category-button a:hover:before {
    left: 0;
    width: 100%;
}

.shop-detials .appoinment-tab {
    padding: 95px 0 105px;
}

.shop-detials .tab {
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.shop-detials .tab {
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    padding: 15px 44px 15px;
    border-radius: 10px;
    margin-right: 15px;
}

.shop-detials .tab::before {
    position: absolute;
    content: '';
    width: 1320px;
    height: 1px;
    background-color: rgba(30,30,30,0.10196078431372549);
    top: 70px;
}

.shop-detials .tabs {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

.shop-detials li.current a::before {
    position: absolute;
    content: '';
    width: 144px;
    height: 2px;
    background-color: #1ec28e;
    bottom: -18px;
    left: 0;
}

.shop-detials .tabs li {
    line-height: 38px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.shop-detials .appoinment-tab .tabs li a {
    outline: none;
    padding: 9px 15px;
    transition: all 0.5s ease-in-out;
    margin-right: 20px;
    border-radius: 5px;
    font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.shop-detials .tabs_item {
    display: none;
    padding: 43px 0 0;
}

.shop-detials .tabs_item:first-child {
    display: block;
}

.shop-detials .post-comment-thumb {
    float: left;
    margin-right: 20px;
}

.shop-detials .post-content {
    overflow: hidden;
}

.shop-detials ul.comment-icon-list li {
    list-style: none;
    display: inline-block;
    color: var(--Secondary-color);
    letter-spacing: .2em;
    font-size: 14px;
}

.shop-detials .product-details-respond {
    padding-top: 75px;
}

.shop-detials .sidebar-description p {
    padding: 7px 0 30px;
}

.shop-detials .sidebar-rating-list {
    padding-bottom: 23px;
}

.shop-detials h4.post-title {
    margin-top: 0;
    padding: 2px 0 9px;
    font-size: 18px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.shop-detials .shop-detials h4.post-title span {
    padding-left: 31px;
    font-size: 15px;
    color: #616161;
    font-weight: 400;
    position: relative;
}

.shop-detials .post-title span:before {
    position: absolute;
    content: "";
    left: 6px;
    top: 9px;
    height: 1px;
    width: 15px;
    background: #0D0E14;
}

.shop-detials .sidebar-title h2 {
    font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.shop-detials p.sidebar-text {
    font-size: 16px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Open Sans";
}

.shop-detials p.sidebar-text {
    font-size: 16px;
    line-height: 28px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Open Sans";
    display: inline-block;
}

.shop-detials .sidebar-rating-list ul li {
    display: inline-block;
    color:var(--Secondary-color);
}

.shop-detials .sidebar-rating-list ul {
    display: inline-block;
    margin-left: 15px;
}

.shop-detials h6.form-title {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
}

.shop-detials .form-box input {
    width: 100%;
    height: 54px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(13,14,20,0.1);
    padding-left: 20px;
    outline: 0;
}

.shop-detials .form-box textarea {
    width: 100%;
    height: 154px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(13,14,20,0.1);
    padding: 20px;
    outline: 0;
}

.shop-detials .contact-form.style-two button {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    border-radius: 25px;
    background-color: #1ec28e;
    border: 0;
    padding: 11px 39px;
    margin-top: 23px;
    transition: 0.5s;
}

.shop-detials .contact-form.style-two button:hover{
    background-color: var(--title-color);
    color: var(--color-white);
}

/* =================================================== */
    /* educate shop section area css*/
/* =================================================== */
.shop-section {
    padding: 120px 0 120px;
}

.shop-section .tabs_item {
    margin-top: 42px;
}

.shop-section .widget-category-box {
    border-radius: 8px;
    background-color: #f0fbf8;
    padding: 34px 30px 12px;
    margin-bottom: 25px;
}

.shop-section .categories-title h4 {
    font-size: 24px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    padding-bottom: 30px;
}

.shop-section label.widget-category {
    display: flex;
    font-size: 16px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
    justify-content: space-between;
    border-bottom: 1px solid rgba(30,30,30,0.10196078431372549);
    padding-bottom: 10px;
    margin-bottom: 7px;
}

.shop-section label.widget-category:last-child{
    border:none;
}

.shop-section .range-wrapper-box {
    background-color: #f0fbf8;
    padding: 40px 30px 40px;
    border-radius: 8px;
}


/*Price Range
===========================*/
.range-title h4 {
    font-size: 24px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    padding-bottom: 42px;
}

.slider-labels {
    margin-top: 15px;
}

.text-right.caption {
    display: inline-block;
}

.caption {
    display: inline-block;
}

.caption strong {
    width: 74px;
    height: 34px;
    line-height: 35px;
    background: var(--primary-color);
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: var(--color-white);
    border-radius: 3px;
    margin-right: 10px;
}

span#slider-range-value1,
span#slider-range-value2 {
    font-size: 16px;
    font-weight: 400;
    color: #062462;
}


.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    /* Fix 401 */
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.noUi-handle {
    position: relative;
    z-index: 1;
}

.noUi-stacking .noUi-handle {
    z-index: 10;
}

.noUi-state-tap .noUi-origin {
    -webkit-transition: left 0.3s, top 0.3s;
    transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

/* Painting and performance;
 */

.noUi-base,
.noUi-handle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Slider size and handle placement;
 */

.noUi-horizontal {
    height: 5px;
}

.noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -7px;
    top: -6px;
    background-color: var(--primary-color);
}

.noUi-background {
    background: #ececec;
}

.noUi-connect {
    background: var(--primary-color);
}

.noUi-origin {
    border-radius: 2px;
}

.noUi-target {
    border-radius: 2px;
}

/* Handles and cursors;
 */

.noUi-draggable {
    cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: n-resize;
}

.noUi-handle {
    cursor: default;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

.noUi-handle:active {
    border: 8px solid rgba(59, 179, 216, 0.38);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    left: -14px;
    top: -14px;
}

/* Disabled state;
 */

[disabled].noUi-connect,
[disabled] .noUi-connect {
    background: #b8b8b8;
}

[disabled].noUi-origin,
[disabled] .noUi-handle {
    cursor: not-allowed;
}

/* shop area grid */
.shop-section .shop-tab-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-section ul.tabs.active {
    display: flex;
    gap: 11px;
}

.shop-section li.diamond{
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0);
    border: 1px solid #1ec28e;
    text-align: center;
    color: var(--primary-color);
}
.shop-section li.current{
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0);
    border: 1px solid #1ec28e;
    text-align: center;
    color: var(--primary-color);
}

.shop-section li.current a{
    display: inline-block;
    color: var(--primary-color);
}

.shop-section li.shop-list {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(30,30,30,0.15)!important;
    text-align: center;
}

.shop-section li.shop-result {
    font-size: 16px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.shop-section .shop-wiget-search form {
    position: relative;
}

.shop-section .shop-wiget-search input {
    width:315px;
    height: 52px;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid rgba(30,30,30,0.1);
    padding-left: 25px;
    outline: 0;
    position: relative;
}

.shop-section .shop-wiget-search button {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: transparent;
}

.shop-section .single-products-box {
    position: relative;
    margin-bottom: 25px;
    transition: 0.5s;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(30,30,30,0.1);
    padding: 15px 15px 25px;
    text-align: center;
}

.shop-section .single-products-box:hover{
    border:1px solid var(--primary-color);
}
.shop-section .products-thumb {
    position: relative;
    overflow: hidden;
}

.shop-section .products-thumb::before {
    background-color: rgba(30,30,30,0.5019607843137255);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.shop-section .single-products-box:hover .products-thumb::before {
    left: 0;
    right: 0;
    opacity: 0;
}

.shop-section .products-thumb img {
    width: 100%;
}

.shop-section .product-title h2 {
    font-size: 22px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    margin: 23px 0 8px;
}

.shop-section ul.product-rating li {
    display: inline-block;
    color: #ff9415;
    font-size: 16px;
}

.shop-section li.ratting-text {
    font-size: 16px;
    color: #1e1e1e !important;
    font-weight: 400;
    font-family: "Outfit";
}

.shop-section .product-price p {
    font-size: 22px;
    line-height: 30px;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
    padding-top: 15px;
}

.shop-section .product-price p del {
    opacity: 0.502;
    font-size: 22px;
    line-height: 30px;
    text-decoration: line-through;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    text-align: center;
}

.shop-section .product-btn{
    position:absolute;
    transition: 0.5s;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}

.shop-section .product-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 21px;
    background-color: #1ec28e;
    padding: 6px 30px;
    transition: 0.5s;
}

.shop-section .single-products-box:hover .product-btn {
    transform: translateY(-63px);
    opacity: 1;
}

/* pagination */

.shop-section .pagination-menu {
    text-align: center;
    margin-top: 22px;
}

.shop-section .pagination-menu ul li {
    display: inline-block;
}

.shop-section .pagination-menu ul li a {
    display: inline-block;
    opacity: 0.800;
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #ffffff;
    border: 1px solid rgba(1,14,34,0.1);
    transition: 0.5s;
}

.shop-section .pagination-menu ul li a:hover{
    background-color: var(--primary-color);
    color:#fff;
}


/*==========================================
<--Start educate shopping Cart Section css-->
============================================*/
.cart-section {
    background: #f5f5f5;
    padding: 100px 0;
  }
  
  button.remove-btn:hover i {
    color: red;
  }
  
  button {
    padding: 0px;
    border: none;
    outline: none;
    background: none;
    display: inline-block;
  }
  
  .product-quantity-count input {
    border: 1px solid rgb(0 0 0 / 50%);
    padding: 8px;
    outline: 0;
    border-radius: 5px;
  }
  
  .btn.btn_primary {
    background-color:var(--primary-color) !important;
    color: #fff;
  }
  
  /* Cart Product Mobile */
  .cart-product-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .cart-product-mobile-thumb {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 135px;
    flex: 1 0 135px;
    max-width: 135px;
    border: 1px solid #e5e5e5;
  }
  
  .cart-product-mobile-remove {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    border: none;
    border-radius: 50%;
    background-color: var(--color-white);
    transition: 0.5s;
  }
  
  .cart-product-mobile-remove i {
    display: inline-block;
    border-radius: 50%;
    transition: 0.5s;
  }
  
  .cart-product-mobile-remove i:hover {
    color: #dc3545;
  }
  
  .cart-product-mobile-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .cart-product-mobile-image img {
    width: 100%;
  }
  
  .cart-product-mobile-content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  
  .cart-product-mobile-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .cart-product-mobile-title a {
    font-weight: 600;
  }
  
  .cart-product-mobile-quantity,
  .cart-product-mobile-total {
    font-size: 14px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
  }
  
  .cart-product-mobile-total {
    margin-bottom: 15px;
  }
  
  .cart-product-mobile-add-to-cart {
    margin-top: 15px;
  }
  
  .cart-product-mobile-quantity,
  .cart-product-mobile-total {
    font-size: 15px;
    line-height: 1;
    display: -webkit-box;
    margin-bottom: 10px;
    font-weight: 500;
    color: #212529;
  }
  
  .cart-product-mobile-quantity .price,
  .cart-product-mobile-total .total {
    padding-left: 5px;
  }
  
  .btn {
    border: none;
    outline: none;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    padding: 21px 42px;
    border-radius: 5px;
    display: inline-block;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: "DM Sans", sans-serif;
  }
  
  /* Cart Checkout Alert */
  .alert-btn.show-modal,
  .alert-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .alert-js.active .show-modal {
    display: none;
  }
  
  .alert-overlay {
    position: fixed;
    z-index: 922;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  .alert-js.active .alert-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  
  .alert-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 923;
  }
  
  .alert-js.active .alert-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .alert-box i {
    font-size: 70px;
    color: #27ff00;
  }
  
  .alert-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
    color: #333;
  }
  
  .alert-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-top: 15px;
    text-align: center;
    font-family: cursive;
  }
  
  .alert-box .alert-buttons {
    margin-top: 25px;
  }
  
  .alert-buttons a {
    display: inline-block;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: #313131;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.5s;
  }
  
  .alert-buttons a:first-child:hover {
    background-color: #ff0000;
  }
  
  .alert-buttons a:hover {
    background-color: #ff0000;
  }
  
  button.btn.btn_primary {
    color: #fff;
  }
  
  button.btn.btn_border.border_black {
    background:var(--primary-color);
    color: #fff;
    border:var(--primary-color) ;
  }
  
  .btn.btn_border.border_black {
    color: #555555;
    border-color: rgba(18, 16, 13, 0.3);
    transition: 0.5s;
  }
  
  .btn.btn_border.border_black:hover {
    background:var(--Secondary-color);
    border-color: #bb8173;
    color: #fff;
  }
  
  .cart-totals {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    padding: 30px;
    background-color: #f8f9fa;
  }
  
  .cart-totals h4.title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .cart-totals .table {
    margin-bottom: 20px;
  }
  
  .cart-section th {
    font-size: 16px;
  }
  
  .cart-totals .table th:first-child,
  .cart-totals .table td:first-child {
    padding-left: 10px;
  }
  
  .table > :not(caption) > * > * {
    padding: 10px;
    border-bottom-width: 0px;
    background-color: var(--bs-table-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  }
  

  /* ====== راست‌چین کردن موبایل منو ====== */
.mobile-menu-area .nav_scroll {
    direction: rtl;  /* راست‌چین کردن کل منو */
    text-align: right;
}

.mobile-menu-area .nav_scroll > li > a {
    text-align: right;
    padding: 12px 20px 12px 30px;  /* padding راست بیشتر برای زیبایی */
    direction: rtl;
}

.mobile-menu-area .nav_scroll .sub_menu {
    text-align: right;
    direction: rtl;
}

.mobile-menu-area .nav_scroll .sub_menu li a {
    text-align: right;
    padding: 10px 35px 10px 20px;  /* padding راست بیشتر */
    direction: rtl;
}

/* آیکون فلش - بچرخونه سمت چپ */
.mobile-menu-area .nav_scroll > li > a i {
    float: left;  /* فلش بره سمت چپ */
    margin-left: 0;
    margin-right: 5px;
    transform: rotate(0deg);  /* جهت فلش رو عادی کن */
}

.mobile-menu-area .nav_scroll > li > a i.rotated {
    transform: rotate(180deg);
}

/* ====== راست‌چین کردن کامل ulها و liهای موبایل ====== */
.mobile-menu-area .nav_scroll,
.mobile-menu-area .nav_scroll ul,
.mobile-menu-area .nav_scroll li {
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll > li {
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll > li > a {
    display: block;
    padding: 12px 25px 12px 20px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    direction: rtl !important;
    text-align: right !important;
    position: relative;
}

.mobile-menu-area .nav_scroll > li > a:hover {
    background: #FFF3ED;
    color: #FF6B00;
    padding-right: 30px;  /* حرکت به سمت راست */
}

/* آیکون فلش - ببر سمت چپ متن */
.mobile-menu-area .nav_scroll > li > a i {
    position: absolute;
    left: 15px;  /* فلش به سمت چپ */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.3s ease;
    font-size: 12px;
}

.mobile-menu-area .nav_scroll > li > a i.rotated {
    transform: translateY(-50%) rotate(180deg);
}

/* زیرمنوها */
.mobile-menu-area .nav_scroll .sub_menu {
    display: none;
    background: #fafafa;
    padding: 5px 0;
    list-style: none;
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll .sub_menu li {
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll .sub_menu li a {
    display: block;
    padding: 10px 40px 10px 20px;  /* padding راست بیشتر */
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    direction: rtl !important;
    text-align: right !important;
}

.mobile-menu-area .nav_scroll .sub_menu li a:hover {
    background: #FFF3ED;
    color: #FF6B00;
    padding-right: 50px;  /* حرکت به راست */
}


/*============================================
<--Start Product Section checkout css-->
=============================================*/
.shop-product-section {
    background: #f5f5f5;
    padding: 100px 0;
  }
  
  #billing-form h4 {
    color: #01101e;
  }
  
  .shop-product-section label {
    color: #01101e;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  
  .checkout-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    background-color: #f8f9fa;
  }
  
  .checkout-box:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .cart-totals .table,
  .checkout-box .table {
    --bs-table-bg: transparent;
  }
  
  /* Cart Totals */
  .cart-totals {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    padding: 30px;
    background-color: #f8f9fa;
  }
  
  .cart-totals .title {
    margin-bottom: 15px;
  }
  
  .cart-totals .table {
    margin-bottom: 20px;
  }
  
  .cart-totals .table th:first-child,
  .cart-totals .table td:first-child {
    padding-left: 0;
  }
  
  .cart-totals .table th:last-child,
  .cart-totals .table td:last-child {
    padding-right: 0;
  }
  
  /* Checkout Box */
  .checkout-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    background-color: #f8f9fa;
  }
  
  .checkout-box:not(:last-child) {
    margin-bottom: 30px;
  }
  
  /* Form */
  /* Checkbox */
  .form-check {
    min-height: auto;
    margin-bottom: 0;
  }
  
  .form-check:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .form-check .form-check-input {
    margin-top: 1px;
    border-width: 2px;
  }
  
  .form-check .form-check-input:checked,
  .form-check .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .form-check .form-check-label {
    font-size: 14px;
  }
  
  /* Checkout Payment Method */
  .checkout-payment-method .single-method:not(:last-child) {
    margin-bottom: 25px;
  }
  
  .checkout-payment-method .single-method p {
    font-size: 14px;
    margin-top: 10px;
  }
  
  /*-----------------------------------
    - Form CSS
  -----------------------------------*/
  /* Form Common Style */
  fieldset {
    padding: 20px;
    padding-top: 10px;
    border: 1px solid #e5e5e5;
  }
  
  fieldset legend {
    font-size: 16px;
    font-weight: 700;
    float: none;
    width: auto;
    margin: 0;
    padding: 0 10px;
    background-color: var(--color-white);
  }
  
  /* Form Label */
  label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Form Field Select */
  select.form-field {
    font-size: 14px;
    width: 100%;
    height: 54px;
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    background-color: var(--color-white);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 12px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  select.form-field:focus {
    border-color: transparent;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    select.form-field {
      height: 52px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    select.form-field {
      height: 44px;
    }
  }
  
  /* Form Field Input */
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"]) {
    font-size: 14px;
    width: 100%;
    height: 54px;
    padding: 10px 24px;
    border: 1px solid #e5e5e5;
    background-color: var(--text-color-white);
    outline: 0;
  }
  
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"])::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"]):-moz-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"])::-moz-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"]):-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    input.form-field:not([type="submit"]):not([type="checkbox"]):not(
        [type="radio"]
      ):not([type="range"]) {
      height: 52px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    input.form-field:not([type="submit"]):not([type="checkbox"]):not(
        [type="radio"]
      ):not([type="range"]) {
      height: 44px;
    }
  }
  
  input.form-field:not([type="submit"]):not([type="checkbox"]):not(
      [type="radio"]
    ):not([type="range"]):focus {
    border-color: #c7a17a;
  }
  
  #shipping-form h4 {
    color: #01101e;
  }
  
  .checkout-box h4 {
    color: #01101e;
  }
  
  /* Form Field Textarea */
  textarea.form-field {
    font-size: 14px;
    width: 100%;
    height: 140px;
    padding: 10px 24px;
    border: 1px solid #e5e5e5;
    background-color: var(--color-white);
  }
  
  textarea.form-field::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  textarea.form-field:-moz-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  textarea.form-field::-moz-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  textarea.form-field:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.7);
  }
  
  textarea.form-field:focus {
    border-color: transparent;
  }
  
  /* News Letter Form */
  .subscribe-newsletter {
    position: relative;
    width: 100%;
    max-width: 770px;
  }
  
  .subscribe-newsletter input[type="email"] {
    height: 60px !important;
    padding: 10px 30px !important;
    padding-right: 140px !important;
    border-radius: 100px;
    background-color: #f8f9fa;
  }
  
  @media only screen and (max-width: 767px) {
    .subscribe-newsletter input[type="email"] {
      font-size: 14px;
      height: 50px !important;
    }
  }
  
  .subscribe-newsletter input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    padding: 10px 30px;
    color: var(--text-color-white);
    border: none;
    border-radius: 100px;
    background-color: #c7a17a;
  }
  
  .subscribe-newsletter input[type="submit"]:hover {
    background-color: #bc8e5f;
  }
  
  @media only screen and (max-width: 767px) {
    .subscribe-newsletter input[type="submit"] {
      font-size: 14px;
      height: 50px;
    }
  }
  
  /* Reservation Form */
  .reservation-form {
    padding: 40px 50px;
    border: 1px solid #e5e5e5;
    background-color: var(--color-white);
    -webkit-box-shadow: 10px 25px 80px rgba(0, 0, 0, 0.05);
    box-shadow: 10px 25px 80px rgba(0, 0, 0, 0.05);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (max-width: 479px) {
    .reservation-form {
      padding: 30px;
    }
  }
  
  .reservation-form .block-title {
    margin-bottom: 20px;
  }
  
  .reservation-form .input-field {
    width: 100%;
  }
  
  .reservation-form .input-field:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .reservation-form .input-field input,
  .reservation-form .input-field textarea {
    font-size: 15px;
  }
  
  .reservation-form .input-field textarea {
    height: 120px;
  }
  
  .reservation-form .input-field input[type="submit"] {
    text-transform: uppercase;
  }
  
  /* Form */
  /* Checkbox */
  .form-check {
    min-height: auto;
    margin-bottom: 0;
  }
  
  .form-check:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .form-check .form-check-input {
    margin-top: 1px;
    border-width: 2px;
  }
  
  .form-check .form-check-input:checked,
  .form-check .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .form-check .form-check-label {
    font-size: 14px;
    line-height: 1.25;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  
  .single-method.form-check p {
    color: #000;
  }
  
  button.btn.btn-dark {
    background:var(--primary-color);
  }


/* =================================================== */
    /* educate latest blog area css */
/* =================================================== */

.blog-right-sidebar {
    filter: drop-shadow(0px 10px 20px rgba(193,208,203,0.25));
    background-color: #ffffff;
    padding: 40px 40px 35px;
    position: relative;
    border-radius: 30px;
}

.blog-right-sidebar::before {
    position: absolute;
    content: '';
    width: 418px;
    height: 6px;
    background-color: #1ec28e;
    top: 0;
    left: 0;
}

.widget.widget_search {
    position: relative;
}

.widget.widget_search input {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    background-color: #f0fbf8;
    border: 0;
    outline: 0;
    padding-left: 20px;
}

.widget.widget_search button {
    position: absolute;
    right: 20px;
    top: 13px;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #616161;
}

h4.sidebar-title {
    font-size: 24px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    padding: 32px 0 33px;
}

.widget-categories-menu ul li {
    font-size: 16px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Outfit";
    border-bottom: 1px solid rgba(30,30,30,0.10196078431372549);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.widget-categories-menu ul li:last-child{
    border:none;
}

.rpost-title h4 {
    line-height: 36px;
}

.rpost-title h4 a {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #041c33;
    font-weight: 500;
    font-family: "Outfit";
    transition: 0.5s;
}

.rpost-title h4 a:hover{
    color:var(--primary-color)
}

.widget-recent-post {
    margin-bottom: 26px;
}

.rpost-thumb {
    margin-right: 20px;
}

.rpost-title span {
    font-size: 14px;
    text-transform: uppercase;
    color: #1ec28e;
    font-weight: 400;
    font-family: "Open Sans";
}

.sidebar-tag-item ul li {
    display: inline-block;
    margin-bottom: 12px;
    margin-right: 6px;
}

.sidebar-tag-item ul li a {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid rgba(30,30,30,0.1);
    padding: 6px 25px;
    position: relative;
    z-index: 1;
}

.sidebar-tag-item ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

.sidebar-tag-item ul li a:hover:before {
    transform: scale(1);
}

.sidebar-tag-item ul li a:hover {
    color: var(--color-white);
}

/* =================================================== */
    /* educate blog details area css*/
/* =================================================== */
.blog-details-area {
    padding-bottom: 120px;
}

.blog-details-area .row.blogs-pr {
    position: relative;
    margin-top: -60px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(30,30,30,0.1);
    padding: 50px 50px 50px;
}

.blog-details-area .blog-thumb {
    position: relative;
}

.blog-details-area .blog-thumb img {
    width: 100%;
}

.blog-details-area .meta-blog a {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    display: inline-block;
    transition: 0.5s;
    border-radius: 19px;
    background-color: #1ec28e;
    padding: 5px 30px;
}

.blog-details-area .meta-blog {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.blog-details-area ul.blog-author {
    padding-top: 40px;
}

.blog-details-area .blog-content ul li {
    display: inline-block;
    margin-right: 25px;
}

.blog-details-area .blog-content ul li img {
    margin-right: 10px;
}

.blog-details-area li.autor-name span{
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.blog-details-area li.detail-calender span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.blog-details-area li.detail-calender i {
    display: inline-block;
    margin-right: 10px;
    color: var(--primary-color);
}

.blog-details-area li.details-comment {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.blog-details-area li.details-comment i {
    display: inline-block;
    color: var(--primary-color);
    margin-right: 10px;
}

.blog-details-area h2.blog-title {
    margin: 25px 0 20px;
}

.blog-details-area .blog-content h2.blog-title a {
    display: inline-block;
    font-size: 38px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
}

.blog-details-area p.blog-desc2 {
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    margin-bottom: 25px;
}

.blog-details-area .blog-quote {
    margin-top: 40px;
}

.blog-details-area .blog-quote p {
    font-size: 20px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    padding-left: 80px;
    width: 75%;
    position: relative;
}

.blog-details-area .blog-quote p::before {
    position: absolute;
    content: '';
    width: 68px;
    height: 2px;
    background-color: #1ec28e;
    left: 0;
    top: 10px;
}

.blog-details-area h2.blog-title2 a {
    display: inline-block;
    font-size: 38px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
    margin: 35px 0 13px;
}

.blog-details-area p.blog-desc3 {
    margin-bottom: 32px;
}

.blog-details-area ul.product-list li {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 400;
    margin-bottom: 15px;
}

.blog-details-area ul.product-list li i {
    display: inline-block;
    color: #1ec28e;
    font-size: 20px;
    margin-right: 15px;
}

.blog-details-area ul.blog-category li {
    display: inline-block;
    margin-right: 10px;
}

.blog-details-area ul.blog-category li a {
    padding: 8px 25px;
    display: inline-block;
    background: #f4f8f9;
    font-size: 14px;
    text-transform: uppercase;
    color: #6b7a7a;
    font-weight: 500;
    border-radius: 20px;
}

.blog-details-area ul.blog-category li a {
    padding: 8px 25px;
    display: inline-block;
    font-size: 15px;
    text-transform:capitalize;
    border-radius: 20px;
    color: #616161;
    font-weight: 400;
    font-family: "Outfit";
    background-color: #f0fbf8;
    transition: 0.5s;
}

.blog-details-area ul.blog-category li a:hover{
    background-color: var(--primary-color);
    color: var(--color-white);
}

.blog-details-area .blog-details-social-icon {
    text-align: right;
}

.blog-details-area .blog-details-social-icon ul li {
    display: inline-block;
    margin-right: 8px;
}

.blog-details-area .blog-details-social-icon ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background-color: rgba(255,255,255,0.14901960784313725);
    border: 1px solid rgba(30,30,30,0.1);
    display: inline-block;
    transition: 0.5s;
}

.blog-details-area .blog-details-social-icon ul li a:hover{
    background-color: var(--primary-color);
    color:var(--color-white);
}

.blog-details-area .row.category-space {
    margin-top: 60px;
    margin-bottom: 35px;
}

.blog-details-area .pagination_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(6,50,50,0.10196078431372549);
    border-bottom: 1px solid rgba(6,50,50,0.10196078431372549);
    padding: 30px 0 30px;
}

.blog-details-area .pagination_btn a {
    display: inline-block;
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.blog-details-area .pagination_btn.style_right a {
    display: inline-block;
    color: var(--primary-color);
}

.blog-details-area .pagination_btn a img{
    margin-right: 10px;
}

.blog-details-area .pagination_btn.style_right a img{
    margin-left: 10px;
}

.blog-details-area .blog-details-contents h3 {
    margin-bottom: 28px;
    margin-top: 90px;
    font-size: 28px;
    color: #1e1e1e;
    font-weight: 500;
}

.blog-details-area .blog-details-comment {
    margin-bottom: 20px;
    position: relative;
    padding: 45px 253px 26px 40px;
    border-radius: 20px;
    background-color: #f0fbf8;
}

.blog-details-area .blog-details-comment-thumb {
    float: left;
    margin-right: 25px;
}

.blog-details-area .blog-details-comment-reply a {
    display: inline-block;
    text-transform: uppercase;
    position: absolute;
    top: 50px;
    right: 40px;
    padding: 5px 22px;
    font-size: 15px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
    border-radius: 19px;
    background-color: #ffffff;
    border: 1px solid rgba(30,194,142,0.3);
}

.blog-details-area .blog-details-comment-content {
    overflow: hidden;
}

.blog-details-area .blog-details-comment-content h2 {
    margin-top: 4px;
    font-size: 20px;
    line-height: 30px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.blog-details-area .blog-details-comment-content span {
    margin-bottom: 21px;
    display: inline-block;
    font-size: 15px;
    color: #616161;
    font-weight: 400;
}

.blog-details-area .comment-form {
    margin-top: 75px;
}

.blog-details-area .comment-title {
    margin-bottom: 32px;
}

.blog-details-area .comment-title h3 {
    margin-bottom: 12px;
    font-size: 28px;
    color: #1e1e1e;
    font-weight: 500;
}

.blog-details-area #comment-msg-box {
    width: 100%;
    transition: .5s;
    padding: 21px 25px;
    height: 194px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid rgba(30,30,30,0.1);
    outline: 0;
}

.blog-details-area input.comment-box {
    border: 0;
    width: 100%;
    padding: 25px;
    height: 64px;
    border-radius: 5px;
    border: 1px solid rgba(30,30,30,0.1);
    margin-bottom: 30px;
    outline: 0;
}

.blog-details-area .comment-form .submit-comment {
    transition: .5s;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 182px;
    height: 50px;
    border-radius: 25px;
    background-color: #1ec28e;
    border: 0;
    margin-top: 23px;
}

/* =================================
   Start educate Conatct Area css
==================================== */
section.contact_area.inner_section {
    padding: 100px 0 120px;
    position: relative;
}

section.contact_area.inner_section .section-title-desc p {
    margin: 13px 0 30px;
}

section.contact_area.inner_section .section-sub-title h6::before {
    position: inherit;
    background-color: transparent;
}

section.contact_area.inner_section .section-sub-title h6::after {
    position: inherit;
    background-color: transparent;
}

section.contact_area.inner_section .section-sub-title h6 {
    padding-left: 0;
}

section.contact_area.inner_section .section-sub-title.three h6 img {
    margin-right: 12px;
}

.inner_section .contact_main_info {
    padding: 40px 40px 42px;
    border-radius: 20px;
    background-color: #f0fbf8;
}

.inner_section .contact_main_info .call-do-action-info {
    display: flex;
    justify-content: left;
    border-bottom: 1px dashed rgb(12 110 109 / 20%);
    padding-bottom: 25px;
    margin-bottom: 25px;
    gap: 20px;
}

.inner_section .contact_main_info .call-do-social_icon  i {
    height: 70px;
    width: 70px;
    line-height: 70px;
    border: 2px solid transparent;
    color: #1ec28e;
    transition: .5s;
    border-radius: 50%;
    background-color: #ffffff;
    text-align: center;
}

.inner_section .contact_main_info .call_info p {
    font-size: 16px;
    color: #616161;
}

.inner_section .contact_main_info .call_info h3 {
    margin: 7px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: "Outfit";
}

.inner_section .contact_main_info .call_info span {
    color: #063232;
    margin: 10px 0 0;
    display: inline-block;
}

.inner_section .contact-form-box.style_two {
    padding: 64px 60px 70px;
    border-radius: 20px;
    filter: drop-shadow(0px 20px 50px rgba(219,228,223,0.4));
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.inner_section .section_title p {
    margin: 28px 0 40px;
}

.inner_section .contact-section-title {
    margin-bottom: 45px;
}

.inner_section .contact-section-title h4 {
    font-size: 16px;
    line-height: 35px;
    color: #1ec28e;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
}

.inner_section .contact-section-title h1 {
    font-size: 34px;
    line-height: 52px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
    text-align: center;
}

.inner_section .form-box input {
    width: 100%;
    height: 54px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(6,50,50,0.1);
    margin-bottom: 20px;
    padding-left: 25px;
    outline: 0;
}

.inner_section .form-box.message textarea {
    width: 100%;
    height: 120px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(6,50,50,0.1);
    padding: 25px 25px 25px;
    outline: 0;
}

.inner_section .checkbox {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 13px 0 35px;
}

.inner_section .checkbox label {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.inner_section .contact-form button {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Outfit";
    text-align: center;
    width: 180px;
    height: 50px;
    border-radius: 25px;
    background-color: #1ec28e;
    transition: 0.5s;
}

.inner_section .contact-form button:hover{
    background-color: var(--Secondary-color);
}

.inner_section .contact_shape2 {
    position: absolute;
    right: 220px;
    bottom: 50px;
}
.contact_main_info .call-do-action-info:nth-child(3) {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact_main_info .call-do-action-info:hover .call-do-social_icon i {
    color: #fff;
    background:var(--primary-color);
}


/*--==============================================->
  <!--Start educate Error area css-->
 ==================================================-*/
 .error-area {
    background: url(../images/inner-img/440_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    height: 925px;
    position: relative;
    margin-top: -105px;
}

.error-page-content {
    position: relative;
    z-index: 1;
    padding-top: 245px;
}

.error-page-content:before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 73%;
    width: 100%;
    background: url(../images/inner-img/error_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 2%;
    left: 29%;
    transform: rotate(-3deg);
}

h2.error-title {
    margin: 200px 0 10px;
    display: inline-block;
    font-size: 40px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: "Outfit";
    text-align: center;
}

h1.error-text {
    color: #1e1e1e;
    font-size: 200px;
    font-weight: 800;
}

p.lead {
    font-size: 18px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: "Open Sans";
}

.error-info a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 37px;
    margin-top: 27px;
    display: inline-block;
    border-radius: 30px;
    background: #1ec28e;
}

.error-info a i {
    margin-right: 8px;
}
/* error shape */
.error_shape1 {
    position: absolute;
    top: 16%;
    left: 37%;
}
.error_shape2 {
    position: absolute;
    bottom: 36%;
    left: 61%;
}
.error_shape3 {
    position: absolute;
    top: 24%;
    left: 33%;
    z-index: -1;
}
.error_shape4 {
    position: absolute;
    top: 0%;
    left: 48%;
}


/*===========================
<-- Loader Css -->
=============================*/
/* PRELOADER CSS */
.loading-screen {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff853f;
    z-index: 1000;
}

.loading-screen .bar {
    position: absolute;
    height: 100%;
    width: 50%;
    background-color:#1ec28e;
}

.loading-screen .top-bar {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}

.loading-screen .down-bar {
    bottom: 0;
    top: auto;
    right: 0;
    left: auto;
}


.loading-screen .animation-preloader {
    z-index: 1000;
}

.loading-screen .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 4px solid #E2DFDD;
    border-top-color: #1a1a1a;
    width: 150px;
    height: 150px;
    margin: 0 auto 3.5em auto;
}

.loading-screen .animation-preloader .txt-loading {
    font: bold 5em "", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.loading-screen .animation-preloader .txt-loading .letters-loading {
    color: #E2DFDD;
    position: relative;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: #010103;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    position: absolute;
    top: -3px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.loading-screen .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}


@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .loading-screen .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    .loading-screen .animation-preloader .txt-loading {
        font: bold 3.5em "Inter", sans-serif;
    }
}

@media screen and (max-width: 500px) {
    .loading-screen .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .loading-screen .animation-preloader .txt-loading {
        font: bold 2em "Inter", sans-serif;
    }
}

/* ============================================= */
/* ریسپانسیو اسلایدر نظرات */
/* ============================================= */

.testi-list5 {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    
}

.testimonial-track {
    display: flex;
    cursor: pointer;
    
}

.testimonial-slide {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* استایل کارت‌های نظرات */
.single-testi-box {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    direction: rtl;
}

.single-testi-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* موبایل (عرض کمتر از 768px) */
@media (max-width: 768px) {
    .single-testi-box {
        padding: 15px;
        margin: 5px;
    }
    
    .testi-autor-thumb img {
      justify-content: center;
      align-items: center;
      margin-right: 100px;
    }
    
    .autor-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .autor-desi {
        font-size: 12px;
    }
    
    .testi-desc p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .testi-ratting ul li i {
        font-size: 12px;
    }
}

/* موبایل خیلی کوچک */
@media (max-width: 480px) {
    .single-testi-box {
        padding: 12px;
    }
    
    .testi-autor-details {
        flex-direction: column;
        text-align: center;
    }
    
    .testi-autor-thumb img {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 10px;
    }
    
    .autor-title {
        font-size: 14px;
    }
    
    .testi-desc p {
        font-size: 12px;
    }
}

/* alert-system.css */
.alert-system-overlay {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.alert-system-container {
    position: relative;
    pointer-events: auto;
    animation: slideInDown 0.4s cubic-bezier(0.21, 1.11, 0.35, 1.05);
}

.alert-system {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    min-width: 320px;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* انواع هشدارها */
.alert-system-warning {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border-right: 5px solid #f59e0b;
    border-left: 5px solid #f59e0b;
}

.alert-system-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-right: 5px solid #10b981;
    border-left: 5px solid #10b981;
}

.alert-system-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-right: 5px solid #ef4444;
    border-left: 5px solid #ef4444;
}

.alert-system-info {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 100%);
    border-right: 5px solid #3b82f6;
    border-left: 5px solid #3b82f6;
}
/* ============================================= */
/* استایل ویژه بخش نظرات - فوق العاده جذاب */
/* ============================================= */

.section-sub-title {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-offer {
    background: linear-gradient(135deg, #fff8e7 0%, #fff3d6 100%);
    padding: 18px 28px;
    border-radius: 80px;
    display: inline-block;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 500;
    color: #b45f06;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(243, 156, 18, 0.3);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    max-width: 90%;
}

.testimonial-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.5);
}

.testimonial-offer strong {
    color: #e67e22;
    font-weight: 400;
    font-size: 30px;
    background:rgb(20, 171, 0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* آیکون‌های متحرک */
.testimonial-offer::before {
    content: "✨";
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.testimonial-offer::after {
    content: "🎁";
    position: absolute;
    right: -20px;
    bottom: -10px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 2.5s ease-in-out infinite reverse;
}

/* انیمیشن شناور */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* ===== ریسپانسیو برای موبایل ===== */
@media (max-width: 768px) {
    .testimonial-offer {
        font-size: 0.8rem !important;
        padding: 12px 18px;
        border-radius: 50px;
        max-width: 95%;
    }
    
    .testimonial-offer strong {
        font-size: 0.85rem;
    }
    
    .testimonial-offer::before,
    .testimonial-offer::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-offer {
        font-size: 0.7rem !important;
        padding: 10px 14px;
        line-height: 1.5;
    }
    
    .testimonial-offer strong {
        font-size: 0.75rem;
    }
}

/* ===== تبلت ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-offer {
        font-size: 0.9rem !important;
        padding: 14px 22px;
    }
}

/* =============================================
   راهنمای اسکرول افقی برای موبایل
   فقط در صفحه‌های کوچک (موبایل) نمایش داده می‌شود
   ============================================= */

.mobile-scroll-indicator {
    display: none; /* پنهان در دسکتاپ */
    text-align: center;
    margin: 20px auto;
    padding: 15px 20px;
    background:#1ec28e;
    border-radius: 50px;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* نمایش فقط در موبایل */
@media (max-width: 768px) {
    .mobile-scroll-indicator {
        display: block;
        margin: 20px auto 30px auto;
    }
    
    /* برای اسکرول افقی در موبایل */
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .portfolio-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
    }
    
    /* مخفی کردن اسکرول بار اما حفظ قابلیت اسکرول */
    .portfolio-grid::-webkit-scrollbar {
        height: 5px;
    }
    
    .portfolio-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .portfolio-grid::-webkit-scrollbar-thumb {
        background: #ff3718;
        border-radius: 10px;
    }
}

.indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* آیکون‌های فلش متحرک */
.scroll-arrow {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.scroll-arrow i {
    font-size: 28px;
    color: white;
    animation: bounceRight 1.2s ease-in-out infinite;
}

.scroll-arrow i:nth-child(1) {
    animation-delay: 0s;
    opacity: 0.7;
}

.scroll-arrow i:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.85;
}

.scroll-arrow i:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 1;
}

/* متن راهنما */
.scroll-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

/* نوار پیشرفت متحرک */
.scroll-bar-animation {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

.scroll-progress {
    width: 40%;
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: slideProgress 1.5s ease-in-out infinite;
}

/* =============================================
   انیمیشن‌ها
   ============================================= */

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@keyframes slideProgress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(150%);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(102, 126, 234, 0.6);
        transform: scale(1.02);
    }
}

/* ============================================= */
/* اسکرول افقی برای بخش بلاگ */
/* ============================================= */

.blogs-horizontal-scroll {
    position: relative;
    margin: 40px 0;
}

.blogs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 10px 0 20px 0;
}

.blogs-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.blogs-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blogs-scroll-container::-webkit-scrollbar-thumb {
    background: #ff5e14;
    border-radius: 10px;
}

.blogs-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #e04e0a;
}

.blogs-scroll-wrapper {
    display: flex;
    flex-direction: row;
    gap: 24px;
    min-width: min-content;
}

.blogs-scroll-wrapper .col-xl-4,
.blogs-scroll-wrapper .col-lg-6,
.blogs-scroll-wrapper .col-md-6 {
    flex: 0 0 auto;
    width: 350px;
    max-width: 350px;
}

/* دکمه‌های اسکرول */
.scroll-btn-blog {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background:#218838;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scroll-btn-blog:hover {
    background: #ff5e14;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.scroll-btn-blog i {
    font-size: 20px;
    color:white;
    transition: all 0.3s ease;
}

.scroll-btn-blog:hover i {
    color: white;
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

/* وضعیت غیرفعال دکمه */
.scroll-btn-blog.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* دکمه دسکتاپ در حالت راست‌چین */
@media (min-width: 1200px) {
    .scroll-left {
        left: -25px;
    }
    .scroll-right {
        right: -25px;
    }
}

/* تنظیمات موبایل و تبلت */
@media (max-width: 768px) {
    .blogs-scroll-wrapper .col-xl-4,
    .blogs-scroll-wrapper .col-lg-6,
    .blogs-scroll-wrapper .col-md-6 {
        width: 300px;
        max-width: 300px;
    }
    
    .scroll-btn-blog {
        width: 38px;
        height: 38px;
    }
    
    .scroll-btn-blog i {
        font-size: 16px;
    }
    
    .scroll-left {
        left: -8px;
    }
    
    .scroll-right {
        right: -8px;
    }
}

/* دکمه اسکرول لمسی برای موبایل */
.scroll-indicator-mobile {
    display: none;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(90deg, transparent, rgba(255,94,20,0.1), transparent);
    border-radius: 30px;
}

.scroll-indicator-mobile .indicator-text {
    font-size: 12px;
    color: #ff5e14;
    margin-right: 10px;
}

.scroll-indicator-mobile .scroll-arrow-icon {
    display: inline-block;
    animation: bounceHorizontal 1s infinite;
}

@keyframes bounceHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator-mobile {
        display: block;
    }
    
    /* مخفی کردن دکمه‌های اسکرول در موبایل (استفاده از کشیدن دستی) */
    .scroll-btn-blog.desktop-only {
        display: none;
    }
}

/* ============================================= */
/* مخفی کردن نوار اسکرول در همه مرورگرها */
/* ============================================= */

.blogs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
    /* مخفی کردن اسکرولبار در فایرفاکس */
    scrollbar-width: none;
    
    /* مخفی کردن اسکرولبار در IE و Edge */
    -ms-overflow-style: none;
}

/* مخفی کردن اسکرولبار در کروم، سافاری و اپرا */
.blogs-scroll-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

/* برای اطمینان بیشتر - همه المنت‌های اسکرول شونده */
* {
    scrollbar-width: none; /* فایرفاکس */
    -ms-overflow-style: none; /* IE/Edge */
}

*::-webkit-scrollbar {
    display: none; /* کروم/سافاری */
    width: 0;
    height: 0;
}

a {
    text-decoration: none !important;
}


/* ============================================= */
/* استایل‌های اسلایدر افقی دوره‌ها - نسخه قوی */
/* ============================================= */

/* کانتینر افقی - با اولویت بالا */
#course-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 25px !important;
    padding: 20px 15px 30px 15px !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    
    /* حذف هر گونه گرید بودن */
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
    display: unset;
}

/* استایل اسکرول بار */
#course-container::-webkit-scrollbar {
    height: 6px !important;
}

#course-container::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 10px !important;
}

#course-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 10px !important;
}

/* کارت دوره در حالت افقی */
#course-container .grid-item,
#course-container > div:not(.loading-wrapper):not(.empty-state):not(.error-state) {
    flex: 0 0 auto !important;
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
    display: block !important;
    
    /* حذف هر گونه استایل گرید */
    grid-column: unset !important;
    grid-row: unset !important;
}

/* جلوگیری از رفتن به خط بعد */
#course-container .row,
#course-container .grid {
    display: contents !important; /* نادیده گرفتن parent ها */
}

/* دکمه‌های اسکرول */
.scroll-btn-courses {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background:  rgb(30 194 142 / 35%)!important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.scroll-btn-courses:hover {
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.scroll-left-courses {
    left: -15px !important;
    right: auto !important;
}

.scroll-right-courses {
    right: -15px !important;
    left: auto !important;
}

/* موقعیت wrapper برای دکمه‌ها */
.courses-wrapper {
    position: relative !important;
    overflow: visible !important;
}

/* راهنمای موبایل */
.mobile-scroll-guide {
    text-align: center !important;
    padding: 10px !important;
    margin-top: 5px !important;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%) !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    direction: rtl !important;
    display: block !important;
}

.mobile-scroll-guide .guide-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    color: #667eea !important;
}

.mobile-scroll-guide .guide-arrow-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 8px !important;
    font-size: 18px !important;
    color: #764ba2 !important;
}

.mobile-scroll-guide.fade-out {
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

/* لودینگ و حالت‌های خالی */
.loading-wrapper,
.empty-state,
.error-state {
    text-align: center !important;
    padding: 50px !important;
    width: 100% !important;
    flex: none !important;
}

.loader {
    width: 50px !important;
    height: 50px !important;
    border: 4px solid #f3f3f3 !important;
    border-top: 4px solid #667eea !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 15px !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .scroll-btn-courses {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
    
    .scroll-left-courses {
        left: -8px !important;
    }
    
    .scroll-right-courses {
        right: -8px !important;
    }
    
    #course-container .grid-item,
    #course-container > div {
        min-width: 240px !important;
        width: 240px !important;
    }
}

/* رنگ ایکون خبر */
.blog-btn-style5 {
    filter: brightness(0) invert(1);  /* سفید کردن کامل */
}

/* کارت بک گراند اخبار */
.single-blog-box{
    background-color: rgba(255, 133, 63,0.5) !important;
    border-radius: 20px;
}

 /* استایل پاپ آپ */
/*        .popup-overlay {*/
/*            position: fixed;*/
/*            top: 0;*/
/*            left: 0;*/
/*            width: 100%;*/
/*            height: 100%;*/
/*            background: rgba(0, 0, 0, 0.75);*/
/*            backdrop-filter: blur(5px);*/
/*            z-index: 9999;*/
/*            display: none;*/
/*            justify-content: center;*/
/*            align-items: center;*/
/*            animation: fadeIn 0.3s ease;*/
/*        }*/
        
/*        .popup-container {*/
/*            background: linear-gradient(135deg, #ffffff 0%, #f0f5ee 100%);*/
/*            border-radius: 32px;*/
/*            max-width: 500px;*/
/*            width: 90%;*/
/*            margin: 20px;*/
/*            position: relative;*/
/*            overflow: hidden;*/
/*            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);*/
/*            animation: slideUp 0.4s ease;*/
/*            border: 1px solid rgba(249, 115, 22, 0.2);*/
/*        }*/
        
        /* هدر پاپ آپ با گرادیان سبز و نارنجی */
/*        .popup-header {*/
/*            background: linear-gradient(135deg, #0d3b0f 0%, #1a6b1a 50%, #f97316 100%);*/
/*            padding: 30px 25px 25px;*/
/*            text-align: center;*/
/*            position: relative;*/
/*        }*/
        
/*        .popup-header::before {*/
/*            content: '🎁';*/
/*            position: absolute;*/
/*            top: -15px;*/
/*            right: 20px;*/
/*            font-size: 3rem;*/
/*            opacity: 0.3;*/
/*            transform: rotate(-15deg);*/
/*        }*/
        
/*        .popup-header::after {*/
/*            content: '✨';*/
/*            position: absolute;*/
/*            bottom: -15px;*/
/*            left: 20px;*/
/*            font-size: 2rem;*/
/*            opacity: 0.3;*/
/*        }*/
        
/*        .popup-icon {*/
/*            font-size: 4rem;*/
/*            margin-bottom: 10px;*/
/*            display: inline-block;*/
/*            animation: bounce 1s ease infinite;*/
/*        }*/
        
/*        .popup-header h3 {*/
/*            color: white;*/
/*            font-size: 1.6rem;*/
/*            font-weight: 800;*/
/*            margin-bottom: 8px;*/
/*            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);*/
/*        }*/
        
/*        .popup-header p {*/
/*            color: rgba(255,255,255,0.9);*/
/*            font-size: 0.9rem;*/
/*        }*/
        
        /* محتوای پاپ آپ */
/*        .popup-content {*/
/*            padding: 30px 25px;*/
/*            text-align: center;*/
/*        }*/
        
/*        .discount-badge {*/
/*            background: linear-gradient(135deg, #f97316, #f59e0b);*/
/*            color: white;*/
/*            padding: 12px 20px;*/
/*            border-radius: 50px;*/
/*            display: inline-block;*/
/*            font-weight: 800;*/
/*            font-size: 1rem;*/
/*            margin-bottom: 20px;*/
/*            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);*/
/*        }*/
        
/*        .popup-content h4 {*/
/*            color: #1a4a1a;*/
/*            font-size: 1.3rem;*/
/*            margin-bottom: 12px;*/
/*        }*/
        
/*        .popup-content .offer-text {*/
/*            color: #f97316;*/
/*            font-size: 1.8rem;*/
/*            font-weight: 800;*/
/*            margin: 15px 0;*/
/*        }*/
        
/*        .popup-content .description {*/
/*            color: #5a6e52;*/
/*            margin-bottom: 25px;*/
/*            line-height: 1.8;*/
/*        }*/
        
        /* دکمه‌ها */
/*        .popup-buttons {*/
/*            display: flex;*/
/*            flex-direction: column;*/
/*            gap: 12px;*/
/*            margin-top: 10px;*/
/*        }*/
        
/*        .btn-survey {*/
/*            background: linear-gradient(135deg, #f97316, #f59e0b);*/
/*            color: white;*/
/*            padding: 14px 25px;*/
/*            border: none;*/
/*            border-radius: 50px;*/
/*            font-size: 1rem;*/
/*            font-weight: 700;*/
/*            cursor: pointer;*/
/*            transition: all 0.3s ease;*/
/*            display: flex;*/
/*            align-items: center;*/
/*            justify-content: center;*/
/*            gap: 10px;*/
/*        }*/
        
/*        .btn-survey:hover {*/
/*            transform: translateY(-2px);*/
/*            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);*/
/*        }*/
        
/*        .btn-later {*/
/*            background: transparent;*/
/*            color: #1a6b1a;*/
/*            padding: 12px 25px;*/
/*            border: 2px solid #1a6b1a;*/
/*            border-radius: 50px;*/
/*            font-size: 0.9rem;*/
/*            font-weight: 600;*/
/*            cursor: pointer;*/
/*            transition: all 0.3s ease;*/
/*        }*/
        
/*        .btn-later:hover {*/
/*            background: #1a6b1a;*/
/*            color: white;*/
/*        }*/
        
/*        .btn-close {*/
/*            background: transparent;*/
/*            color: #999;*/
/*            padding: 10px;*/
/*            border: none;*/
/*            cursor: pointer;*/
/*            font-size: 0.85rem;*/
/*            transition: 0.3s;*/
/*        }*/
        
/*        .btn-close:hover {*/
/*            color: #f97316;*/
/*        }*/
        
        /* دکمه بستن (X) */
/*        .close-btn {*/
/*            position: absolute;*/
/*            top: 15px;*/
/*            left: 20px;*/
/*            background: rgba(255,255,255,0.2);*/
/*            border: none;*/
/*            color: white;*/
/*            font-size: 1.2rem;*/
/*            cursor: pointer;*/
/*            width: 30px;*/
/*            height: 30px;*/
/*            border-radius: 50%;*/
/*            display: flex;*/
/*            align-items: center;*/
/*            justify-content: center;*/
/*            transition: 0.3s;*/
/*        }*/
        
/*        .close-btn:hover {*/
/*            background: rgba(255,255,255,0.4);*/
/*            transform: rotate(90deg);*/
/*        }*/
        
        /* انیمیشن‌ها */
/*        @keyframes fadeIn {*/
/*            from { opacity: 0; }*/
/*            to { opacity: 1; }*/
/*        }*/
        
/*        @keyframes slideUp {*/
/*            from {*/
/*                opacity: 0;*/
/*                transform: translateY(50px);*/
/*            }*/
/*            to {*/
/*                opacity: 1;*/
/*                transform: translateY(0);*/
/*            }*/
/*        }*/
        
/*        @keyframes bounce {*/
/*            0%, 100% { transform: translateY(0); }*/
/*            50% { transform: translateY(-8px); }*/
/*        }*/
        
        /* استایل‌های موقت برای نمایش محتوای صفحه */
/*        .hero {*/
/*            background: linear-gradient(135deg, #0d3b0f 0%, #1a6b1a 50%, #2d9e2d 100%);*/
/*            color: white;*/
/*            padding: 100px 20px;*/
/*            text-align: center;*/
/*        }*/
        
/*        .hero h1 {*/
/*            font-size: 2rem;*/
/*            margin-bottom: 20px;*/
/*        }*/
        
/*        .course-card {*/
/*            background: white;*/
/*            border-radius: 20px;*/
/*            padding: 30px;*/
/*            margin: 20px 0;*/
/*            border-top: 4px solid #f97316;*/
/*            box-shadow: 0 5px 20px rgba(0,0,0,0.05);*/
/*        }*/

        /* ========================================== */
/* پاپ آپ ریسپانسیو - مخصوص موبایل */
/* ========================================== */

/* استایل‌های پایه پاپ آپ (همان‌هایی که داری) */
/*.popup-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.8);*/
/*    backdrop-filter: blur(5px);*/
/*    z-index: 9999;*/
/*    display: none;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.popup-container {*/
/*    background: linear-gradient(135deg, #ffffff 0%, #f0f5ee 100%);*/
/*    border-radius: 28px;*/
/*    max-width: 500px;*/
/*    width: 90%;*/
/*    margin: 20px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);*/
/*    animation: slideUp 0.4s ease;*/
/*}*/

/* ========== ریسپانسیو برای موبایل (عرض کمتر از 768px) ========== */
/*@media (max-width: 768px) {*/
/*    .popup-container {*/
/*        width: 92%;*/
/*        max-width: none;*/
/*        margin: 15px;*/
/*        border-radius: 22px;*/
/*    }*/
    
/*    .popup-header {*/
/*        padding: 20px 18px 18px;*/
/*    }*/
    
/*    .popup-icon {*/
/*        font-size: 2.5rem;*/
/*    }*/
    
/*    .popup-header h3 {*/
/*        font-size: 1.3rem;*/
/*    }*/
    
/*    .popup-header p {*/
/*        font-size: 0.75rem;*/
/*    }*/
    
/*    .popup-content {*/
/*        padding: 22px 18px;*/
/*    }*/
    
/*    .discount-badge {*/
/*        padding: 8px 16px;*/
/*        font-size: 0.8rem;*/
/*    }*/
    
/*    .popup-content h4 {*/
/*        font-size: 1.1rem;*/
/*    }*/
    
/*    .offer-text {*/
/*        font-size: 1.3rem;*/
/*        margin: 10px 0;*/
/*    }*/
    
/*    .description {*/
/*        font-size: 0.8rem;*/
/*        margin-bottom: 18px;*/
/*    }*/
    
/*    .popup-buttons {*/
/*        gap: 10px;*/
/*    }*/
    
/*    .btn-survey {*/
/*        padding: 12px 18px;*/
/*        font-size: 0.85rem;*/
/*    }*/
    
/*    .btn-later, .btn-close {*/
/*        padding: 10px 18px;*/
/*        font-size: 0.8rem;*/
/*    }*/
    
/*    .close-btn {*/
/*        top: 12px;*/
/*        left: 15px;*/
/*        width: 28px;*/
/*        height: 28px;*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/

/* ========== موبایل خیلی کوچک (عرض کمتر از 480px) ========== */
/*@media (max-width: 480px) {*/
/*    .popup-container {*/
/*        width: 95%;*/
/*        border-radius: 20px;*/
/*    }*/
    
/*    .popup-header {*/
/*        padding: 18px 15px 15px;*/
/*    }*/
    
/*    .popup-icon {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .popup-header h3 {*/
/*        font-size: 1.2rem;*/
/*    }*/
    
/*    .popup-header p {*/
/*        font-size: 0.7rem;*/
/*    }*/
    
/*    .popup-content {*/
/*        padding: 18px 15px;*/
/*    }*/
    
/*    .discount-badge {*/
/*        padding: 6px 12px;*/
/*        font-size: 0.7rem;*/
/*    }*/
    
/*    .popup-content h4 {*/
/*        font-size: 1rem;*/
/*    }*/
    
/*    .offer-text {*/
/*        font-size: 1.1rem;*/
/*        margin: 8px 0;*/
/*    }*/
    
/*    .description {*/
/*        font-size: 0.75rem;*/
/*        margin-bottom: 15px;*/
/*    }*/
    
/*    .btn-survey {*/
/*        padding: 10px 15px;*/
/*        font-size: 0.8rem;*/
/*    }*/
    
/*    .btn-later, .btn-close {*/
/*        padding: 8px 15px;*/
/*        font-size: 0.75rem;*/
/*    }*/
    
/*    .close-btn {*/
/*        top: 10px;*/
/*        left: 12px;*/
/*        width: 25px;*/
/*        height: 25px;*/
/*        font-size: 0.9rem;*/
/*    }*/
/*}*/

/* ========== نمایشگرهای خیلی بزرگ (دسکتاپ عریض) ========== */
/*@media (min-width: 1400px) {*/
/*    .popup-container {*/
/*        max-width: 550px;*/
/*    }*/
    
/*    .popup-header h3 {*/
/*        font-size: 1.8rem;*/
/*    }*/
    
/*    .popup-content h4 {*/
/*        font-size: 1.4rem;*/
/*    }*/
    
/*    .offer-text {*/
/*        font-size: 2rem;*/
/*    }*/
/*}*/

/* انیمیشن‌ها */
/*@keyframes slideUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(50px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

