/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    margin-top: 144px; /* Prevents content overlap with the fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: rgba(65, 80, 92, 1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

header .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 144px;
    transition: height 0.25s ease;
}

header .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

header .logo img {
    display: block;
    height: 120px;
    width: auto;
    transition: height 0.25s ease;
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger-menu:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 6px;
}

.hamburger-menu .bar {
    background-color: #fff;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background-color: #41505c;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

nav.show {
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

nav ul li {
    display: block;
}

nav ul li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    background-color: #0078D4;
    color: #fff;
}

header.scrolled .container {
    height: 96px;
}

header.scrolled {
    background-color: rgba(65, 80, 92, 0.5);
}

header.scrolled .logo img {
    height: 75px;
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        min-width: 0;
    }

    nav ul {
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://matthewduclos.com/cpa/images/cpahero.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align content */
    justify-content: center; /* Vertically center the content */
    text-align: center; /* Ensure text is centered */
}

.hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #005c8e;
}

.hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Container for the buttons */
.hero .btn-container {
    display: flex; /* Use flexbox to align buttons side by side */
    justify-content: center; /* Center align buttons horizontally */
    gap: 20px; /* Space between the buttons */
}

.hero .btn {
    padding: 10px 20px;
    background-color: #005c8e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #00b0ff;
}

/* Ensure the buttons are aligned side by side */
.hero .hero-content a {
    display: inline-block;
    margin: 0 10px; /* Adds space between the buttons */
}

@media (max-width: 768px) {
    .hero .hero-content {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 10px; /* Space out the buttons */
    }
}

.description-section p{
    padding: 25px 50px;
    font-size: 1.2em;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    line-height: 1.2em;

}

@media (max-width: 768px) {
    .description-section p{
    padding: 10px 10px;

    }
}

/* About Panel (for both About and Contribute sections) */
body.about-page .about-panel:first-of-type {
    margin-top: 100px; /* Adds space between the header and the first panel */
}

/* Ensure consistent spacing for all about-panels */
.about-panel {
    padding: 20px;
    background-color: #f9f9f9; /* Light background to differentiate from other sections */
    border-radius: 8px; /* Soft rounding for a more inviting look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for some depth */
    margin-bottom: 20px; /* Space between panels */
}

/* Remove extra top margin from the heading inside the panels */
.about-panel h2 {
    font-size: 2.5rem;
    margin-top: 0; /* Remove top margin to prevent extra space above the heading */
    color: #41505c; /* Slightly darker tone for headers */
}

.about-panel p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Add a gap between the header and the first panel */
main {
    margin-top: 40px; /* Adjust the top margin of the main section */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form label {
    font-weight: bold;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #005c8e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #003f6c;
}

/* Button Styling */
.button-container {
    display: flex;
    justify-content: center; /* Aligns the button in the center */
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #005c8e;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Ensure spacing for the button */
}

.btn:hover {
    background-color: #00b0ff;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .about-panel {
        padding: 30px 15px; /* Adjust padding for mobile */
    }

    .about-panel h2 {
        font-size: 2rem; /* Adjust heading size for mobile */
    }

    /* Adjust button size for mobile */
    .btn {
        font-size: 1.2rem;
        padding: 14px 25px;
    }
}

/* Outer Container for the Counter Section */
.counter-wrapper {
    background-color: #ffffff; /* White background for the outer container */
    padding: 20px; /* Add padding to create space around the counter section */
}

/* Counter Section */
.counter {
    padding-bottom: 30px;
    background-color: #f4f4f4; /* Light gray background for the counter section */
    text-align: center;
    margin: 0 auto;
    max-width: 1200px; /* Optional: Limit the width of the counter section */
    border-radius: 10px; /* Rounded corners for the section */
}

.counter h2 {
    font-size: 2rem;
    margin-bottom: 10px; 
}

.counter h3 {
    font-size: 1.5rem;
}

/* Container for the counters */
.counter-container {
    display: flex;
    justify-content: center; /* Align the items horizontally in the center */
    gap: 50px; /* Space between the counters */
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
}

.counter-item span {
    font-size: 1.2rem; /* Slightly smaller font for the titles */
    color: #333; /* Darker color for the labels */
    margin-bottom: 5px; /* Space between title and count */
}

.counter-value {
    font-size: 3rem;
    font-weight: bold;
    color: #005c8e; /* A prominent color for the count */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .counter-container {
        flex-direction: column; /* Stack the counters vertically */
        gap: 20px; /* Reduce space between stacked items */
    }

    .counter-item {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }

    .counter-value {
        font-size: 2.5rem; /* Adjust font size for the count */
    }

    .counter h2 {
        font-size: 1.8rem; /* Adjust heading size for mobile */
    }

    .counter h3 {
        font-size: 1.3rem; /* Adjust subheading size */
    }
}

