/* ========== IFL BLOG ARCHIVE PAGE STYLES ========== */
/* Theme Colors:
   - Primary Red: #d32f2f / #c62828
   - Dark Gray (Header/Footer): #2d2d2d / #333333
   - Text Dark: #333333
   - Text Gray: #666666
   - Background Light: #f5f5f5
   - White: #ffffff
*/

/* ========== CSS VARIABLES ========== */
:root {
    --ifl-red: #d32f2f;
    --ifl-red-dark: #b71c1c;
    --ifl-red-hover: #c62828;
    --ifl-dark: #2d2d2d;
    --ifl-dark-light: #333333;
    --ifl-gray: #666666;
    --ifl-gray-light: #999999;
    --ifl-bg-light: #f5f5f5;
    --ifl-white: #ffffff;
    --ifl-border: #e0e0e0;
    --font-primary: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    --font-heading: 'Montserrat', 'Open Sans', sans-serif;
    --container-max: 1200px;
    --section-padding: 60px 0;
    --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;
}

/* ========== BASE CONTAINER ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BLOG ARCHIVE HERO SECTION ========== */
.blog-archive-hero {
    background: linear-gradient(135deg, var(--ifl-dark) 0%, #1a1a1a 100%);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.blog-archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.blog-archive-hero .container {
    position: relative;
    z-index: 1;
}

.blog-archive-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--ifl-white);
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-archive-title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--ifl-red);
    border-radius: 2px;
}

/* ========== BLOG ARCHIVE SECTION ========== */
.blog-archive-section {
    padding: 60px 0 80px;
    background-color: var(--ifl-bg-light);
}

/* ========== BLOG GRID - 3x3 ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ========== BLOG CARD ========== */
.blog-card {
    background-color: var(--ifl-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

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

.blog-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Card Image */
.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

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

/* Category Tag */
.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--ifl-red);
    color: var(--ifl-white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 3px;
}

/* Card Content */
.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--ifl-dark-light);
    line-height: 1.4;
    margin: 0 0 12px 0;
    transition: color var(--transition-speed) ease;
    
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--ifl-red);
}

.blog-card-excerpt {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--ifl-gray);
    line-height: 1.6;
    margin: 0 0 18px 0;
    
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Meta */
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--ifl-border);
}

.blog-card-date {
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--ifl-gray-light);
}

.blog-card-read-more {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--ifl-red);
    transition: color var(--transition-speed) ease;
}

.blog-card:hover .blog-card-read-more {
    color: var(--ifl-red-dark);
}

