/**
* Template Name: DirectMail.com - v2.0
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
--------------------------------------------------------------*/
:root {
    --font-default: "Source Sans 3", sans-serif;
    --font-primary: "Source Sans 3", sans-serif;
}

:root {
    --color-default: #222;
    --color-primary: #f68a1e; /* orange */
    --color-secondary: #033088; /* blue */
    --color-blue: #0c2566;
    --color-secondary-blue: #0c2566;
    --color-orange: #f7921d;
    --color-black: #000;
    --color-red: #d2232a;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: #3a3a3a;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

    a:hover {
        color: #406aff;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
} 

.bg-blue {
    background-color: var(--color-blue);
}

.bg-yellow-tint {
    background-color: #fffde9;
}

.bg-secondary-blue {
    background-color: var(--color-secondary-blue)
}

.highlight-blue {
    color: var(--color-blue);
}

.highlight-red {
    color: var(--color-red);
}

.highlight-secondary-blue {
    color: var(--color-secondary-blue);
}

.highlight-orange {
    color: var(--color-orange);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
    margin: 10px 0;
    padding: 0.5rem 2rem;
/*    font-size: 1.125rem;*/
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--color-primary);
    border: var(--bs-btn-border-width) solid var(--color-primary);
    border-radius: var(--bs-btn-border-radius);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

section {
    padding: 2rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    position: relative;
}

    .section-header h2 {
        padding-bottom: 0;
        position: relative;
        z-index: 2;
        position: relative;
    }

    .section-header p {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

div.main-content-section {
    margin-top:92px;
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }
}

.section-.hero h1 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.light-section, .light-section h1, .light-section h2, .light-section h3, .light-section h4, .light-section h5, .light-section h6, .light-section p {
    color: #fff;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: #0b5ed7;
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: var(--color-blue);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header.sticked {
        padding: 12px 0;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header .logo img {
        max-height: 50px;
        margin-right: 6px;
    }

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0 10px 3rem;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.8);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .nav-btn,
        .navbar .nav-btn:focus {
            background: var(--color-primary);
            padding: 8px 20px;
            margin-left: 30px;
            border-radius: 4px;
            color: #fff;
            font-size: 1.25rem;
        }

            .navbar .nav-btn:hover,
            .navbar .nav-btn:focus:hover {
                color: #fff;
                background: #2756ff;
            }

            .navbar .nav-btn span {
                margin-left: 5px;
            }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 14px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
            border-radius: 4px;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 14px;
                text-transform: none;
                font-weight: 400;
                color: var(--color-secondary);
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }

    .dropdown-indicator {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(14, 29, 52, 0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .nav-btn,
        .navbar .nav-btn:focus {
            background: var(--color-primary);
            padding: 8px 20px;
            border-radius: 4px;
            margin: 15px;
            color: #fff;
        }

            .navbar .nav-btn:hover,
            .navbar .nav-btn:focus:hover {
                color: #fff;
                background: rgba(13, 66, 255, 0.8);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid #19335c;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(14, 29, 52, 0.8);
                z-index: 9996;
            }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    background-color: #f7f7f7;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

    .hero h1 {
        margin-bottom: 20px;
        padding: 0;
        color: var(--color-blue);
    }

    .hero .row-with-gradient {
        position: relative;
        overflow: hidden;
    }

    .hero .bg-hero {
        /*background-image: url('../images/hero.jpg');*/
        background-size: cover;
        background-position: center;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero .gradient-overlay {
       /* background: linear-gradient(to right, rgba(3,48,136,1) 0%, rgba(255,255,255,0) 40%);*/
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@media (max-width: 575px) {
    .hero h1 {
        font-size: 30px;
    }
}

.hero p {
    margin-bottom: 0;
}

.hero p.small {
    font-size: .75rem
}

/*--------------------------------------------------------------
# Postcard Services Section
--------------------------------------------------------------*/

@media (min-width: 992px) {
    .postcards {
        max-width: 1100px;
        margin: 0 auto;
    }

        .postcards h2 {
            max-width: 1000px;
            margin: 0 auto 1rem auto;
        }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

    .featured-services .service-item .icon {
        margin-right: 20px;
    }

        .featured-services .service-item .icon i {
            color: var(--color-secondary);
            font-size: 48px;
            transition: 0.3s;
        }

    .featured-services .service-item:hover .icon {
        background: #fff;
    }

        .featured-services .service-item:hover .icon i {
            color: var(--color-primary);
        }

    .featured-services .service-item .title {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 20px;
        color: var(--color-secondary);
        transition: 0.3s;
    }

    .featured-services .service-item .description {
        font-size: 15px;
        color: #132848;
        margin-bottom: 10px;
    }

    .featured-services .service-item .readmore {
        display: flex;
        align-items: center;
        color: var(--color-secondary);
        transition: 0.3s;
        font-weight: 700;
        font-size: 14px;
    }

        .featured-services .service-item .readmore i {
            margin-left: 8px;
        }

    .featured-services .service-item:hover .title,
    .featured-services .service-item:hover .readmore,
    .featured-services .service-item:hover .icon i {
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 30px;
    font-family: var(--font-primary);
    color: var(--color-secondary);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        display: flex;
        align-items: flex-start;
        margin-top: 40px;
    }

    .about .content ul i {
        flex-shrink: 0;
        font-size: 48px;
        color: var(--color-primary);
        margin-right: 20px;
        line-height: 0;
    }

    .about .content ul h5 {
        font-size: 18px;
        font-weight: 700;
        color: #19335c;
    }

    .about .content ul p {
        font-size: 15px;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
    border: 1px solid rgba(238, 238, 238, 1);
    background: #fff;
    position: relative;
    border-radius: 5px;
    height: 100%;
}

    .services .card .card-img {
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 0;
    }

        .services .card .card-img img {
            transition: 0.3s ease-in-out;
        }

    .services .card h3 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 5px;
        padding: 10px 30px;
        text-transform: uppercase;
    }

    .services .card a {
        color: var(--color-secondary);
        transition: 0.3;
    }

        .services .card a:hover {
            color: var(--color-primary);
        }

    .services .card p {
        padding: 0 30px;
        margin-bottom: 30px;
        color: var(--color-default);
        font-size: 15px;
    }

    .services .card:hover .card-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Featured Clients Section
--------------------------------------------------------------*/
.featured-clients {
    background: rgba(14, 29, 52, 0.03);
}

    .featured-clients img {
        filter: gray;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }

        .featured-clients img:hover {
            -webkit-filter: grayscale(0);
            filter: none;
        }

/*--------------------------------------------------------------
# List Section
--------------------------------------------------------------*/
.list .list-item {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.list h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--color-secondary);
}

.list h4 {
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-primary);
    margin-bottom: 25px;
}

    .list h4 sup {
        font-size: 28px;
    }

    .list h4 span {
        color: rgba(108, 117, 125, 0.8);
        font-size: 18px;
    }

.list ul {
    padding: 20px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
}

    .list ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }

    .list ul i {
        color: #059652;
        font-size: 24px;
        padding-right: 3px;
    }

    .list ul .na {
        color: rgba(108, 117, 125, 0.5);
    }

        .list ul .na i {
            color: rgba(108, 117, 125, 0.5);
        }

        .list ul .na span {
            text-decoration: line-through;
        }

.list .featured {
    border-top-color: var(--color-primary);
}

.custom-list li {
    display: flex;
    align-items: flex-start; /* Aligns checkmark at the top */
    gap: 10px;
    margin-bottom: 10px;
}

.custom-list .checkmark {
    width: 18px;
    flex-shrink: 0;
    margin-top: 4px; /* Ensures checkmark stays aligned properly */
}

.custom-list div {
    display: flex;
    flex-direction: column;
}

.custom-list .content {
    display: inline-flex; /* Keeps text inline */
    flex-wrap: wrap; /* Allows wrapping if needed */
    align-items: baseline; /* Aligns text elements properly */
    gap: 5px;
}

.custom-list .d-title {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap; /* Ensures the title doesn't break onto a new line unnecessarily */
}

.how-we-can-help ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.toggle-section .toggle {
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.toggle-section .arrow {
    margin-right: 8px;
    transition: transform 0.2s;
    color: var(--color-orange);
    position:relative;
    top:-5px;
}

.toggle-section .content {
    display: none;
    margin-left: 20px;
}

    .toggle-section .content.active {
        display: block;
    }

.how-we-can-help ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--color-primary);
    margin-right: 20px;
    line-height: 0;
}

@media (max-width: 992px) {
    .list .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .list .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .list .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
    padding-top: 80px;
}

    .faq .accordion-item {
        border: 0;
        margin-bottom: 10px;
    }

    .faq .accordion-collapse {
        border: 0;
    }

    .faq .accordion-button {
        padding: 15px 30px 20px 60px;
        font-weight: 600;
        border: 0;
        font-size: 18px;
        color: var(--color-default);
        text-align: left;
        background: rgba(14, 29, 52, 0.03);
        border-radius: 5px;
    }

        .faq .accordion-button:focus {
            box-shadow: none;
        }

        .faq .accordion-button:not(.collapsed) {
            color: var(--color-primary);
            border-bottom: 0;
            box-shadow: none;
        }

    .faq .question-icon {
        position: absolute;
        top: 14px;
        left: 25px;
        font-size: 20px;
        color: var(--color-primary);
    }

    .faq .accordion-button:after {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .faq .accordion-body {
        padding: 0 30px 25px 60px;
        border: 0;
        background: rgba(14, 29, 52, 0.03);
        border-radius: 5px;
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background: var(--color-blue);
    padding: 50px 0;
    color: white;
}

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .fa-brands {
        color: rgba(255, 255, 255, 0.8);
        font-size: 26px;
        margin: 8px 6px 8px 0;
    }

    .footer .shopify-secure {
        opacity: 0.98;
        margin: 8px 0;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                color: rgba(13, 66, 255, 0.8);
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: rgba(255, 255, 255, 0.6);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: #fff;
                }

    .footer .copyright {
        font-size: 10px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer .credits {
        padding-top: 4px;
        text-align: center;
        font-size: 13px;
    }

        .footer .credits a {
            color: #fff;
        }
