/* Viana e Moura - Modern Professional Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #B93A3E;
    --primary-dark: #A02E32;
    --primary-light: #D04449;
    --accent-color: #E4A230;
    --accent-dark: #D4922A;
    --accent-light: #F0B744;
    --white: #FFFFFF;
    --text-primary: #2a2a2a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #B93A3E 0%, #E4A230 100%);
    --gradient-soft: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--gradient-soft);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 58, 62, 0.1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.brand-accent {
    color: var(--accent-color) !important;
}

.brand-logo {
    height: 70px;
    width: 70px;
    /* border-radius: 6px; */
    object-fit: contain;
    margin-left: 200px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);*/
    /* padding: 2px;  */
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo-large {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    padding: 3px;
}

.brand-logo-large:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.brand-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary) !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background: var(--primary-color);
    color: white !important;
}

/* Modern Buttons */
.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Modern Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: rgba(185, 58, 62, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: rgba(248, 250, 252, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

/* Statistics Cards */
.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.job-card-body {
    padding: 1.5rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Candidate Cards */
.candidate-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.candidate-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.candidate-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.candidate-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.candidate-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.candidate-score {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background: white;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 58, 62, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Tables */
.table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th {
    background: rgba(185, 58, 62, 0.02);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.table-hover tbody tr:hover {
    background: rgba(185, 58, 62, 0.02);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.badge-accent {
    background: var(--accent-color);
    color: white;
}

.badge-success {
    background: #10b981;
    color: white;
}

.badge-warning {
    background: #f59e0b;
    color: white;
}

.badge-danger {
    background: #ef4444;
    color: white;
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

.alert-warning {
    background: rgba(228, 162, 48, 0.1);
    color: #d97706;
    border-left: 4px solid var(--accent-color);
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    border-left: 4px solid #06b6d4;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
}

.login-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border-color);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Dashboard */
.dashboard-header {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Charts */
.chart-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    background: rgba(185, 58, 62, 0.02);
    transition: var(--transition);
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(185, 58, 62, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(185, 58, 62, 0.1);
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.file-upload-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.file-upload-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 70px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .login-card {
        padding: 2rem;
        margin: 1rem;
    }

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

    .container-fluid {
        padding: 0 300px;
    }
}

@media (max-width: 576px) {
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.transition-all {
    transition: var(--transition);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Login Page Logo */
.login-brand-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px; */
    box-shadow: 0 6px 30px rgba(185, 58, 62, 0.4);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
}

.login-brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(185, 58, 62, 0.5);
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Bulk upload enhancements */
.bulk-upload-container {
    min-height: 80vh;
}

.progress-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.file-preview-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.file-preview-item:hover {
    background: #e9ecef;
    border-color: #B93A3E;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.processing-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.results-summary {
    background: #d1edff;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.time-estimate {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}

/* Enhanced progress bar */
.progress {
    height: 25px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #B93A3E 0%, #E4A230 100%);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
}

.progress-bar.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }

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

/* Responsive adjustments for bulk upload */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .file-preview-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .progress-container {
        padding: 1rem;
    }
}

/* =================== AUTHENTICATION STYLES =================== */

.auth-body {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* background: linear-gradient(135deg, #fff 0%, #fff 100%) !important; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin: 0;
}

.auth-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: var(--white) !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    padding: 2.5rem !important;
    width: 100% !important;
    max-width: 450px !important;
    border: none !important;
    position: relative !important;
    z-index: 1 !important;
}

.auth-card-large {
    max-width: 650px;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-logo {
    width: 200px !important;
    height: 200px !important;
    /* border-radius: 8px !important; */
    margin-bottom: 1rem !important;
    object-fit: contain !important;
    /* border: 3px solid var(--primary-color) !important; */
    /* display: block !important; */
    /* margin-left: auto !important; */
    /* margin-right: auto !important; */
    /* background-color: #f8f9fa !important; */
    padding: 8px !important;
}

.auth-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form .form-floating {
    margin-bottom: 1.25rem;
}

.auth-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
    width: 100%;
    box-sizing: border-box;
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(185, 58, 62, 0.25);
    background-color: var(--white);
}

.auth-form .form-control.is-invalid {
    border-color: #dc3545;
}

.auth-form .form-control.is-valid {
    border-color: #28a745;
}

.auth-form label {
    color: var(--text-secondary);
    font-weight: 500;
}

.auth-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.auth-form .btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.btn-auth-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-auth-primary:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.btn-auth-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.btn-auth-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--white);
    color: var(--text-secondary);
    padding: 0 1rem;
    font-size: 0.875rem;
}

.auth-links {
    text-align: center;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.auth-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.password-requirements {
    margin-bottom: 1.5rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.password-requirements li.text-success {
    color: #28a745 !important;
}

.password-requirements li.text-danger {
    color: #dc3545 !important;
}

.password-requirements li::before {
    content: '✗';
    margin-right: 0.5rem;
    color: #dc3545;
    font-weight: bold;
}

.password-requirements li.text-success::before {
    content: '✓';
    color: #28a745;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
}

.remember-me label {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Profile styles */
.profile-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem 0;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    margin: -1.5rem -1.5rem 2rem -1.5rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    overflow: hidden;
    position: relative;
}

.avatar-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

/* Avatar pequeno para tabelas */
.avatar-img-small {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar-initials-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    background: rgba(185, 58, 62, 0.02);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.avatar-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(185, 58, 62, 0.05);
}

.avatar-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(185, 58, 62, 0.1);
    transform: scale(1.02);
}

.upload-content {
    pointer-events: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.upload-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.upload-hint {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.avatar-upload-area.uploading {
    border-color: var(--accent-color);
    background: rgba(228, 162, 48, 0.1);
}

.avatar-upload-area.success {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.avatar-upload-area.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Navbar Avatar */
.navbar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--white);
    flex-shrink: 0;
}

.navbar-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.navbar-username {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    line-height: 1.2;
}

.navbar-user-role {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
    margin-top: -2px;
}

/* Navbar dropdown improvements */
.nav-link.dropdown-toggle {
    transition: var(--transition);
}

.nav-link.dropdown-toggle:hover .navbar-avatar {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

/* Dropdown header improvements */
.dropdown-header {
    padding: 0.75rem 1rem;
    background: rgba(185, 58, 62, 0.02);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.dropdown-header .navbar-avatar {
    border: 2px solid var(--primary-color);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.profile-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.profile-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Authentication responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem !important;
        margin: 1rem !important;
        max-width: 90% !important;
    }

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

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .auth-body {
        padding: 1rem;
    }

    .auth-card {
        padding: 1.5rem 1rem !important;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}

/* Flash Messages */
.flash-messages {
    margin-bottom: 1.5rem;
}

.flash-messages .alert {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.5rem;
    animation: slideInDown 0.3s ease-out;
}

.flash-messages .alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.flash-messages .alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.flash-messages .alert-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.flash-messages .alert-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.flash-messages .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.flash-messages .btn-close:hover {
    opacity: 1;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

/* Estilos para o campo de JSON */
.json-input-group {
    position: relative;
}

.json-input-group .form-control {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.json-input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(185, 58, 62, 0.25);
}

.json-input-group .btn {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: all 0.3s ease;
}

.json-input-group .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.json-input-group .btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(185, 58, 62, 0.25);
}

/* Validação visual do JSON */
.json-input-group .form-control.json-valid {
    border-color: #28a745;
    background-color: #f8fff9;
}

.json-input-group .form-control.json-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

/* Notificações de JSON */
.json-notification {
    animation: slideInDown 0.3s ease-out;
    box-shadow: var(--shadow-lg);
    border: none;
    border-radius: var(--border-radius);
}

.json-notification.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.json-notification.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.json-notification.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Tooltip para o botão de formatação */
.json-input-group .btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

/* Responsividade para o campo JSON */
@media (max-width: 768px) {
    .json-input-group .btn {
        padding: 0.375rem 0.5rem;
        font-size: 12px;
    }
    
    .json-input-group .form-control {
        font-size: 13px;
    }
}

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

.about {
  background-color: #fff !important;
}

.festas {
  background-color: #F5F5F5 !important;
}

.resumo {
  background-color: #41C3C4;
  position: relative;
  overflow: hidden;
}

/* Permitir que o vídeo fique acima das estrelas */
.resumo .video-container {
  position: relative;
  z-index: 10;
}

.galeria-fotos {
  background-color: #fff !important;
}

/* Efeito de estrelas apenas na área de texto */
.about__content--stars {
  position: relative;
  overflow: hidden;
}

.about__content--stars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 60px 70px, #fff, transparent),
    radial-gradient(2px 2px at 100px 40px, #fff, transparent),
    radial-gradient(2px 2px at 140px 80px, #fff, transparent),
    radial-gradient(2px 2px at 180px 30px, #fff, transparent),
    radial-gradient(2px 2px at 220px 60px, #fff, transparent),
    radial-gradient(2px 2px at 260px 90px, #fff, transparent),
    radial-gradient(2px 2px at 300px 20px, #fff, transparent),
    radial-gradient(2px 2px at 340px 70px, #fff, transparent),
    radial-gradient(2px 2px at 380px 40px, #fff, transparent);
  background-repeat: repeat;
  background-size: 400px 100px;
  animation: twinkle 6s ease-in-out infinite;
  opacity: 0.4;
  z-index: 1;
}

.about__content--stars::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 40px 50px, #fff, transparent),
    radial-gradient(2px 2px at 80px 20px, #fff, transparent),
    radial-gradient(2px 2px at 120px 80px, #fff, transparent),
    radial-gradient(2px 2px at 160px 40px, #fff, transparent),
    radial-gradient(2px 2px at 200px 70px, #fff, transparent),
    radial-gradient(2px 2px at 240px 10px, #fff, transparent),
    radial-gradient(2px 2px at 280px 60px, #fff, transparent),
    radial-gradient(2px 2px at 320px 30px, #fff, transparent),
    radial-gradient(2px 2px at 360px 90px, #fff, transparent),
    radial-gradient(2px 2px at 400px 20px, #fff, transparent);
  background-repeat: repeat;
  background-size: 400px 100px;
  animation: twinkle 8s ease-in-out infinite reverse;
  opacity: 0.3;
  z-index: 1;
}

/* Garantir que o texto fique acima das estrelas */
.about__content--stars p,
.about__content--stars h3,
.about__content--stars .subtitle {
  position: relative;
  z-index: 2;
}



.diferenciais {
  background-color: #743C95 !important;
  position: relative;
  overflow: hidden;

  /* background-color: #41C3C4 !important; */
}

/* Efeito de estrelas otimizado */
.diferenciais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 60px 70px, #fff, transparent),
    radial-gradient(2px 2px at 100px 40px, #fff, transparent),
    radial-gradient(2px 2px at 140px 80px, #fff, transparent),
    radial-gradient(2px 2px at 180px 30px, #fff, transparent),
    radial-gradient(2px 2px at 220px 60px, #fff, transparent),
    radial-gradient(2px 2px at 260px 90px, #fff, transparent),
    radial-gradient(2px 2px at 300px 20px, #fff, transparent),
    radial-gradient(2px 2px at 340px 70px, #fff, transparent),
    radial-gradient(2px 2px at 380px 40px, #fff, transparent);
  background-repeat: repeat;
  background-size: 400px 100px;
  animation: twinkle 6s ease-in-out infinite;
  opacity: 0.4;
}

.diferenciais::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 40px 50px, #fff, transparent),
    radial-gradient(2px 2px at 80px 20px, #fff, transparent),
    radial-gradient(2px 2px at 120px 80px, #fff, transparent),
    radial-gradient(2px 2px at 160px 40px, #fff, transparent),
    radial-gradient(2px 2px at 200px 70px, #fff, transparent),
    radial-gradient(2px 2px at 240px 10px, #fff, transparent),
    radial-gradient(2px 2px at 280px 60px, #fff, transparent),
    radial-gradient(2px 2px at 320px 30px, #fff, transparent),
    radial-gradient(2px 2px at 360px 90px, #fff, transparent),
    radial-gradient(2px 2px at 400px 20px, #fff, transparent);
  background-repeat: repeat;
  background-size: 400px 100px;
  animation: twinkle 8s ease-in-out infinite reverse;
  opacity: 0.3;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: translateY(0px);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-2px);
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .diferenciais::before,
  .diferenciais::after {
    background-size: 200px 50px;
    animation-duration: 8s;
  }
}



.depoimentos {
  background-color: #fff !important;
}


/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #686868;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "Inter", sans-serif;
  color: #FAA831;
  line-height: 1.2;
  font-weight: 700;
}

h5 {
  font-family: "Inter", sans-serif;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}



h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: calc(1.575rem + 3.3428571429vw);
}

@media (min-width: 1400px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: calc(1.4rem + 1.5428571429vw);
}

@media (min-width: 1400px) {
  h2 {
    font-size: 2.75rem;
  }
}

h3 {
  font-size: calc(1.325rem + 0.7714285714vw);
}

@media (min-width: 1400px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.2571428571vw);
}

@media (min-width: 1400px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #686868;
  text-decoration: none;
}

@media not all and (pointer: coarse) {
  a:hover {
    color: #33BEBF;
  }
}

/*===== keyframes for banner img ====*/
@-webkit-keyframes santa-ride {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15%);
  }
}

@-moz-keyframes santa-ride {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15%);
  }
}

@-ms-keyframes santa-ride {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15%);
  }
}

@-o-keyframes santa-ride {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15%);
  }
}

@keyframes santa-ride {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15%);
  }
}

@-webkit-keyframes floating {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-moz-keyframes floating {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-ms-keyframes floating {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-o-keyframes floating {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floating {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-ms-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-o-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@-moz-keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@-ms-keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@-o-keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@-webkit-keyframes left-right {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-moz-keyframes left-right {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-ms-keyframes left-right {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-o-keyframes left-right {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes left-right {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes light {

  10%,
  90% {
    opacity: 0.5;
  }

  20%,
  80% {
    opacity: 0.7;
  }

  30%,
  50%,
  70% {
    opacity: 0.9;
  }

  40%,
  60% {
    opacity: 1;
  }
}

@-moz-keyframes light {

  10%,
  90% {
    opacity: 0.5;
  }

  20%,
  80% {
    opacity: 0.7;
  }

  30%,
  50%,
  70% {
    opacity: 0.9;
  }

  40%,
  60% {
    opacity: 1;
  }
}

@-ms-keyframes light {

  10%,
  90% {
    opacity: 0.5;
  }

  20%,
  80% {
    opacity: 0.7;
  }

  30%,
  50%,
  70% {
    opacity: 0.9;
  }

  40%,
  60% {
    opacity: 1;
  }
}

@-o-keyframes light {

  10%,
  90% {
    opacity: 0.5;
  }

  20%,
  80% {
    opacity: 0.7;
  }

  30%,
  50%,
  70% {
    opacity: 0.9;
  }

  40%,
  60% {
    opacity: 1;
  }
}

@keyframes light {

  10%,
  90% {
    opacity: 0.5;
  }

  20%,
  80% {
    opacity: 0.7;
  }

  30%,
  50%,
  70% {
    opacity: 0.9;
  }

  40%,
  60% {
    opacity: 1;
  }
}

.form-control {
  border-radius: 5px;
  padding: 1rem 1.5rem;
}

.form-control:focus {
  box-shadow: none;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*=-=-=-=-=-=====> utility classes start here <======= -=-=-=-=-=-=-=*/
.color--theme-black {
  color: #fff !important;
}

.color--theme-color {
  color: #33BEBF !important;
}

.color--secondary-color {
  color: #32C2FA !important;
}

.bg--body {
  background-color: #f5f5f5;
}

.bg--white {
  background-color: #fff;
}

.bg--semi-body {
  background-color: rgba(245, 245, 245, 0.6);
}

.padding-top {
  padding-top: 70px;
}

@media (min-width: 992px) {
  .padding-top {
    padding-top: 100px;
  }
}

.padding-bottom {
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  .padding-bottom {
    padding-bottom: 100px;
  }
}

.subtitle {
  text-transform: uppercase;
  font-weight: bold;
  color: #33BEBF;
  font-size: 1.5rem;
}

/*=-=-=-=-=-=====> utility classes end here <======= -=-=-=-=-=-=-=*/
/* @@@@@@@@@@@@@  Extend Property CSS start here  @@@@@@@@@@@@@@ */
.social,
.rating,
.accordion__button,
.account__form .form-group .checkgroup,
.coming-soon__inner,
.countdown,
.error__inner,
.widget.widget-info .widget-info__list-item,
.widget.widget-service .widget-service__list-item a,
.widget.widget-tags ul.widget-wrapper,
.widget.widget-post ul.widget-wrapper li.widget-post-item,
.widget.recent-product ul.widget-wrapper li.widget-post-item,
.tags,
.tags-area,
.single-quote,
.comment-respond .add-comment .comment-form,
.comments .comment-list .comment .com-content .com-title,
.authors,
.blog__content-bottom,
.info__item-inner,
.menu,
.header-wrapper .menu-area .header-btn,
.header-wrapper .menu-area,
.header-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.register--uplifted,
.accordion__button .plus-icon,
.venue__content,
.venue,
.team__item,
.single-quote,
.post-item-2 .post-inner .post-content .meta-post p span,
.post-item-2 .post-inner .post-content .qute-content blockquote,
.post-item-2 .post-inner .post-content .more-com .text-btn,
.post-item-2 .post-inner .post-thumb,
.post-item-2 .post-inner .post-thumb-container,
.blog__meta-comment,
.default-btn,
.event-access .event-access-content,
.event-access,
.contact .form,
.banner__content,
.banner--overlay,
.banner,
.page-header__content,
.page-header,
.menu-item-has-children>a,
.header-bar {
  position: relative;
}

.accordion__button .plus-icon:before,
.accordion__button .plus-icon:after,
.venue__map,
.post-item-2 .post-inner .post-content .meta-post p span::after,
.post-item-2 .post-inner .post-content .qute-content blockquote::after,
.post-item-2 .post-inner .post-content .qute-content blockquote::before,
.post-item-2 .post-inner .post-content .more-com .text-btn i,
.post-item-2 .post-inner .post-thumb .meta-date,
.post-item-2 .post-inner .post-thumb .play-btn,
.post-item-2 .post-inner .post-thumb-container .thumb-nav,
.event-access .mockup,
.event-access:after,
.banner--overlay:after,
.page-header:after,
.menu-item-has-children>a::before,
.menu-item-has-children>a::after,
.header-bar span {
  position: absolute;
  content: "";
}

.artist,
.accordion__item,
.pricing__item,
.team__single-thumb,
.team__item-thumb,
.team,
.account,
.coming-soon,
.error,
.widget.widget-post ul.widget-wrapper li .post-thumb,
.widget.recent-product ul.widget-wrapper li .post-thumb,
.widget,
.comments .comment-list .comment .com-content,
.comments .comment-list .comment .com-thumb,
.authors .author-thumb,
.post-item-2 .post-inner .post-thumb,
.post-item-2 .post-inner .post-thumb-container,
.blog__thumb,
.blog__item,
.about,
.default-btn,
.schedule,
.event-access,
.banner,
.widget.widget-post ul.widget-wrapper li .post-content h6,
.widget.recent-product ul.widget-wrapper li .post-content h6,
.article-pagination .prev-article p,
.article-pagination .next-article p,
.post-item-2 .post-inner .post-content a h3,
.post-item-2 .post-inner .post-content h2,
.blog__content>p {
  overflow: hidden;
}

.account__form .form-group .checkgroup label,
.account__form .form-group .checkgroup input[type=checkbox],
.account__form .form-group .checkgroup,
.header-bar {
  cursor: pointer;
}

.accordion__button,
.venue__map iframe,
.venue__map,
.team__single-thumb img,
.team__item--style2 .team__item-content,
.team__item--style2 .team__item-thumb,
.team__item-thumb img,
.account__form .form-group button,
.account__form .form-group input,
.widget.widget-author .widget-author__thumb img,
.widget.widget-info .widget-info__thumb img,
.widget.widget-brochure .widget-brochure__thumb img,
.widget.widget-post ul.widget-wrapper li .post-thumb a img,
.widget.recent-product ul.widget-wrapper li .post-thumb a img,
.single-quote .quotes,
.post-item-2 .post-inner .post-thumb img,
.blog__thumb img,
.event-access:after,
.map__wrapper iframe,
.contact .form input,
.contact .form textarea,
.banner--overlay:after,
.page-header:after,
.header-bar span,
.header-section.header-fixed,
.header-section {
  width: 100%;
}

.venue__map iframe,
.venue__map,
.team__item-thumb img,
.coming-soon__thumb img,
.coming-soon__thumb,
.error__thumb img,
.error__thumb,
.widget.widget-post ul.widget-wrapper li .post-thumb a,
.widget.recent-product ul.widget-wrapper li .post-thumb a,
.event-access:after,
.banner--overlay:after,
.page-header:after {
  height: 100%;
}

.default-btn {
  font-weight: 700;
}

.single-quote span {
  font-weight: 400;
}

.rating,
.coming-soon__inner,
.error__inner {
  justify-content: center;
}

.accordion__button,
.comment-respond .add-comment .comment-form,
.comments .comment-list .comment .com-content .com-title,
.authors,
.blog__content-bottom,
.header-wrapper {
  justify-content: space-between;
}

.social,
.rating,
.account__form .form-group .checkgroup,
.widget.widget-info .widget-info__list-item,
.widget.widget-service .widget-service__list-item a,
.widget.widget-post ul.widget-wrapper li.widget-post-item,
.widget.recent-product ul.widget-wrapper li.widget-post-item,
.comments .comment-list .comment .com-content .com-title,
.authors,
.blog__content-bottom,
.info__item-inner,
.header-wrapper .menu-area .header-btn,
.header-wrapper .menu-area,
.header-wrapper {
  align-items: center;
}

.header-wrapper .logo a {
  display: block;
}

.widget.widget-tags ul.widget-wrapper li a,
.tags li a,
.comments .comment-list .comment .com-content .com-title .com-title-meta span,
.article-pagination .prev-article a,
.article-pagination .next-article a,
.post-item-2 .post-inner .post-thumb .play-btn,
.blog__meta-tag,
.default-btn,
.header-bar span {
  display: inline-block;
}

/* @@@@@@@@@@@@@  Extend Property CSS Writing Now  @@@@@@@@@@@@@@ */
.widget.widget-post ul.widget-wrapper li .post-content h6,
.widget.recent-product ul.widget-wrapper li .post-content h6,
.article-pagination .prev-article p,
.article-pagination .next-article p,
.post-item-2 .post-inner .post-content a h3,
.post-item-2 .post-inner .post-content h2,
.blog__content>p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* @@@@@@@@@@@@@  Extend Property CSS Writing Now  @@@@@@@@@@@@@@ */
.cta__content,
.pricing__inner,
.team__item--style2 .team__item-inner,
.account__wrapper,
.coming-soon__content,
.countdown__item,
.error__content,
.post-item-2 .post-inner .post-thumb .play-btn,
.about__thumb,
.section-header {
  text-align: center;
}

.accordion__button,
.pricing__body ul {
  text-align: left;
}

.social,
.rating,
ul,
ol {
  list-style: none;
}

/* @@@@@@@@@@@@@  Extend Property Margin 10 - 30 CSS Writing Now  @@@@@@@@@@@@@@ */
.account__form .form-group .checkgroup label {
  margin: 0;
}

.feature__item-content p,
.social,
.cta__content p,
.pricing__value,
.pricing__body h4,
.pricing__head h4,
.team__single-name p,
.countdown__text,
.widget.widget-project .widget-project__list-item h6,
.widget.widget-info .widget-info__list-content h6,
.widget.widget-service .widget-service__list-item p,
.widget .widget__header h5,
.article-pagination .prev-article p,
.article-pagination .next-article p,
.schedule__item-time h6,
.info__item-content p,
.menu {
  margin-bottom: 0;
}

.pricing__title,
.widget.widget-info .widget-info__list-content p,
.comments .comment-list .comment .com-content .com-title .com-title-meta span,
.subtitle {
  margin-bottom: 5px;
}

.widget.widget-project .widget-project__list-item p,
.comments .comment-list .comment .com-content .com-title,
.authors .author-content h4,
.authors .author-content p,
.article-pagination .prev-article a,
.article-pagination .next-article a,
.blog__meta-tag,
.footer__content h3 {
  margin-bottom: 10px;
}

.feature__item-content h4,
.comments .comment-list .comment .com-thumb,
.post-item-2 .post-inner .post-content h2,
.blog__content-top h4,
.blog__thumb,
.section-header h2 {
  margin-bottom: 15px;
}

.feature__item-thumb,
.venue__list-item:not(:last-child),
.coming-soon__content h2,
.comment-respond .add-comment .comment-form input,
.comment-respond .add-comment .comment-form textarea,
.blog__content-top,
.footer__content p,
.event-access .event-access-content h2,
.contact .form input,
.banner__content h1 {
  margin-bottom: 20px;
}

.cta__content h2,
.team__single-name,
.account__form .form-group,
.widget.widget-brochure .widget-brochure__thumb {
  margin-bottom: 25px;
}

.team__item-thumb,
.account__wrapper .title,
.coming-soon__content .countdown,
.widget.widget-author .widget-author__thumb,
.event-access .event-access-content>p {
  margin-bottom: 30px;
}

.coming-soon__content>p,
.widget:not(:last-child),
.contact .form textarea {
  margin-bottom: 40px;
}

.banner__content>p {
  margin-bottom: 45px;
}

.banner__content {
  margin-bottom: 50px;
}

.single-quote span,
.blog__content .default-btn,
.form-massage {
  margin-top: 10px;
}

.blog__content-bottom,
.about__content .default-btn {
  margin-top: 20px;
}

.about__content-feature {
  margin-top: 25px;
}

.venue__list,
.comment-respond,
.comments,
.banner__bottom {
  margin-top: 30px;
}

.team__single .social {
  margin-top: 35px;
}

.banner .default-btn {
  margin-top: 40px;
}

.default-btn span svg,
.default-btn span img {
  margin-left: 5px;
}

.header-bar {
  margin-left: 30px;
}

.venue__list-item span,
.pricing__body ul li span,
.comments .comment-list .comment .com-content .com-title .reply .comment-reply-link svg,
.comments .comment-list .comment .com-content .com-title .com-title-meta a {
  margin-right: 5px;
}

.account__form .form-group .checkgroup input[type=checkbox],
.comments .comment-list .comment .com-thumb {
  margin-right: 15px;
}

/* @@@@@@@@@@@@@  Extend Property padding 10 - 30 CSS Writing Now  @@@@@@@@@@@@@@ */
.team__item--style2 .team__item-content {
  padding: 0;
}

.feature__item-inner,
.team__item--style2 .team__item-inner {
  padding: 10px;
}

.team__item-inner,
.widget .widget__header,
.schedule__item,
.banner__content .countdown__item {
  padding: 20px;
}

.venue__content,
.widget.widget-brochure .widget-brochure__inner,
.authors {
  padding: 25px;
}

.cta__wrapper,
.widget.widget-author .widget-author__inner,
.single-quote,
.comment-respond .add-comment,
.comment-respond h4,
.comments .comment-list .com-item,
.comments .comment-title,
.info__item {
  padding: 30px;
}

.comments .comment-list .com-item {
  padding-bottom: 0;
}

.comments .comment-list .comment .com-content {
  padding-bottom: 20px;
}

.social,
.rating,
ul,
ol {
  padding-left: 0;
}

.pricing__body ul {
  padding-left: 30px;
}

/*================***Mutlipage  Header Section Start Here     ***===================*/
.header-section {
  z-index: 999;
  position: absolute;
}

.header-section.header-fixed {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(251, 76, 110, 0.05);
  z-index: 999;
}

.header-section.header-fixed .header-bottom {
  background: #fafafa;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-wrapper {
  padding: 23px 0;
}

@media (min-width: 576px) {
  .header-wrapper {
    position: relative;
  }
}

.header-wrapper .logo a img {
  max-width: 100%;
}

@media (max-width: 575px) {
  .header-wrapper .logo {
    width: 160px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header-wrapper .logo {
    width: 200px;
  }
}

.header-wrapper .menu-area .header-btn {
  column-gap: 20px;
}

@media (max-width: 767px) {
  .header-wrapper .menu-area .header-btn {
    display: none;
  }
}

@media (min-width: 992px) {
  .menu {
    margin-right: 30px;
    gap: 10px;
  }
}

.menu>li>a {
  color: #19183e;
  font-size: 16px;
  padding: 15px 22px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.menu>li>a i {
  margin-right: 5px;
}

.menu>li>a:after {
  right: 16px;
}

.menu>li>a::before {
  right: 20px;
}

@media (min-width: 992px) {
  .menu>li>a:after {
    right: -2px;
  }

  .menu>li>a::before {
    right: 2px;
  }
}

@media (min-width: 1200px) {
  .menu>li>a:after {
    right: 3px;
  }

  .menu>li>a::before {
    right: 7px;
  }
}

@media (min-width: 992px) {
  .menu li {
    position: relative;
  }

  .menu li .submenu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(35px);
    -moz-transform: translateY(35px);
    -ms-transform: translateY(35px);
    -o-transform: translateY(35px);
    transform: translateY(35px);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    background: #fff;
    width: 220px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    border-radius: 0.35rem;
  }

  .menu li .submenu li {
    padding: 0;
  }

  .menu li .submenu li a {
    padding: 10px 20px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #19183e;
    border-bottom: 1px solid rgba(251, 76, 110, 0.05);
    font-weight: 600;
    border-radius: 0.25rem;
  }

  .menu li .submenu li a:hover,
  .menu li .submenu li a.active {
    background: #33BEBF;
    padding-left: 22px;
    color: #fff;
  }

  .menu li .submenu li a:hover:after,
  .menu li .submenu li a:hover:before,
  .menu li .submenu li a.active:after,
  .menu li .submenu li a.active:before {
    background: currentColor;
  }

  .menu li .submenu li:last-child a {
    border-bottom: none;
  }

  .menu li .submenu li .submenu {
    left: 100%;
    top: 0;
  }

  .menu li:hover>.submenu {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .menu li a {
    padding: 10px 12px;
  }
}

@media (max-width: 991px) {
  .menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    overflow: auto;
    max-height: 400px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top;
    background: rgba(250, 250, 250, 0.99);
    -webkit-backdrop-filter: blur(20px);
  }

  .menu li {
    width: 100%;
    padding: 0;
  }

  .menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 15px;
    text-transform: capitalize;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    color: #686868;
  }

  .menu li a:hover {
    background: rgba(250, 250, 250, 0.6);
  }

  .menu li .submenu {
    padding-left: 20px;
    display: none;
  }

  .menu li .submenu li {
    width: 100%;
  }

  .menu li .submenu li a {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
  }

  .menu.active {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.header-bar {
  width: 25px;
  height: 20px;
}

.header-bar span {
  height: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #050505;
  left: 0;
}

.header-bar span:first-child {
  top: 0;
}

.header-bar span:nth-child(2) {
  top: 52%;
  transform: translateY(-65%);
}

.header-bar span:last-child {
  bottom: 0;
}

.header-bar.active span:first-child {
  -webkit-transform: rotate(45deg) translate(3px, 9px);
  -moz-transform: rotate(45deg) translate(3px, 9px);
  -ms-transform: rotate(45deg) translate(3px, 9px);
  -o-transform: rotate(45deg) translate(3px, 9px);
  transform: rotate(45deg) translate(3px, 9px);
}

.header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-bar.active span:last-child {
  -webkit-transform: rotate(-45deg) translate(3px, -9px);
  -moz-transform: rotate(-45deg) translate(3px, -9px);
  -ms-transform: rotate(-45deg) translate(3px, -9px);
  -o-transform: rotate(-45deg) translate(3px, -9px);
  transform: rotate(-45deg) translate(3px, -9px);
}

@media (max-width: 575px) {
  .header-bar {
    width: 15px;
    height: 16px;
    margin-right: 20px;
  }

  .header-bar span {
    height: 2px;
    width: 20px;
  }

  .header-bar.active span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 6px);
    -moz-transform: rotate(45deg) translate(4px, 6px);
    -ms-transform: rotate(45deg) translate(4px, 6px);
    -o-transform: rotate(45deg) translate(4px, 6px);
    transform: rotate(45deg) translate(4px, 6px);
  }

  .header-bar.active span:nth-child(2) {
    opacity: 0;
  }

  .header-bar.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(4px, -6px);
    -moz-transform: rotate(-45deg) translate(4px, -6px);
    -ms-transform: rotate(-45deg) translate(4px, -6px);
    -o-transform: rotate(-45deg) translate(4px, -6px);
    transform: rotate(-45deg) translate(4px, -6px);
  }
}

.menu-item-has-children>a::after {
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 10px;
  height: 2px;
  background-color: currentColor;
}

.menu-item-has-children>a::before {
  top: 50%;
  transform: translateY(-50%);
  right: 29px;
  width: 2px;
  height: 10px;
  background-color: currentColor;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .menu-item-has-children>a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
    width: 10px;
    height: 2px;
    background-color: currentColor;
  }

  .menu-item-has-children>a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 2px;
    height: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.menu-item-has-children:hover>a:before {
  transform: rotate(90deg);
  opacity: 0;
}

.menu-item-has-children.open>a:before {
  transform: rotate(90deg);
  opacity: 0;
}

/*================*** Multipage Header Section End Here     ***===================*/
/*=-=-=-======< Section header start here >==========-=-=-=-*/
.section-header {
  margin-top: -5px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .section-header {
    margin-bottom: 60px;
  }
}

/*=-=-=-======< Section header end here >==========-=-=-=-*/
/*=-=-=-======< Page header start here >==========-=-=-=-*/
.page-header {
  padding-block-start: 120px;
  padding-block-end: 70px;
  background-size: cover;
  background-position: center;
}

.page-header:after {
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, #32C2FA 58%, #33BEBF);
  opacity: 0.9;
}

@media (min-width: 992px) {
  .page-header {
    padding-block-start: 170px;
    padding-block-end: 110px;
  }
}

@media (min-width: 1400px) {
  .page-header {
    padding-block-start: 180px;
    padding-block-end: 120px;
  }
}

.page-header__content {
  z-index: 1;
}

.page-header .breadcrumb-item {
  color: #fff;
}

.page-header .breadcrumb-item a {
  color: inherit;
}

.page-header .breadcrumb-item:before,
.page-header .breadcrumb-item.active {
  color: #33BEBF;
  font-weight: 600;
}

/*=-=-=-======< Page header end here >==========-=-=-=-*/
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 160px;
}

.banner--overlay:after {
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, black 58%, black);
  opacity: 0.50;
}

@media (min-width: 768px) {
  .banner {
    padding-block-start: 230px;
    padding-block-end: 200px;
  }
}

@media (min-width: 992px) {
  .banner {
    padding-block: 180px;
  }
}

@media (min-width: 1400px) {
  .banner {
    padding-block: 225px;
  }
}

.banner--2 {
  padding-block-start: 160px;
  padding-block-end: 90px;
}

@media (min-width: 768px) {
  .banner--2 {
    padding-block-start: 200px;
    padding-block-end: 90px;
  }
}

@media (min-width: 992px) {
  .banner--2 {
    padding-block: 100px;
  }
}

.banner__content {
  z-index: 1;
}

@media (min-width: 992px) {
  .banner__content {
    margin-bottom: 0;
  }
}

.banner__content h1 {
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .banner__content h1 {
    font-size: calc(1.53125rem + 2.8928571429vw);
  }
}

@media (min-width: 992px) and (max-width: 1399px) and (min-width: 1400px) {
  .banner__content h1 {
    font-size: 4.0625rem;
  }
}

.banner__content h1,
.banner__content p {
  color: #fff;
}

.banner__content>p {
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  max-inline-size: 42ch;
}

.banner__content .countdown__item {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.banner__content .countdown__text {
  color: #19183e;
}

.contact {
  background-color: #fafafa;
}

.contact .form {
  z-index: 1;
}

.contact .form input,
.contact .form textarea {
  -webkit-border: 1px solid rgba(5, 5, 5, 0.05);
  -moz-border: 1px solid rgba(5, 5, 5, 0.05);
  -ms-border: 1px solid rgba(5, 5, 5, 0.05);
  -o-border: 1px solid rgba(5, 5, 5, 0.05);
  border: 1px solid rgba(5, 5, 5, 0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  color: #686868;
  padding: 20px 30px;
}

.contact .form input::placeholder,
.contact .form textarea::placeholder {
  color: #686868;
}

.contact .form input:focus-within,
.contact .form textarea:focus-within {
  outline: none;
  border-color: rgba(251, 76, 110, 0.8);
}

.contact .form textarea {
  min-height: 250px;
}

.contact .form .default-btn {
  border: none;
}

.form-massage {
  color: #fff;
}

.info__item {
  background-color: #fff;
  border-radius: 0.4rem;
}

.info__item-inner {
  gap: 20px;
}

.info__item-icon {
  width: 50px;
}

.info__item-content {
  flex: 1;
}

.map__wrapper iframe {
  min-height: 300px;
  margin-bottom: -5px;
}

.event-access {
  background-image: url(../images/event/bg.png);
  background-size: cover;
  background-attachment: fixed;
}

.event-access:after {
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, #32C2FA 45%, #33BEBF 93%);
  opacity: 0.9;
}

.event-access .mockup {
  right: 0;
  text-align: right;
  bottom: 0;
  z-index: 1;
}

.event-access .mockup .mok-img {
  max-width: 45%;
}

@media (min-width: 576px) {
  .event-access .mockup .mok-img {
    max-width: 35%;
  }
}

@media (min-width: 768px) {
  .event-access .mockup .mok-img {
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .event-access .mockup .mok-img {
    max-width: 50%;
  }
}

@media (min-width: 1400px) {
  .event-access .mockup .mok-img {
    max-width: 65%;
  }
}

.event-access .event-access-content {
  z-index: 1;
}

.event-access .event-access-content>p {
  color: #19183e;
  line-height: 1.6;
  max-inline-size: 70ch;
}

.schedule__item {
  background-color: #fff;
  border-radius: 0.5rem;
}

.schedule__item-time {
  -webkit-transform: translateY(-35px);
  -moz-transform: translateY(-35px);
  -ms-transform: translateY(-35px);
  -o-transform: translateY(-35px);
  transform: translateY(-35px);
  background-color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(251, 76, 110, 0.3);
}

.schedule__item-time h6 {
  color: #33BEBF;
}

.schedule__item-content {
  margin-top: -10px;
}

@media (min-width: 992px) {
  .schedule .col-lg-6:not(:last-child) .schedule__item-inner {
    position: relative;
  }

  .schedule .col-lg-6:not(:last-child) .schedule__item-inner:after {
    position: absolute;
    content: "";
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    transform: rotate(-35deg);
    height: 180px;
    width: 8px;
    background-color: white;
    z-index: -1;
    right: -40px;
  }

  .schedule .col-lg-6:not(:last-child) .schedule__item--right .schedule__item-inner:after {
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transform: rotate(35deg);
    left: -40px;
  }
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__content p {
  font-size: 1.125rem;
  color: #fff;
}

.footer__copyright {
  border-top: 1px solid rgba(251, 76, 110, 0.2);
}

.default-btn {
  font-size: 0.875rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  color: #fff;
  padding: 0 1.7rem;
  line-height: 50px;
  transform-origin: right;
  transition: all 0.3s ease;
  background: #33BEBF;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 0.4rem;
}

@media (min-width: 768px) {
  .default-btn {
    padding: 0 2.25rem;
    line-height: 56px;
  }
}

.default-btn span {
  position: inherit;
  z-index: 1;
}

.default-btn--small {
  line-height: 46px;
  padding: 0 1.25rem;
}

.default-btn--secondary {
  background-color: #32C2FA;
  color: #fff;
}

.default-btn--secondary:hover {
  color: #fff;
}

.default-btn.move-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDBA00;
  transition: transform 0.5s;
  transform-origin: right;
  transform: scaleX(0);
  z-index: 0;
}

.default-btn.move-right:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
}

.default-btn.move-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAA831;
  transition: transform 0.5s;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 0;
}

.default-btn.move-left:hover:before {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.5s;
}

.default-btn.move-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #19183e;
  transition: transform 0.5s;
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: 0;
}

.default-btn.move-bottom:hover:before {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.5s;
}

.default-btn.move-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #19183e;
  transition: transform 0.5s;
  transform-origin: top;
  transform: scaleY(0);
  z-index: 0;
}

.default-btn.move-top:hover:before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.default-btn:hover {
  color: #fff;
}

.default-btn-active {
  background-color: #33BEBF;
  border-color: #33BEBF;
}

.text-btn {
  font-weight: 700;
  text-transform: capitalize;
  color: #19183e;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #fff;
  z-index: 99999;
}

.preloader img {
  max-inline-size: calc(50px + 4vw);
}

.blog__item {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px 2px rgba(5, 5, 5, 0.1);
}

.blog__item:hover .blog__thumb img {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}

.blog__item--style2 {
  background-color: rgba(5, 5, 5, 0.2);
}

.blog__thumb img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog__content {
  padding-inline: 30px;
  padding-block-end: 20px;
  padding-block-start: 15px;
}

.blog__content-top h4:hover a {
  color: #33BEBF;
}

.blog__content-bottom {
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  padding-block-start: 1rem;
}

.blog__meta {
  column-gap: 30px;
  row-gap: 10px;
}

.blog__meta-tag {
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  color: #32C2FA;
  font-weight: 700;
  text-transform: capitalize;
  background: rgba(50, 194, 250, 0.1);
}

.blog__meta-comment {
  color: #686868;
}

.blog__meta-comment span {
  width: 16px;
  height: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-grid;
  place-items: center;
  background-color: #32C2FA !important;
  color: #050505;
}

.post-item-2 {
  background: #fff;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  border-radius: 0.5rem;
}

.post-item-2 .post-inner {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.post-item-2 .post-inner:hover .post-thumb a img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.post-item-2 .post-inner .post-thumb-container .thumb-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: #f7f2e9;
  line-height: 50px;
  text-align: center;
  color: #050505;
  font-size: 20px;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 575px) {
  .post-item-2 .post-inner .post-thumb-container .thumb-nav {
    display: none;
  }
}

.post-item-2 .post-inner .post-thumb-container .thumb-nav:hover {
  color: #fff;
  background-color: #33BEBF;
}

.post-item-2 .post-inner .post-thumb-container .thumb-next {
  right: 20px;
  z-index: 1;
}

.post-item-2 .post-inner .post-thumb-container .thumb-prev {
  left: 20px;
  z-index: 1;
}

.post-item-2 .post-inner .post-thumb {
  border-radius: 0.3rem;
}

.post-item-2 .post-inner .post-thumb img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.4rem;
}

.post-item-2 .post-inner .post-thumb .play-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: ripple 0.8s linear infinite;
  -moz-animation: ripple 0.8s linear infinite;
  -ms-animation: ripple 0.8s linear infinite;
  -o-animation: ripple 0.8s linear infinite;
  animation: ripple 0.8s linear infinite;
}

.post-item-2 .post-inner .post-thumb .play-btn svg {
  color: #33BEBF;
  font-size: 1rem;
  z-index: 1;
}

.post-item-2 .post-inner .post-thumb .meta-date {
  top: 10px;
  left: 10px;
}

.post-item-2 .post-inner .post-thumb .meta-date .md-pre {
  padding: 8px 20px;
  background: #fff;
  text-align: center;
  border-radius: 2px;
}

.post-item-2 .post-inner .post-thumb .meta-date .md-pre h5,
.post-item-2 .post-inner .post-thumb .meta-date .md-pre p {
  color: #050505;
  margin-bottom: 0;
  line-height: 1;
}

.post-item-2 .post-inner .post-thumb .meta-date .md-pre h5 {
  margin-bottom: 5px;
}

.post-item-2 .post-inner .post-thumb .meta-date .md-pre p {
  font-size: 15px;
}

.post-item-2 .post-inner .post-content {
  padding: 30px;
}

.post-item-2 .post-inner .post-content .post-date {
  margin-bottom: 19px;
}

.post-item-2 .post-inner .post-content .post-date li {
  display: inline-block;
  padding-right: 10px;
}

.post-item-2 .post-inner .post-content .post-date li:last-child {
  padding-right: 0;
}

.post-item-2 .post-inner .post-content .post-date li span a {
  padding-left: 5px;
}

.post-item-2 .post-inner .post-content .post-date li span a:hover {
  color: #33BEBF;
}

.post-item-2 .post-inner .post-content h2 {
  font-size: calc(1.3125rem + 0.6428571429vw);
}

@media (min-width: 1400px) {
  .post-item-2 .post-inner .post-content h2 {
    font-size: 1.875rem;
  }
}

.post-item-2 .post-inner .post-content a h3 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-item-2 .post-inner .post-content a h3:hover {
  color: #33BEBF;
}

.post-item-2 .post-inner .post-content .default-button {
  line-height: 56px;
  padding: 0 2rem;
}

.post-item-2 .post-inner .post-content p {
  margin-bottom: 25px;
  line-height: 1.5;
}

.post-item-2 .post-inner .post-content .more-com .text-btn {
  font-weight: 500;
}

.post-item-2 .post-inner .post-content .more-com .text-btn span {
  font-size: 15px;
}

.post-item-2 .post-inner .post-content .more-com .text-btn:hover span {
  color: #33BEBF;
}

.post-item-2 .post-inner .post-content .more-com .text-btn:hover i {
  margin-left: 5px;
  opacity: 1;
}

.post-item-2 .post-inner .post-content .more-com .text-btn i {
  top: 50%;
  font-size: 13px;
  margin-left: -10px;
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-item-2 .post-inner .post-content .more-com .comment-visi span {
  padding-right: 15px;
  color: #33BEBF;
}

.post-item-2 .post-inner .post-content .more-com .comment-visi span:last-child {
  padding-right: 0;
  color: red;
}

.post-item-2 .post-inner .post-content .more-com .comment-visi span a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-item-2 .post-inner .post-content .more-com .comment-visi span a:hover {
  color: #050505;
}

.post-item-2 .post-inner .post-content .qute-content {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(81, 70, 174, 0.27);
}

.post-item-2 .post-inner .post-content .qute-content blockquote {
  margin-bottom: 0;
  padding-top: 45px;
}

.post-item-2 .post-inner .post-content .qute-content blockquote::before {
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  opacity: 0.5;
  color: #33BEBF;
  content: "\efcd" !important;
  font-size: 36px;
  font-family: IcoFont !important;
}

.post-item-2 .post-inner .post-content .qute-content blockquote::after {
  width: 40px;
  height: 40px;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  color: #33BEBF;
  content: "\efce" !important;
  font-size: 36px;
  font-family: IcoFont !important;
}

.post-item-2 .post-inner .post-content .qute-content blockquote a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-item-2 .post-inner .post-content .qute-content blockquote a:hover {
  color: #33BEBF;
}

.post-item-2 .post-inner .post-content .meta-post p span {
  display: inline-block;
  padding-right: 15px;
}

.post-item-2 .post-inner .post-content .meta-post p span::after {
  width: 1px;
  height: 12px;
  right: 4px;
  top: 50%;
  background: #dddcdc;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-item-2 .post-inner .post-content .meta-post p span.admin-name {
  margin-left: 5px;
}

.post-item-2 .post-inner .post-content .meta-post p span:last-child {
  padding-right: 0;
}

.post-item-2 .post-inner .post-content .meta-post p span:last-child::after {
  display: none;
}

.post-item-2 .post-inner .post-content .meta-post p span a {
  padding-left: 5px;
}

.post-item-2 .post-inner .post-content .meta-post p span a:hover {
  color: #33BEBF;
}

.article-pagination {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.article-pagination .prev-article a,
.article-pagination .next-article a {
  font-size: 1.125rem;
  color: #33BEBF;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.article-pagination .prev-article a svg,
.article-pagination .next-article a svg {
  font-size: 18px;
}

.article-pagination .prev-article a:hover,
.article-pagination .next-article a:hover {
  color: #33BEBF;
}

.article-pagination .prev-article p,
.article-pagination .next-article p {
  max-inline-size: 20ch;
}

.article-pagination .next-article {
  text-align: right;
}

.authors {
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  margin-block: 30px;
  background: #fff;
  border-radius: 0.5rem;
}

@media (max-width: 575px) {
  .authors {
    justify-content: center;
  }
}

.authors .author-thumb {
  width: 160px;
  text-align: center;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 100%;
}

.authors .author-thumb a {
  width: 140px;
  height: 140px;
  border-radius: 100%;
}

.authors .author-thumb img {
  height: 100%;
  border-radius: 100%;
}

.authors .author-content {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 576px) {
  .authors .author-content {
    width: calc(100% - 180px);
    margin-top: 0;
    text-align: left;
  }
}

.comments {
  background: #fff;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  border-radius: 0.5rem;
}

.comments .comment-title {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

@media (max-width: 575px) {
  .comments .comment-list {
    margin: 0;
  }
}

.comments .comment-list .comment .com-thumb {
  height: 50px;
  width: 50px;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 100%;
}

@media (min-width: 576px) {
  .comments .comment-list .comment .com-thumb {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .comments .comment-list .comment .com-thumb {
    height: 80px;
    width: 80px;
  }
}

.comments .comment-list .comment .com-thumb img {
  border-radius: 100%;
}

@media (max-width: 575px) {
  .comments .comment-list .comment .com-content {
    width: 100%;
  }
}

.comments .comment-list .comment .com-content .com-title .com-title-meta a {
  font-size: 1.125rem;
  color: #19183e;
  display: block;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.comments .comment-list .comment .com-content .com-title .com-title-meta h6 a {
  color: #050505;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comments .comment-list .comment .com-content .com-title .com-title-meta h6 a:hover {
  color: #33BEBF;
}

.comments .comment-list .comment .com-content .com-title .com-title-meta span {
  font-size: 0.875rem;
}

@media (max-width: 575px) {
  .comments .comment-list .comment .com-content .com-title .reply {
    margin-bottom: 10px;
    display: inline-block;
  }
}

.comments .comment-list .comment .com-content .com-title .reply .comment-reply-link {
  padding: 3px 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comments .comment-list .comment .com-content .com-title .reply .comment-reply-link:hover {
  color: #33BEBF;
  border-radius: 5px;
}

.comments .comment-list .comment .comment-list {
  padding: 0 20px;
  border-top: 1px solid #f5f5f5;
}

@media (min-width: 576px) {
  .comments .comment-list .comment .comment-list {
    padding-left: 60px;
    padding-right: 30px;
  }
}

.comments .comment-list .comment .comment-list .comment {
  list-style: none;
  overflow: hidden;
  padding-top: 30px;
}

.comments .comment-list .comment .comment-list .comment:last-child {
  border: none;
  padding-bottom: 0px;
}

.comment-respond {
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  background-color: #fff;
  border-radius: 0.5rem;
}

.comment-respond h4 {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.comment-respond .add-comment .comment-form input[type=text] {
  padding: 16px 15px;
  border-radius: 4px;
  width: 100%;
}

@media (min-width: 576px) {
  .comment-respond .add-comment .comment-form input[type=text] {
    width: calc(50% - 15px);
  }
}

.comment-respond .add-comment .comment-form input,
.comment-respond .add-comment .comment-form textarea {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
  background: #f5f5f5;
  color: #19183e;
  border: 1px solid rgba(5, 5, 5, 0.05);
}

.comment-respond .add-comment .comment-form input::placeholder,
.comment-respond .add-comment .comment-form textarea::placeholder {
  color: rgba(25, 24, 62, 0.9);
}

.comment-respond .add-comment .comment-form input:focus,
.comment-respond .add-comment .comment-form textarea:focus {
  border-color: rgba(251, 76, 110, 0.5);
}

.comment-respond .add-comment .comment-form textarea {
  padding: 15px;
  width: 100%;
  border-radius: 4px;
}

.comment-respond .add-comment .comment-form .default-btn {
  border: none;
  margin-block: 20px;
}

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

.px-30 {
  padding-inline: 30px;
}

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

.ty--40 {
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}

.single-quote {
  background: #33BEBF;
  color: #fff;
  border-radius: 0.5rem;
}

.single-quote .quotes {
  font-size: 1.125rem;
}

.single-quote span {
  margin-left: auto;
  display: block;
  text-align: right;
  font-size: 1rem;
}

.tags-area {
  justify-content: center;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  padding: 25px 10px;
  gap: 20px;
}

@media (min-width: 1200px) {
  .tags-area {
    justify-content: space-between;
  }
}

@media (min-width: 576px) {
  .tags-area {
    padding: 25px 0 0;
  }
}

@media (min-width: 768px) {
  .tags {
    margin-bottom: 0;
  }
}

.tags li {
  padding: 5px;
}

.tags li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #33BEBF;
  border-radius: 4px;
}

.tags li a:hover,
.tags li a.active {
  background: #33BEBF;
  color: #fff;
}

.pagination {
  gap: 10px;
}

.pagination .page-item.active .page-link {
  background-color: #33BEBF;
  color: #050505;
  border-color: rgba(251, 76, 110, 0.2);
}

.pagination .page-item.disabled .page-link {
  background-color: rgba(250, 250, 250, 0.2);
  color: #686868;
  border-color: rgba(251, 76, 110, 0.2);
  cursor: not-allowed;
}

.pagination .page-link {
  background-color: #fafafa;
  border-radius: 2px;
  color: #686868;
  border-color: rgba(251, 76, 110, 0.2);
  padding: 0.5rem 0.95rem;
}

.pagination .page-link:hover {
  background-color: #33BEBF;
  color: #050505;
}

.pagination .page-link:focus {
  box-shadow: none;
}

.widget {
  background-color: #fff;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  border-radius: 0.5rem;
}

.widget .widget__header {
  background-color: #fff;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.widget .widget__header h5 {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .widget.widget-search {
    margin-top: 65px;
  }
}

.widget.widget-search .widget-search-inner {
  background-color: #fff;
  padding: 30px;
}

.widget.widget-search .widget-search-inner .form-control {
  background-color: #f5f5f5;
  border: none;
  padding: 1rem;
  color: #686868;
}

.widget.widget-search .widget-search-inner .form-control:focus {
  box-shadow: none;
}

.widget.widget-search .widget-search-inner .search-icon {
  background-color: #f5f5f5;
  padding-inline: 1rem;
  border-color: transparent;
}

.widget.widget-category .widget-wrapper li {
  border-bottom: 1px solid rgba(29, 37, 59, 0.6);
  padding: 20px 0;
}

.widget.widget-category .widget-wrapper li:last-child {
  border-bottom: none;
}

.widget.widget-category .widget-wrapper.list-bg-none li a span:last-child {
  background-color: transparent;
}

.widget.widget-category .widget-wrapper li {
  padding: 0;
}

.widget.widget-category .widget-wrapper li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #686868;
  font-family: "Inter", sans-serif;
  padding: 20px 30px;
}

.widget.widget-category .widget-wrapper li a svg {
  margin-right: 5px;
}

.widget.widget-category .widget-wrapper li a.active,
.widget.widget-category .widget-wrapper li a:hover {
  padding-left: 35px;
  color: #33BEBF;
}

.widget.widget-category .widget-wrapper li a.active span:last-child,
.widget.widget-category .widget-wrapper li a:hover span:last-child {
  color: #33BEBF;
}

.widget.widget-category .widget-wrapper li a span {
  font-weight: 500;
}

.widget.widget-category .widget-wrapper li a span:last-child {
  color: #686868;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget.widget-category .widget-wrapper li:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}

.widget.widget-archive li {
  border-bottom: 1px solid rgba(245, 245, 245, 0.6);
  padding: 20px 30px;
}

.widget.widget-archive li:last-child {
  border-bottom: none;
}

.widget.widget-archive li a {
  color: #19183e;
  font-weight: 500;
}

.widget.widget-archive li a i {
  margin-right: 5px;
}

.widget.widget-archive li a.active,
.widget.widget-archive li a:hover {
  padding-left: 10px;
  color: #33BEBF;
}

.widget.widget-post ul.widget-wrapper,
.widget.recent-product ul.widget-wrapper {
  padding: 0;
}

.widget.widget-post ul.widget-wrapper li,
.widget.recent-product ul.widget-wrapper li {
  padding: 30px;
}

.widget.widget-post ul.widget-wrapper li:not(:last-child),
.widget.recent-product ul.widget-wrapper li:not(:last-child) {
  border-bottom: 1px solid rgba(5, 5, 5, 0.05);
}

.widget.widget-post ul.widget-wrapper li.widget-post-item,
.widget.recent-product ul.widget-wrapper li.widget-post-item {
  gap: 20px;
}

.widget.widget-post ul.widget-wrapper li .post-thumb,
.widget.recent-product ul.widget-wrapper li .post-thumb {
  width: 80px;
  height: 80px;
  border-radius: 0.4rem;
}

.widget.widget-post ul.widget-wrapper li .post-thumb a img,
.widget.recent-product ul.widget-wrapper li .post-thumb a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  object-fit: cover;
}

.widget.widget-post ul.widget-wrapper li .post-content,
.widget.recent-product ul.widget-wrapper li .post-content {
  width: calc(100% - 100px);
}

.widget.widget-post ul.widget-wrapper li .post-content h6,
.widget.recent-product ul.widget-wrapper li .post-content h6 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2px;
}

.widget.widget-post ul.widget-wrapper li .post-content h6:hover,
.widget.recent-product ul.widget-wrapper li .post-content h6:hover {
  color: #33BEBF;
}

.widget.widget-post ul.widget-wrapper li .post-content p,
.widget.recent-product ul.widget-wrapper li .post-content p {
  margin: 0;
  color: #33BEBF;
}

.widget.widget-post ul.widget-wrapper li:hover .post-thumb img,
.widget.recent-product ul.widget-wrapper li:hover .post-thumb img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.widget.recent-product ul.widget-wrapper {
  padding: 0;
}

.widget.recent-product ul.widget-wrapper li .post-thumb {
  width: auto;
  height: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .widget.recent-product ul.widget-wrapper li .post-thumb {
    width: 80px;
    height: auto;
  }
}

.widget.recent-product ul.widget-wrapper li .post-content .price {
  margin-top: 5px;
  font-weight: 700;
}

.widget.widget-tags {
  padding: 0;
}

.widget.widget-tags ul.widget-wrapper {
  padding: 30px;
  gap: 10px;
}

.widget.widget-tags ul.widget-wrapper li {
  border: none;
  padding: 0;
}

.widget.widget-tags ul.widget-wrapper li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  padding: 7px 13px;
  background-color: #fff;
  text-transform: capitalize;
  border: 1px solid rgba(251, 76, 110, 0.6);
  border-radius: 0.3rem;
}

.widget.widget-tags ul.widget-wrapper li a.active,
.widget.widget-tags ul.widget-wrapper li a:hover {
  background-color: #33BEBF;
  color: #fff;
  border-color: #33BEBF;
}

.widget.widget-service .widget-service__list-item a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 20px;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  color: #686868;
}

.widget.widget-service .widget-service__list-item:nth-child(2n) {
  background-color: #fff;
}

.widget.widget-service .widget-service__list-item p {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.widget.widget-service .widget-service__list-item:hover,
.widget.widget-service .widget-service__list-item.active {
  background-color: #32C2FA;
}

.widget.widget-brochure .widget-brochure__thumb img {
  object-fit: cover;
}

.widget.widget-info .widget-info__inner {
  padding-inline: 25px;
  padding-block-start: 30px;
}

.widget.widget-info .widget-info__list-icon {
  width: 40px;
  height: 40px;
}

.widget.widget-info .widget-info__list-item {
  gap: 20px;
  padding-block: 1.35rem;
}

.widget.widget-info .widget-info__list-item:not(:last-child) {
  border-bottom: 1px solid #1d253b;
}

.widget.widget-info .widget-info__list-content {
  width: calc(100% - 60px);
}

.widget.widget-info .widget-info__thumb img {
  object-fit: cover;
}

.widget.widget-project .widget-project__list {
  padding-inline: 30px;
}

.widget.widget-project .widget-project__list-item {
  padding-block: 20px;
}

.widget.widget-project .widget-project__list-item h6 {
  font-size: 1.125rem;
}

.widget.widget-project .widget-project__list-item:not(:last-child) {
  border-bottom: 1px solid #1d253b;
}

.widget.widget-author .widget-author__thumb img {
  object-fit: cover;
}

@media (min-width: 992px) {
  .error {
    height: 100vh;
  }
}

@media (min-width: 992px) {
  .error__inner {
    flex-direction: row-reverse;
    height: 100%;
  }
}

.error__thumb a {
  display: block;
  height: inherit;
}

@media (min-width: 992px) {
  .error__thumb {
    width: 35%;
    height: 100%;
  }
}

.error__thumb img {
  object-fit: cover;
}

@media (min-width: 992px) {
  .error__thumb img {
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  }
}

.error__content {
  display: grid;
  place-content: center;
  padding-inline: 30px;
  padding-block: 50px;
}

@media (min-width: 768px) {
  .error__content {
    padding-block: 80px;
  }
}

@media (min-width: 992px) {
  .error__content {
    width: 65%;
  }
}

.countdown {
  gap: 10px;
}

@media (min-width: 768px) {
  .countdown {
    gap: 30px;
  }
}

.countdown__item {
  min-width: calc(50px + 2vw);
  border-radius: 0.5rem;
}

.countdown__text {
  color: #686868;
}

@media (min-width: 992px) {
  .coming-soon {
    height: 100vh;
  }
}

.coming-soon--style-2 {
  height: 100vh;
}

.coming-soon--style-2 .input-group .form-control {
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.coming-soon--style-2 .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.coming-soon--style-2 .input-group-text {
  background-color: #fff !important;
  color: #19183e !important;
}

@media (min-width: 992px) {
  .coming-soon__inner {
    flex-direction: row-reverse;
    height: 100%;
  }
}

.coming-soon__thumb a {
  display: block;
  height: inherit;
}

@media (min-width: 992px) {
  .coming-soon__thumb {
    width: 35%;
    height: 100%;
  }
}

.coming-soon__thumb img {
  object-fit: cover;
}

@media (min-width: 992px) {
  .coming-soon__thumb img {
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  }
}

.coming-soon__content {
  display: grid;
  place-content: center;
  padding-inline: 30px;
  padding-block: 50px;
}

@media (min-width: 768px) {
  .coming-soon__content {
    padding-block: 80px;
  }
}

.coming-soon__content>p {
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .coming-soon__content {
    width: 65%;
  }
}

.coming-soon__content .countdown__item {
  background-color: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
}

@media (min-width: 992px) {
  .coming-soon__content .countdown {
    margin-inline: auto;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .coming-soon__content .input-group {
    max-inline-size: 70%;
    margin-inline: auto;
  }
}

.coming-soon__content .input-group .form-control {
  padding: 1rem;
  border: 1px solid rgba(251, 76, 110, 0.1);
}

.coming-soon__content .input-group .form-control:focus {
  box-shadow: none;
  border-color: #33BEBF;
}

.coming-soon__content .input-group-text {
  background: #33BEBF;
  color: #fff;
  padding: 1rem 1.75rem;
  border: none;
}

.coming-soon__content .input-group-text svg {
  font-size: 1.25rem;
}

/*Account Section Starts Here*/
.account__wrapper {
  border-radius: 10px;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
  padding: 50px 40px;
  margin: 0 auto;
  background-color: #fff;
}

.account__wrapper .title {
  text-transform: capitalize;
}

.account__wrapper .cate {
  font-style: normal;
}

.account__wrapper .cate a {
  font-weight: 600;
}

.account__wrapper .cate a:hover {
  color: #33BEBF;
}

.account__form .form-group input {
  border: 1px solid rgba(251, 76, 110, 0.3);
  outline: none;
  border-radius: 0.35rem;
  background: #f5f5f5;
  box-shadow: 0px 2px 2px 0px rgba(251, 76, 110, 0.1);
  padding: 0.6rem 1rem;
}

.account__form .form-group .checkgroup {
  flex-wrap: nowrap;
}

.account__form .form-group .checkgroup input[type=checkbox] {
  width: 18px;
  height: 18px;
}

@media (max-width: 575px) {
  .account__form .form-group .checkgroup input[type=checkbox] {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
}

.account__form .form-group .checkgroup label {
  color: #19183e;
}

@media (max-width: 575px) {
  .account__form .form-group .checkgroup label {
    font-size: 14px;
  }
}

.account__form .form-group a {
  color: #19183e;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .account__form .form-group a {
    font-size: 14px;
  }
}

.account__form .form-group a:hover {
  color: #33BEBF;
}

.account__form .form-group button {
  box-shadow: none;
  border: none;
  background-color: #33BEBF;
}

@media (max-width: 575px) {
  .account__form .form-group button {
    margin-top: 24px;
  }
}

.account__form .form-floating input {
  background: #f5f5f5;
  border: 1px solid rgba(251, 76, 110, 0.1);
  color: #050505;
}

.account__form .form-floating input:focus {
  border-color: rgba(251, 76, 110, 0.3);
  outline: none;
  box-shadow: none;
}

.team {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.team__item {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
}

@media (min-width: 576px) {
  .team__item-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.team__item-thumb {
  border-radius: 0.4rem;
}

@media (min-width: 576px) {
  .team__item-thumb {
    width: 45%;
    margin-bottom: 0;
  }
}

.team__item-thumb img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  object-fit: cover;
}

@media (min-width: 576px) {
  .team__item-content {
    padding-inline-start: 25px;
    padding-inline-end: 10px;
    width: 55%;
  }
}

@media (min-width: 1400px) {
  .team__item-content {
    padding-inline-start: 30px;
  }
}

.team__item .social__link {
  width: 35px;
  height: 35px;
  font-size: 0.875rem;
}

.team__item:hover .team__item-thumb 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);
}

.team__item:hover .team__item-content h4 {
  color: #33BEBF;
}

.team__item--style2 {
  background-color: rgba(255, 255, 255, 0.1);
}

.team__item--style2 .svg-shape,
.team__item--style2:after {
  display: none;
}

.team__item--style2 .team__item-inner {
  flex-direction: column;
  gap: 20px;
}

.team__single-thumb {
  border-radius: 0.5rem;
}

.team__single-thumb img {
  object-fit: cover;
}

.team__single-name p {
  font-weight: 500;
}

.team__single-text p {
  line-height: 1.5;
  max-inline-size: 60ch;
}

.pricing__item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.3rem;
}

.pricing__item: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);
  box-shadow: 0 5px 10px 5px rgba(25, 24, 62, 0.05);
}

.pricing__inner {
  background-color: #fff;
  border-radius: 4px;
}

.pricing__head {
  background-color: #32C2FA;
  border-radius: 0 0 30px 0;
  max-inline-size: 40%;
}

.pricing__head h4 {
  padding-block: 1.25rem;
  text-transform: uppercase;
}

.pricing__body h4 {
  color: #33BEBF;
  padding-block: 20px;
  border-bottom: 1px solid rgba(25, 24, 62, 0.1);
}

.pricing__body ul li {
  padding-block: 1rem;
}

.pricing__body ul li span .fa-circle-check {
  color: #0aa622;
}

.pricing__body ul li span .fa-circle-xmark {
  color: #f53b57;
}

.pricing__body ul li:not(:last-child) {
  border-bottom: 1px solid rgba(25, 24, 62, 0.05);
}

.pricing__value {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
}

.pricing__footer {
  padding-bottom: 40px;
  padding-top: 15px;
}

.sponsor__item {
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}

.sponsor__slider2 {
  max-inline-size: 50%;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .sponsor__slider2 {
    max-inline-size: 70%;
  }
}

@media (min-width: 768px) {
  .sponsor__slider2 {
    max-inline-size: 80%;
  }
}

.venue__content {
  background-color: #fff;
  border-radius: 0.5rem;
  z-index: 1;
  box-shadow: 10px 10px 20px 5px rgba(5, 5, 5, 0.2);
}

.venue__content>p {
  max-inline-size: 60ch;
}

.venue__list-item span svg {
  color: #33BEBF;
}

.venue__map {
  left: 0;
  top: 0;
}

.venue__map iframe {
  border: 0;
}

.accordion__item {
  border-radius: 0.5rem;
}

.accordion__item--style2 .accordion__button,
.accordion__item--style2 .accordion__body {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion__button {
  font-size: 1.125rem;
  background-color: #fff;
  color: #33BEBF;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding: 1.5rem 1rem;
  border: none;
}

.accordion__button .plus-icon {
  width: 14px;
  height: 14px;
  display: none;
}

@media (min-width: 576px) {
  .accordion__button .plus-icon {
    display: initial;
  }
}

.accordion__button .plus-icon:before,
.accordion__button .plus-icon:after {
  background-color: #33BEBF;
}

.accordion__button .plus-icon::before {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  top: 50%;
}

.accordion__button.collapsed {
  color: #19183e;
}

.accordion__button.collapsed .plus-icon::before {
  background-color: #19183e;
}

.accordion__button.collapsed .plus-icon::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 14px;
  width: 2px;
  top: 50%;
  left: 6px;
  background-color: #19183e;
}

.accordion__body {
  padding: 0.5rem 1.5rem 1.5rem;
  background-color: #fff;
}

.cta__wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1rem;
  box-shadow: 0px 0 5px 0 rgba(5, 5, 5, 0.1);
}

@media (min-width: 992px) {
  .cta__wrapper {
    padding: 50px;
  }
}

.cta__content h2 {
  max-inline-size: 20ch;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .cta__content h2 {
    margin-bottom: 35px;
  }
}

.cta__content p {
  color: #19183e;
}

.rating {
  gap: 2px;
}

.rating__star svg {
  font-size: 0.875rem;
  color: #33BEBF;
}

.social {
  gap: 15px;
}

.social__link {
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background-color: #32C2FA;
}

.social__link svg {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #19183e;
}

@media not all and (pointer: coarse) {
  .social__link:hover {
    background-color: #33BEBF;
  }

  .social__link:hover svg {
    color: #fff;
  }
}

.feature__item-thumb {
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  border: 1px solid #33BEBF;
  border-radius: 1rem;
  margin-inline: auto;
}

.feature__item-thumb .icon {
  font-size: calc(1.28125rem + 0.3214285714vw);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #33BEBF;
}

@media (min-width: 1400px) {
  .feature__item-thumb .icon {
    font-size: 1.5625rem;
  }
}

.feature__item:hover .feature__item-thumb {
  background-color: #33BEBF;
}

.feature__item:hover .feature__item-thumb .icon {
  color: #fff;
}

.register--uplifted {
  z-index: 1;
  margin-top: -70px;
}

.register__wrapper {
  background-color: #33BEBF;
  padding: 40px;
  border-radius: 0.5rem;
}

@media (min-width: 992px) {
  .register__wrapper {
    padding: 50px;
  }
}

/* Estilos personalizados para a seção de unidades (usando estrutura de blog) */
.blog__meta-tag {
  background: #33BEBF !important;
  color: #fff !important;
}

.blog__content h4 a {
  color: #FAA831 !important;
}

.blog__content h4 a:hover {
  color: #33BEBF !important;
}

.blog__meta li {
  color: #666;
  font-size: 14px;
}

.blog__meta svg {
  color: #33BEBF;
  margin-right: 5px;
}

.blog__content-bottom .text-btn {
  color: #33BEBF !important;
  font-weight: 600;
}

.blog__content-bottom .text-btn:hover {
  color: #FAA831 !important;
}

.blog__meta-comment svg {
  color: #33BEBF;
  width: 18px;
  height: 18px;
}

/* Estilos para garantir que as imagens das unidades tenham o mesmo tamanho */
.blog__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blog__thumb img {
  width: 100%;
  height: 250px;
  /* Altura fixa para todas as imagens */
  object-fit: cover;
  /* Mantém a proporção e corta se necessário */
  object-position: center;
  /* Centraliza a imagem */
  transition: transform 0.3s ease;
}

.blog__item:hover .blog__thumb img {
  transform: scale(1.05);
}

/* ================> Gallery Styles <================== */
.gallery-swiper {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery__item {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery__thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 190, 191, 0.8) 0%, rgba(250, 168, 49, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__thumb img {
  transform: scale(1.1);
}

.gallery__content {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery__content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery__content p {
  font-size: 16px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #33BEBF;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: #33BEBF;
  color: white;
  transform: scale(1.1);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #33BEBF;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #FAA831;
  transform: scale(1.2);
}

/* Gallery Thumbnails */
.gallery__thumbnails {
  margin-top: 30px;
}

.gallery__thumb-item {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.gallery__thumb-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery__thumb-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery__thumb-item.active {
  border-color: #33BEBF;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(51, 190, 191, 0.3);
}

.gallery__thumb-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 190, 191, 0.3) 0%, rgba(250, 168, 49, 0.3) 100%);
  pointer-events: none;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-swiper {
    height: 300px;
  }

  .gallery__content h4 {
    font-size: 20px;
  }

  .gallery__content p {
    font-size: 14px;
  }

  .gallery__thumb-item img {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .gallery-swiper {
    height: 250px;
  }

  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .gallery-swiper .swiper-button-next::after,
  .gallery-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
}

/* ================> Reveillon Experience Styles <================== */
.reveillon-experience {
  position: relative;
  overflow: hidden;
}

.reveillon-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.3"/><circle cx="90" cy="10" r="1" fill="white" opacity="0.3"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.1;
  pointer-events: none;
}

.reveillon__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.reveillon__item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reveillon__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.reveillon__item:hover .reveillon__icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.reveillon__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.reveillon__text h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.reveillon__text p {
  line-height: 1.6;
  margin: 0;
}

.reveillon__benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit__item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit__item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.benefit__icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit__text h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.benefit__text p {
  margin: 0;
  line-height: 1.4;
}

.reveillon__cta .default-btn {
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.reveillon__cta .default-btn:hover {
  background: #33BEBF !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 190, 191, 0.3);
}

/* Responsive Reveillon */
@media (max-width: 768px) {
  .reveillon__item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .reveillon__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

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

  .benefit__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .reveillon__item {
    margin-bottom: 20px;
  }

  .reveillon__icon {
    width: 50px;
    height: 50px;
  }

  .reveillon__icon svg {
    width: 20px;
    height: 20px;
  }
}

.reveal-title {
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
  background: #33BEBF;
  padding: 15px 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(51, 190, 191, 0.3);
  margin-bottom: 10px;
}

.reveal-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
}

.reveal-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.reveal-title:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(51, 190, 191, 0.5);
  animation: wave 2s ease-in-out infinite;
}

.reveal-title:hover::before {
  left: 100%;
}

.reveal-title:hover::after {
  transform: scaleX(1);
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(-3px) scale(1);
  }

  25% {
    transform: translateY(-3px) scale(1.02);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }

  75% {
    transform: translateY(-3px) scale(1.02);
  }
}

/* Efeito de ondas no fundo */
.reveal-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ocean 3s ease-in-out infinite;
}

@keyframes ocean {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .reveal-title {
    font-size: 2.5rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .reveal-title {
    font-size: 2rem;
    padding: 10px 20px;
  }
}

/* Estilo para o título da localização */
.location-title {
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
  background: #FAA831;
  padding: 12px 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(250, 168, 49, 0.4);
  margin-top: 5px;
}

.location-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.location-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(250, 168, 49, 0.6);
  animation: locationWave 1.5s ease-in-out infinite;
}

.location-title:hover::before {
  left: 100%;
}

.location-title:hover::after {
  transform: scaleX(1);
}

@keyframes locationWave {

  0%,
  100% {
    transform: translateY(-2px) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.03);
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .location-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .location-title {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366) !important;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-float::before {
  /* content: "💬"; */
  font-size: 20px;
}

.whatsapp-float::after {
  content: "→";
  font-size: 18px;
  font-weight: bold;
}

/* Responsividade do botão WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .whatsapp-float::before {
    font-size: 18px;
  }

  .whatsapp-float::after {
    font-size: 16px;
  }
}

/* Admin Layout Styles */
.admin-content {
  margin-top: 70px;
  padding-top: 20px;
  min-height: calc(100vh - 70px);
}

/* Navbar responsivo */
.navbar {
  min-height: 60px;
}

.navbar .container-fluid {
  align-items: center;
  flex-wrap: nowrap;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-toggler {
  margin-left: auto;
  flex-shrink: 0;
}

/* Garantir que o botão toggle seja visível */
.navbar-toggler {
  display: block !important;
  border: 1px solid rgba(33, 37, 41, 0.3) !important;
  padding: 0.25rem 0.5rem !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* Animação bounce para o indicador de scroll */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-indicator {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1 !important;
}

/*# sourceMappingURL=style.css.map */