/* Featured Collections Section */
.featured-collections {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.featured-collections h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.featured-collections .category-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.featured-collections .category-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    background-color: #202a33;
    box-shadow: 0 16px 35px rgba(30, 40, 50, 0.18);
    transition: box-shadow 0.25s ease;
}

.featured-collections .category-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: filter 0.25s ease;
}

.featured-collections .category-item::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: 20%;
    content: "";
    pointer-events: none;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.25s ease;
}

.featured-collections .category-item:hover,
.featured-collections .category-item:focus-visible {
    box-shadow: 0 16px 35px rgba(30, 40, 50, 0.18);
}

.featured-collections .category-item:hover::before,
.featured-collections .category-item:focus-visible::before {
    opacity: 0;
}

.featured-collections .category-item:hover .category-image,
.featured-collections .category-item:focus-visible .category-image {
    filter: saturate(1.08);
}

.featured-collections .category-item:focus-visible {
    outline: 3px solid #00b0ff;
    outline-offset: 4px;
}

.featured-collections .category-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 100%;
    padding: 24px;
    box-sizing: border-box;
}

.featured-collections .category-label {
    color: #000;
    font-size: 1.24rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    text-align: right;
    transition: opacity 0.25s ease;
}

.featured-collections .category-item:hover .category-label,
.featured-collections .category-item:focus-visible .category-label {
    opacity: 0.5;
}

.featured-collections .category-action {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 2px solid #000;
    border-radius: 5px;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.featured-collections .category-item:hover .category-action,
.featured-collections .category-item:focus-visible .category-action {
    background-color: #41505c;
    border-color: #41505c;
    color: #fff;
}

.featured-collections .category-action.btn {
    display: inline-flex;
    align-items: center;
    margin: 0;
    box-shadow: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .featured-collections .category-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .featured-collections .category-item {
        min-height: 210px;
    }

    .featured-collections h2 {
        font-size: 1.8rem; /* Adjust heading size for mobile */
        margin-bottom: 30px; /* Reduce margin for better spacing */
    }

    .featured-collections .category-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
    }

    .featured-collections .category-label {
        font-size: 1.08rem;
    }
}

.new-entries {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.new-entries h2 {
    font-size: 2rem;
    margin-bottom: 40px; 
}

.pen-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pen-item {
    position: relative;
    display: flex;
    align-items: stretch;
    width: min(100%, 920px);
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    text-align: right;
    background-color: #202a33;
    box-shadow: 0 16px 35px rgba(30, 40, 50, 0.18);
}

.pen-item::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.pen-item::after {
    background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='2.5' height='2.5' fill='%23000000' fill-opacity='0.34'/%3E%3C/svg%3E");
    background-size: 4px 4px;
    opacity: 0.86;
    transition: opacity 0.25s ease;
}

.pen-item:hover::after,
.pen-item:focus-within::after {
    opacity: 0;
}

.pen-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: filter 0.25s ease;
}

.pen-item:hover .pen-image,
.pen-item:focus-within .pen-image {
    filter: saturate(1.08);
}

.pen-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 100%;
    padding: 28px;
    box-sizing: border-box;
}

.pen-item h3 {
    width: min(100%, 620px);
    margin: 0;
    color: #000;
    font-size: clamp(1rem, 2.2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-align: right;
}

.pen-item a.btn {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.pen-item a.btn:hover,
.pen-item a.btn:focus-visible {
    background-color: #00b0ff;
    border-color: #00b0ff;
}

@media (max-width: 768px) {
    .pen-item {
        min-height: 260px;
    }

    .pen-content {
        padding: 20px;
    }

    .pen-item h3 {
        width: 100%;
        font-size: 1.1rem;
    }
}
.blurb-container {
    background-color: #f4f4f4; /* Light grey background to match the page */
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-size: 1rem;
    line-height: 1.6;
}

/* Filter Panel */
.desktop-filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures even spacing across the panel */
    gap: 15px;
    background-color: #41505c; /* Matches header color */
    color: #fff;
    padding: 10px 20px; /* Adds padding inside the panel */
    box-sizing: border-box;
    margin-bottom: 5px; /* Adds space below the panel */
}

/* Filter Items */
.desktop-filter-panel .filter-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between label and dropdown */
    flex: 1; /* Ensures all items share available space equally */
}

/* Label Styling */
.desktop-filter-panel label {
    font-weight: bold;
    font-size: .8rem;
    white-space: nowrap; /* Prevent labels from wrapping */
    color: #fff;
    margin-right: 0px; /* Adds space between the label and its input */
}

/* Dropdown Styling */
.desktop-filter-panel select {
    padding: 5px 10px; /* Inner padding for better click area */
    border: 1px solid #ccc; /* Add border */
    background-color: #fff; /* Dropdown background */
    color: #333; /* Text color */
    width: auto; /* Allow width to adjust based on content */
    max-width: 100%; /* Prevent it from exceeding the panel's size */
}