/* ========== PAGINATION ========== */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background-color: var(--ifl-white);
    color: var(--ifl-dark-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

.pagination-link:hover {
    background-color: var(--ifl-red);
    color: var(--ifl-white);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
}

.pagination-link.active {
    background-color: var(--ifl-red);
    color: var(--ifl-white);
}

.pagination-next {
    padding: 0 20px;
}

/* ========== PARTNER LOGOS SECTION ========== */
.partner-logos-section {
    padding: 50px 0;
    background-color: var(--ifl-white);
    border-top: 1px solid var(--ifl-border);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    flex: 0 0 auto;
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 50px;
    width: auto;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .blog-archive-title {
        font-size: 36px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-title {
        font-size: 17px;
    }
}

/* Mobile Large - 2 columns */
@media (max-width: 768px) {
    .blog-archive-hero {
        padding: 60px 0 40px;
    }

    .blog-archive-title {
        font-size: 30px;
    }

    .blog-archive-section {
        padding: 40px 0 60px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-card-image {
        height: 160px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .blog-card-meta {
        padding-top: 12px;
    }

    .blog-card-date {
        font-size: 11px;
    }

    .blog-card-read-more {
        font-size: 12px;
    }

    .partner-logos {
        gap: 25px;
    }

    .partner-logo img {
        max-height: 40px;
    }
}

/* Mobile Small - 1 column */
@media (max-width: 540px) {
    .blog-archive-hero {
        padding: 50px 0 30px;
    }

    .blog-archive-title {
        font-size: 26px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-title {
        font-size: 17px;
    }

    .blog-card-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo img {
        max-height: 35px;
    }
}

/* ========== OPTIONAL: CATEGORY FILTER BAR ========== */
.blog-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--ifl-white);
    color: var(--ifl-dark-light);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--ifl-red);
    color: var(--ifl-white);
}

/* ========== UTILITY CLASSES ========== */
.text-red {
    color: var(--ifl-red);
}

.text-dark {
    color: var(--ifl-dark-light);
}

.text-gray {
    color: var(--ifl-gray);
}

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

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

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

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

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

/*------------------------------------------------------------------
[Table of contents]
- Blog
- Comments
- Blog form
- Other
-------------------------------------------------------------------*/
/*01  Blog */
.post .entry-media {
    position: relative;
}
.post .entry-media img {
    border-top-left-radius: 7px;
}
.post:hover .entry-media:before {
    opacity: 0.8;
}
.post .entry-main {
    transition: all 0.3s;
}
.post .entry-title, .post .entry-title a {
    color: #333;
    transition: all 0.3s;
}
.post .entry-meta {
    margin-bottom: 15px;
    font-size: 11px;
    text-transform: uppercase;
}
.post .entry-meta__item {
    padding-right: 10px;
}
.post .entry-meta__item .icon {
    padding-right: 5px;
    font-size: 12px;
}
.post .entry-meta__link {
    font-weight: 700;
    color: #333;
}
.post .entry-date {
    position: absolute;
    right: 20px;
    bottom: 25px;
    padding-right: 17px;
    font-family: 'Titillium Web';
    font-weight: 600;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.post:hover .entry-date {
    background-color: #333;
}
.post .entry-date a {
    color: #fff;
}
.post .entry-date__inner {
    display: inline-block;
    padding: 10px 20px 10px 25px;
}
.post .btn-link {
    margin-left: 5px;
    padding-bottom: 7px;
}
.post .entry-footer {
    margin-top: 31px;
}
.post .entry-footer .decor-3 {
    margin-bottom: 5px;
    margin-left: 15px;
}
.post p + p {
    margin-top: 20px;
}
.post .post-img {
    margin-top: 40px;
    margin-bottom: 50px;
}
.post_mod-a .entry-media {
    margin-bottom: 50px;
    box-shadow: 0 3px 0 0 #333;
}
.post_mod-a .entry-media:before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    content: '';
    transition: all 0.3s;
}
.post_mod-a .entry-title {
    margin-bottom: 19px;
}
.post_mod-b {
    text-align: center;
}
.post_mod-b .entry-media {
    padding-right: 20px;
    padding-left: 20px;
}
.post_mod-b .entry-media img {
    border-bottom-right-radius: 7px;
}
.post_mod-b .entry-main {
    margin-top: -80px;
    margin-bottom: 3px;
    padding-top: 123px;
    padding-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1), 0 3px 0 0 #777;
}
.post_mod-b:hover .entry-main {
    color: #fff;
    background-color: #222;
}
.post_mod-b .entry-title {
    margin-bottom: 4px;
    padding-right: 10px;
    padding-left: 10px;
}
.post_mod-b .entry-content {
    padding: 27px 35px;
}
.post_mod-b:hover .decor-2:after {
    background-color: #fff;
}
.post_mod-b_mg-btn {
    margin-bottom: 70px;
}
.post_mod-c {
    margin-bottom: 70px;
}
.post_mod-c .entry-media {
    margin-bottom: 30px;
}
.post_mod-c .entry-title {
    margin-bottom: 19px;
    font-size: 30px;
    font-weight: 600;
    text-transform: none;
}
.post_mod-c .entry-meta {
    margin-bottom: 40px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
}
.post_mod-c .entry-meta__item {
    display: inline-block;
    margin-bottom: 13px;
    padding: 3px 16px 0 18px;
    border-left: 1px dotted #000;
}
.post_mod-c .entry-meta__item:last-child {
    border-right: 1px dotted #000;
}
.post_mod-c .entry-date {
    top: 30px;
    right: auto;
    bottom: auto;
    left: 30px;
}
.post_mod-c .entry-footer {
    margin-top: 24px;
}
.post_mod-c .entry-media img {
    border-top-left-radius: 0;
    border-bottom-right-radius: 7px;
}
.post_main .entry-date {
    top: auto;
    bottom: 30px;
}
.post_main .entry-footer {
    margin-top: 29px;
}
.post_main .entry-footer__wrap-link {
    display: inline-block;
    margin-right: 34px;
    text-align: center;
}
.post_main .social-links {
    display: inline-block;
}
/*02  Comments */
.section-comment {
    margin-top: 80px;
}
.comments-list {
    margin-top: 51px;
}
.comments-list .children {
    margin-left: 40px;
}
.comments-list .comment {
    margin-bottom: 70px;
}
.comments-list .avatar-placeholder {
    float: left;
    width: 100px;
}
.comments-list .comment-inner {
    padding-left: 120px;
}
.comments-list .comment-author {
    display: block;
    font: normal 700 14px/1 'Titillium Web';
    color: #333;
    text-transform: uppercase;
}
.comments-list .comment-datetime {
    display: inline-block;
    margin-top: 6px;
    font-family: Lato;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #333;
    text-transform: uppercase;
}
.comments-list .comment-body {
    margin-top: 10px;
}
.comments-list .comment-reply {
    display: inline-block;
}
.comments-list .comment-btn {
    margin-left: 15px;
    font: 700 12px 'Titillium Web';
    text-transform: uppercase;
}
/*03  Blog form */
.comment-reply-form {
    margin-top: 50px;
    margin-bottom: 30px;
}
.comment-reply-form .btn {
    margin-top: 13px;
}


/* ========== IFL BLOG PAGE STYLES ========== */
/* Theme Colors:
   - Primary Red: #d32f2f / #c62828
   - Dark Gray (Header/Footer): #2d2d2d / #333333
   - Text Dark: #333333
   - Text Gray: #666666
   - Background Light: #f5f5f5
   - White: #ffffff
*/

/* ========== CSS VARIABLES ========== */
:root {
    --ifl-red: #d32f2f;
    --ifl-red-dark: #b71c1c;
    --ifl-red-hover: #c62828;
    --ifl-dark: #2d2d2d;
    --ifl-dark-light: #333333;
    --ifl-gray: #666666;
    --ifl-gray-light: #999999;
    --ifl-bg-light: #f5f5f5;
    --ifl-white: #ffffff;
    --ifl-border: #e0e0e0;
    --font-primary: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    --font-heading: 'Montserrat', 'Open Sans', sans-serif;
    --container-max: 1200px;
    --section-padding: 60px 0;
}

/* ========== BASE CONTAINER ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BLOG HERO SECTION ========== */
.blog-hero {
    background: linear-gradient(135deg, var(--ifl-dark) 0%, #1a1a1a 100%);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--ifl-white);
    line-height: 1.3;
    margin: 0 0 20px 0;
    max-width: 800px;
}

.blog-title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--ifl-red);
    border-radius: 2px;
}

