/*==== font size ====*/
/*==== font weight ====*/
/*==== color ====*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html {
    height: 100%;
    background: 
        radial-gradient(ellipse 120% 80% at 85% 5%, var(--spotlight-red) 0%, rgba(168, 43, 53, 0.7) 8%, rgba(168, 43, 53, 0.5) 15%, rgba(168, 43, 53, 0.3) 25%, rgba(168, 43, 53, 0.15) 40%, rgba(168, 43, 53, 0.05) 55%, transparent 75%),
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--spotlight-dark) 30%, #0a0a0a 70%, #000000 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
} */

:root {
    /* Colors */
    --primary-black: #050505;
    --secondary-black: #121212;
    --black: #000000;
    --black-rgb: 0, 0, 0;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* Brand/Accents */
    --cyber-red: #D62828;
    /* legacy alias */
    --cyber-red-dark: #921010;
    --cyber-green: #10b981;
    --accent-red: #D62828;
    --accent-red-rgb: 214, 40, 40;
    --accent-red-light: #ef6767;
    --accent-red-glow-rgb: 220, 38, 38;
    --accent-orange: #f68a03;
    --accent-blue: #358ff7;
    --accent-purple: #7e3cf9;
    --accent-green: #38bb0c;
    --accent-coral: #dd493d;
    --accent-yellow: #f1e77f;
    --facebook-blue: #3e5b99;
    --twitter-blue: #3aaae1;
    --youtube-red: #ff0000;
    --crimson: #DC143C;
    --brand-strong-blue: #0c60db;
    --almost-black: #0d0d0d;
    --spotlight-red: #A82B35;
    --spotlight-dark: #0F0F0F;
    --spotlight-red: #A82B35;
    --spotlight-dark: #0F0F0F;

    /* Text/Neutrals */
    --heading-color: #FFFFFF;
    --heading-color-rgb: 255, 255, 255;
    --text-primary: #F3F4F6;
    --text-secondary: #f3f4f6be;
    --text-muted: #737373;
    --text-body: #7f8897;
    --neutral-eee: #eeeeee;
    --gray-50: #f7f7ff;
    --gray-100: #f6f6f6;
    --neutral-500-rgb: 128, 137, 150;
    /* for rgba(var(--neutral-500-rgb), <alpha>) */

    /* Gradients */
    --bg-flamenco-gradient: radial-gradient(circle at 50% 50%, #7f1d1d 0%, #050505 70%);

    /* Borders/Surfaces */
    --border-color: #333333;
    --glass-bg: rgba(26, 26, 26, 0.8);

    /* Shadows */
    --shadow-base-rgb: 82, 85, 90;
    --indigo-shadow-rgb: 14, 16, 48;
    --shadow-lg: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    --shadow-md: 0 0 20px rgba(var(--shadow-base-rgb), 0.2);
    --shadow-soft: 0 7px 10px rgba(0, 0, 0, 0.075);
    --shadow-card: 0 10px 40px rgba(var(--shadow-base-rgb), 0.1);
    --shadow-blue-soft: 0 0 40px rgba(var(--indigo-shadow-rgb), 0.07);
    --shadow-red-glow-sm: 0 0 10px rgba(var(--accent-red-glow-rgb), 0.2);
    --shadow-red-glow-md: 0 0 20px rgba(var(--accent-red-glow-rgb), 0.3);
    --shadow-red-glow-lg: 0 0 30px rgba(var(--accent-red-glow-rgb), 0.3);

    /* Typography */
    --font-ui: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-sans: "Inter", sans-serif;
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-lg: 1.125rem;
    /* 18px */
    --fs-xl: 1.25rem;
    /* 20px */
    --fs-2xl: 1.5rem;
    /* 24px */
    --fs-3xl: 2rem;
    /* 32px */
    --fs-4xl: 2.5rem;
    /* 40px */
    --fs-5xl: 3rem;
    /* 48px */
    --fs-6xl: 4rem;
    /* 64px */
    --lh-base: 1.6;

    /* Spacing */
    --sp-1: 0.25rem;
    /* 4px */
    --sp-2: 0.5rem;
    /* 8px */
    --sp-3: 0.75rem;
    /* 12px */
    --sp-4: 1rem;
    /* 16px */
    --sp-6: 1.5rem;
    /* 24px */
    --sp-8: 2rem;
    /* 32px */
    --sp-12: 3rem;
    /* 48px */
    --sp-16: 4rem;
    /* 64px */

    /* Radius */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.375rem;
    /* 6px */
    --radius-lg: 0.5rem;
    /* 8px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-full: 100%;
}

body {
    font-family: var(--font-ui);
    background: 
        radial-gradient(ellipse 80% 60% at 85% 5%, var(--spotlight-red) 0%, rgba(168, 43, 53, 0.6) 6%, rgba(168, 43, 53, 0.4) 12%, rgba(168, 43, 53, 0.2) 20%, rgba(168, 43, 53, 0.1) 30%, rgba(168, 43, 53, 0.03) 40%, transparent 60%),
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, var(--spotlight-dark) 30%, #0a0a0a 70%, #000000 100%);
    /* background-attachment: fixed; */
    background-size: 100% 100%;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Global Premium Background - Applied to body element above */

/* Removed additional background layers - using single global background */

@keyframes spotlightPulse {
    /* 0% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.05) rotate(1deg);
    } */
}

@keyframes spotlightShimmer {
    /* 0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02) rotate(-0.5deg);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.01) rotate(0.5deg);
    } */
}

/* Navigation Styles */
/* Navbar default transparent */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* After scroll */
.navbar.scrolled {
    background: var(--glass-bg) !important;
    /* semi-transparent glass effect */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(var(--accent-red-glow-rgb), 0.1);
}

.cyber-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.cyber-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

.cyber-link:hover {
    color: #dc2626 !important;
}

.cyber-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--cyber-red);
    transition: all 0.3s ease;
}

.cyber-link:hover::after {
    width: 100%;
    left: 0;
}

.cyber-btn {
    background: var(--cyber-red);
    border: 2px solid var(--cyber-red);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    /* Reduced padding for smaller size */
    border-radius: 0.375rem;
    /* transition: all 0.3s ease; */
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cyber-btn:hover {
    background: var(--cyber-red);
    color: var(--text-primary);
    /* box-shadow: var(--shadow-red-glow-md); */
    /* transform: translateY(-2px); */
}

.cyber-btn-outline {
    background: transparent;
    border: 2px solid var(--cyber-red);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    /* Reduced padding for smaller size */
    border-radius: 0.375rem;
    /* transition: all 0.3s ease; */
    text-decoration: none;
    display: inline-block;
}

.cyber-btn-outline:hover {
    background: var(--cyber-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-red-glow-md);
    /* transform: translateY(-2px); */
}

#auth-buttons .cyber-btn,
#auth-buttons .cyber-btn-outline {
    padding-top: 0.3rem !important;
    /* Further reduced for nav buttons */
    padding-bottom: 0.4rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 0.8rem;
    /* Smaller font for consistency */
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.glitch::before {
    color: var(--cyber-red);
    z-index: -1;
    animation: glitch1 2s infinite;
}

.glitch::after {
    color: var(--cyber-green);
    z-index: -2;
    animation: glitch2 2s infinite;
}

@keyframes glitch1 {

    0%,
    100% {
        transform: translate(0);
        opacity: 0;
    }

    5% {
        transform: translate(-2px, -2px);
        opacity: 0.7;
    }

    10% {
        transform: translate(2px, 2px);
        opacity: 0;
    }
}

@keyframes glitch2 {

    0%,
    100% {
        transform: translate(0);
        opacity: 0;
    }

    5% {
        transform: translate(2px, -2px);
        opacity: 0.7;
    }

    10% {
        transform: translate(-2px, 2px);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Animated background elements */
.hero-section .star {
    position: absolute;
    animation: twinkle 2s ease-in-out infinite;
}

.hero-section .star-1 {
    top: 15%;
    right: 35%;
    font-size: 3rem;
    color: #ffd700;
    animation-delay: 0s;
}

.hero-section .star-2 {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    color: #ffb700;
    animation-delay: 0.5s;
}

.hero-section .star-3 {
    bottom: 35%;
    left: 15%;
    font-size: 2.5rem;
    color: #ffd700;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(180deg);
    }
}

.hero-section .cloud {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    animation: floatCloud 8s ease-in-out infinite;
}

.hero-section .cloud-1 {
    top: 40%;
    right: 5%;
}

@keyframes floatCloud {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
    }
}

.hero-section .content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-section .main-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-section .main-title .highlight {
    color: var(--cyber-red);
    display: block;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Hero Illustration */
.hero-section .illustration-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section .user-avatars {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: -15px;
}

.hero-section .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: -15px;
    animation: bounceIn 0.6s ease-out;
    animation-fill-mode: both;
}

.hero-section .avatar:nth-child(1) {
    background: linear-gradient(135deg, var(--cyber-red), var(--cyber-red-dark));
    animation-delay: 1.2s;
}

.hero-section .avatar:nth-child(2) {
    background: linear-gradient(135deg, #ff69b4, #c71585);
    animation-delay: 1.3s;
}

.hero-section .avatar:nth-child(3) {
    background: linear-gradient(135deg, #8b008b, #4b0082);
    animation-delay: 1.4s;
}

.hero-section .avatar:nth-child(4) {
    background: linear-gradient(135deg, #b8860b, #daa520);
    animation-delay: 1.5s;
}

.hero-section .avatar.count {
    background: #ffd700;
    color: var(--secondary-black);
    font-size: 0.9rem;
    font-weight: 700;
    animation-delay: 1.6s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section .hero-illustration-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-top: 80px;
    animation: float 3s ease-in-out infinite;
}

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

/* Hero Responsive Design */
@media (max-width: 992px) {
    .hero-section .main-title {
        font-size: 3rem;
    }
    .hero-section .hero-illustration-image {
        margin-top: 60px;
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero-section .main-title {
        font-size: 2.5rem;
    }
    .hero-section .subtitle {
        font-size: 1rem;
    }
    .hero-section .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .hero-section .illustration-section {
        margin-top: 3rem;
    }
    .hero-section .hero-illustration-image {
        transform: scale(0.7);
    }
    .hero-section .user-avatars {
        top: -30px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 576px) {
    .hero-section .main-title {
        font-size: 2rem;
    }
    .hero-section .hero-illustration-image {
        transform: scale(0.6);
    }
}

.hero-title {
    font-size: var(--fs-6xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cyber-text {
    color: var(--text-secondary);
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats .stat-number {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--text-primary);
    display: block;
}

.hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-image {
    border: 2px solid var(--cyber-red);
    box-shadow: var(--shadow-red-glow-lg);
    transition: all 0.3s ease;
}

.cyber-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(var(--accent-red-glow-rgb), 0.5);
}

.video-container {
    background: var(--secondary-black);
    border: 2px solid var(--cyber-red);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(var(--accent-red-glow-rgb), 0.2);
}

/* Section Styles */
.categories-section,
.courses-section {
    background: transparent;
    position: relative;
}

/* .section-header {
    margin-bottom: 4rem;
} */

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-title {
    color: var(--cyber-red-dark);
}

/* Category Cards */
/* === CYBER CATEGORIES SECTION === */
.categories-section {
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

/* Moving grid background */
.categories-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px var(--cyber-red);
    }

    to {
        text-shadow: 0 0 30px var(--cyber-red-dark), 0 0 60px var(--cyber-red);
    }
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

span.category-card-categories {
    color: var(--cyber-red);
}

/* === CATEGORY CARD EFFECTS === */
.category-card {
    position: relative;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(30, 30, 30, 0.7));
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); */
    height: 200px;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.category-card:nth-child(6) {
    animation-delay: 0.6s;
}

.category-card:nth-child(7) {
    animation-delay: 0.7s;
}

.category-card:nth-child(8) {
    animation-delay: 0.8s;
}

.category-card:nth-child(9) {
    animation-delay: 0.9s;
}

.category-card:nth-child(10) {
    animation-delay: 1.0s;
}

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



/* Image */
.category-image {
    position: relative;
    overflow: hidden;
    margin: 0.5rem;
    margin-bottom: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.05), transparent);
}

.category-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.9) contrast(1.1);
}

/* Category Name */
.category-content {
    padding: 0.75rem 0.5rem 1rem;
    text-align: center;
    z-index: 3;
    position: relative;
}

.category-name {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-bottom: 0;
    position: relative;
}

.category-name-small {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design for Category Cards */
@media (min-width: 1200px) {
    .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .col-lg-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .category-card {
        height: 180px;
    }
    
    .category-image img {
        height: 100px;
    }
    
    .category-content {
        padding: 0.5rem 0.25rem 0.75rem;
    }
    
    .category-name, .category-name-small {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .category-card {
        height: 160px;
    }
    
    .category-image img {
        height: 90px;
    }
    
    .category-name, .category-name-small {
        font-size: 0.75rem;
    }
    
    .category-content {
        padding: 0.4rem 0.2rem 0.6rem;
    }
}

/* Course Cards */
.course-category {
    margin-bottom: 4rem;
}

.course-badge {
    display: inline-block;
    background: var(--cyber-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* ===============================
   CYBERSECURITY COURSE CARDS
   =============================== */

.cyber-course-card {
    background: linear-gradient(145deg, var(--primary-black), var(--secondary-black));
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 8px 32px rgba(214, 40, 40, 0.1); */
}

.cyber-course-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-red);
    /* box-shadow: 0 12px 40px rgba(214, 40, 40, 0.3); */
}

/* Header Image Section */
.cyber-course-header {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.cyber-course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(0, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cyber-course-card:hover .cyber-course-image {
    transform: scale(1.1);
}

.cyber-course-card:hover .image-overlay {
    opacity: 1;
}

/* Badge */
.cyber-course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(44, 31, 31, 0.9);
    color: #f5ebeb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

/* Wishlist Icon */
.cyber-wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cyber-wishlist-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00ffff;
    transform: scale(1.1);
}

.cyber-wishlist-icon i {
    color: #00d4ff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cyber-wishlist-icon:hover i {
    color: #00ffff;
}

.cyber-wishlist-icon .fas.fa-heart {
    color: #ff0080 !important;
}

/* Card Content */
.cyber-course-content {
    padding: 24px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Ensure consistent content area height */
}

/* Status Badges Container */
.cyber-status-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 8px;
    min-height: 16px;
    justify-content: flex-start;
}

/* Status Badge */
.cyber-status-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
}

.cyber-status-badge.bestseller,
.cyber-status-badge.featured,
.cyber-status-badge.rated {
    background: linear-gradient(45deg, var(--cyber-red), var(--cyber-red-dark));
    color: var(--white);
    box-shadow: 0 2px 4px rgba(214, 40, 40, 0.3);
}

/* Title */
.cyber-course-link {
    text-decoration: none;
    margin-bottom: 12px;
}

.cyber-course-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.08rem; /* Fixed height for exactly 2 lines */
    min-height: 3.08rem;
}

.cyber-course-link:hover .cyber-course-title {
    color: #00d4ff;
}

/* Description */
.cyber-course-description {
    color: #b0b7c3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.05rem; /* Fixed height for exactly 3 lines */
    min-height: 4.05rem;
}

/* Meta Information */
.cyber-course-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 12px 20px;
    gap: 8px;
    border-top: 1px solid rgba(214, 40, 40, 0.2);
    border-bottom: 1px solid rgba(214, 40, 40, 0.2);
}

.cyber-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.cyber-meta-item i {
    font-size: 0.8rem;
}

.cyber-meta-divider {
    width: 100%;
    height: 1px;
    background: rgba(214, 40, 40, 0.3);
    margin: 4px 0;
}

/* Footer Section */
.cyber-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px;
    margin-top: auto;
}

.cyber-course-action {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(214, 40, 40, 0.3);
    background: rgba(214, 40, 40, 0.05);
}

.cyber-course-action:hover {
    color: var(--white);
    background: var(--cyber-red);
    border-color: var(--cyber-red);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
}

.cyber-course-action i {
    transition: transform 0.3s ease;
}

.cyber-course-action:hover i {
    transform: translateX(2px);
}

/* Price Section */
.cyber-course-price {
    text-align: right;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
    display: block;
}

.discount-price {
    color: var(--cyber-red);
    font-size: 1.1rem;
    font-weight: 700;
}

.current-price {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.free-price {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    background: var(--cyber-red);
    padding: 4px 12px;
    border-radius: 20px;
    /* border: 1px solid var(--cyber-red-dark); */
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-course-header {
        height: 180px;
    }
    
    .cyber-course-content {
        padding: 20px 16px 16px;
    }
    
    .cyber-course-title {
        font-size: 1rem;
    }
    
    .cyber-course-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .cyber-course-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 0 16px 16px;
    }
    
    .cyber-course-action {
        justify-content: center;
    }
    
    .cyber-course-price {
        text-align: center;
    }
}

/* ===============================
   OPTIMIZED CATEGORY TABS
   =============================== */

.course-category-tabs {
    padding: 0;
    margin-bottom: 3rem !important;
}

.category-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
}

.category-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 127, 0.2), transparent);
    transition: left 0.4s ease;
    z-index: -1;
}

.category-tab-btn:hover::before {
    left: 100%;
}

.category-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(220, 38, 127, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 127, 0.15);
}

.category-tab-btn.active {
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.15), rgba(79, 70, 229, 0.15));
    border-color: rgba(220, 38, 127, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(220, 38, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc267f, transparent);
}

/* Tab Content Transitions */
.tab-content {
    position: relative;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: none;
}

.tab-pane.show.active {
    opacity: 1;
    display: block;
}

.tab-pane .cyber-course-card {
    transition: all 0.4s ease;
}