.desktop-filter-panel .btn {
    background-color: #f4f4f4;
    color: #000;
    padding: 2px 5px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-weight: 400;
    vertical-align: middle; /* Align buttons with input fields */
    margin: 0;

}

.desktop-filter-panel .btn:hover {
    background-color: #0078D4; /* Darker blue for hover */
    color: #fff;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* Gallery Images */
.gallery-grid img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #ddd;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    border-color: #0078D4;
}

/* Catalog Page */
.catalog-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.catalog-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #41505c;
}

.catalog-container td {
    padding: 2px;
    text-align: center;
    vertical-align: middle;
}

/* Default state for mobile features to be hidden */
.mobile-table {
    display: none; /* Hidden by default */
}

.mobile-filter-panel {
    display: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

th, td {
    padding: 10px 15px;
    border: 1px solid #ddd;
}

th {
    background-color: #41505c;
    color: #fff;
    text-transform: uppercase;
}

tr {
    background-color: #fff;
}

/* Default state for table rows */
table tbody tr {
    cursor: pointer; /* Make rows look clickable */
    transition: outline 0.1s ease; /* Smooth transition for hover in and out */
}

/* Hover state for table rows */
table tbody tr:hover {
    outline: 4px solid #0078D4; /* Add solid border on hover */
    outline-offset: -4px;
}

/* General Button Styling */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #41505c; /* Matches site theme */
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.btn:hover {
    background-color: #00b0ff; /* Bright blue hover effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.btn:active {
    transform: translateY(0); /* Returns to original position on click */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Reset shadow */
}

/* Record Detail Table Column Widths */
.pen-details table {
    width: 100%; /* Ensure the table spans the full container */
    border-collapse: collapse; /* Remove spacing between table cells */
}

.pen-details th {
    width: 30%; /* First column width */
    text-align: left; /* Align text to the left */
    padding: 10px; /* Add some padding */
}

.pen-details td {
    width: 70%; /* Second column width */
    padding: 10px; /* Add some padding */
    text-align: left; /* Align text to the left */
}

/* Center-align all h2 on the record-detail page */
main h2 {
    font-size: 2em;
    text-align: center;
    padding-top: 50px;
    
}

.pagination a {
    text-decoration: none;
    color: #41505c; /* Dark blue to match the site's color scheme */
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:visited {
    color: #fff; /* Keep visited links the same dark blue color */
}

.pagination a.active {
    background-color: #41505c; /* Match header color for active page */
    color: #fff;
    border-color: #41505c;
}

.pagination a:hover {
    background-color: #0078D4; /* Bright blue hover effect */
    color: #fff; /* White text on hover */
}

.pagination a.next {
    background-color: #41505c; /* Match header color for active page */
    color: #fff;
    border-color: #41505c;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

footer .container {
    text-align: center;
}

footer .footer-about {
    margin-bottom: 20px;
}

footer .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer .footer-social ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-social ul li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Hide desktop filter on mobile */
    .desktop-filter-panel {
        display: none;
    }
    
    /* Show the mobile filter panel */
    .mobile-filter-panel {
        display: block;
        margin-bottom: 20px;
    }
    
    /* Adjust mobile filter form layout */
    .mobile-filter-panel form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-filter-panel .filter-item {
        width: 100%;
    }

    .mobile-filter-panel input,
    .mobile-filter-panel select {
        width: 100%;
        padding: 8px;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .mobile-filter-panel .btn {
        background-color: #f4f4f4;
        color: #000;
        padding: 8px 10px;
        border: 1px solid #ccc;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .mobile-filter-panel .btn:hover {
        background-color: #0078D4;
        color: #fff;
    }
    
    /* Hide the desktop catalog table */
    .desktop-table {
        display: none;
    }

    /* Show the mobile table */
    .mobile-table {
        display: block;
    }

    /* Mobile table styles */
    .mobile-table table {
        width: 100%;
        border-collapse: collapse;
    }

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

    .mobile-table th {
        font-size: 1rem;
        font-weight: bold;
    }

    .mobile-table td {
        font-size: 0.9rem;
    }

    /* Pagination adjustments for mobile */
    .pagination {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .pagination .page-number {
        display: none; /* Hide page numbers on mobile */
    }

    .pagination a {
        flex: 1;
        text-align: center;
        padding: 10px;
        margin: 0 5px;
        text-decoration: none;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #f4f4f4;
        color: #41505c;
        font-weight: bold;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .pagination a:hover {
        background-color: #0078D4;
        color: #fff;
    }

    .pagination a.active {
        background-color: #41505c;
        color: #fff;
    }

}