/* ========== BLOG CONTENT SECTION ========== */
.blog-content-section {
    padding: var(--section-padding);
    background-color: var(--ifl-white);
}

.blog-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-article {
    color: var(--ifl-dark-light);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
}

/* Blog Introduction */
.blog-intro {
    margin-bottom: 40px;
}

.blog-intro p {
    margin-bottom: 20px;
    color: var(--ifl-gray);
}

.blog-intro p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--ifl-dark-light);
}

/* Blog Sections */
.blog-section {
    margin-bottom: 50px;
}

.blog-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--ifl-red);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.blog-section p {
    margin-bottom: 18px;
    color: var(--ifl-gray);
}

.blog-section p:last-child {
    margin-bottom: 0;
}

.blog-section strong {
    color: var(--ifl-dark-light);
    font-weight: 600;
}

/* Section with Image Layout */
.blog-section-with-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.blog-section-content {
    flex: 1;
}

.blog-section-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.blog-section-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Blog Lists */
.blog-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--ifl-gray);
}

.blog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--ifl-red);
    border-radius: 50%;
}

/* Blog CTA Section */
.blog-cta-section {
    background-color: var(--ifl-bg-light);
    padding: 40px;
    border-radius: 4px;
    margin-top: 50px;
}

.blog-cta-section .blog-section-title {
    color: var(--ifl-dark-light);
}

.blog-cta-section p strong {
    color: var(--ifl-red);
}

/* Get Quote Button */
.btn-get-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--ifl-white);
    color: var(--ifl-dark-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-get-quote:hover {
    background-color: var(--ifl-red);
    color: var(--ifl-white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--ifl-red);
    color: var(--ifl-white);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-get-quote:hover .btn-arrow {
    background-color: var(--ifl-white);
    color: var(--ifl-red);
}

/* ========== FAQ SECTION ========== */
.blog-faq-section {
    padding: var(--section-padding);
    background-color: var(--ifl-white);
    border-top: 1px solid var(--ifl-border);
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--ifl-dark-light);
    margin: 0 0 40px 0;
    text-align: left;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ifl-border);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--ifl-dark-light);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.faq-answer {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--ifl-gray);
    margin: 0;
    line-height: 1.7;
}

/* ========== PARTNER LOGOS SECTION ========== */
.partner-logos-section {
    padding: 50px 0;
    background-color: var(--ifl-white);
    border-top: 1px solid var(--ifl-border);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    flex: 0 0 auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    filter: grayscale(0%);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-section-with-image {
        flex-direction: column;
    }

    .blog-section-image {
        flex: 0 0 auto;
        max-width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .blog-section-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-content-section {
        padding: 40px 0;
    }

    .blog-article {
        font-size: 15px;
    }

    .blog-section {
        margin-bottom: 35px;
    }

    .blog-section-title {
        font-size: 20px;
    }

    .blog-cta-section {
        padding: 30px 20px;
    }

    .faq-main-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
    }

    .partner-logos {
        gap: 25px;
    }

    .partner-logo img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 50px 0 30px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-section-title {
        font-size: 18px;
    }

    .btn-get-quote {
        width: 100%;
        justify-content: center;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo img {
        max-height: 35px;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-red {
    color: var(--ifl-red);
}

.text-dark {
    color: var(--ifl-dark-light);
}

.text-gray {
    color: var(--ifl-gray);
}

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

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

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

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