/* 
   Portfolio Template - Main Stylesheet
   Created: May 2025
*/

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--secondary-color);
    border-right-color: var(--secondary-color);
    animation: spin-reverse 1s linear infinite;
}

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

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

/* ===== GENERAL STYLES ===== */
:root {
    /* Light Mode (Default) */
    --primary-color: #1b33f0;
    --secondary-color: #333333;
    --text-color: #555555;
    --light-color: #ffffff;
    --dark-color: #222222;
    --gray-color: #f8f9fa;
    --border-color: #eeeeee;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --banner-overlay: rgba(0, 0, 0, 0.7);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --timeline-color: #eeeeee;
    --tab-hover: #f8f9fa;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4d5eff;
    --secondary-color: #ffffff;
    --text-color: #b0b0b0;
    --light-color: #333333;
    --dark-color: #f0f0f0;
    --gray-color: #2a2a2a;
    --border-color: #444444;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --banner-overlay: rgba(0, 0, 0, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --timeline-color: #444444;
    --tab-hover: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ===== BANNER ===== */
.banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: url('../images/bg-image.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    width: 100%;
    z-index: 0;
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    position: relative;
    background-color: transparent;
    min-height: 100vh;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1550px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.data-container {
    position: relative;
    z-index: 2;
    padding-top: 270px;
}

.left-side {
    margin-top: -150px;
}

@media (max-width: 1599px) {
    .container {
        max-width: 1340px;
    }
}

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

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

@media (max-width: 991px) {
    .left-side {
        margin-top: -120px;
    }

    .container {
        max-width: 720px;
    }
    
    .profile-image img {
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .left-side {
        margin-top: -100px;
    }
    
    .container {
        max-width: 540px;
    }

    .data-container{
        padding-top: 200px;
    }
}

@media (max-width: 575px) {
    .left-side {
        margin-top: -80px;
    }

    .data-container{
        padding-top: 150px;
    }
    
    .container {
        max-width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* ===== PROFILE BOX ===== */
.profile-box {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
    position: sticky;
    top: 20px;
    padding: 20px;
}

.profile-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.profile-image img {
    width: 100%;
    transition: all 0.3s ease;
    display: block;
    object-fit: cover;
    height: auto;
    max-height: 100%;
}

.profile-info {
    padding: 20px;
}

.profile-info .name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--secondary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-download {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.btn-download:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ===== TAB NAVIGATION ===== */
.tab-navigation {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
    position: sticky;
    top: 20px;
    z-index: 10;
    margin-top: 20px;
}

.nav-pills {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-pills .nav-item {
    margin: 5px;
    flex-grow: 1;
    text-align: center;
}

.nav-pills .nav-link {
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.nav-pills .nav-link:hover:not(.active) {
    background-color: var(--tab-hover);
}

/* ===== TAB CONTENT ===== */
.tab-content {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* About Tab */
.about-content .headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-content .intro-text {
    margin-bottom: 2rem;
}

.what-i-do {
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.stats-section {
    margin-top: 3rem;
}

.stat-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-title {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Resume Tab */
.resume-section {
    margin-bottom: 3rem;
}

.resume-section h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.resume-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--timeline-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--light-color);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content .institution {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.progress {
    height: 15px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: visible;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 10px;
    position: relative;
}

.progress-bar:after {
    content: attr(aria-valuenow) '%';
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Work Tab */
.portfolio-filter {
    margin-bottom: 30px;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    cursor: pointer;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 30px;
    background-color: var(--gray-color);
    transition: all 0.3s ease;
}

.filter-list li.active,
.filter-list li:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-card {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.portfolio-image img {
    width: 100%;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    margin: 0 5px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay {
    display: flex;
    gap: 10px;
}

.portfolio-zoom {
    background-color: #ff6b6b;
    transition-delay: 0.2s;
}

.portfolio-zoom:hover {
    background-color: #ff5252;
}

/* Portfolio Modal Styles */
.modal-content {
    background-color: var(--card-bg);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

#portfolioModalImage {
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0.8;
}

#portfolioModalImage.zoom-in {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 30px;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

.modal-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-secondary {
    background-color: var(--gray-color);
    color: var(--text-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 15px;
    background-color: var(--light-color);
}

.portfolio-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Pricing Tab */
.pricing-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color:white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    background-color: var(--gray-color);
    padding: 30px 20px;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pricing-price {
    margin-bottom: 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-color);
}

.pricing-body {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-features i.fa-check {
    color: #28a745;
}

.pricing-features i.fa-times {
    color: #dc3545;
}

.btn-pricing {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-pricing:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* Clients Tab */
.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--gray-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.client-logos-section {
    margin-top: 50px;
}

.client-logo {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Tab */
.contact-content {
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.contact-form {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: auto;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    color: var(--light-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.copyright {
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-color) 60%, #6b7dff);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow-color), inset 0 -2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.theme-toggle:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px var(--shadow-color), inset 0 -2px 5px rgba(0,0,0,0.2);
}

.theme-toggle:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 10px var(--shadow-color), inset 0 -1px 3px rgba(0,0,0,0.2);
}

.theme-toggle i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    transition: all 0.5s ease;
}

[data-theme="dark"] .theme-toggle {
    background: linear-gradient(145deg, #4d5eff, #2a3bff 60%, #7985ff);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3), inset 0 -2px 5px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .banner {
        height: 200px;
    }
    
    .nav-pills {
        justify-content: center;
    }
    
    .nav-pills .nav-item {
        margin-bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    /* Adjust sticky positioning for smaller screens */
    .profile-box, .tab-navigation {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .profile-box {
        /* max-width: 350px; */
        margin: 0 auto 30px;
    }
    
    
    .tab-navigation {
        padding: 10px;
    }
    
    .nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .about-content .headline {
        font-size: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 15px;
    }
    
    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .main-container {
        padding: 30px 0;
    } 
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .about-content .headline {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-title {
        font-size: 0.8rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item:before {
        left: -24px;
    }
    
    .filter-list {
        justify-content: center;
    }
    
    .filter-list li {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