/* Empty State Styling */
.empty-state {
    padding: 4rem 2rem;
    border-radius: 12px;
    /* background: rgba(15, 23, 42, 0.6); */
    border: 1px solid rgba(220, 38, 127, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.empty-state i {
    animation: float 3s ease-in-out infinite;
}

/* Course Grid Improvements */
.courses-section .row {
    margin: 0 -12px;
}

.courses-section .row > [class*="col-"] {
    padding: 0 12px;
    margin-bottom: 24px;
}

/* Enhanced Course Card Spacing */
.cyber-course-card {
    margin-bottom: 0;
}

/* Responsive Category Tabs */
@media (max-width: 768px) {
    .course-category-tabs {
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .category-tab-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .courses-section .row > [class*="col-"] {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .course-category-tabs {
        gap: 0.4rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .category-tab-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        border-radius: 20px;
    }
    
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .courses-section .row {
        margin: 0 -8px;
    }
    
    .courses-section .row > [class*="col-"] {
        padding: 0 8px;
        margin-bottom: 16px;
    }
}

.wishlist-icon {
    position: absolute;
    top: 1rem;
    /* same distance from top as level */
    right: 1rem;
    /* keep at top-right corner */
    width: 35px;
    height: 35px;
    background-color: rgba(var(--white-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    /* higher than level so it floats above */
}

.wishlist-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wishlist-icon i.la-heart {
    color: #e74c3c;
    /* filled heart color */
}

.wishlist-icon i.la-heart-o {
    color: #555;
    /* empty heart color */
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyber-red);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.course-card {
    background: linear-gradient(135deg,
            var(--primary-black),
            var(--secondary-black),
            var(--primary-black));
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); */
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-red);
    box-shadow: 0 15px 30px rgba(var(--accent-red-glow-rgb), 0.1);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-level {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cyber-red);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

.course-content {
    padding: 1.5rem;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.course-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.course-duration {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.course-price {
    color: var(--cyber-red);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Footer */
.footer-section {
    background: transparent;
    padding: 4rem 0 2rem;
}
.footer-section .row{
    display: flex; flex-wrap: nowrap;
}
.footer-title {
    color: var(--cyber-red);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--cyber-red);
    border-color: var(--cyber-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--cyber-red);
}

.contact-item {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    color: var(--cyber-red);
    margin-top: 0.125rem;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 3rem 0 2rem;
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--cyber-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .cyber-btn,
    .hero-buttons .cyber-btn-outline {
        display: block;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 250px;
    }

    .hero-stats .row {
        margin-top: 2rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .category-title {
        font-size: 1.5rem;
    }

    .cyber-btn,
    .cyber-btn-outline {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-red-dark);
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
}

.spinner {
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

.spinner .path {
    stroke: var(--cyber-red);
    stroke-linecap: round;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Enhanced Focus States */
.cyber-btn:focus,
.cyber-btn-outline:focus,
.cyber-link:focus {
    /* outline: 2px solid var(--cyber-red); */
    outline-offset: 2px;
}

/* Ensure all major containers use global background */
.container, .container-fluid, main, section:not(.hero-section):not(.categories-section):not(.courses-section):not(.career-stories-section):not(.footer-section) {
    background: transparent !important;
}

/* Prevent any conflicting backgrounds */
.row, .col, [class*="col-"] {
    background: transparent;
}

.dropdown-menu .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--accent-red);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===============================
   CAREER STORIES SECTION STYLES
   =============================== */

.career-stories-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding: 5rem 0;
}

/* Left Column Content */
.career-content {
    position: relative;
    z-index: 10;
}

.career-headline {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.career-headline .highlight-text {
    color: var(--cyber-red);
    /* background: linear-gradient(45deg, var(--cyber-red), #ff6b6b); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate; */
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(220, 38, 38, 0.3); }
    100% { text-shadow: 0 0 20px rgba(220, 38, 38, 0.6); }
}

.career-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 90%;
}

/* Career Statistics */
.career-stats {
    margin: 2.5rem 0;
}

.career-stats .stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.career-stats .stat-item:hover {
    border-color: var(--cyber-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.career-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyber-red);
    display: block;
    margin-bottom: 0.25rem;
}

.career-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Action Buttons */
.career-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Right Column - Single Testimonial Card */
.testimonial-single-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    animation: fadeInRight 1s ease-out;
}

.card-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    /* box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15); */
    min-height: 450px;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.15) 0%, 
        rgba(233, 71, 71, 0.08) 50%, 
        rgba(255, 0, 0, 0.12) 100%);
    opacity: 1;
    z-index: -1;
}

.testimonial-single-card .card-glass:hover {
    border-color: var(--cyber-red);
    /* transform: translateY(-8px) scale(1.02); */
    /* box-shadow: 0 25px 50px rgba(220, 38, 38, 0.3); */
}

/* Avatar Styling */
.testimonial-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--cyber-red);
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.testimonial-single-card:hover .avatar-img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.avatar-overlay {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 35px;
    height: 35px;
    background: var(--cyber-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-black);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.avatar-overlay i {
    font-size: 14px;
    color: white;
}

/* Testimonial Content */
.testimonial-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-role {
    font-size: 1.125rem;
    color: var(--cyber-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.25rem;
}

.testimonial-rating .rating-text {
    color: var(--text-secondary);
    font-size: 0.975rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Testimonial Meta Information */
.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.company-info,
.location-info {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.925rem;
    font-weight: 500;
}

.company-info i,
.location-info i {
    color: var(--cyber-red);
    margin-right: 0.5rem;
}

/* Animation for single card entrance */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Background Effects */
.career-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: floatOrb 6s ease-in-out infinite;
}

.glow-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent);
    bottom: 30%;
    right: 15%;
    animation-delay: -3s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    color: rgba(220, 38, 38, 0.3);
    font-size: 2rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -2s;
}

.float-3 {
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(10px) rotate(-3deg);
        opacity: 0.4;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .career-headline {
        font-size: 2.25rem;
    }
    
    .career-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .career-stories-section {
        padding: 3rem 0;
    }
    
    .testimonial-single-card {
        margin-top: 3rem;
        min-height: 400px;
    }
    
    .career-headline {
        font-size: 2rem;
        text-align: center;
    }
    
    .career-description {
        text-align: center;
        max-width: 100%;
    }
    
    .career-buttons {
        justify-content: center;
    }
    
    .card-glass {
        padding: 2.5rem 2rem;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .career-headline {
        font-size: 1.75rem;
    }
    
    .career-description {
        font-size: 1rem;
    }
    
    .card-glass {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .testimonial-single-card {
        min-height: 350px;
    }
    
    .career-buttons {
        flex-direction: column;
    }
    
    .career-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .career-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .avatar-img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-name {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .career-headline {
        font-size: 1.5rem;
    }
    
    .career-stats .row > div {
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .avatar-img {
        width: 70px;
        height: 70px;
    }
    
    .avatar-overlay {
        width: 28px;
        height: 28px;
    }
    
    .avatar-overlay i {
        font-size: 12px;
    }
    
    .card-glass {
        padding: 1.5rem 1rem;
        min-height: 320px;
    }
    
    .testimonial-name {
        font-size: 1.25rem;
    }
    
    .testimonial-role {
        font-size: 1rem;
    }
}

/*All Course*/

/* Tabs wrapper */
#courseTab .nav-link {
    color: var(--cyber-red);
    /* inactive text color */
    background-color: var(--secondary-black);
    /* inactive tab background */
    border: 1px solid var(--border-color);
    border-radius: 0.5rem 0.5rem 0 0;
    /* optional: rounded top corners */
    margin-right: 0.25rem;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

#courseTab.nav-tabs {
    border-bottom: none !important;
}

/* Active tab */
#courseTab .nav-link.active {
    background-color: var(--cyber-red);
    /* active tab background */
    color: var(--text-primary);
    /* white text */
    border-color: var(--cyber-red) var(--cyber-red) var(--secondary-black);
    font-weight: 600;
    border-bottom: none !important;
}

/* Hover effect */
#courseTab .nav-link:hover {
    background-color: var(--cyber-red-dark);
    color: var(--text-primary);
}

/* Optional: tab container background */
#courseTab {
    background-color: var(--primary-black);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
}

/*login*/
.card-item {
    background: transparent !important;
    border: 1px solid var(--border-color);
    /* optional */
    box-shadow: none !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* optional if you want glass effect */
}

/* Google Sign-in Button */
.google-signin-btn {
    background: #fff !important;
    color: #3c4043 !important;
    border: 1px solid #dadce0 !important;
    font-family: 'Google Sans', Roboto, arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.25px !important;
    line-height: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 12px 16px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.google-signin-btn:hover {
    background: #f8f9fa !important;
    color: #3c4043 !important;
    border-color: #c6c6c6 !important;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.15) !important;
    transform: translateY(-1px);
}

.google-signin-btn:active {
    background: #f1f3f4 !important;
    color: #3c4043 !important;
    border-color: #c6c6c6 !important;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.15) !important;
    transform: translateY(0);
}

.google-signin-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3) !important;
}

/* Dark theme form inputs */
input.form-control,
input.form--control,
textarea.form-control,
textarea.form--control {
    background: var(--secondary-black);
    /* dark input bg */
    color: var(--text-primary);
    /* white text */
    border: 1px solid var(--border-color);
}

input.form-control::placeholder,
input.form--control::placeholder,
textarea.form-control::placeholder,
textarea.form--control::placeholder {
    color: var(--text-secondary);
    /* placeholder color */
}

input.form-control:focus,
input.form--control:focus,
textarea.form-control:focus,
textarea.form--control:focus {
    border-color: var(--cyber-red);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.2);
    background: var(--secondary-black);
    color: var(--text-primary);
}

/* Breadcrumb  course Details */

/* Breadcrumb Section */
.breadcrumb-area {
    background: linear-gradient(135deg,
            var(--primary-black),
            var(--secondary-black),
            var(--primary-black));
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0 50px;
    position: relative;
}

.breadcrumb-content ul.generic-list-item li a {
    color: var(--text-secondary) !important;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.breadcrumb-content ul.generic-list-item li a:hover {
    color: var(--cyber-red);
}

.breadcrumb-content ul.generic-list-item li {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-content .section__title {
    font-size: 3rem;
    /* font-weight: 800; */
    color: var(--text-primary);
}

.breadcrumb-content .section__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 700px;
}

.ribbon.bg-3 {
    background: linear-gradient(135deg,
            var(--cyber-red),
            var(--cyber-red-dark),
            var(--cyber-red)) !important;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

.breadcrumb-content p a {
    color: var(--cyber-red);
    font-weight: 500;
}

.breadcrumb-content p a:hover {
    text-decoration: underline;
}

.breadcrumb-content .svg-icon-color-gray {
    fill: var(--text-secondary);
}

.bread-btn-box .btn {
    border: 1px solid var(--border-color);
    background: var(--glass-bg);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.bread-btn-box .btn:hover {
    border-color: var(--cyber-red);
    color: var(--cyber-red);
    box-shadow: 0 0 15px rgba(var(--accent-red-glow-rgb), 0.3);
}

.bread-btn-box .btn i {
    color: var(--cyber-red);
}

/* Course Overview Card */
.course-overview-card {
    /* background: var(--glass-bg); */
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Title */
.course-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);

    background: linear-gradient(270deg, #dc2626, #f97316, #be185d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradient 5s ease infinite;
}

@keyframes animateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Overview List */
.overview-list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overview-list-item li {
    font-size: 1rem;
    /* keep consistent with your base */
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.overview-list-item li i {
    color: var(--cyber-green);
    /* check icon green */
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Curriculum Header */
.curriculum-header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.curriculum-duration {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.curriculum-duration strong {
    color: var(--cyber-green);
}

/* Accordion */
.generic-accordion .card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(var(--white-rgb), 0.02);
}

.generic-accordion .card-header {
    padding: 0;
}

.generic-accordion .btn-link {
    width: 100%;
    padding: 1rem;
    color: var(--text-secondary) !important;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.generic-accordion .btn-link:hover {
    color: var(--cyber-red);
}

.generic-accordion .btn-link i {
    margin-right: 0.5rem;
    color: var(--cyber-green);
}

/* Accordion body */
.generic-accordion .card-body {
    padding: 1rem 1.25rem;
    background: rgba(var(--white-rgb), 0.03);
}

/* Lecture list */
.generic-list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.generic-list-item li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.generic-list-item li i {
    color: var(--cyber-green);
    margin-right: 0.5rem;
}

.generic-list-item a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.generic-list-item a:hover {
    color: var(--cyber-red);
}

/* Instructor Section */
.instructor-wrap {
    padding: 1rem;
}

.instructor-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--cyber-red);
    padding: 3px;
    background: #fff;
}

.instructor-name a {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instructor-name a:hover {
    color: var(--cyber-red);
}

/* Stats under image */
.instructor-img .generic-list-item {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.instructor-img .generic-list-item li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.view-courses-link {
    color: var(--cyber-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-courses-link:hover {
    color: var(--cyber-red);
}

/* Bio */
.bio-collapsible {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.alert.alert-danger {
    background: linear-gradient(135deg,
            rgba(39, 32, 32, 0.15),
            rgba(26, 26, 26, 0.85)) !important;
    color: var(--text-primary);
    /* white text */
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
}

/* Modal Container */
.modal-container .modal-content {
    background: var(--secondary-black);
    /* dark background */
    color: var(--text-primary);
    /* white text */
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Modal Header */
.modal-container .modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-container .modal-header p {
    color: var(--cyber-red);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.modal-container .modal-header h5 {
    color: var(--text-primary);
    font-weight: 700;
}

/* Close Button */
.modal-container .close {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.modal-container .close:hover {
    color: var(--cyber-red);
}

/* Modal Body */
.modal-container .modal-body {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Video iframe */
.modal-container .videoPreview {
    border: 2px solid var(--cyber-red);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-red-glow-md);
}

/* Table & Cart Area Dark Theme */
.cart-area {
    background-color: var(--secondary-black) !important;
    color: var(--text-primary) !important;
    /* white text */
    border-radius: 0.5rem;
}

.table.generic-table {
    /* background-color: var(--secondary-black) !important; table bg */
    color: var(--text-primary) !important;
    /* text color */
    border-color: var(--border-color) !important;
}

.table.generic-table th,
.table.generic-table td {
    background-color: var(--secondary-black) !important;
    /* cell bg */
    color: var(--text-primary) !important;
    /* cell text */
    border-color: var(--border-color) !important;
}

.table.generic-table tbody tr {
    background-color: var(--secondary-black) !important;
    /* row bg */
}

.table.generic-table th {
    background-color: var(--secondary-black) !important;
    /* header bg */
    color: var(--text-primary);
    /* header text */
    font-weight: 600;
}

.table.generic-table tbody tr:nth-child(even) {
    background-color: var(--secondary-black);
    /* alternate row bg if needed */
}

.table.generic-table tbody tr:hover {
    background-color: var(--glass-bg) !important;
    /* hover effect */
}

.badge {
    background-color: var(--cyber-red-dark);
    color: var(--text-primary);
}

a.text-black {
    color: var(--text-primary) !important;
    /* override link color */
}

.text-color {
    color: var(--cyber-red);
    /* cyber-red links */
}

.remove-course-btn {
    background-color: var(--cyber-red);
    color: var(--text-primary);
    border-radius: 0.25rem;
}

.remove-course-btn:hover {
    background-color: var(--cyber-red-dark);
    color: var(--text-primary);
    box-shadow: 0 0 8px var(--cyber-red-dark);
}

/* Coupon & buttons */
.btn.theme-btn {
    background-color: var(--cyber-red);
    color: var(--text-primary);
    border: 1px solid var(--cyber-red);
    transition: all 0.3s ease;
}

.btn.theme-btn:hover {
    background-color: transparent;
    color: var(--cyber-red);
    box-shadow: 0 0 10px var(--cyber-red-dark);
}

.custom-alert {
    background-color: var(--secondary-black);
    /* dark bg */
    color: var(--text-primary);
    /* bright text */
    border: 1px solid var(--cyber-red);
    /* optional border */
}

.custom-alert strong {
    color: var(--cyber-green);
    /* highlight text inside strong */
}

/* Checkout Page Dark Theme Text */
.checkout-page,
.checkout-page * {
    color: var(--text-primary) !important;
}

/* Optionally, links can be styled differently */
.checkout-page a {
    color: var(--text-muted) !important;
    /* বা অন্য কোন accent color */
    /* text-decoration: underline; */
}

/* Input placeholders */
.checkout-page ::placeholder {
    color: var(--text-secondary);
}

/* Badges / buttons text */
.checkout-page .badge,
.checkout-page .btn {
    color: var(--text-primary);
}

/* Add these new rules at the end of the file for login form consistency and prominence */

/* Consistent padding/margins for login form elements (average ~0.75rem) */
.contact-area .card-body {
    padding: 1rem;
    /* Override for uniformity */
}

.contact-area .input-box {
    margin-bottom: 1rem;
    /* Consistent spacing */
}

.contact-area .label-text {
    margin-bottom: 0.5rem;
    /* Average margin for labels */
    font-size: 1rem;
    /* Prominent size */
    font-weight: 600;
    color: var(--text-primary);
    /* Ensure visibility */
}

.contact-area .form-control {
    padding: 0.75rem;
    /* Consistent padding */
    font-size: 1rem;
    /* Larger for readability */
    border: 1px solid var(--border-color);
    background: var(--black);
    color: var(--text-primary);
    border-radius: 0.375rem;
}

.contact-area .form-control:focus {
    background: var(--black);
    border-color: var(--cyber-red);
    /* box-shadow: 0 0 10px rgba(220, 38, 38, 0.3); */
    /* Enhanced focus for prominence */
}

.contact-area .btn {
    padding: 0.75rem 1.5rem;
    /* Consistent button padding */
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.contact-area .btn:hover {
    transform: translateY(-2px);
    /* Subtle lift for prominence */
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.contact-area .card-title {
    font-size: 1.5rem;
    /* Larger for prominence */
    font-weight: 700;
    color: var(--text-primary);
}

.contact-area p {
    font-size: 1rem;
    /* Consistent text size */
    color: var(--text-primary);
    margin-top: 0.75rem;
    /* Average margin */
}

.contact-area .icon-element {
    padding: 0.75rem;
    /* Consistent */
    font-size: 1.1rem;
}

/* Boxicons visibility (ensure they show prominently) */
.contact-area .bx {
    font-size: 1.2rem;
    /* Larger icons */
    color: var(--text-secondary);
}

.contact-area .toggle-password:hover .bx {
    color: var(--cyber-red);
    /* Hover effect for prominence */
}

/*---------------- css loader ----------------*/
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/*---------------- dot-move ----------------*/
@-webkit-keyframes dot-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

@-webkit-keyframes dot-move {
    from {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -ms-transform: translateX(88px);
        transform: translateX(88px);
    }
}

@keyframes dot-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

/*---------------- dot-move 2 ----------------*/
@-webkit-keyframes dot-move2 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(48px);
        transform: translateX(48px);
    }
}

@-webkit-keyframes dot-move2 {
    from {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -ms-transform: translateX(48px);
        transform: translateX(48px);
    }
}

@keyframes dot-move2 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(48px);
        transform: translateX(48px);
    }
}

/*============== play-button-pulse ==============*/
@-webkit-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

button:focus,
input:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    font-size: var(--fs-base);
    line-height: 28px;
    font-family: var(--font-sans);
    color: var(--text-body);
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
}

.cursor-pointer {
    cursor: pointer;
}

.z-index-n1 {
    z-index: -1;
}

/*===== container =======*/
.container {
    max-width: 1200px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/*====== position =======*/
.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

/*====== opacity =======*/
.opacity-1 {
    opacity: 0.1 !important;
}

.opacity-2 {
    opacity: 0.2 !important;
}

.opacity-3 {
    opacity: 0.3 !important;
}

.opacity-4 {
    opacity: 0.4 !important;
}

.opacity-5 {
    opacity: 0.5 !important;
}

.opacity-6 {
    opacity: 0.6 !important;
}

/*====== font-family =======*/
.theme-font-2 {
    font-family: "Noto Serif JP", serif !important;
}

/*====== hover effect =======*/
.hover-y,
.hover-s {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hover-y:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.hover-s:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

/*====== bg =======*/
.bg-gray {
    background-color: var(--gray-50) !important;
}

.bg-1 {
    background-color: var(--cyber-red) !important;
}

.bg-2 {
    background-color: var(--accent-purple) !important;
}

.bg-3 {
    background-color: var(--accent-orange) !important;
}

.bg-4 {
    background-color: var(--accent-blue) !important;
}

.bg-5 {
    background-color: var(--accent-green) !important;
}

.bg-6 {
    background-color: var(--accent-coral) !important;
}

.bg-7 {
    background-color: var(--facebook-blue) !important;
}

.bg-gradient {
    /*background: #00d2ff;  !* fallback for old browsers *!
  background: -webkit-linear-gradient(to right, #928DAB, #00d2ff);  !* Chrome 10-25, Safari 5.1-6 *!
  background: linear-gradient(to right, #928DAB, #00d2ff); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *!*/
    background: -moz-linear-gradient(-45deg, var(--cyber-red) 0%, #f58585 100%);
    background: -webkit-linear-gradient(-45deg, var(--cyber-red) 0%, #f58585 100%);
    background: linear-gradient(135deg, var(--cyber-red) 0%, #f58585 100%);
}

.bg-radial-gradient-gray {
    background: var(--gray-100) !important;
    background: radial-gradient(circle, var(--gray-100) 0%, var(--white) 88%) !important;
}

/*====== color =======*/
.text-black {
    color: var(--white) !important;
}

.text-gray {
    color: var(--text-body) !important;
}

.text-color {
    color: var(--cyber-red) !important;
}

.text-color-2 {
    color: var(--accent-purple) !important;
}

.text-color-3 {
    color: var(--accent-orange) !important;
}

.text-color-4 {
    color: var(--accent-blue) !important;
}

.text-color-5 {
    color: var(--accent-green) !important;
}

.text-color-6 {
    color: var(--accent-coral) !important;
}

.text-color-7 {
    color: var(--facebook-blue) !important;
}

.text-color-8 {
    color: var(--twitter-blue) !important;
}

.svg-icon-color-gray path {
    fill: var(--text-body);
}

.svg-icon-color-white path {
    fill: var(--white);
}

.svg-icon-color-1 path {
    fill: var(--accent-purple);
}

.svg-icon-color-2 path {
    fill: var(--accent-orange);
}

.svg-icon-color-3 path {
    fill: var(--accent-blue);
}

.svg-icon-color-4 path {
    fill: var(--accent-green);
}

.svg-icon-color-5 path {
    fill: var(--accent-coral);
}

.svg-icon-color-6 path {
    fill: var(--facebook-blue);
}

.svg-icon-color-7 path {
    fill: var(--twitter-blue);
}

/*====== border color =======*/
.border-gray {
    border-color: rgba(var(--neutral-500-rgb), 0.1) !important;
}

.border-top-gray {
    border-top-color: rgba(var(--neutral-500-rgb), 0.1) !important;
}

.border-right-gray {
    border-right-color: rgba(var(--neutral-500-rgb), 0.1) !important;
}

.border-bottom-gray {
    border-bottom-color: rgba(var(--neutral-500-rgb), 0.1) !important;
}

.border-left-gray {
    border-left-color: rgba(var(--neutral-500-rgb), 0.1) !important;
}

/*====== width =======*/
.w-50px {
    width: 50px !important;
}

.w-60px {
    width: 60px !important;
}

.w-70px {
    width: 70px !important;
}

.w-80px {
    width: 80px !important;
}

.w-90px {
    width: 90px !important;
}

.w-100px {
    width: 100px !important;
}

/*====== padding =======*/
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section--padding {
    padding-top: 120px;
    padding-bottom: 50px;
}

/*====== padding top =======*/
.pt-200px {
    padding-top: 200px !important;
}

.pt-190px {
    padding-top: 190px !important;
}

.pt-180px {
    padding-top: 180px !important;
}

.pt-170px {
    padding-top: 170px !important;
}

.pt-160px {
    padding-top: 160px !important;
}

.pt-150px {
    padding-top: 150px !important;
}

.pt-140px {
    padding-top: 140px !important;
}

.pt-130px {
    padding-top: 130px !important;
}

.pt-120px {
    padding-top: 120px !important;
}

.pt-115px {
    padding-top: 115px !important;
}

.pt-110px {
    padding-top: 110px !important;
}

.pt-100px {
    padding-top: 100px !important;
}

.pt-95px {
    padding-top: 95px !important;
}

.pt-90px {
    padding-top: 90px !important;
}

.pt-85px {
    padding-top: 85px !important;
}

.pt-80px {
    padding-top: 80px !important;
}

.pt-75px {
    padding-top: 75px !important;
}

.pt-70px {
    padding-top: 70px !important;
}

.pt-60px {
    padding-top: 60px !important;
}

.pt-50px {
    padding-top: 50px !important;
}

.pt-50px {
    padding-top: 50px !important;
}

.pt-45px {
    padding-top: 45px !important;
}

.pt-40px {
    padding-top: 40px !important;
}

.pt-35px {
    padding-top: 35px !important;
}

.pt-30px {
    padding-top: 30px !important;
}

.pt-20px {
    padding-top: 20px !important;
}

.pt-10px {
    padding-top: 10px !important;
}

/*====== padding bottom =======*/
.pb-200px {
    padding-bottom: 200px !important;
}

.pb-190px {
    padding-bottom: 190px !important;
}

.pb-180px {
    padding-bottom: 180px !important;
}

.pb-170px {
    padding-bottom: 170px !important;
}

.pb-160px {
    padding-bottom: 160px !important;
}

.pb-150px {
    padding-bottom: 150px !important;
}

.pb-140px {
    padding-bottom: 140px !important;
}

.pb-130px {
    padding-bottom: 130px !important;
}

.pb-120px {
    padding-bottom: 120px !important;
}

.pb-115px {
    padding-bottom: 115px !important;
}

.pb-110px {
    padding-bottom: 110px !important;
}

.pb-100px {
    padding-bottom: 100px !important;
}

.pb-95px {
    padding-bottom: 95px !important;
}

.pb-90px {
    padding-bottom: 90px !important;
}

.pb-85px {
    padding-bottom: 85px !important;
}

.pb-80px {
    padding-bottom: 80px !important;
}

.pb-75px {
    padding-bottom: 75px !important;
}

.pb-70px {
    padding-bottom: 70px !important;
}

.pb-60px {
    padding-bottom: 60px !important;
}

.pb-50px {
    padding-bottom: 50px !important;
}

.pb-45px {
    padding-bottom: 45px !important;
}

.pb-40px {
    padding-bottom: 40px !important;
}

.pb-35px {
    padding-bottom: 35px !important;
}

.pb-30px {
    padding-bottom: 30px !important;
}

.pb-20px {
    padding-bottom: 20px !important;
}

.pb-10px {
    padding-bottom: 10px !important;
}

/*======= padding right ========*/
.pr-150px {
    padding-right: 150px !important;
}

.pr-140px {
    padding-right: 140px !important;
}

.pr-130px {
    padding-right: 130px !important;
}

.pr-120px {
    padding-right: 120px !important;
}

.pr-110px {
    padding-right: 110px !important;
}

.pr-100px {
    padding-right: 100px !important;
}

.pr-95px {
    padding-right: 95px !important;
}

.pr-90px {
    padding-right: 90px !important;
}

.pr-85px {
    padding-right: 85px !important;
}

.pr-80px {
    padding-right: 80px !important;
}

.pr-70px {
    padding-right: 70px !important;
}

.pr-60px {
    padding-right: 60px !important;
}

.pr-55px {
    padding-right: 55px !important;
}

.pr-50px {
    padding-right: 50px !important;
}

.pr-45px {
    padding-right: 45px !important;
}

.pr-40px {
    padding-right: 40px !important;
}

.pr-30px {
    padding-right: 30px !important;
}

/*======== padding left ========*/
.pl-150px {
    padding-left: 150px !important;
}

.pl-140px {
    padding-left: 140px !important;
}

.pl-130px {
    padding-left: 130px !important;
}

.pl-120px {
    padding-left: 120px !important;
}

.pl-110px {
    padding-left: 110px !important;
}

.pl-100px {
    padding-left: 100px !important;
}

.pl-95px {
    padding-left: 95px !important;
}

.pl-90px {
    padding-left: 90px !important;
}

.pl-85px {
    padding-left: 85px !important;
}

.pl-80px {
    padding-left: 80px !important;
}

.pl-70px {
    padding-left: 70px !important;
}

.pl-60px {
    padding-left: 60px !important;
}

.pl-55px {
    padding-left: 55px !important;
}

.pl-50px {
    padding-left: 50px !important;
}

.pl-45px {
    padding-left: 45px !important;
}

.pl-40px {
    padding-left: 40px !important;
}

.pl-30px {
    padding-left: 30px !important;
}

/*===== margin top ====*/
.mt-200px {
    margin-top: 200px;
}

.mt-190px {
    margin-top: 190px;
}

.mt-180px {
    margin-top: 180px;
}

.mt-160px {
    margin-top: 160px;
}

.mt-150px {
    margin-top: 150px;
}

.mt-140px {
    margin-top: 140px;
}

.mt-130px {
    margin-top: 130px;
}

.mt-120px {
    margin-top: 120px;
}

.mt-110px {
    margin-top: 110px;
}

.mt-100px {
    margin-top: 100px;
}

.mt-95px {
    margin-top: 95px;
}

.mt-90px {
    margin-top: 90px;
}

.mt-85px {
    margin-top: 85px;
}

.mt-80px {
    margin-top: 80px;
}

.mt-70px {
    margin-top: 70px;
}

.mt-60px {
    margin-top: 60px;
}

.mt-55px {
    margin-top: 55px;
}

.mt-50px {
    margin-top: 50px;
}

.mt-45px {
    margin-top: 45px;
}

.mt-40px {
    margin-top: 40px;
}

.mt-35px {
    margin-top: 35px;
}

.mt-30px {
    margin-top: 30px;
}

.mt-28px {
    margin-top: 28px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-5px {
    margin-top: 5px;
}

/*======= margin bottom =======*/
.mb-200px {
    margin-bottom: 200px;
}

.mb-190px {
    margin-bottom: 190px;
}

.mb-180px {
    margin-bottom: 180px;
}

.mb-170px {
    margin-bottom: 170px;
}

.mb-160px {
    margin-bottom: 160px;
}

.mb-150px {
    margin-bottom: 150px;
}

.mb-140px {
    margin-bottom: 140px;
}

.mb-130px {
    margin-bottom: 130px;
}

.mb-120px {
    margin-bottom: 120px;
}

.mb-110px {
    margin-bottom: 110px;
}

.mb-100px {
    margin-bottom: 100px;
}

.mb-95px {
    margin-bottom: 95px;
}

.mb-90px {
    margin-bottom: 90px;
}

.mb-85px {
    margin-bottom: 85px;
}

.mb-80px {
    margin-bottom: 80px;
}

.mb-70px {
    margin-bottom: 70px;
}

.mb-60px {
    margin-bottom: 60px;
}

.mb-50px {
    margin-bottom: 50px;
}

.mb-55px {
    margin-bottom: 55px;
}

.mb-45px {
    margin-bottom: 45px;
}

.mb-40px {
    margin-bottom: 40px;
}

.mb-35px {
    margin-bottom: 35px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-28px {
    margin-bottom: 28px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-5px {
    margin-bottom: 5px;
}

/*======= border radius =======*/
.rounded-rounded {
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
}

.rounded-pill {
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
}

.rounded--pill {
    -webkit-border-radius: 100px !important;
    -moz-border-radius: 100px !important;
    border-radius: 100px !important;
}

.rounded-full {
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
}

/*======= before after none =======*/
.after-none::after {
    display: none !important;
}

.before-none::before {
    display: none !important;
}

.before-after-none::before,
.before-after-none::after {
    display: none !important;
}

/*========== font size ========*/
.fs-80 {
    font-size: 80px !important;
}

.fs-70 {
    font-size: 70px !important;
}

.fs-65 {
    font-size: 65px !important;
}

.fs-60 {
    font-size: 60px !important;
}

.fs-55 {
    font-size: 55px !important;
}

.fs-50 {
    font-size: 50px !important;
}

.fs-45 {
    font-size: 45px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-35 {
    font-size: 35px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-27 {
    font-size: 27px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-23 {
    font-size: 23px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-21 {
    font-size: 21px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-11 {
    font-size: 11px !important;
}

/*======== font-weight =======*/
.font-weight-thin {
    font-weight: 100 !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-regular {
    font-weight: 400 !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semi-bold {
    font-weight: 600 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-black {
    font-weight: 800 !important;
}

/*========== line-height ===========*/
.lh-90 {
    line-height: 90px !important;
}

.lh-85 {
    line-height: 85px !important;
}

.lh-80 {
    line-height: 80px !important;
}

.lh-75 {
    line-height: 75px !important;
}

.lh-70 {
    line-height: 70px !important;
}

.lh-65 {
    line-height: 65px !important;
}

.lh-60 {
    line-height: 60px !important;
}

.lh-58 {
    line-height: 58px !important;
}

.lh-57 {
    line-height: 57px !important;
}

.lh-56 {
    line-height: 56px !important;
}

.lh-55 {
    line-height: 55px !important;
}

.lh-52 {
    line-height: 52px !important;
}

.lh-50 {
    line-height: 50px !important;
}

.lh-48 {
    line-height: 48px !important;
}

.lh-46 {
    line-height: 46px !important;
}

.lh-45 {
    line-height: 45px !important;
}

.lh-40 {
    line-height: 40px !important;
}

.lh-35 {
    line-height: 35px !important;
}

.lh-30 {
    line-height: 30px !important;
}

.lh-28 {
    line-height: 28px !important;
}

.lh-27 {
    line-height: 27px !important;
}

.lh-26 {
    line-height: 26px !important;
}

.lh-25 {
    line-height: 25px !important;
}

.lh-24 {
    line-height: 24px !important;
}

.lh-22 {
    line-height: 22px !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-18 {
    line-height: 18px !important;
}

/*-================== loading-area ==============-*/
.preloader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(var(--white-rgb), 0.5);
    /* Semi-transparent white background */
    backdrop-filter: blur(5px);
    /* Adds blur effect to the background */
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader .spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

.loader .spinner .path {
    stroke: #b00604;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

/*======== section-block =========*/
.section-block {
    height: 1px;
    background-color: rgba(var(--neutral-500-rgb), 0.1);
}

.hover-underline:hover {
    text-decoration: underline;
}

/*======== divider =========*/
.divider {
    border-bottom: 1px solid rgba(var(--neutral-500-rgb), 0.1);
    height: 1px;
    margin: 0.5em 0 1.5em;
}

.divider span {
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--cyber-red);
}

/*======== ribbon =========*/
.ribbon {
    display: inline-block;
    padding-right: 8px;
    padding-left: 8px;
    line-height: 22px;
    background-color: rgba(246, 138, 3, 0.1);
    color: var(--accent-orange);
    font-size: 11px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ribbon-white {
    background-color: rgba(var(--white-rgb), 0.1);
    color: var(--white);
}

.ribbon-lg {
    font-size: 16px;
    padding-right: 12px;
    padding-left: 12px;
    line-height: 28px;
}

.ribbon-blue-bg {
    background: rgba(53, 143, 247, 0.1) !important;
    color: #358ff7 !important;
}

/*===== tooltip-inner =====*/
.tooltip-inner {
    background-color: var(--white);
    color: var(--heading-color);
    -webkit-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.2);
    -moz-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.2);
    box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: 500;
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: var(--white) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: var(--white) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: var(--white) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: var(--white) !important;
}

/*---------------- section-heading ----------------*/
.section-heading {
    position: relative;
    z-index: 1;
}

.section__title {
    font-size: 50px;
    font-weight: 700;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .section__title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .section__title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .section__title.fs-70 {
        font-size: 45px !important;
    }
}

.section__desc {
    line-height: 32px;
    font-size: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .section__title br,
    .section__desc br {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .section__title br,
    .section__desc br {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .section__title br,
    .section__desc br {
        display: none;
    }
}

/*======== section-divider ========*/
.section-divider {
    display: inline-block;
    position: relative;
    height: 5px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #b00604;
    width: 90px;
    margin-top: 25px;
    margin-bottom: 25px;
    overflow: hidden;
}

.section-divider:after {
    content: "";
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    rgba(var(--white-rgb), 0.02) 0,
    rgba(var(--white-rgb), 0.02) 2px,
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: dot-move;
    animation-name: dot-move;
}

/*======= section--divider =======*/
.section--divider {
    width: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.section--divider:after {
    top: -0.1px;
    width: 5px;
    -webkit-animation-name: dot-move2;
    animation-name: dot-move2;
}

/*======= section-divider-white =======*/
.section-divider-white {
    background-color: rgba(var(--white-rgb), 0.1);
}

/*====================================================
    input-number-group
 ====================================================*/
.input-number-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.input-number-group input[type="number"]::-webkit-inner-spin-button,
.input-number-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.input-number-group .input-number {
    outline: none;
    display: block;
    text-align: center;
    border: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    background-color: rgba(127, 136, 151, 0.1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 18px;
    color: #233d63;
}

.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.input-number-group .input-number-decrement:hover,
.input-number-group .input-number-increment:hover {
    background-color: #b00604;
    color: #fff;
}

.input-number-group .input-number-decrement {
    margin-right: 0.5rem;
    margin-left: 1rem;
    font-size: 30px;
}

.input-number-group .input-number-increment {
    margin-left: 0.5rem;
    font-size: 22px;
}

/*========= review-stars =========*/
.review-stars span {
    color: #f68a03;
    margin-left: -3px;
}

.review-stars span.rating-number {
    margin-left: 0;
    margin-right: 3px;
    color: #233d63;
    font-weight: 600;
}

/*========= before-price =========*/
.before-price {
    font-size: 16px;
    margin-right: 3px;
    color: #7f8897;
    text-decoration: line-through;
}

/*======== generic-list-item =========*/
.generic-list-item li {
    color: rgb(71, 86, 124)important;
    line-height: 24px;
    margin-bottom: 10px;
}

.generic-list-item li a {
    color: #7f8897;
    display: block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-list-item li a:hover {
    color: #b00604;
}

/*============ generic-list-item-bullet =========*/
.generic-list-item-bullet li {
    position: relative;
    padding-left: 16px;
}

.generic-list-item-bullet li::after {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(128, 137, 150, 0.6);
}

/*============ generic-list-item--bullet =========*/
.generic-list-item--bullet li {
    padding-right: 14px;
}

.generic-list-item--bullet li:first-child {
    padding-left: 0;
}

.generic-list-item--bullet li:first-child::after {
    display: none;
}

/*======== generic-list-item-white =========*/
.generic-list-item-white li {
    color: rgba(var(--white-rgb), 0.8);
}

.generic-list-item-white li a {
    color: rgba(var(--white-rgb), 0.8);
}

.generic-list-item-white li a:hover {
    color: #b00604;
}

/*======== generic-list-item-arrow =========*/
.generic-list-item-arrow li {
    position: relative;
    padding-left: 12px;
    margin-left: 12px;
}

.generic-list-item-arrow li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.generic-list-item-arrow li:first-child::after {
    display: none;
}

.generic-list-item-arrow li::after {
    position: absolute;
    content: "\f105";
    top: 1px;
    left: -7px;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 14px;
}

/*====== generic-list-item-boxed =====*/
.generic-list-item-boxed li {
    border: 1px solid rgba(var(--neutral-500-rgb), 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-list-item-boxed li a {
    padding: 8px 18px;
}

.generic-list-item-boxed li:hover {
    border-color: #b00604;
}

/*====== generic-list-item-flash =====*/
.generic-list-item-flash li {
    border-bottom: 1px solid rgba(var(--neutral-500-rgb), 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.generic-list-item-flash li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

/*====== social-icons =====*/
.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons li a {
    color: var(--heading-color);
    display: block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-icons li a:hover {
    color: var(--cyber-red);
}

/*====== social-icons-styled =====*/
.social-icons-styled li a {
    color: var(--heading-color);
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(var(--heading-color-rgb), 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.social-icons-styled li a:hover {
    color: #fff;
    background-color: #b00604;
}

.social-icons-styled li a.facebook-bg,
.social-icons-styled li a.twitter-bg,
.social-icons-styled li a.instagram-bg,
.social-icons-styled li a.linkedin-bg,
.social-icons-styled li a.youtube-bg {
    color: #fff;
}

.social-icons-styled li a.facebook-bg {
    background-color: #3e5b99;
}

.social-icons-styled li a.twitter-bg {
    background-color: #3aaae1;
}

.social-icons-styled li a.instagram-bg {
    background-color: #dd493d;
}

.social-icons-styled li a.linkedin-bg {
    background-color: #358ff7;
}

.social-icons-styled li a.youtube-bg {
    background-color: #ff0000;
}

/*=== social--icons-styled ===*/
.social--icons-styled li a {
    background-color: #fff;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.social--icons-styled li a:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    color: #b00604;
    background-color: #fff;
}

/*=== perticles-bg ===*/
#perticles-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.invite-icon {
    margin-top: -55px;
}

/* datedropper */
div.datedropper .picker ul.pick .pick-arw {
    font-size: 12px;
}

div.datedropper .picker ul.pick:hover .pick-arw {
    opacity: 1;
}

div.datedropper .picker .pick-lg-b li {
    color: #7f8897;
}

/*========= bootstrap-tagsinput =========*/
.bootstrap-tagsinput {
    display: block;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 38px;
    border-color: rgba(127, 136, 151, 0.2);
    font-size: 14px;
}

.bootstrap-tagsinput .tag {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 8px;
}

/*========= cd-words-wrapper =========*/
.cd-words-wrapper b {
    font-weight: 700;
}

/*========= iti =========*/
.iti {
    display: block;
}

.iti__selected-flag {
    outline: none;
}

/*=== scroll-top ===*/
#scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--white);
    color: var(--text-body);
    font-size: 18px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-box-shadow: var(--shadow-soft);
    -moz-box-shadow: var(--shadow-soft);
    box-shadow: var(--shadow-soft);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#scroll-top:hover {
    background-color: var(--cyber-red);
    color: var(--white);
}

/*-========= select-container =========-*/
.select-container {
    position: relative;
    width: 130px;
}

.select-container .bootstrap-select {
    width: 100% !important;
}

.select-container .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.select-container .bootstrap-select.show .dropdown-toggle {
    border-color: var(--cyber-red);
}

.select-container .show>.btn-light.dropdown-toggle {
    background-color: var(--white);
    color: var(--text-body);
}

.select-container .dropdown-toggle {
    padding: 12px 20px;
    border-color: rgba(var(--neutral-500-rgb), 0.2);
    background-color: var(--white);
    color: var(--text-body);
}

.select-container .dropdown-toggle:focus {
    background-color: var(--white);
    outline: none;
}

.select-container .dropdown-menu {
    border-color: rgba(var(--neutral-500-rgb), 0.2);
}

.select-container .dropdown-menu .bs-searchbox .form-control {
    border-color: rgba(var(--neutral-500-rgb), 0.2);
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    padding-left: 8px;
}

.select-container .dropdown-menu .bs-searchbox .form-control:focus {
    border-color: rgba(var(--neutral-500-rgb), 0.5);
}

.select-container .dropdown-menu .inner::-webkit-scrollbar {
    width: 8px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-track {
    background-color: rgba(var(--neutral-500-rgb), 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb {
    background-color: rgba(var(--neutral-500-rgb), 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(--neutral-500-rgb), 0.6);
}

.select-container .dropdown-item {
    color: var(--text-body);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-right: 15px;
    padding-left: 15px;
}

.select-container .dropdown-item.active {
    background-color: var(--cyber-red);
    color: var(--white);
}

.select-container .dropdown-item.active:hover {
    color: #fff;
}

.select-container .dropdown-item:focus {
    outline: none !important;
}

.select-container .dropdown-item:hover {
    color: var(--cyber-red);
}

/*-========= select--container =========-*/
.select--container {
    width: 160px;
}

.select--container .dropdown-toggle {
    padding: 8px 16px;
    border: 0;
    -webkit-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    -moz-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
}

.select-container-sm .dropdown-toggle {
    padding: 6px 12px;
}

/*======= filter-bar =======*/
.filter-bar {
    background-color: var(--white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 20px 20px;
    -webkit-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    -moz-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .filter-bar .select-container {
        margin-left: auto;
        margin-right: auto;
    }
}

/*======= filter-nav ========*/
.filter-nav li {
    display: inline-block;
    margin-right: 2px;
}

.filter-nav li:last-child {
    margin-right: 0;
}

.filter-nav li a {
    padding: 3px 8px;
    display: block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: var(--white);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    -moz-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    color: var(--text-body);
    font-size: 18px;
}

.filter-nav li a:hover {
    color: var(--cyber-red);
}

.filter-nav li a.active {
    background-color: var(--cyber-red);
    color: var(--white);
}

/*======= generic-action-wrap ========*/
.generic-action-wrap .action-btn {
    color: rgba(var(--neutral-500-rgb), 0.7);
    font-size: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-action-wrap .action-btn:hover {
    color: var(--text-body);
}

.generic-action-wrap .dropdown-menu {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px;
    -webkit-box-shadow: 0 0 18px 0 rgba(var(--black-rgb), 0.05);
    -moz-box-shadow: 0 0 18px 0 rgba(var(--black-rgb), 0.05);
    box-shadow: 0 0 18px 0 rgba(var(--black-rgb), 0.05);
    min-width: 140px;
    border-color: rgba(var(--neutral-500-rgb), 0.1);
}

.generic-action-wrap .dropdown-menu .dropdown-header {
    font-size: 15px;
    padding: 4px 14px;
}

.generic-action-wrap .dropdown-menu .collection-link {
    color: var(--text-body);
}

.generic-action-wrap .dropdown-menu .dropdown-item {
    color: var(--text-body);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 500;
    padding: 4px 14px;
    font-size: 15px;
}

.generic-action-wrap .dropdown-menu .dropdown-item:hover {
    background-color: rgba(var(--neutral-500-rgb), 0.1);
}

.generic--action-wrap .action-btn {
    color: #fff;
    font-size: 30px;
    line-height: 39px;
    border: 1px solid rgba(127, 126, 151, 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.generic--action-wrap .action-btn:hover {
    border-color: rgba(127, 126, 151, 0.5);
    color: #fff;
}

/*======= generic--action-wrap-2 ========*/
.generic--action-wrap-2 .dropdown-menu {
    min-width: 240px;
}

/*======= generic--action-wrap-3 ========*/
.generic--action-wrap-3 .dropdown-menu {
    min-width: 90px;
}

.generic--action-wrap-3 .dropdown-menu .dropdown-item {
    line-height: 20px;
    font-size: 13px;
}

.collection-link .la {
    color: #b00604;
}

.collection-link .la.active {
    display: none;
}

/*-====== pagination-box ====-*/
.pagination-box {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    display: inline-block;
    padding: 15px 20px;
}

.pagination-box .page-item {
    margin-right: 5px;
}

.pagination-box .page-item:last-child {
    margin-right: 0;
}

.pagination-box .page-item.active .page-link {
    background-color: var(--cyber-red);
}

.pagination-box .page-link {
    border: 0;
    margin-left: 0;
    color: var(--heading-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.pagination-box .page-link:hover {
    background-color: rgba(var(--neutral-500-rgb), 0.1);
}

/*===== typing-director =======*/
.typing-director {
    position: relative;
}

.typing-director span {
    height: 6px;
    width: 6px;
    float: left;
    margin: 0 1px;
    background-color: var(--text-body);
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-director span:nth-of-type(1) {
    animation: 1s blink infinite 0.3333s;
}

.typing-director span:nth-of-type(2) {
    animation: 1s blink infinite 0.6666s;
}

.typing-director span:nth-of-type(3) {
    animation: 1s blink infinite 0.9999s;
}

/*===== qty =======*/
.qtyInput {
    width: 40px;
    border: 0;
    text-align: center;
    color: #233d63;
    font-weight: 500;
    pointer-events: none;
    font-size: 17px;
}

.qtyBtn {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 17px;
    background-color: rgba(128, 137, 150, 0.1);
    color: #233d63;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qtyBtn:hover {
    background-color: rgba(var(--neutral-500-rgb), 0.3);
}

/*========= theme-btn ========*/
.theme-btn {
    background-color: var(--cyber-red);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

.theme-btn:hover {
    background-color: var(--accent-red-light);
    color: var(--white);
}

.theme-btn:hover .icon {
    padding-left: 5px;
}

.icon {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*===== theme-btn-white ======*/
.theme-btn-white {
    background-color: var(--white);
    color: var(--heading-color);
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
}

.theme-btn-white:hover {
    background-color: var(--cyber-red);
    color: var(--white);
}

.theme-btn-white:hover svg {
    fill: var(--accent-yellow);
}

/*===== theme-btn-transparent ======*/
.theme-btn-transparent {
    background-color: transparent;
    color: var(--heading-color);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(var(--neutral-500-rgb), 0.2);
}

.theme-btn-transparent:hover {
    background-color: transparent;
    border-color: rgba(128, 138, 150, 0.5);
    color: #233d63;
}

/*===== theme-btn-sm ======*/
.theme-btn-sm {
    padding: 6px 14px;
    font-size: 14px;
}

/*===== icon-btn ======*/
.icon-btn {
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid rgba(var(--white-rgb), 0.7);
    font-size: 22px;
}

.icon-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #b00604;
}

/*===== icon-element ======*/
.icon-element {
    color: var(--white);
    font-size: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: var(--crimson);
    -webkit-box-shadow: var(--shadow-blue-soft);
    -moz-box-shadow: var(--shadow-blue-soft);
    box-shadow: var(--shadow-blue-soft);
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
}

/*===== icon-element-lg ======*/
.icon-element-lg {
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 50px;
}

/*===== icon-element-md ======*/
.icon-element-md {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
}

/*===== icon-element-sm ======*/
.icon-element-sm {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

/*===== icon-element-xs ======*/
.icon-element-xs {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 17px;
}

/*===== btn-text ======*/
.btn-text {
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
}

.btn-text:hover {
    color: var(--cyber-red);
}

.btn-text:hover .icon-btn {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--cyber-red);
}

.play-button svg {
    width: 70px;
}

/*==== collapse-btn =====*/
.collapse-btn[aria-expanded="true"] .collapse-btn-show {
    display: inline-block;
}

.collapse-btn[aria-expanded="true"] .collapse-btn-hide {
    display: none;
}

.collapse-btn[aria-expanded="false"] .collapse-btn-show {
    display: none;
}

.collapse--btn {
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.collapse--btn:hover {
    color: #b00604;
}

.btn--group .btn.active {
    border-color: var(--cyber-red);
}

/*===== theme-picker-btn =====*/
.theme-picker-btn {
    font-size: 14px;
    color: #233d63;
    border: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
}

.theme-picker-btn:hover svg {
    fill: #f1e77f;
}

.theme-picker-btn svg {
    width: 19px;
    height: 19px;
    fill: transparent;
    stroke: rgba(0, 0, 0, 0.7);
    transition: stroke 0.2s;
}

.light-mode-btn {
    display: none;
}

/*======== info-box =========*/
.info-box {
    /* background-color: #ododod; */
    -webkit-box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
    -moz-box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
    box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
    padding: 50px 40px 42px 40px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
    text-align: center;
}

.info-box .info__title {
    font-weight: 600;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.info-box::before {
    position: absolute;
    content: "";
    top: 30%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transform: translateY(100%) rotate(10deg);
    -moz-transform: translateY(100%) rotate(10deg);
    -ms-transform: translateY(100%) rotate(10deg);
    -o-transform: translateY(100%) rotate(10deg);
    transform: translateY(100%) rotate(10deg);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .info-box::before {
        width: 640px;
    }
}

.info-box:hover {
    border-color: #8B0000;
    background-color: #b00604;
}

.info-box:hover .info__title,
.info-box:hover .info__text {
    color: #0d0d0d;
}

.info-box:hover:before {
    transition-delay: 0.2s;
    -webkit-transform: translateY(0) rotate(10deg);
    -moz-transform: translateY(0) rotate(10deg);
    -ms-transform: translateY(0) rotate(10deg);
    -o-transform: translateY(0) rotate(10deg);
    transform: translateY(0) rotate(10deg);
}

.info-box:hover .info-overlay::before,
.info-box:hover .info-overlay::after {
    -webkit-transform: translateY(0) rotate(10deg);
    -moz-transform: translateY(0) rotate(10deg);
    -ms-transform: translateY(0) rotate(10deg);
    -o-transform: translateY(0) rotate(10deg);
    transform: translateY(0) rotate(10deg);
}

.info-box:hover .info-overlay::after {
    transition-delay: 0.1s;
}

/*======== info--box =========*/
.info--box {
    overflow: inherit;
    text-align: left;
}

.info--box::before {
    display: none;
}

.info--box:hover {
    background-color: #fff;
}

.info--box:hover .info__title {
    color: #233d63;
}

.info--box:hover .info__text {
    color: #7f8897;
}

.info--box:hover::before {
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    -o-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
}

/*======== info--box-2 =========*/
.info--box-2 {
    padding: 40px 20px;
    text-align: center;
}

.info--box-2::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 70px;
    height: 4px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--text-body);
    opacity: 0.2;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.info--box-2.border-red::after {
    background-color: #b00604;
}

.info--box-2.border-purple::after {
    background-color: #7e3cf9;
}

.info--box-2.border-yellow::after {
    background-color: #f68a03;
}

.info--box-2.border-blue::after {
    background-color: #358ff7;
}

.info--box-2:hover::after {
    opacity: 1;
}

/*======== info-overlay =========*/
.info-overlay:before,
.info-overlay:after {
    position: absolute;
    content: "";
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transform: translateY(100%) rotate(10deg);
    -moz-transform: translateY(100%) rotate(10deg);
    -ms-transform: translateY(100%) rotate(10deg);
    -o-transform: translateY(100%) rotate(10deg);
    transform: translateY(100%) rotate(10deg);
    background-color: rgba(var(--white-rgb), 0.2);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .info-overlay:before,
    .info-overlay:after {
        width: 640px;
    }
}

.info-overlay:after {
    top: 70%;
    background-color: rgba(var(--white-rgb), 0.3);
}

/*======== info-box-layout-2 =========*/
.info-area {
    position: relative;
}

.info-area:after {
    position: absolute;
    content: "";
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    width: 60px;
    height: 60px;
    background-color: #7f8897;
}

/*========== generic-accordion =========*/
.generic-accordion .generic-list-item li {
    font-size: 15px;
    color: rgba(35, 61, 99, 0.8);
    font-weight: 400;
}

.generic-accordion .generic-list-item li:last-child {
    margin-bottom: 0;
}

.generic-accordion .card {
    border: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.generic-accordion .card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: 0;
}

.generic-accordion .card-header .btn {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px 20px 10px 50px;
    text-align: left;
    color: #233d63;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    font-weight: 600;
    background-color: rgba(127, 136, 151, 0.07);
    border: 0;
}

.generic-accordion .card-header .btn[aria-expanded="true"] .la-angle-up,
.generic-accordion .card-header .btn[aria-expanded="true"] .la-minus {
    display: block;
}

.generic-accordion .card-header .btn[aria-expanded="false"] .la-angle-down,
.generic-accordion .card-header .btn[aria-expanded="false"] .la-plus {
    display: block;
}

.generic-accordion .card-header .btn .la {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}

/*========== generic--accordion =========*/
.generic--accordion .card-header .btn {
    padding-left: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.generic--accordion .card-header .btn .la {
    left: auto;
    right: 20px;
    font-size: 16px;
}

.generic--accordion .card-header .btn:hover {
    background-color: rgba(127, 136, 151, 0.1);
}

.generic--accordion .card {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.generic--accordion .card:first-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.generic--accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/*========== generic-accordion-layout-2 =========*/
.generic-accordion-layout-2 .card {
    background-color: var(--white);
    -webkit-box-shadow: 0 0 15px rgba(var(--black-rgb), 0.075);
    -moz-box-shadow: 0 0 15px rgba(var(--black-rgb), 0.075);
    box-shadow: 0 0 15px rgba(var(--black-rgb), 0.075);
    border: 1px solid rgba(var(--neutral-500-rgb), 0.1);
}

.generic-accordion-layout-2 .card-header .btn {
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: var(--white);
}

.generic-accordion-layout-2 .card-header .btn[aria-expanded="true"] {
    background-color: var(--cyber-red);
    color: var(--white);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .review-wrap .media-card,
    .feedback-wrap .media-card {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .review-wrap .media-card,
    .feedback-wrap .media-card {
        flex-direction: column;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .review-wrap .media-body,
    .feedback-wrap .media-body {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .review-wrap .media-body,
    .feedback-wrap .media-body {
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .review-wrap .media-img {
        margin-right: 0 !important;
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-wrap .media-img {
        margin-right: 0 !important;
        margin-bottom: 16px;
    }
}

.review-rating-summary {
    width: 180px;
    text-align: center;
    border-right: 1px solid rgba(128, 137, 150, 0.1);
    padding-right: 30px;
    margin-right: 40px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .review-rating-summary {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 40px;
        border-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-rating-summary {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 40px;
        border-right: 0;
    }
}

.stats-average__count {
    color: #f68a03;
    font-size: 65px;
    font-weight: 700;
}

.review-bars {
    position: relative;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-bars {
        flex-direction: column;
    }
}

.review-bars__text {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    margin-right: 15px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-bars__text {
        width: 100%;
        text-align: left;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.review-bars__fill {
    width: 400px;
    margin-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .review-bars__fill {
        width: 320px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .review-bars__fill {
        width: 320px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-bars__fill {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.review-bars__percent {
    opacity: 0.8;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-bars__percent {
        position: absolute;
        top: 0;
        right: 0;
    }
}

/*======== leave-rating =======*/
.leave-rating {
    width: auto;
    display: inline-block;
    position: relative;
}

.leave-rating input {
    display: none;
}

.leave-rating input:checked~label::before {
    color: #f68a03;
}

.leave-rating input:nth-of-type(5):checked~.rating-result-text::before {
    content: "Awful!";
}

.leave-rating input:nth-of-type(4):checked~.rating-result-text::before {
    content: "Poor!";
}

.leave-rating input:nth-of-type(3):checked~.rating-result-text::before {
    content: "Average!";
}

.leave-rating input:nth-of-type(2):checked~.rating-result-text::before {
    content: "Good!";
}

.leave-rating input:nth-of-type(1):checked~.rating-result-text::before {
    content: "Amazing!!";
}

.leave-rating label {
    float: right;
    display: inline-block;
    position: relative;
    padding-right: 8px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 0;
}

.leave-rating label::before {
    content: "\f005";
    color: rgba(128, 137, 150, 0.4);
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.leave-rating label:hover~label::before {
    color: #f68a03;
}

.leave-rating label:hover::before {
    color: #f68a03;
}

.leave-rating label:nth-of-type(5):hover~.rating-result-text::before {
    content: "Awful!";
}

.leave-rating label:nth-of-type(4):hover~.rating-result-text::before {
    content: "Poor!";
}

.leave-rating label:nth-of-type(3):hover~.rating-result-text::before {
    content: "Average!";
}

.leave-rating label:nth-of-type(2):hover~.rating-result-text::before {
    content: "Good!";
}

.leave-rating label:nth-of-type(1):hover~.rating-result-text::before {
    content: "Amazing!!";
}

/*======= leave--rating =======*/
.leave--rating {
    background-color: rgba(128, 137, 150, 0.1);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px 18px;
}

/*======= rating-result-text =======*/
.rating-result-text {
    color: #233d63;
    padding-bottom: 10px;
    position: absolute;
    width: 100%;
    bottom: 100%;
}

.rating-result-text::before {
    content: "Select Rating";
}

/*==== category-item =====*/
.category-item {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.category-item .cat__img {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.category-item .category-content {
    position: absolute;
    text-align: center;
    padding-top: 50px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.category-item .cat__title {
    color: #fff;
    font-size: 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
}

.category-item .cat__title a {
    color: #fff;
}

.category-item .cat__meta {
    margin-top: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.category-item .btn {
    opacity: 0;
    visibility: hidden;
}

.category-item::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--heading-color);
    opacity: 0.7;
    content: "";
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.category-item:hover .category-content {
    padding-top: 0;
}

.category-item:hover .cat__meta {
    opacity: 0;
    visibility: hidden;
    margin: 0;
}

.category-item:hover .btn {
    opacity: 1;
    visibility: visible;
}

.category-item:hover img {
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
}

/*===== category-item-layout-2 =====*/
.category-item-layout-2 {
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
}

.category-item-layout-2 .category-content {
    color: #233d63;
    position: inherit;
    top: auto;
    left: auto;
    display: block;
    padding: 40px 20px;
}

.category-item-layout-2 .cat__title {
    padding-top: 15px;
    color: #233d63;
    font-size: 19px;
}

.category-item-layout-2::after {
    display: none;
}

.category-item-layout-2:hover .category-content {
    padding-top: 40px;
}

.category-item-layout-2:hover .icon-element {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-btn-box {
        text-align: left !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .category-btn-box {
        text-align: left !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .category-btn-box {
        text-align: left !important;
    }
}

.category-carousel .owl-stage-outer {
    padding: 40px;
    margin: -40px;
}

/*-========= counter-item ===========-*/
.counter-item {
    margin-bottom: 30px;
    text-align: center;
}

.counter-item .counter__title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #233d63;
}

.counter-item .counter__meta {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-item:hover .icon-element {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*======= file upload ========*/
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap .file-upload-input {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    border: 2px dashed rgba(128, 137, 150, 0.2);
    height: 120px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-indent: -99999px;
}

.file-upload-wrap .file-upload-input:hover {
    border-color: rgba(128, 137, 150, 0.4);
    background-color: rgba(128, 137, 150, 0.03);
}

.file-upload-wrap .file-upload-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    line-height: 120px;
    text-align: center;
    font-size: 16px;
    color: rgba(128, 137, 150, 0.9);
    font-weight: 500;
}

.file-upload-wrap .MultiFile-list {
    margin-top: 20px;
}

.file-upload-wrap .MultiFile-list>.MultiFile-label {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: rgba(128, 137, 150, 0.06);
    display: inline-block;
    border: 2px solid rgba(128, 137, 150, 0.1);
    padding: 16px;
    position: relative;
    width: 100%;
}

.file-upload-wrap .MultiFile-list>.MultiFile-label+.MultiFile-label {
    margin-top: 20px;
}

.file-upload-wrap .MultiFile-list>.MultiFile-label>span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    background-color: #fff;
    color: #233d63;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: -16px;
    right: -16px;
    z-index: 1;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove:hover {
    color: #b00604;
}

/*======== file-upload-wrap-2 =======*/
.file-upload-wrap-2 .file-upload-input {
    border: 1px solid rgba(128, 137, 150, 0.1);
    height: 50px;
    background-color: rgba(128, 137, 150, 0.04);
    width: 191px;
}

.file-upload-wrap-2 .file-upload-text {
    line-height: 50px;
    width: auto;
    left: 20px;
}

/*======== file--upload-wrap =======*/
.file--upload-wrap .MultiFile-list>.MultiFile-label {
    padding: 5px 12px;
    font-size: 15px;
}

.file--upload-wrap .MultiFile-list .MultiFile-remove {
    width: 25px;
    height: 25px;
    line-height: 25px;
}

/*======== file-upload-wrap-3 =======*/
.file-upload-wrap-3 .file-upload-input {
    width: 30px;
    border: 0;
    height: 25px;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.file-upload-wrap-3 .file-upload-input:hover {
    background-color: transparent;
}

.file-upload-wrap-3 .file-upload-text {
    line-height: 30px;
    font-size: 20px;
}

.file-upload-wrap-3 .MultiFile-list {
    position: absolute;
    right: 0;
    bottom: 55px;
}

/*-======== member-card =======-*/
.member-card {
    padding-top: 40px;
}

.member-card .card-image {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
}

.member-card .card-image .card-img-top {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.member-card:after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: rgba(127, 136, 151, 0.2);
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.member-card:hover:after {
    background-color: #b00604;
}

/*======== contact-form-action =========*/
.label-text {
    font-size: 15px;
    color: #233d63;
    font-weight: 500;
}

.form--control {
    height: 50px;
    padding-left: 45px;
    font-size: 14px;
    color: #233d63;
    border-color: rgba(127, 136, 151, 0.2);
    font-weight: 400;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.form--control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #b00604;
}

.form--control-gray {
    background-color: rgba(127, 136, 151, 0.1);
    border-color: transparent;
}

.form--control-gray:focus {
    background-color: rgba(127, 136, 151, 0.1);
}

.form-group {
    position: relative;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.input-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 18px;
    z-index: 4;
}

.search-close-icon,
.search-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.search-close-icon {
    color: #233d63;
    padding: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

.search-icon {
    color: #233d63;
    padding: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 18px;
    background-color: transparent;
    border: none;
}

.search-icon:hover {
    color: #b00604;
}

/*=========== toggle-password =============*/
.toggle-password .eye-off {
    display: none;
}

.toggle-password.active .eye-off {
    display: block;
}

.toggle-password.active .eye-on {
    display: none;
}

/*=========== custom-control-label =============*/
.custom--control-label {
    cursor: pointer;
}

.custom--control-label::before,
.custom--control-label:after {
    top: 0.4rem;
}

.custom--control-label-boxed {
    display: block;
    border: 1px solid rgba(128, 137, 150, 0.1);
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    padding: 20px 20px 20px 50px;
}

.custom--control-label-boxed::before,
.custom--control-label-boxed:after {
    top: 1.7rem;
    left: 1.5rem;
}

.custom-control-input:checked~.custom--control-label-boxed {
    border-color: #b00604;
}

.custom-control-input:checked~.custom--control-label::before {
    background-color: #b00604;
    border-color: #b00604;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.custom-control-input:focus:not(:checked)~.custom--control-label::before {
    border-color: #b00604;
}

.custom-control-input:focus~.custom--control-label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
    -moz-box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
}

/*-======= MAP ========-*/
#map {
    width: 100%;
    height: 500px;
}

/*==== leaflet-bar ======*/
.leaflet-bar {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.leaflet-bar a {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-bottom: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
    font-size: 20px;
}

.leaflet-bar a:hover {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-bottom: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #b00604;
    color: #fff;
}

.payment-logo {
    position: absolute;
    right: 20px;
    top: 21px;
}

.payment-tab-toggle {
    padding-right: 20px;
    padding-left: 20px;
}

.payment-tab-toggle>label {
    cursor: pointer;
    display: block;
    position: relative;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 30px;
    margin-bottom: 0;
    font-weight: 600;
    color: #233d63;
}

.payment-tab-toggle>label:before {
    background-color: #fff;
    border: 2px solid #eeeeee;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.payment-tab-toggle>label:after {
    background-color: #eeeeee;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    content: "";
    position: absolute;
    left: 5px;
    top: 23px;
    width: 8px;
    height: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.payment-tab-toggle>input {
    position: absolute;
    visibility: hidden;
}

.payment-tab-toggle>input:checked~label:before {
    border-color: #b00604;
}

.payment-tab-toggle>input:checked~label:after {
    background-color: #b00604;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*====== payment-tab =======*/
.payment-tab {
    background-color: #fff;
    max-height: 55px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
    margin-bottom: 15px;
}

.payment-tab.is-active {
    max-height: 400px;
}

.payment-tab.is-active .payment-tab-content {
    visibility: visible;
    opacity: 1;
}

.payment-tab-content {
    padding: 0 20px 20px 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.contact-success-message {
    display: none;
}

/*=============== comments-wrapper ===============*/
.meta-tags a {
    color: #b00604;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    padding-right: 8px;
    padding-left: 4px;
}

.meta-tags a::after {
    position: absolute;
    content: "";
    top: 7px;
    right: 0;
    width: 3px;
    height: 3px;
    background-color: rgba(127, 136, 151, 0.4);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.meta-tags a:first-child {
    padding-left: 0;
}

.meta-tags a:hover {
    color: #233d63;
}

.helpful-action .btn {
    border-color: rgba(128, 137, 150, 0.3);
    padding: 0 10px;
    color: #7f8897;
    margin-right: 2px;
    font-size: 15px;
}

.helpful-action .btn:hover {
    background-color: rgba(128, 137, 150, 0.1);
    color: #233d63;
}

.review-reply {
    margin-left: 104px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .review-reply {
        margin-left: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-reply {
        margin-left: 0;
    }
}

/*===== client-logo-item =======*/
.client-logo-item {
    display: inline-block;
}

.client-logo-item img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.client-logo-item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/*====== client--logo-item ========*/
.client--logo-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.client--logo-item img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/*====== client--logo-item-2 ========*/
.client--logo-item-2 img {
    max-width: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-2 {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .client-logo-2 {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .client-logo-2 {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-wrap {
        text-align: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .client-logo-wrap {
        text-align: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .client-logo-wrap {
        text-align: center !important;
    }
}

/*====== testimonial-carousel ========*/
.testimonial-carousel .owl-stage-outer,
.testimonial-carousel-3 .owl-stage-outer {
    padding-top: 30px;
}

/*====================================================
    GALLERY
 ====================================================*/
.portfolio-filter {
    text-align: center;
}

.portfolio-filter li {
    display: inline-block;
    padding: 8px 25px;
    cursor: pointer;
    color: #233d63;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio-filter li.active {
    color: #b00604;
    -webkit-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
    -moz-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
    box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
    background-color: #fff;
}

.generic-portfolio-item {
    position: relative;
    z-index: 1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.generic-portfolio-item img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.generic-portfolio-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link {
    opacity: 1;
    visibility: visible;
}

.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link .icon-element,
.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link:after {
    visibility: visible;
    opacity: 1;
}

.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link .icon-element {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.generic-portfolio-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.generic-portfolio-content .portfolio-link {
    display: block;
}

.generic-portfolio-content .portfolio-link .icon-element {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    -moz-transform: translate(-50%, -50%) scale(1.4);
    -ms-transform: translate(-50%, -50%) scale(1.4);
    -o-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.generic-portfolio-content .portfolio-link:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*-============ cta-content-wrap =============-*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-content-wrap svg {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cta-content-wrap svg {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cta-content-wrap svg {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cta-content-wrap .section__title {
        font-size: 35px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-btn-box {
        text-align: left !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cta-btn-box {
        text-align: left !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cta-btn-box {
        text-align: left !important;
    }
}

.chart-legend li {
    font-size: 15px;
    margin-bottom: 3px;
    display: inline-block;
    padding-right: 15px;
}

.chart-legend li:last-child {
    padding-right: 0;
}

[class$="-legend"] {
    cursor: pointer;
}

[class$="-legend"] li {
    display: inline-block;
    padding-right: 14px;
    font-size: 15px;
}

[class$="-legend"] li:last-child {
    padding-right: 0;
}

[class$="-legend"] li.hidden {
    text-decoration: line-through;
}

[class$="-legend"] li span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    height: 10px;
    margin-right: 5px;
    width: 10px;
}

/*======================================
      faq-area
 ======================================*/
.faq-panel {
    margin-bottom: 10px;
}

.faq-panel.is-active .faq-heading .faq__title {
    background-color: var(--cyber-red);
    color: var(--white);
}

.faq-panel.is-active .faq-heading .faq__title i {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq-heading .faq__title {
    color: var(--heading-color);
    width: 100%;
    cursor: pointer;
    padding: 20px 30px 18px 30px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 500;
    font-size: 20px;
    background-color: rgba(var(--neutral-500-rgb), 0.1);
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .faq-heading .faq__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .faq-heading .faq__title {
        font-size: 16px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .faq-heading .faq__title {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.faq-heading .faq__title i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.faq-heading .faq__title:hover {
    background-color: var(--cyber-red);
    color: var(--white);
}

.faq-content {
    padding: 20px;
    display: none;
}

.faq-content .faq__desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 28px;
}

.body-overlay {
    background: rgba(30, 30, 28, 0.9);
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1024;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*---------------- fixed-nav ----------------*/
.fixed-nav .header-top {
    height: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
}

.fixed-nav .header-menu-content {
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    -moz-box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
    box-shadow: 0 0 40px rgba(var(--shadow-base-rgb), 0.1);
}

/*===== owl-action-styled =======*/
@media (max-width: 480px) {
    .owl-action-styled .owl-nav {
        text-align: center;
    }
}

.owl-action-styled .owl-nav div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
    box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
    background-color: #fff;
    font-size: 18px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 480px) {
    .owl-action-styled .owl-nav div {
        display: inline-block;
        position: inherit;
        top: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 33px;
        height: 33px;
        line-height: 33px;
    }
}

.owl-action-styled .owl-nav div:hover {
    background-color: #b00604;
    color: #fff;
}

.owl-action-styled .owl-nav div.owl-prev {
    left: 20px;
}

@media (max-width: 480px) {
    .owl-action-styled .owl-nav div.owl-prev {
        left: auto;
        margin-right: 10px;
    }
}

.owl-action-styled .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}

@media (max-width: 480px) {
    .owl-action-styled .owl-nav div.owl-next {
        right: auto;
    }
}

.owl-action-styled .owl-dots {
    width: 100%;
    text-align: center;
}

.owl-action-styled .owl-dots div {
    width: 14px;
    height: 14px;
    background-color: rgba(128, 137, 150, 0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    margin: 0 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.owl-action-styled .owl-dots div::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.owl-action-styled .owl-dots div.active {
    background-color: #b00604;
}

.owl-action-styled .owl-dots div.active::after {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
}

/*===== owl-action-styled =======*/
.owl--action-styled .owl-nav div.owl-prev {
    left: -80px;
}

@media (max-width: 1280px) {
    .owl--action-styled .owl-nav div.owl-prev {
        left: -20px;
    }
}

.owl--action-styled .owl-nav div.owl-next {
    right: -80px;
}

@media (max-width: 1280px) {
    .owl--action-styled .owl-nav div.owl-next {
        right: -20px;
    }
}

/*===== owl-action-styled-2 =======*/
.owl-action-styled-2 .owl-nav div {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.owl-action-styled-2 .owl-nav div.owl-prev {
    left: -17px;
}

.owl-action-styled-2 .owl-nav div.owl-next {
    right: -17px;
}

/*===== custom-scrollbar-styled =====*/
.custom-scrollbar-styled::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar-styled::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scrollbar-styled::-webkit-scrollbar-thumb {
    background: rgba(128, 137, 150, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.custom-scrollbar-styled::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 137, 150, 0.4);
}

/*===== avatar sizes =====*/
.avatar-lg {
    width: 120px !important;
    height: 120px !important;
}

.avatar-md {
    width: 65px !important;
    height: 65px !important;
}

.avatar-sm {
    width: 48px !important;
    height: 48px !important;
}

.avatar-xs {
    width: 32px !important;
    height: 32px !important;
}

/*===== dot-bg =====*/
.dot-bg {
    position: relative;
    z-index: 1;
}

.dot-bg:before,
.dot-bg:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-position: center;
    background-image: url("../images/dots.png");
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.dot-bg:after {
    top: -80px;
    left: auto;
    bottom: auto;
    right: 0;
}

/*======== ring-shape ========*/
.ring-shape {
    position: absolute;
    border: 2px solid rgba(128, 137, 150, 0.2);
    width: 25px;
    height: 25px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.ring-shape.ring-shape-1 {
    left: 4%;
    top: 15%;
}

.ring-shape.ring-shape-2 {
    left: 10%;
    top: 30%;
}

.ring-shape.ring-shape-3 {
    left: 5%;
    top: 50%;
}

.ring-shape.ring-shape-4 {
    left: 10%;
    bottom: 15%;
}

.ring-shape.ring-shape-5 {
    right: 5%;
    top: 10%;
}

.ring-shape.ring-shape-6 {
    right: 15%;
    top: 30%;
}

.ring-shape.ring-shape-7 {
    right: 6%;
    bottom: 20%;
}

/*======= stroke-shape ========*/
.stroke-shape {
    position: absolute;
    width: 200px;
    -webkit-transform: rotate(-55deg);
    -moz-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    -o-transform: rotate(-55deg);
    transform: rotate(-55deg);
    opacity: 0.1;
    background-color: #7f8897;
    height: 2px;
    display: block;
}

.stroke-shape.stroke-shape-1,
.stroke-shape.stroke-shape-2,
.stroke-shape.stroke-shape-3 {
    top: 175px;
}

.stroke-shape.stroke-shape-1 {
    left: 70px;
}

.stroke-shape.stroke-shape-2 {
    left: 90px;
}

.stroke-shape.stroke-shape-3 {
    left: 110px;
}

.stroke-shape.stroke-shape-4 {
    right: 70px;
}

.stroke-shape.stroke-shape-5 {
    right: 90px;
}

.stroke-shape.stroke-shape-6 {
    right: 110px;
}

.stroke-shape.stroke-shape-4,
.stroke-shape.stroke-shape-5,
.stroke-shape.stroke-shape-6 {
    bottom: 0;
    -webkit-transform: rotate(55deg);
    -moz-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    -o-transform: rotate(55deg);
    transform: rotate(55deg);
}

/*============= ring--shape =================*/
.ring--shape {
    width: 50px;
    height: 50px;
    border-width: 8px;
    border-color: #fff;
    opacity: 0.1;
}

.ring--shape.ring-shape-1 {
    top: -20%;
}

.ring--shape.ring-shape-2 {
    top: 73%;
    left: 50%;
}

.ring--shape.ring-shape-3 {
    top: 5%;
    left: auto;
    right: 10%;
}

/*============= img-bg =================*/
.img-bg,
.img-bg-2,
.img-bg-3,
.pattern-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.img-bg {
    background-image: url(../images/img7.jpg);
}

.img-bg-2 {
    background-image: url("../images/breadcrumb-bg.jpg");
}

.img-bg-3 {
    background-image: url("../images/breadcrumb-bg-2.jpg");
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--black);
    opacity: 0.8;
}

.pattern-bg {
    background-image: url("../images/pattern.png");
}

/*============= generic-img-box =================*/
.generic-img-box {
    position: relative;
    height: 100%;
}

.generic-img-box::after {
    position: absolute;
    content: "";
    right: -50px;
    bottom: 150px;
    width: 200px;
    height: 150px;
    background-image: url(../images/dots.png);
    background-position: center;
    background-size: cover;
    pointer-events: none;
    opacity: 0.2;
    z-index: -1;
}

.generic-img-box .img__item {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: absolute;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box .img__item {
        position: inherit;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box .img__item {
        position: inherit;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box .img__item {
        position: inherit;
    }
}

.generic-img-box .img__item-1 {
    top: 0;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box .img__item-1 {
        top: auto;
        right: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box .img__item-1 {
        top: auto;
        right: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box .img__item-1 {
        top: auto;
        right: auto;
    }
}

.generic-img-box .img__item-2 {
    bottom: 100px;
    left: -60px;
    width: 250px;
    border: 10px solid #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box .img__item-2 {
        bottom: auto;
        left: auto;
        width: 100%;
        border: 0;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box .img__item-2 {
        bottom: auto;
        left: auto;
        width: 100%;
        border: 0;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box .img__item-2 {
        bottom: auto;
        left: auto;
        width: 100%;
        border: 0;
        margin-top: 30px;
    }
}

/*============= generic-img-box-layout-2 =================*/
.generic-img-box-layout-2::after {
    display: none;
}

.generic-img-box-layout-2 img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 100%;
    height: 100%;
}

.generic-img-box-layout-2 .img__item {
    width: 220px;
    height: 220px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box-layout-2 .img__item {
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box-layout-2 .img__item {
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box-layout-2 .img__item {
        margin-left: auto;
        margin-right: auto;
    }
}

.generic-img-box-layout-2 .img__item-1 {
    right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box-layout-2 .img__item-1 {
        right: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box-layout-2 .img__item-1 {
        right: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box-layout-2 .img__item-1 {
        right: auto;
    }
}

.generic-img-box-layout-2 .img__item-2 {
    left: 20px;
    top: 0;
    bottom: auto;
    border: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box-layout-2 .img__item-2 {
        left: auto;
        top: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box-layout-2 .img__item-2 {
        left: auto;
        top: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box-layout-2 .img__item-2 {
        left: auto;
        top: auto;
    }
}

.generic-img-box-layout-2 .img__item-3 {
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .generic-img-box-layout-2 .img__item-3 {
        bottom: auto;
        left: auto;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        margin-top: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .generic-img-box-layout-2 .img__item-3 {
        bottom: auto;
        left: auto;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        margin-top: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .generic-img-box-layout-2 .img__item-3 {
        bottom: auto;
        left: auto;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        margin-top: 30px;
    }
}

.generic-img-box-layout-2 .generic-img-box-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    color: #fff;
}

.generic-img-box-layout-2 .generic-img-box-content h3 {
    color: #fff;
}

.generic-img-box-layout-3 {
    height: auto;
}

.generic-img-box-layout-3 .img__item {
    position: inherit;
}

.generic-img-box-layout-3 .img__item-1 {
    top: auto;
    right: auto;
}

.generic-img-box-layout-3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 35%;
    height: 100%;
    width: 10px;
    background-color: #fff;
    z-index: 1;
}

.generic-img-box-layout-3::after {
    right: -40px;
    bottom: -40px;
}

/*======= half-shape ======*/
.half-shape {
    position: relative;
}

.half-shape::after {
    content: "";
    position: absolute;
    width: 10000px;
    height: 100vh;
    left: 0;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    z-index: -1;
}

/*===== quiz-action-content ====*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-action-content {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-action-content {
        display: block !important;
    }
}

/*===== quiz-nav ====*/
.quiz-nav li {
    margin-right: 20px;
}

@media (max-width: 375px) {
    .quiz-nav li {
        margin-bottom: 10px;
    }
}

.quiz-nav li:last-child {
    margin-right: 0;
}

.quiz-nav li img {
    width: 40px;
    margin-right: 15px;
}

.quiz-nav li a {
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.quiz-nav li a:hover {
    color: #b00604;
}

.quiz-nav li p {
    line-height: 22px;
}

.quiz-nav li p a {
    color: #233d63;
    font-size: 17px;
}

/*===== quiz-course-nav =====*/
.quiz-course-nav {
    position: relative;
    z-index: 1;
}

.quiz-course-nav::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    height: 2px;
    background-color: #fff;
    opacity: 0.1;
    z-index: -1;
}

/*====== quiz-nav-btns ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

.quiz-nav-btns .theme-btn {
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-nav-btns .theme-btn {
        margin-bottom: 10px;
    }
}

/*====== quiz-action ======*/
.quiz-content .quiz-desc {
    width: 700px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

/*====== quiz-result-content ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

/*===== level-timeline =======*/
.level-timeline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .level-timeline {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .level-timeline {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .level-timeline {
        margin-top: 60px;
    }
}

.level-timeline .icon-element {
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #eeeeee;
    flex-shrink: 0;
}

.level-timeline .level-active {
    background-color: #b00604;
    color: #fff;
}

.level-timeline .level-active .level-dot {
    background-color: #b00604;
}

.level-timeline .level-dot {
    position: absolute;
    top: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.level-timeline::before {
    position: absolute;
    content: "";
    background-color: #eeeeee;
    z-index: -1;
    width: 70%;
    height: 5px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
}

.level-dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: #eeeeee;
    border: 2px solid #fff;
}

/*-===============================
    FEATURE AREA
===============================-*/
.feature-area {
    position: relative;
    z-index: 2;
}

.feature-content-wrap {
    margin-top: -60px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .feature-content-wrap {
        margin-top: 120px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .feature-content-wrap {
        margin-top: 80px;
    }
}

.dot-status {
    height: 14px;
    width: 14px;
    background-color: #f7f7ff;
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.scrolled-box {
    max-height: 410px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.scrolled--box {
    max-height: 550px;
}

/*===== jqte =====*/
.jqte {
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color: rgba(128, 137, 150, 0.2);
}

.jqte * {
    font-family: "Arial", sans-serif !important;
}

.jqte ul,
.jqte dl,
.jqte ol {
    padding: 5px 5px 5px 16px;
}

.jqte ul {
    list-style: disc;
}

.jqte_toolbar {
    background-color: rgba(128, 137, 150, 0.1);
    border-bottom-color: rgba(128, 137, 150, 0.2);
}

.jqte_tool {
    padding: 3px;
}

.jqte_tool:hover {
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
}

.jqte_tool,
.jqte_tool_icon,
.jqte_tool_label {
    border-color: transparent !important;
}

.jqte_title {
    font-weight: 600;
}

.jqte_tool.jqte_tool_1 .jqte_tool_label {
    width: 80px;
    height: 24px;
    padding: 0;
}

.jqte_formats,
.jqte_fontsizes,
.jqte_cpalette,
.jqte_linktypes {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    border-color: rgba(128, 137, 150, 0.3);
}

.jqte_formats .jqte_format:hover,
.jqte_fontsizes .jqte_fontsize:hover,
.jqte_linktypes a:hover {
    background-color: rgba(128, 137, 150, 0.1);
}

.jqte_editor,
.jqte_source {
    min-height: 160px;
}

.jqte_placeholder {
    display: block;
}

.jqte_placeholder_text {
    top: 49px;
    color: #7f8897;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .jqte_placeholder_text {
        top: 80px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .jqte_placeholder_text {
        top: 80px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .jqte_placeholder_text {
        top: 130px;
    }
}

.jqte_linktypeview {
    border-color: rgba(128, 137, 150, 0.3);
    padding: 4px 10px;
}

.jqte_linktypearrow {
    bottom: 13px;
    right: 13px;
}

.jqte_linkinput {
    border-color: rgba(128, 137, 150, 0.3);
    padding-top: 4px;
    padding-bottom: 4px;
    color: #233d63;
}

.jqte_linkinput:focus,
.jqte_linkinput:hover {
    border-color: rgba(128, 137, 150, 0.8);
}

.jqte_linkbutton {
    background-color: rgba(128, 137, 150, 0.1);
    border-color: rgba(128, 137, 150, 0.4);
    color: #233d63;
    -webkit-box-shadow: inset 0 0;
    -moz-box-shadow: inset 0 0;
    box-shadow: inset 0 0;
    padding-top: 4px;
    padding-bottom: 4px;
}

.jqte_linkbutton:hover {
    background-color: rgba(128, 137, 150, 0.3);
}

/*======== pulse-btn =======*/
.pulse-btn {
    position: relative;
    z-index: 1;
}

.pulse-btn:before,
.pulse-btn:after {
    position: absolute;
    content: "";
    top: -25px;
    left: -25px;
    bottom: -25px;
    right: -25px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: play-button-pulse 1.8s linear infinite;
    -moz-animation: play-button-pulse 1.8s linear infinite;
    animation: play-button-pulse 1.8s linear infinite;
    opacity: 0;
    z-index: -1;
}

.pulse-btn:after {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.pulse-btn:hover {
    color: #b00604;
}

/*====== story-img-item =======*/
.story-img-item {
    position: relative;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .story-img-item.mt-90px {
        margin-top: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .story-img-item.mt-90px {
        margin-top: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .story-img-item.mt-90px {
        margin-top: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .story-img-item {
        width: 280px;
        height: 280px;
    }
}

.story-img-item img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.story-img-item .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.story-img-item:hover .video-play-btn {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    -o-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.video-box {
    width: auto;
    height: auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.video-box img {
    height: 450px;
    object-fit: cover;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .register-content {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .register-content {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .register-content {
        margin-top: 30px;
    }
}

/*======= request-demo-area ========*/
.request-demo-area {
    z-index: 1;
}

.request-demo-cta {
    border-left: 8px solid #b00604;
    padding: 20px 0 20px 32px;
}

/*======= Responsive column ========*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .responsive-column-half {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive-column-half {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .responsive-column-half {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*======= flip-box ==========*/
.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.flip-box .flip-img {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
}

.flip-box .flip-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    -webkit-transform: translateZ(60px) scale(0.88);
    -moz-transform: translateZ(60px) scale(0.88);
    -ms-transform: translateZ(60px) scale(0.88);
    -o-transform: translateZ(60px) scale(0.88);
    transform: translateZ(60px) scale(0.88);
    color: #fff;
}

.flip-box .flip-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.flip-box:hover .flip-box-front {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-front,
.flip-box-back {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-front:after,
.flip-box-back:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    opacity: 0.6;
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/*-===============================
    PACKAGE AREA
===============================-*/
.package-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #b00604;
    color: #fff;
    font-weight: 600;
    display: block;
    text-align: center;
    padding: 14px 10px;
    font-size: 17px;
}

.package-item-active {
    padding-top: 55px;
    margin-top: -24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .package-item-active {
        margin-top: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .package-item-active {
        margin-top: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .package-item-active {
        margin-top: 0;
    }
}

/*===== generic-tab =====*/
.generic-tab {
    border-bottom: 0;
}

.generic-tab .nav-item {
    margin-right: 5px;
    margin-bottom: 5px;
}

.generic-tab .nav-link {
    color: #7f8897;
    border: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.generic-tab .nav-link:hover {
    color: #b00604;
}

.generic-tab .nav-link.active {
    color: #fff;
    background-color: #8B0000;
    -webkit-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
    -moz-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
    box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
}

/*===== generic-tab-layout-2 =====*/
.generic-tab-layout-2 .nav-item {
    margin-right: 10px;
    margin-bottom: 0;
}

.generic-tab-layout-2 .nav-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
}

.generic-tab-layout-2 .nav-link::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: #233d63;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-tab-layout-2 .nav-link.active {
    color: #b00604;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.generic-tab-layout-2 .nav-link.active .shop-cart-btn {
    color: #b00604;
}

.generic-tab-layout-2 .nav-link.active::after {
    opacity: 1;
    visibility: visible;
    background-color: #b00604;
}

/*======= generic-table ========*/
.generic-table {
    color: #233d63;
    margin-bottom: 0;
}

.generic-table thead {
    background-color: rgba(127, 126, 151, 0.1);
}

.generic-table thead th {
    border: none;
    font-weight: 600;
}

.generic-table tbody th,
.generic-table tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: none;
    vertical-align: middle;
    font-weight: 500;
    border-bottom: 1px solid rgba(127, 126, 151, 0.1);
}

/* modal container */
.modal-container.fade .modal-dialog {
    -webkit-transform: scale(0.8) translate(0, 0);
    -moz-transform: scale(0.8) translate(0, 0);
    -ms-transform: scale(0.8) translate(0, 0);
    -o-transform: scale(0.8) translate(0, 0);
    transform: scale(0.8) translate(0, 0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.modal-container .close span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-container .close:hover span {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #b00604;
}

.modal-container .modal-content {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.modal-container .modal-dialog {
    -webkit-transform: scale(0.8) translate(0, 0);
    -moz-transform: scale(0.8) translate(0, 0);
    -ms-transform: scale(0.8) translate(0, 0);
    -o-transform: scale(0.8) translate(0, 0);
    transform: scale(0.8) translate(0, 0);
}

.modal-container.show {
    display: block;
}

.modal-container.show .modal-dialog {
    -webkit-transform: scale(1) translate(0, 0);
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -o-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
}

/*========== copy-to-clipboard ============*/
.copy-to-clipboard {
    position: relative;
}

.success-message {
    background-color: #38bb0c;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 3px 6px;
    position: absolute;
    top: -10px;
    left: 45%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}

.success-message.active {
    top: -40px;
    opacity: 1;
    visibility: visible;
}

.success-message:after {
    position: absolute;
    content: "";
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    background-color: #38bb0c;
    width: 8px;
    height: 8px;
}

/*======== card-item =========*/
.card-item {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    border: 0;
}

.card-item .card-title {
    color: var(--white);
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 1px;
    font-size: 20px;
}

.card-item .card-title a {
    color: #233d63;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-title a:hover {
    color: #b00604;
}

.card-item .card-text a {
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-text a:hover {
    color: #b00604;
}

.card-item .card-body {
    /* padding: 1.6rem; */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

/*======== card-image =========*/
.card-image {
    position: relative;
}

.card-image .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-image .course-badge-labels {
    position: absolute;
    top: 10px;
    left: 10px;
}

.card-image .course--badge-labels {
    left: auto;
    right: 10px;
}

.card-image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    -o-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.card-image:hover .play-button {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/*======= course-badge =======*/
.course-badge {
    background-color: #f68a03;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    padding: 4px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.2px;
}

.course-badge.blue {
    background-color: #358ff7;
}

.course-badge.green {
    background-color: #38bb0c;
}

.course-badge.red {
    background-color: #dd493d;
}

.course-badge.sky-blue {
    background-color: #3aaae1;
}

/*======= share-wrap ======*/
.share-wrap {
    position: relative;
}

.share-wrap .social-icons {
    position: absolute;
    top: 2px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: 115px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.share-wrap .social-icons.social-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-45px);
    -moz-transform: translateX(-45px);
    -ms-transform: translateX(-45px);
    -o-transform: translateX(-45px);
    transform: translateX(-45px);
}

.share-toggle {
    z-index: 1;
    position: relative;
}

.share-toggle.share-toggle-active i::before {
    content: "\f00d";
}

/*======= card-item-list-layout ======*/
.card-item-list-layout {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.card-item-list-layout .card-image {
    width: 33%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-image {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-image {
        width: auto;
    }
}

.card-item-list-layout .card-image a {
    height: 100%;
}

.card-item-list-layout .card-image .card-img-top {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-image .card-img-top {
        height: auto;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-image .card-img-top {
        height: auto;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
    }
}

.card-item-list-layout .card-body {
    width: 67%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-body {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-body {
        width: auto;
    }
}

/*====== card-preview =======*/
.tooltip_templates {
    display: none;
}

.tooltipster-sidetip {
    width: 380px !important;
}

.tooltipster-sidetip .tooltipster-box {
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.tooltipster-sidetip .tooltipster-content {
    color: inherit;
    line-height: inherit;
    padding: 0;
}

.tooltipster-sidetip .card-item {
    margin-bottom: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #fff;
    top: 2px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #fff;
    left: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    left: -1px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    left: 0;
    border-left-color: #fff;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    right: -1px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #fff;
    top: -2px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border: none;
}

/*======== media-card =======*/
.media-card .media-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.media-card .media-img img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.media-card .media--img {
    border: 4px solid #fff;
    -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
}

.media-card .media-img-md {
    width: 100px;
    height: 100px;
}

.media-card .media-img-lg {
    width: 200px;
    height: 200px;
}

.media-card .media-body h5 {
    color: #233d63;
    font-weight: 600;
    line-height: 18px;
}

.media-card .media-body h5 a {
    color: #233d63;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.media-card .media-body h5 a:hover {
    color: #b00604;
}

/*-========= header-menu-area ==========-*/
.header-menu-area {
    position: relative;
    z-index: 1023;
}

.dashboard-menu-content {
    width: calc(100% - 250px);
    margin-left: auto;
}

@media (max-width: 1199px) {
    .dashboard-menu-content {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-menu-content .menu-wrapper {
        margin-top: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .dashboard-menu-content .menu-wrapper {
        margin-top: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .dashboard-menu-content .menu-wrapper {
        margin-top: 0;
    }
}

/*===== header top =====*/
@media (max-width: 1440px) {
    .header-top {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

/*===== header-widget =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.header-widget .generic-list-item li {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

/*===== shop-cart ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-cart {
        text-align: left;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .shop-cart {
        text-align: left;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .shop-cart {
        text-align: left;
    }
}

.shop-cart>ul>li {
    position: relative;
}

.shop-cart>ul>li:hover .cart-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 45px;
}

/*===== shop-cart-btn ======*/
.shop-cart-btn {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    color: #233d63;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.shop-cart-btn .dot-status {
    position: absolute;
    top: 6px;
    right: -6px;
}

.shop-cart-btn:hover {
    color: #b00604;
}

/*===== product-count ======*/
.product-count {
    width: 18px;
    height: 18px;
    line-height: 17px;
    text-align: center;
    background-color: #b00604;
    color: #fff;
    font-size: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
}

/*===== cart-dropdown-menu ======*/
.cart-dropdown-menu {
    position: absolute;
    right: 0;
    top: 50px;
    width: 325px;
    background-color: #fff;
    padding: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cart-dropdown-menu {
        right: -145px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu {
        right: -90px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu {
        right: -80px;
        width: 300px;
    }
}

.cart-dropdown-menu li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(127, 136, 151, 0.1);
}

.cart-dropdown-menu li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.cart-dropdown-menu .media-body {
    font-size: 14px;
}

.cart-dropdown-menu .media-body h5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 3.4rem;
    font-size: 14px;
}

.cart-dropdown-menu:after {
    top: -8px;
    content: "";
    position: absolute;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cart-dropdown-menu:after {
        right: 50%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu:after {
        right: 100px;
    }
}

/*====== notification-dropdown-menu=======*/
.notification-dropdown-menu li {
    margin-bottom: 0;
    padding-bottom: 0;
}

.notification-dropdown-menu li.menu-heading-block {
    padding: 15px 20px;
}

.notification-dropdown-menu .generic-list-item {
    font-size: 14px;
}

.notification-dropdown-menu .generic-list-item li {
    border-bottom: 0;
}

.notification-dropdown-menu .generic-list-item a {
    padding: 8px 20px;
}

.menu-heading-block h4 {
    font-size: 16px;
    font-weight: 600;
}

.menu-heading-block p {
    font-weight: 400;
    font-size: 14px;
}

.notification-body a {
    padding: 15px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.notification-body a:last-child {
    border-bottom: 0;
}

.notification-body a:hover {
    background-color: rgba(128, 137, 150, 0.04);
}

.notification-body a:hover.message-active {
    background-color: rgba(53, 143, 227, 0.07);
}

/*====== user-profile-cart =======*/
.user-profile-cart .cart-dropdown-menu {
    width: 280px;
}

/*====== header-menu-content =======*/
.header-menu-content {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1440px) {
    .header-menu-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.header-menu-content.fixed-top {
    -webkit-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
    -moz-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
    box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
}

/*====== off-canvas-menu-toggle =======*/
.search-menu-toggle,
.off-canvas-menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 1199px) {

    .search-menu-toggle,
    .off-canvas-menu-toggle {
        display: inline-block;
    }
}

.search-menu-toggle:hover,
.off-canvas-menu-toggle:hover {
    color: #b00604;
}

/*====== sub-nav-toggler =======*/
.sub-nav-toggler {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #233d63;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: none;
    outline: none;
    z-index: 2;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
    -moz-box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
    box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
}

.sub-nav-toggler .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .sub-nav-toggler {
        display: block;
    }
}

.sub-nav-toggler:hover {
    color: #b00604;
}

.sub-nav-toggler.active {
    color: #b00604;
}

.sub-nav-toggler.active .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/*====== logo-box =======*/
.logo-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 1199px) {
    .logo-box {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.logo-box .logo {
    display: inline-block;
}

.logo--box {
    display: none;
}

@media (max-width: 1199px) {
    .logo--box {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }
}

/*====== menu-category =======*/
@media (max-width: 1199px) {
    .menu-category {
        display: none;
    }
}

.menu-category>ul>li {
    position: relative;
}

.menu-category>ul>li a {
    color: #233d63;
    text-transform: capitalize;
    padding-bottom: 35px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-category>ul>li a:hover {
    color: #b00604;
}

.menu-category>ul>li .cat-dropdown-menu {
    position: absolute;
    left: 0;
    top: 60px;
    width: 320px;
    background-color: #fff;
    display: block;
    padding: 25px 0 25px 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.menu-category>ul>li .cat-dropdown-menu>li {
    margin-bottom: 8px;
    position: relative;
}

.menu-category>ul>li .cat-dropdown-menu>li:last-child {
    margin-bottom: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li>a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li>a .la-angle-right {
    font-size: 13px;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu {
    position: absolute;
    top: -24px;
    left: 96%;
    width: 280px;
    background-color: #fff;
    padding: 25px 0 25px 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    visibility: hidden;
    opacity: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li {
    margin-bottom: 5px;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li:last-child {
    margin-bottom: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li a {
    color: #7f8897;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-right: 0;
    padding-left: 0;
    margin-left: 30px;
    padding-bottom: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li a:after {
    width: 0;
    height: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    right: 0;
    background-color: #b00604;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li a:hover {
    color: #b00604;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu li a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.menu-category>ul>li .cat-dropdown-menu>li .sub-menu.active {
    display: block;
}

.menu-category>ul>li .cat-dropdown-menu>li:hover .sub-menu {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.menu-category>ul>li .cat-dropdown-menu:after {
    top: -8px;
    content: "";
    position: absolute;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
}

.menu-category>ul>li:hover .cat-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 43px;
}

/*===== main-menu-content ======*/
.main-menu-content {
    position: relative;
}

@media (max-width: 1199px) {
    .main-menu-content {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (max-width: 1199px) {

    .main-menu-content .col-lg-2,
    .main-menu-content .col-lg-3 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*===== menu-wrapper ======*/
.menu-wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

@media (max-width: 1199px) {
    .menu-wrapper {
        display: none;
    }
}

.menu-wrapper form {
    width: 350px;
    margin-right: 25px;
    margin-left: 25px;
}

@media (max-width: 1366px) {
    .menu-wrapper form {
        width: 300px;
    }
}

@media (max-width: 1280px) {
    .menu-wrapper form {
        width: 280px;
        margin-right: 15px;
        margin-left: 15px;
    }
}

/*===== main-menu ======*/
.main-menu {
    margin-right: 18px;
}

.main-menu>ul>li {
    display: inline-block;
    margin-right: 18px;
    text-transform: capitalize;
    position: relative;
}

.main-menu>ul>li.mega-menu-has {
    position: static;
}

.main-menu>ul>li a {
    font-size: 15px;
    color: #233d63;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: 33px;
}

.main-menu>ul>li a:hover {
    color: #b00604;
}

.main-menu>ul>li:last-child {
    margin-right: 0;
}

.main-menu>ul>li .dropdown-menu-item {
    position: absolute;
    left: 0;
    top: 60px;
    width: 220px;
    background-color: #fff;
    padding: 15px 25px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    opacity: 0;
    visibility: hidden;
}

.main-menu>ul>li .dropdown-menu-item>li {
    display: block;
    margin-right: 0;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.main-menu>ul>li .dropdown-menu-item>li:last-child {
    margin-bottom: 0;
}

.main-menu>ul>li .dropdown-menu-item>li>a {
    color: #7f8897;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main-menu>ul>li .dropdown-menu-item>li>a:hover {
    color: #b00604;
}

.main-menu>ul>li .dropdown-menu-item>li .menu-banner img {
    object-fit: cover;
}

.main-menu>ul>li .mega-menu {
    top: 95px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.main-menu>ul>li .mega-menu>ul>li {
    margin-bottom: 0;
    border-left: 1px solid rgba(128, 137, 150, 0.1);
    padding: 15px 30px;
}

.main-menu>ul>li .mega-menu>ul>li:first-child {
    padding-left: 0;
    border-left: 0;
}

.main-menu>ul>li .mega-menu>ul>li:last-child {
    border-left: 0;
    padding-right: 0;
}

.main-menu>ul>li .mega-menu>ul>li>a {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu>ul>li:hover .dropdown-menu-item {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.main-menu>ul>li:hover .mega-menu {
    top: 70px;
}

.menu-banner-content {
    z-index: 2;
}

.menu-banner-content .btn {
    padding-bottom: 6px;
    line-height: 28px;
    display: block;
}

.menu-banner-content .btn:hover {
    color: #fff;
}

.down-button {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    text-align: center;
    height: 22px;
    line-height: 20px;
    background-color: rgba(128, 137, 150, 0.1);
    color: #7f8897;
    display: none;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button.active .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.down-button:hover {
    color: #fff;
    background-color: #b00604;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .down-button {
        display: block;
    }
}

/*======= nav-right-button =======*/
@media (max-width: 1199px) {
    .nav-right-button .course-cart {
        display: none;
    }
}

.nav-right-button .generic-list-item li {
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
}

.nav-right-button .generic-list-item li a {
    color: #233d63;
}

.nav-right-button .generic-list-item li a:hover {
    color: #b00604;
}

.nav-right-button .generic-list-item li:last-child {
    margin-right: 0;
}

.nav-right-button .notification-dropdown-menu .generic-list-item li {
    margin-right: 0;
    margin-bottom: 0;
    display: block;
}

/*====== user-action-wrap =======*/
@media (max-width: 1199px) {
    .user-action-wrap {
        display: none !important;
    }
}

/*====== off-canvas-menu-close =======*/
.off-canvas-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.off-canvas-menu-close i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.off-canvas-menu-close:hover {
    color: #b00604;
}

.off-canvas-menu-close:hover i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*====== off-canvas-menu-heading =======*/
.off-canvas-menu-heading {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
    color: #7f8897;
    font-weight: 700;
}

/*====== off-canvas-menu =======*/
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    overflow-x: hidden;
    z-index: 1035;
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -ms-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media (max-width: 375px) {
    .off-canvas-menu {
        width: 320px;
    }
}

.off--canvas-menu {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .off--canvas-menu {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.main-off-canvas-menu.active,
.category-off-canvas-menu.active,
.user-off-canvas-menu.active,
.off--canvas-menu.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/*====== off-canvas-menu-list ========*/
.off-canvas-menu-list li {
    margin-bottom: 0;
    font-size: 15px;
}

.off-canvas-menu-list li svg {
    fill: #233d63;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.off-canvas-menu-list li a {
    background-color: #fff;
    color: #233d63;
    text-transform: capitalize;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6px 20px;
    border-right: 2px solid transparent;
}

.off-canvas-menu-list li .sub-menu {
    display: none;
}

.off-canvas-menu-list li .sub-menu li a {
    color: #7f8897;
}

.off-canvas-menu-list li .sub-menu li a:hover {
    color: #b00604;
}

/*=========== off--canvas-menu-list ===========*/
.off--canvas-menu-list li a {
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: flex-start;
}

.off--canvas-menu-list li a:hover {
    color: #358ff7;
}

.off--canvas-menu-list li a:hover svg {
    fill: #358ff7;
}

.off--canvas-menu-list li.page-active svg {
    fill: #358ff7;
}

.off--canvas-menu-list li.page-active a {
    background-color: rgba(53, 143, 227, 0.04);
    color: #358ff7;
    border-right-color: #358ff7;
}

.mobile-search-form {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.mobile-search-form.active {
    opacity: 1;
    visibility: visible;
}

.search-bar-close {
    cursor: pointer;
}

.search-bar-close i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.search-bar-close:hover {
    color: #b00604;
}

.search-bar-close:hover i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*======== sidebar-user-action-list ========*/
.sidebar-user-action-list>li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(127, 136, 151, 0.1);
}

.sidebar-user-action-list>li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-user-action-list .media-body h5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 3.4rem;
    font-size: 14px;
}

.sidebar-user-action-list .media-body span,
.sidebar-user-action-list .media-body p {
    font-size: 14px;
}

.sidebar-user-action-list .generic-list-item li a {
    color: #233d63;
    font-size: 15px;
}

.sidebar-user-action-list .generic-list-item li a:hover {
    color: #b00604;
}

.sidebar-user-action-list .notification-body a {
    padding-right: 0;
    padding-left: 0;
}

.dashboard-menu-close {
    display: none;
    z-index: 3;
}

@media (max-width: 1199px) {
    .dashboard-menu-close {
        display: inline-block;
    }
}

/*======== dashboard-menu-toggler ========*/
.dashboard-menu-toggler {
    display: none;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .dashboard-menu-toggler {
        display: inline-block;
    }
}

.dashboard-menu-toggler:hover {
    background-color: rgba(127, 136, 151, 0.1);
}

/*======== dashboard-content-wrap =========*/
.dashboard-content-wrap {
    height: 100vh;
    padding-top: 45px;
    width: calc(100% - 250px);
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

@media (max-width: 1199px) {
    .dashboard-content-wrap {
        padding-top: 30px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
}

/*======== profile-detail =========*/
.profile-detail .generic-list-item li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .profile-detail .generic-list-item li {
        display: block;
    }
}

.profile-detail .generic-list-item li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-detail .generic-list-item li .profile-name {
    color: #233d63;
    font-weight: 600;
    width: 300px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .profile-detail .generic-list-item li .profile-name {
        width: auto;
        display: block;
        margin-bottom: 4px;
    }
}

.profile-detail .generic-list-item li .profile-desc {
    width: 500px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile-detail .generic-list-item li .profile-desc {
        width: 400px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .profile-detail .generic-list-item li .profile-desc {
        width: auto;
    }
}

/*======= message =========*/
.dashboard-message-wrapper {
    border: 1px solid rgba(127, 136, 151, 0.1);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-message-wrapper {
        flex-direction: column;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .dashboard-message-wrapper {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .dashboard-message-wrapper {
        flex-direction: column;
    }
}

/*======= message-sidebar =========*/
.message-sidebar {
    width: 350px;
    border-right: 1px solid rgba(127, 136, 151, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .message-sidebar {
        width: 100%;
        border-right: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .message-sidebar {
        width: 100%;
        border-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .message-sidebar {
        width: 100%;
        border-right: 0;
    }
}

/*======= message-active =========*/
.message-active {
    background-color: rgba(53, 143, 227, 0.07);
}

/*======= conversation-wrap =========*/
.conversation-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
}

.conversation-box {
    max-height: 620px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 30px;
    padding-left: 30px;
}

/*======= conversation-item =========*/
.conversation-item .media-body {
    flex: inherit;
}

.conversation-item .message-body {
    display: inline-block;
    padding: 10px 15px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: relative;
    background-color: #eeeeee;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .conversation-item .message-body {
        width: 100%;
    }
}

.conversation-item .message-body .la-check {
    display: none;
}

.conversation-item .message-body::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #eeeeee;
}

.conversation-item .message-typing {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.conversation-item .message-typing .typing-director {
    padding-top: 8px;
    margin-left: 3px;
}

/*======= message-sent =========*/
.message-sent .media {
    flex-direction: row-reverse;
}

.message-sent .message-body {
    background-color: #358ff7;
    color: #fff;
}

.message-sent .message-body .la-check {
    display: inline-block;
}

.message-sent .message-body h5 {
    color: #fff;
}

.message-sent .message-body span {
    opacity: 0.8;
    text-align: right;
}

.message-sent .message-body::after {
    background-color: #358ff7;
}

.message-sent .avatar-sm {
    margin-right: 0 !important;
    margin-left: 1rem;
}

/*======= message-reply =========*/
.message-reply .media-body {
    flex-direction: row-reverse;
}

.message-reply .message-body::after {
    right: auto;
    left: -6px;
}

/*======= message-reply-body =========*/
.message-reply-body .emojionearea-emojis-list {
    padding-top: 20px;
}

.message-reply-body .emojionearea {
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.message-reply-body .emojionearea-search {
    height: auto !important;
}

.message-reply-body .emojionearea-search>input {
    height: auto !important;
    border: 1px solid rgba(128, 137, 150, 0.1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 3px 12px;
}

.message-reply-body .emojionearea-editor {
    width: 100%;
    min-height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
    margin-right: 10px;
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #233d63;
    border: none;
    resize: none;
    outline: none;
}

.message-reply-body .emojionearea-editor:before {
    color: #7f8897 !important;
}

.message-reply-body .emojionearea-button {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*========= data-list =========*/
@media (max-width: 1199px) {
    .data-list .btn-group {
        width: 100%;
        margin-bottom: 15px;
    }
}

.data-list .btn.active {
    background-color: #b00604;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-info-card .card-body.d-flex {
        flex-direction: row;
        text-align: left;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .dashboard-info-card .card-body.d-flex {
        flex-direction: row;
        text-align: left;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .dashboard-info-card .card-body.d-flex {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 320px) {
    .emojionearea .emojionearea-picker.emojionearea-picker-position-top {
        right: -100px;
    }
}

/*=================================
  Skillbar
 =================================*/
.skill {
    margin-bottom: 20px;
}

.progress_bg {
    background-color: rgba(127, 136, 151, 0.1);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin-top: 10px;
}

.progress_bg .progress_bar {
    height: 10px;
    background-color: #b00604;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    position: relative;
}

.progress_bg .progress_bar:after {
    position: absolute;
    content: "";
    top: -4px;
    right: -1px;
    width: 18px;
    height: 18px;
    background-color: #b00604;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

/*======== skillbar ========*/
.skillbar {
    position: relative;
    display: block;
    width: 100%;
    background-color: rgba(127, 136, 151, 0.1);
    height: 15px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
}

.skillbar-skillbar {
    height: 7px;
}

.skillbar-skillbar-2 {
    height: 4px;
}

.skillbar-bar {
    height: 15px;
    width: 0;
    background-color: #7f8897;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.skillbar--bar {
    height: 7px;
}

.skillbar--bar-2 {
    height: 4px;
}

.skill-bar-percent {
    font-size: 15px;
    font-weight: 600;
    color: #233d63;
}

.skillbar-title {
    font-size: 15px;
}

/*======== my-course-progress-bar-wrap ========*/
.my-course-progress-bar-wrap .skillbar-title {
    width: 26%;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skillbar-title {
        width: 100%;
    }
}

.my-course-progress-bar-wrap .skillbar-box {
    width: 56%;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skillbar-box {
        width: 100%;
    }
}

.my-course-progress-bar-wrap .skill-bar-percent {
    width: 18%;
    text-align: right;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skill-bar-percent {
        position: absolute;
        width: auto;
        top: 0;
        right: 0;
    }
}

/*-=========== hero-bg ==========-*/
.hero-bg-1 {
    background-image: url("../images/slider-img1.jpg");
}

.hero-bg-2 {
    background-image: url("../images/slider-img2.jpg");
}

.hero-bg-3 {
    background-image: url("../images/slider-img3.jpg");
}

.hero-bg-4 {
    background-image: url("../images/slider-img4.jpg");
}

.hero-bg-5 {
    background-image: url("../images/slider-img5.jpg");
}

/* ================= HERO AREA ================= */
/* ================= HERO AREA ================= */
.hero-area {
    background-color: #f8faff;
    padding: 60px 20px;
}

/* Slider Item */
.hero-slider-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 40px;
    /* left-right space */
}

/* Responsive padding */
@media (max-width: 992px) {
    .hero-slider-item {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider-item {
        padding: 0 10px;
    }
}

/* Left Side (Content) */
.hero-content-side {
    flex: 1 1 280px;
    /* allow shrink */
    min-width: 220px;
    max-width: 600px;
    color: #1a1a1a;
}

/* Heading */
.hero-content-side .section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Blue highlight */
.hero-content-side .section__title span {
    color: #0056d2;
}

/* Sub text */
.hero-content-side .section__desc {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Buttons */
.hero-btn-box {
    display: flex;
    flex-direction: column;
    /* vertical stack */
    gap: 8px;
}

/* Primary button */
.hero-btn-box .btn-primary {
    background-color: #b00604;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    border-color: #b00604 !important;
    text-align: center;
    line-height: 1.2;
    width: fit-content;
    transition: background 0.3s;
}

.hero-btn-box .btn-primary:hover {
    background-color: #d43d3d;
}

/* Secondary button */
.hero-btn-box .btn-text {
    font-size: 14px;
    color: #b00604;
    text-decoration: underline;
    text-align: center;
    width: fit-content;
}

/* Right Side (Image) */
.hero-image-side {
    flex: 1 1 280px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    /* circle visible outside */
}

.hero-image-side img {
    max-width: 400px;
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}

/* Abstract Shape Background */
.hero-image-side::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #0056d2;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    bottom: -50px;
    /* slightly below */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-slider-item {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-side,
    .hero-image-side {
        width: 100%;
        min-width: auto;
    }

    .hero-content-side .section__title {
        font-size: 32px;
    }

    .hero-content-side .section__desc {
        font-size: 16px;
    }

    .hero-btn-box .btn-primary {
        font-size: 13px;
        padding: 8px 18px;
    }

    .hero-btn-box .btn-text {
        font-size: 13px;
    }

    .hero-image-side::before {
        width: 220px;
        height: 220px;
    }

    .hero-image-side img {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-area {
        padding: 40px 15px;
    }

    .hero-content-side .section__title {
        font-size: 26px;
    }

    .hero-content-side .section__desc {
        font-size: 14px;
    }

    .hero-btn-box .btn-primary {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-btn-box .btn-text {
        font-size: 12px;
    }

    .hero-image-side img {
        max-width: 300px;
    }

    .hero-image-side::before {
        width: 180px;
        height: 180px;
    }
}

/*-=========== hero-feature-wrap ===========-*/
.hero-feature-wrap {
    margin-top: 150px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-category-wrap {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .hero-category-wrap {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .hero-category-wrap {
        padding-top: 60px;
    }
}

.hero-category-wrap .col-lg-4 {
    padding-right: 5px;
    padding-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-category-wrap .col-lg-4 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .hero-category-wrap .col-lg-4 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .hero-category-wrap .col-lg-4 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.hero-category-wrap .category-item {
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-category-wrap .category-item {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .hero-category-wrap .category-item {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .hero-category-wrap .category-item {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-content .section__title {
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-content .section__title {
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__title {
        font-size: 30px !important;
        line-height: 40px !important;
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__title.fs-30 {
        font-size: 22px !important;
        line-height: 30px !important;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-content .section__desc {
        font-size: 16px;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__desc {
        font-size: 16px;
        line-height: 24px !important;
    }
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card .media-img {
        margin-right: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card .media-body {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .file-upload-wrap {
        margin-top: 20px;
    }
}

.breadcrumb-content .video-box {
    position: relative;
    bottom: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-btn-box.text-right {
        text-align: left !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-btn-box.text-right {
        text-align: left !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-btn-box.text-right {
        text-align: left !important;
    }
}

/*============ ERROR AREA =========*/
.error-content svg {
    width: 300px;
    fill: #7f8897;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .error-content svg {
        width: 250px;
    }
}

/*====== sidebar-negative =======*/
.sidebar-negative {
    position: relative;
    z-index: 3;
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar-negative {
        margin-top: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .sidebar-negative {
        margin-top: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .sidebar-negative {
        margin-top: 0;
    }
}

/*====== widget-panel =======*/
.widget-panel {
    margin-bottom: 30px;
}

.preview-course-video {
    position: relative;
}

.preview-course-video .overlay {
    background: linear-gradient(180deg,
            rgba(30, 30, 28, 0) 0%,
            rgba(30, 30, 28, 0.9) 100%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: -1;
}

.preview-course-video:hover .play-button {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.preview-course-video-content {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    z-index: 1;
}

.play-button {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*================ course-overview-card ===================*/
.course-overview-card {
    margin-bottom: 30px;
}

.course-overview-card .overview-list-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.course-overview-card .overview-list-item li {
    margin-bottom: 15px;
    width: 50%;
    padding-right: 20px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-overview-card .overview-list-item li {
        width: 100%;
        padding-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-overview-card .overview-list-item li {
        width: 100%;
        padding-right: 0;
    }
}

.course-overview-card .overview-list-item li i {
    position: absolute;
    top: 5px;
    left: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-header {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-header {
        flex-direction: column;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-header h3 {
        width: 100%;
        text-align: left;
        padding-bottom: 4px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-header h3 {
        width: 100%;
        text-align: left;
        padding-bottom: 4px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-duration {
        width: 100%;
        text-align: left;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-duration {
        width: 100%;
        text-align: left;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .instructor-wrap .media-card {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .instructor-wrap .media-card {
        flex-direction: column;
    }
}

.instructor-img {
    margin-right: 40px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .instructor-img {
        margin-bottom: 40px;
        margin-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .instructor-img {
        margin-bottom: 40px;
        margin-right: 0;
    }
}

.instructor-img .media-img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 120px;
    height: 120px;
}

.instructor-img .media-img img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*================ course-dashboard-container ===================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-container {
        display: block !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-container {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-container {
        display: block !important;
    }
}

/*================ course-dashboard-column ===================*/
.course-dashboard-column {
    width: 75%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1366px) {
    .course-dashboard-column {
        width: calc(100% - 400px);
    }
}

@media (max-width: 1024px) {
    .course-dashboard-column {
        width: calc(100% - 350px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-column {
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-column {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-column {
        width: 100%;
    }
}

.course-dashboard-column.active {
    width: 100%;
}

.lecture-video-detail {
    position: relative;
    z-index: 3;
}

/*==== lecture-tab-body ======*/
.lecture-tab-body .generic-tab .mobile-menu-nav-item {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

/*==== lecture-video-detail-body ======*/
.lecture-video-detail-body {
    padding: 20px 50px 50px 50px;
}

/*================ lecture-overview-item ===================*/
.lecture-overview-item {
    margin-bottom: 30px;
    margin-top: 30px;
}

.lecture-overview-item .generic-list-item li span {
    color: #233d63;
    margin-right: 8px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .question-overview-result-header {
        display: block !important;
    }
}

/*================ lecture-overview-stats-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap {
        display: block !important;
    }
}

.lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
    width: 75%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
        width: auto;
    }
}

.lecture-overview-stats-wrap>* {
    width: 25%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>* {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>* {
        width: auto;
    }
}

.lecture-overview-stats-wrap>*:first-child {
    width: 20%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>*:first-child {
        width: auto;
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>*:first-child {
        width: auto;
    }
}

/*====== lecture-description ======*/
.lecture-description p,
.lecture-description .generic-list-item {
    padding-bottom: 20px;
}

.lecture-owner-decription p {
    padding-bottom: 10px;
}

.lecture-owner-decription strong {
    font-weight: 600;
    color: #233d63;
}

/*================ question-overview-filter-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-overview-filter-wrap {
        display: block !important;
    }
}

.question-overview-filter-item {
    flex: 1;
    margin-right: 8px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-overview-filter-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.question-overview-filter-item:last-child {
    margin-right: 0;
}

.question-overview-filter-item .generic-action-wrap .theme-btn {
    font-weight: 400;
    color: #7f8897;
    text-align: left;
}

.question-overview-filter-item .generic-action-wrap .theme-btn:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Line Awesome Free";
    font-size: 15px;
    color: #7f8897;
    pointer-events: none;
    display: inline-block;
    content: "\f107";
    right: 15px;
    font-weight: 900;
}

.question-overview-filter-item .generic-action-wrap .dropdown-menu {
    min-width: 100%;
}

/*================ lecture-quest-wrap ===================*/
.lecture-quest-wrap {
    position: relative;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1366px) {
    .lecture-quest-wrap {
        width: 700px;
    }
}

@media (max-width: 1024px) {
    .lecture-quest-wrap {
        width: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

.replay-question-wrap,
.new-question-wrap {
    background-color: #fff;
    padding-top: 30px;
    display: none;
}

.replay-question-wrap.active,
.new-question-wrap.active {
    display: block;
}

.new-question-wrap,
.search-course-wrap {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

/*====== replay-question-body ========*/
.replay-question-body .question-list-item .media:hover {
    background-color: transparent;
}

.replay-action-bar {
    border: 1px solid rgba(127, 136, 151, 0.2);
    background-color: rgba(127, 136, 151, 0.1);
    border-bottom: 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.replay-action-bar .btn-group .btn {
    color: #233d63;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.replay-action-bar .btn-group .btn:first-child {
    -webkit-border-radius: 4px 0 0 0;
    -moz-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

.replay-action-bar .btn-group .btn:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.replay-action-bar .btn-group .btn:hover {
    background-color: #b00604;
    color: #fff;
}

.question-replay-body .form--control {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/*====== question-overview-result-wrap ========*/
.question-overview-result-wrap.active {
    display: none;
}

/*================ question-list-item ===================*/
.question-list-item .media-body {
    overflow: hidden;
}

.question-list-item .media:hover {
    background-color: rgba(127, 136, 151, 0.05);
}

.question-meta-content {
    overflow: hidden;
    padding-right: 145px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

/*========= number-upvotes ==========*/
.number-upvotes span {
    font-weight: 600;
}

.number-upvotes button {
    border: none;
    margin-left: 10px;
    font-size: 15px;
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 25px;
    height: 25px;
    line-height: 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
}

.number-upvotes button:hover {
    color: #233d63;
    background-color: rgba(127, 136, 151, 0.2);
}

/*================ lecture-announcement-wrap ===================*/
.lecture-announcement-wrap {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .lecture-announcement-wrap {
        width: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

/*============= my-course-filter-wrap ==============*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-filter-wrap {
        display: block !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-filter-wrap {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-filter-wrap {
        display: block !important;
    }
}

/*============= my-course-sort-by-content ==============*/
.my-course-sort-by-content {
    width: 18%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-sort-by-content {
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-sort-by-content {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-sort-by-content {
        width: 100%;
    }
}

/*============= my-course-filter-by-content ==============*/
.my-course-filter-by-content {
    padding-left: 10px;
    width: 50%;
}

@media (max-width: 1199px) {
    .my-course-filter-by-content {
        width: 58%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-filter-by-content {
        padding: 10px 0 10px 0;
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-filter-by-content {
        padding: 10px 0 10px 0;
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-filter-by-content {
        padding: 10px 0 10px 0;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-filter-by-content-inner {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-filter-by-content-inner {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-filter-by-content-inner {
        flex-wrap: wrap;
    }
}

.my-course-filter-by-content-inner .select-container {
    width: 33%;
    margin-right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-filter-by-content-inner .select-container {
        width: 48%;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-filter-by-content-inner .select-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-filter-by-content-inner .select-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.my-course-search-content {
    width: 32%;
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .my-course-search-content {
        width: 25%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-course-search-content {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .my-course-search-content {
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .my-course-search-content {
        width: 100%;
        padding-left: 0;
    }
}

/*================ course-alert-info ===================*/
.course-alert-info .close {
    padding: 22px 15px;
}

.course-alert-info .alert-link {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.course-alert-info .alert-link:hover {
    color: #b00604;
}

/*================ my-course-info ===================*/
@media (max-width: 375px) {
    .my-course-info form {
        margin-top: 15px;
        width: 100%;
    }
}

/*================ course-dashboard-side-heading ===================*/
.course-dashboard-side-heading {
    padding: 20px;
    position: relative;
}

.sidebar-open,
.sidebar-close {
    background-color: transparent;
    border: none;
    font-size: 22px;
    color: #233d63;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar-open:hover,
.sidebar-close:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #b00604;
}

.sidebar-open {
    padding: 10px 16px;
    background-color: #233d63;
    color: #fff;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    position: absolute;
    top: 20px;
    left: -40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 600;
    z-index: -1;
}

.sidebar-open .la {
    margin-right: 5px;
}

.sidebar-open.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-open:hover {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    color: #fff;
    left: -155px;
}

.course-duration span {
    font-size: 13px;
    color: #7f8897;
    position: relative;
    padding-right: 12px;
    padding-left: 2px;
    font-weight: 500;
    display: inline-block;
}

.course-duration span:first-child {
    padding-left: 0;
}

.course-duration span:last-child {
    padding-right: 0;
}

.course-duration span:last-child:after {
    display: none;
}

.course-duration span:after {
    position: absolute;
    content: "";
    top: 7px;
    right: 0;
    width: 4px;
    height: 4px;
    background-color: rgba(127, 136, 151, 0.4);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*======= lecture-viewer-container ========*/
.lecture-viewer-container {
    position: relative;
}

.lecture-viewer-text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 4;
    display: none;
    padding-bottom: 50px;
}

.lecture-viewer-text-wrap.active {
    display: block;
}

.lecture-viewer-text-content {
    overflow: auto;
    height: 100%;
    padding: 50px 80px 0 80px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-viewer-text-content {
        padding: 30px 30px 0 30px;
    }
}

.lecture-viewer-text-body {
    width: 700px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1440px) {
    .lecture-viewer-text-body {
        width: auto;
    }
}

.lecture-viewer-content-detail .generic-list-item li {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 12px;
}

.lecture-viewer-content-detail .generic-list-item li strong {
    color: #233d63;
    font-weight: 600;
}

/*======= curriculum-sidebar-list ========*/
.curriculum-sidebar-list .course-item-link {
    cursor: pointer;
    padding: 12px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.curriculum-sidebar-list .course-item-link.active {
    background-color: rgba(53, 143, 247, 0.1);
}

.curriculum-sidebar-list .course-item-link.active:hover {
    background-color: rgba(53, 143, 247, 0.2);
}

.curriculum-sidebar-list .course-item-link:hover {
    background-color: rgba(127, 136, 151, 0.1);
}

.course-item-content-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.course-item-content {
    flex-grow: 1;
}

.courser-item-meta-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.course-item-meta {
    font-size: 14px;
}

.course-item-meta i {
    margin-right: 3px;
}

/*================ course-dashboard-sidebar-column ===================*/
.course-dashboard-sidebar-column {
    width: 25%;
    height: 100vh;
    position: fixed;
    right: 0;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 5;
    -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(127, 136, 151, 0.2);
    border-top: 0;
}

@media (max-width: 1366px) {
    .course-dashboard-sidebar-column {
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .course-dashboard-sidebar-column {
        width: 350px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

.course-dashboard-sidebar-column.active {
    right: -25%;
}

@media (max-width: 1366px) {
    .course-dashboard-sidebar-column.active {
        right: -400px;
    }
}

@media (max-width: 1024px) {
    .course-dashboard-sidebar-column.active {
        right: -350px;
    }
}

.course-dashboard-sidebar-wrap {
    height: 100%;
    overflow-x: hidden;
    padding-bottom: 90px;
    background-color: #fff;
    z-index: 5;
}

/*======= footer-item ==========*/
.footer-item {
    margin-bottom: 40px;
}

.copy-desc {
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

.copy-desc a {
    color: #7f8897;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copy-desc a:hover {
    color: #b00604;
}

/*===== copyright-content =======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

.copyright-content .generic-list-item li {
    margin-bottom: 0;
}

/*===== dark-theme ======*/
.dark-theme {
    background-color: #1b1b1b;
    color: #eeeeee;
    /*===== general =====*/
    /*===== generic-list-item =====*/
    /*===== main-menu =====*/
    /*===== form--control =====*/
    /*===== hero-slider-item =====*/
    /*===== menu-category =====*/
    /*===== cart-dropdown-menu =====*/
    /*====== info-box =====*/
    /*===== info-overlay ======*/
    /*===== category-item ======*/
    /*===== generic-tab ======*/
    /*===== card ======*/
    /*===== tooltipster ======*/
    /*===== owl-action-styled ======*/
    /*===== button ======*/
    /*===== stroke-shape ======*/
    /*===== menu-banner-content ======*/
    /*===== off-canvas-menu-list ======*/
    /*===== select-container ======*/
    /*===== select-container ======*/
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme .generic-tab .nav-link,
.dark-theme .form-group .search-icon,
.dark-theme .media-card .media-body h5,
.dark-theme .card-item .card-title,
.dark-theme .review-stars span.rating-number,
.dark-theme .label-text,
.dark-theme .copy-desc a:hover,
.dark-theme .category-item-layout-2 .category-content,
.dark-theme .category-item-layout-2 .cat__title,
.dark-theme .info--box:hover .info__title,
.dark-theme .info--box:hover .info__text,
.dark-theme .filter-nav li a,
.dark-theme .pagination-box .page-link,
.dark-theme .modal-container .close,
.dark-theme .modal-container .close:hover span,
.dark-theme .generic-accordion .card-header .btn,
.dark-theme .helpful-action .btn:hover,
.dark-theme .lecture-overview-item .generic-list-item li span,
.dark-theme .lecture-owner-decription strong,
.dark-theme .question-overview-filter-item .generic-action-wrap .theme-btn,
.dark-theme .generic-action-wrap .dropdown-menu .dropdown-item,
.dark-theme .replay-action-bar .btn-group .btn,
.dark-theme .lecture-viewer-content-detail .generic-list-item li strong,
.dark-theme .sidebar-open,
.dark-theme .sidebar-close,
.dark-theme .rating-result-text,
.dark-theme .light-mode-btn,
.dark-theme .skill-bar-percent,
.dark-theme .btn,
.dark-theme .icon-element,
.dark-theme #scroll-top,
.dark-theme .file-upload-wrap .file-upload-text,
.dark-theme .profile-detail .generic-list-item li .profile-name,
.dark-theme .generic-table,
.dark-theme .message-reply-body .emojionearea-editor,
.dark-theme .bootstrap-tagsinput input,
.dark-theme .jqte *,
.dark-theme .social--icons-styled li a,
.dark-theme .sub-nav-toggler,
.dark-theme .portfolio-filter li,
.dark-theme .qtyBtn,
.dark-theme .qtyInput,
.dark-theme .payment-tab-toggle>label {
    color: #eeeeee;
}

.dark-theme .light-mode-btn {
    display: block;
}

.dark-theme .dark-mode-btn {
    display: none;
}

.dark-theme .shadow-sm {
    box-shadow: inset 0 0 0 #777, 0 2px 2px rgba(0, 0, 0, 0.6) !important;
}

.dark-theme .bg-white {
    background-color: #1b1b1b !important;
}

.dark-theme .bg-gray {
    background-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .bg-radial-gradient-gray {
    background: #383838 !important;
    background: radial-gradient(circle, #383838 0%, #1b1b1b 100%) !important;
}

.dark-theme .off-canvas-menu-list li a,
.dark-theme .off-canvas-menu,
.dark-theme .pagination-box .page-link,
.dark-theme .mobile-search-form,
.dark-theme .modal-content,
.dark-theme .custom--control-label-boxed,
.dark-theme .course-dashboard-sidebar-column,
.dark-theme .course-dashboard-sidebar-wrap,
.dark-theme .lecture-viewer-text-wrap,
.dark-theme .custom-control-label::before,
.dark-theme .dashboard-message-wrapper,
.dark-theme .message-reply-body .emojionearea-editor,
.dark-theme .jqte_formats,
.dark-theme .generic-accordion-layout-2 .card-header .btn {
    background-color: #292929;
}

.dark-theme .replay-question-wrap,
.dark-theme .new-question-wrap,
.dark-theme .half-shape::after,
.dark-theme .list-group-item,
.dark-theme .jqte_editor,
.dark-theme .jqte_source,
.dark-theme .iti__country-list,
.dark-theme .qtyInput,
.dark-theme .payment-tab {
    background-color: #1b1b1b;
}

.dark-theme .icon-element,
.dark-theme .owl-action-styled .owl-nav div,
.dark-theme #scroll-top,
.dark-theme .level-timeline::before,
.dark-theme .conversation-item .message-body,
.dark-theme .conversation-item .message-body::after,
.dark-theme .social--icons-styled li a,
.dark-theme .sub-nav-toggler {
    background-color: #3a3a3a;
}

.dark-theme .theme-picker-btn svg {
    stroke: #eeeeee;
}

.dark-theme .border-gray {
    border-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .border-top-gray {
    border-top-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .border-right-gray {
    border-right-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .border-bottom-gray {
    border-bottom-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .border-left-gray {
    border-left-color: rgba(238, 238, 238, 0.1) !important;
}

.dark-theme .footer__logo,
.dark-theme .logo img {
    -webkit-filter: brightness(900%) brightness(200%);
    filter: brightness(900%) brightness(200%);
}

.dark-theme .menu-category>ul>li a,
.dark-theme .shop-cart-btn,
.dark-theme .media-card .media-body h5 a,
.dark-theme .card-item .card-title a,
.dark-theme .collapse--btn,
.dark-theme .meta-tags a,
.dark-theme .number-upvotes button,
.dark-theme .quiz-nav li p a,
.dark-theme .quiz-nav li a {
    color: #eeeeee;
}

.dark-theme .menu-category>ul>li a:hover,
.dark-theme .shop-cart-btn:hover,
.dark-theme .media-card .media-body h5 a:hover,
.dark-theme .card-item .card-title a:hover,
.dark-theme .collapse--btn:hover,
.dark-theme .meta-tags a:hover,
.dark-theme .number-upvotes button:hover,
.dark-theme .quiz-nav li p a:hover,
.dark-theme .quiz-nav li a:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .text-black {
    color: #eeeeee !important;
}

.dark-theme .rating-total,
.dark-theme .card-item .card-text a,
.dark-theme .before-price {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .text-black-50,
.dark-theme .text-gray {
    color: rgba(238, 238, 238, 0.6) !important;
}

.dark-theme .section-block,
.dark-theme .ribbon,
.dark-theme .pagination-box .page-link:hover,
.dark-theme .list-group-item-action:focus,
.dark-theme .list-group-item-action:hover,
.dark-theme .off--canvas-menu-list li.page-active a,
.dark-theme .file-upload-wrap .file-upload-input:hover,
.dark-theme .jqte_toolbar,
.dark-theme .iti--separate-dial-code .iti__selected-flag,
.dark-theme .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.dark-theme .iti__country.iti__highlight {
    background-color: rgba(238, 238, 238, 0.1);
}

.dark-theme .divider span {
    background-color: #eeeeee;
}

.dark-theme .off-canvas-menu-list li svg {
    fill: #eeeeee;
}

.dark-theme .off--canvas-menu-list li.page-active svg {
    fill: #358ff7;
}

.dark-theme img {
    filter: brightness(0.7) contrast(1.2);
}

.dark-theme .generic-list-item li {
    color: #eeeeee;
}

.dark-theme .generic-list-item li a {
    color: #eeeeee;
}

.dark-theme .generic-list-item li a:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .main-menu>ul>li a {
    color: #eeeeee;
}

.dark-theme .main-menu>ul>li a:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .main-menu>ul>li .dropdown-menu-item {
    background-color: #292929;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dark-theme .main-menu>ul>li .dropdown-menu-item>li>a {
    color: #eeeeee;
}

.dark-theme .main-menu>ul>li .dropdown-menu-item>li>a:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .bootstrap-tagsinput,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control,
.dark-theme .form--control {
    background-color: rgba(238, 238, 238, 0.1);
    color: #eeeeee;
}

.dark-theme .bootstrap-tagsinput:focus,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control:focus,
.dark-theme .form--control:focus {
    border-color: rgba(238, 238, 238, 0.4);
}

.dark-theme .bootstrap-tagsinput::-webkit-input-placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control::-webkit-input-placeholder,
.dark-theme .form--control::-webkit-input-placeholder {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .bootstrap-tagsinput:-ms-input-placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control:-ms-input-placeholder,
.dark-theme .form--control:-ms-input-placeholder {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .bootstrap-tagsinput::placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control::placeholder,
.dark-theme .form--control::placeholder {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .hero-slider-item:after {
    background-color: #1b1b1b;
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu {
    background-color: #292929;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu li .sub-menu {
    background-color: #292929;
    border: 1px solid rgba(238, 238, 238, 0.05);
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu li .sub-menu a {
    color: #eeeeee;
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu li .sub-menu a:after {
    background-color: rgba(238, 238, 238, 0.6);
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu li .sub-menu a:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .menu-category>ul>li .cat-dropdown-menu:after {
    border-bottom-color: #292929;
}

.dark-theme .cart-dropdown-menu {
    background-color: #292929;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dark-theme .cart-dropdown-menu:after {
    border-bottom-color: #292929;
}

.dark-theme .info-box {
    background-color: #292929;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.dark-theme .info-box:before {
    background-color: rgba(27, 27, 27, 0.3);
}

.dark-theme .info-overlay:before {
    background-color: rgba(27, 27, 27, 0.5);
}

.dark-theme .info-overlay:after {
    background-color: rgba(27, 27, 27, 0.6);
}

.dark-theme .category-item::after {
    background-color: #1b1b1b;
}

.dark-theme .generic-tab .nav-link:hover {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .generic-tab .nav-link.active {
    color: #1b1b1b;
    -webkit-box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
    -moz-box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
    box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
}

.dark-theme .card,
.dark-theme .category-item-layout-2,
.dark-theme .filter-bar {
    background-color: #292929;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dark-theme .card-item .card-text a:hover {
    color: #eeeeee;
}

.dark-theme .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #292929;
}

.dark-theme .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #292929;
}

.dark-theme .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #292929;
}

.dark-theme .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #292929;
}

.dark-theme .owl-action-styled .owl-nav div {
    color: #eeeeee;
}

.dark-theme .owl-action-styled .owl-nav div:hover {
    background-color: #b00604;
}

.dark-theme .theme-btn-white {
    background-color: #3a3a3a;
    color: #eeeeee;
}

.dark-theme .theme-btn-white:hover {
    background-color: #fff;
    color: #1b1b1b;
}

.dark-theme .theme-btn-white:hover svg {
    stroke: #1b1b1b;
}

.dark-theme .theme-btn-transparent {
    color: #eeeeee;
    /* border-color: rgba(238, 238, 238, 0.1); */
}

.dark-theme .theme-btn-transparent:hover {
    border-color: rgba(238, 238, 238, 0.5);
}

.dark-theme .generic-list-item-boxed li:hover {
    border-color: rgba(238, 238, 238, 0.5);
}

.dark-theme .stroke-shape {
    background-color: #eeeeee;
}

.dark-theme .menu-banner-content .btn:hover {
    color: #1b1b1b;
}

.dark-theme .off-canvas-menu-list li .sub-menu li a {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .off-canvas-menu-list li .sub-menu li a:hover {
    color: #eeeeee;
}

.dark-theme .select-container .dropdown-toggle,
.dark-theme .dropdown-menu,
.dark-theme .filter-nav li a,
.dark-theme .pagination-box,
.dark-theme .pagination-box .page-link {
    background-color: #3a3a3a;
}

.dark-theme .filter-nav li a.active {
    background-color: #eeeeee;
    color: #1b1b1b;
}

.dark-theme .select-container .dropdown-toggle {
    color: #eeeeee;
}

.dark-theme .select-container .show>.btn-light.dropdown-toggle {
    background-color: #3a3a3a;
    color: #eeeeee;
    border-color: rgba(238, 238, 238, 0.2);
}

.dark-theme .select-container .dropdown-item {
    color: rgba(238, 238, 238, 0.6);
}

.dark-theme .select-container .dropdown-item.active {
    background-color: rgba(238, 238, 238, 0.2);
    color: #eeeeee;
}

.dark-theme .select-container .dropdown-item.active:hover {
    background-color: rgba(238, 238, 238, 0.2);
}

.dark-theme .select-container .dropdown-item:hover {
    background-color: rgba(238, 238, 238, 0.02);
    color: #eeeeee;
}

.dark-theme .cart-dropdown-menu li,
.dark-theme .iti__divider {
    border-bottom-color: rgba(238, 238, 238, 0.1);
}

.dark-theme .file-upload-wrap-2 .file-upload-input,
.dark-theme .file-upload-wrap .file-upload-input,
.dark-theme .list-group-item,
.dark-theme .iti__country-list {
    border-color: rgba(238, 238, 238, 0.1);
}

.dark-theme .level-timeline .level-active,
.dark-theme #scroll-top:hover,
.dark-theme .message-sent .message-body,
.dark-theme .message-sent .message-body::after,
.dark-theme .generic-accordion-layout-2 .card-header .btn[aria-expanded="true"] {
    background-color: #b00604;
}

.dark-theme .media-card .media--img {
    border-color: #3a3a3a;
}

.dark-theme .portfolio-filter li.active {
    color: #b00604;
}

/* ===============================
   CYBER BUTTON & INCENTIVES - FINAL TOUCHES
=============================== */

/* Enhanced Add to Cart Button */
.cyber-add-to-cart {
    position: relative;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, var(--cyber-red), var(--cyber-red-dark)) !important;
    border: 2px solid var(--cyber-red) !important;
    border-radius: 0.75rem !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(176,6,4,0.3);
}

.cyber-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cyber-add-to-cart:hover::before {
    left: 100%;
}

.cyber-add-to-cart:hover {
    background: linear-gradient(135deg, var(--cyber-red-dark), var(--cyber-red)) !important;
    box-shadow: 0 8px 25px rgba(176,6,4,0.5) !important;
    transform: translateY(-2px);
    border-color: var(--cyber-red-dark) !important;
}

/* Guarantee Badge */
.cyber-guarantee-badge {
    background: rgba(176,6,4,0.1);
    border: 1px solid rgba(176,6,4,0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.cyber-guarantee-badge:hover {
    background: rgba(176,6,4,0.15);
    border-color: rgba(176,6,4,0.5);
}

.cyber-guarantee-badge i {
    color: var(--cyber-green);
    text-shadow: 0 0 5px var(--cyber-green);
}

/* Course Incentives */
.cyber-course-incentives {
    background: rgba(26,26,26,0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(176,6,4,0.2);
}

.cyber-incentives-title {
    background: linear-gradient(90deg, var(--cyber-red), var(--cyber-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: flex;
    align-items: center;
    margin-bottom: 1rem !important;
}

.cyber-incentives-title i {
    background: linear-gradient(90deg, var(--cyber-red), var(--cyber-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--cyber-red);
}

.cyber-incentives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cyber-incentives-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cyber-incentives-list li:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.cyber-incentives-list li i {
    color: var(--cyber-green) !important;
    margin-right: 0.75rem;
    font-size: 1rem;
    text-shadow: 0 0 3px var(--cyber-green);
}

/* Buy Section */
.cyber-buy-section {
    background: rgba(15,15,15,0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(176,6,4,0.2);
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cyber-add-to-cart {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
    }
    
    .cyber-guarantee-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .cyber-course-incentives,
    .cyber-buy-section {
        padding: 1rem;
    }
}

/* =========================
   Course Details - Instructor Profile Card
========================= */
.course-overview-card.instructor-card {
    /* background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(10,10,10,0.75)); */
    border: 1px solid rgba(176,6,4,0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    color: var(--text-primary);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

/* Media Wrapper */
.course-overview-card.instructor-card .media-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Instructor Image */
.course-overview-card.instructor-card .instructor-img {
    text-align: center;
}

.course-overview-card.instructor-card .instructor-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--cyber-red);
    transition: all 0.3s ease;
}

.course-overview-card.instructor-card .instructor-img img:hover {
    box-shadow: 0 0 20px rgba(176,6,4,0.6);
    transform: scale(1.08);
}

/* Instructor Name */
.course-overview-card.instructor-card .instructor-name a {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6.3rem;
    background: linear-gradient(90deg, var(--cyber-red), var(--cyber-red-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease;
}

.course-overview-card.instructor-card .instructor-name a:hover {
    text-shadow: 0 0 10px rgba(176,6,4,0.6);
}

/* Bio Section */
.course-overview-card.instructor-card .bio-collapsible {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Stats List */
.course-overview-card.instructor-card .generic-list-item {
    margin-top: 1rem;
    padding-left: 0;
}

.course-overview-card.instructor-card .generic-list-item li {
    list-style: none;
    margin-bottom: 0.6rem;
    background: linear-gradient(90deg, var(--cyber-red), var(--cyber-red-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Links inside stats */
.course-overview-card.instructor-card .generic-list-item li a.view-courses-link {
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(90deg, var(--cyber-red-dark), var(--cyber-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease;
}

.course-overview-card.instructor-card .generic-list-item li a.view-courses-link:hover {
    text-shadow: 0 0 6px rgba(176,6,4,0.5);
}

/* Mobile responsiveness for instructor card */
@media (max-width: 768px) {
    .course-overview-card.instructor-card .media-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .course-overview-card.instructor-card .instructor-img {
        margin-bottom: 1rem;
    }

    .course-overview-card.instructor-card .media-body {
        width: 100%;
    }
}

/* ===============================
   PROFESSIONAL CURRICULUM STYLES
   =============================== */

.professional-accordion .curriculum-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.curriculum-toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}


.curriculum-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}

.curriculum-toggle-btn[aria-expanded="true"] .transition-icon {
    transform: rotate(180deg);
}

.curriculum-toggle-btn[aria-expanded="true"] .fa-folder-open:before {
    content: "\f07c"; /* folder-open icon */
}

.curriculum-toggle-btn[aria-expanded="false"] .fa-folder-open:before {
    content: "\f07b"; /* folder icon */
}

.lecture-item {
    transition: all 0.2s ease;
}

.lecture-number {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}


.empty-curriculum {
    transition: all 0.3s ease;
}


/* Responsive Design for Curriculum */
@media (max-width: 768px) {
    .curriculum-toggle-btn {
        font-size: 14px !important;
    }
    
    .curriculum-header {
        padding: 12px !important;
    }
    
    .curriculum-body {
        padding: 12px !important;
    }
    
    .lecture-item {
        padding: 8px !important;
    }
    
    .lecture-number {
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 576px) {
    .curriculum-toggle-btn .badge {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
    
    .lecture-title {
        font-size: 14px !important;
    }
    
    .lecture-duration {
        font-size: 12px !important;
    }
}
