/**
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/


/* Fonts */

:root {
    /* --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Inter, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    --default-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
    --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #637381;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #111928;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0F616E;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #333333;
    /* The default color of the main navmenu links */
    --nav-hover-color: #FA9101;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #637381;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #333333;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-dropdown-li-background-color: #feefd9;
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --body-font-size: 1.125rem;
    --billy-font-size-16: 1rem;
    --billy-font-size-14: 0.875rem;
    --swiper-theme-color: #000000;
    /* bootstrap override color */
    --bs-body-color: #637381;
    --bs-progress-bar-bg: #FA9101 !important;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */


/* Light Theme */

.light-background {
    --background-color: #ffffff;
    /* Light cyan for background */
    --default-color: #637381;
    /* Dark grey for text */
    --heading-color: #111928;
    /* Teal for headings */
    --accent-color: #0F616E;
    /* Dark teal for accents */
    --surface-color: #ffffff;
    /* White for surfaces */
    --contrast-color: #ffffff;
    /* Teal for contrast elements */
    /* ----------------------- */
    --billy-teal: #0F616E;
    --billy-cyan: #01a9db;
    --billy-orange: #FA9101;
    --billy-darkgrey: #333333;
    --billy-dark: #1f2a37;
    --billy-navy-blue-dark: #0F172A;
    --billy-blue: #72C6D0;
    --billy-green: #22AD5C;
    --billy-bg-teal: #0F616E;
    --billy-bg-orange: orange;
    --billy-bg-darkgrey: #333333;
    --billy-bg-dark: #1f2a37;
    --billy-bg-blue: #72C6D0;
    --billy-blue-bg-subtle: #eaf6f8;
    --billy-heading-dark: #111928;
    --billy-text-darkgrey: #333333;
    --billy-text-white: #ffffff;
    --billy-text-light-gray: #F9FAFB;
    --billy-primary-text: #637381;
    --billy-primary-text: #637381;
    --billy-border-orange: orange;
}


/* Dark Theme */
.dark-background {
    --background-color: #121212;
    --default-color: #e0e0e0;
    --heading-color: #b2dfdb;
    --surface-color: #1e1e1e;
    --contrast-color: #00acc1;
}

/* Light Theme */
.accent-background {
    --background-color: #eaf6f8;
    --default-color: #637381;
    --heading-color: #111928;
    --accent-color: #ffffff;
    --surface-color: #77a9b1;
    --contrast-color: #ffffff;
}



/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-size: var(--body-font-size);
    /* font-weight: 300; */
}

a {
    color: var(--billy-cyan);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--billy-cyan), transparent 25%);
        text-decoration: none;
    }

/* a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--heading-color); 
}

    h1 a:hover,
    h2 a:hover,
    h3 a:hover,
    h4 a:hover,
    h5 a:hover,
    h6 a:hover {
        color: var(--heading-color);
    }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    --background-color: #ffffff;
    --heading-color: #333333;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

    .header .topbar {
        background-color: var(--billy-blue-bg-subtle);
        height: auto;
        padding: 18px 0px;
        font-size: 14px;
        transition: all 0.5s;
    }

    .header .branding {
        min-height: 40px;
        padding: 4px 0;
    }

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

        .header .logo span {
            font-size: 32px;
            margin-left: 2px;
            color: var(--nav-hover-color);
        }

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: start;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 5px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        /* .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */
        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            width: 2px;
            /* Vertical line width */
            right: -15px;
            /* Position the line on the left */
            top: 0;
            background-color: var(--billy-darkgrey);
            /* Customizable hover color */
            height: 0;
            /* Start height at 0 */
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        }

        .navmenu > ul > li > a:before {
            visibility: visible;
            height: 100%;
            /* Full height on hover */
            color: var(--nav-hover-color);
        }

        .navmenu > ul > li > a:hover {
            color: var(--nav-hover-color);
            /* Optional: Change text color on hover */
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 2px;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 0px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s, visibility 20ms;
            border-radius: 6px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            -ms-border-radius: 6px;
            -o-border-radius: 6px;
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
                margin: 10px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
                border-radius: 6px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                -ms-border-radius: 6px;
                -o-border-radius: 6px;
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                    background-color: var(--nav-dropdown-li-background-color);
                }

        .navmenu .dropdown > a:hover ~ ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown > ul:hover {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
            transition: 1ms
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

        /* ----- mega menu ----*/
        /*        .navmenu .megamenu.dropdown > a:hover ~ ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .megamenu.dropdown > ul:hover {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }*/

        .navmenu .megamenu.dropdown ul {
            display: flex;
        }

            .navmenu .megamenu.dropdown ul li a {
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
                background-color: #ffffff;
                padding: 10px 15px;
                border-radius: 6px;
            }

                .navmenu .megamenu.dropdown ul li a:hover,
                .navmenu .megamenu.dropdown ul li a.active:hover {
                    color: var(--nav-dropdown-hover-color);
                    background-color: var(--nav-dropdown-li-background-color);
                }

    .header-hover-box {
        display: block;
    }
}

.light-background.scrolled .jointUs-bro-btn {
    display: none;
}


/* Mobile Navigation */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            /* inset: 60px 20px 20px 20px; */
            /* padding: 10px 0; */
            inset: 6px 0px 20px 20px;
            padding: 60px 0px 10px 0px;
            margin: 0;
            border-radius: 6px 0px 0px 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 15px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            border-radius: 6px;
            margin: 0px 15px;
        }


            .navmenu a i,
            .navmenu a:focus i {
                color: var(--billy-blue);
                font-size: 18px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--nav-hover-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
                background-color: var(--nav-dropdown-li-background-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--nav-hover-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            /* color: #fff; */
            color: var(--nav-color);
            position: absolute;
            font-size: 40px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }



        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            /* transition: 0.3s; */
            transition: transform 0.5s ease;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }

    .light-background.scrolled .jointUs-bro-btn {
        display: block;
    }

    /*  mega menu */
    .navmenu .dropdown.megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown.megamenu .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown.megamenu .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .dropdown.megamenu {
        position: static;
    }

        .navmenu .dropdown.megamenu ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

        .navmenu .dropdown.megamenu > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .header-hover-box {
        display: none;
    }

    .mobile-joinPro-toggle {
        display: none;
    }

    .mobile-nav-active .mobile-joinPro-toggle {
        position: absolute;
        top: 6px;
        left: 20px;
        z-index: 9998;
        display: block;
        width: 100%;
        background-color: #ffffff;
        padding: 12px 20px 10px 20px;
        border-radius: 10px 0px 0px 0px;
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 1099;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--background-color);
}

.preloader {
    height: 100%;
    min-height: 70vh;
    width: 100%;
    overscroll-behavior: contain;
}

#preloader, .preloader {
    overflow: hidden;
    transition: all 0.6s ease-out;
}

    #preloader:before, .preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


.text-billy-primary {
    color: #0F616E;
}

.text-billy-secondary {
    color: #FA9101;
}

.bg-billy-primary {
    background-color: #0F616E;
}

.bg-billy-primary-subtle {
    background-color: rgba(114, 198, 208, 0.25);
}

.bg-billy-secondary {
    background-color: #FA9101;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 80px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}


@media (max-width: 991px) {

    section,
    .section {
        padding: 60px 0;
    }
}

/* @media (max-width: 768px) {
    section,
    .section {
        padding: 40px 0;
    }
} */

/* section.accent-background,
.section.accent-background {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    scroll-margin-top: 112px;
    overflow: clip;
} */

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 100px;
    }
}


.form-check-input:checked {
    background-color: #0f616e;
    border-color: #0f616e;
}

.form-check-input:focus {
    border-color: #72c6d0;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(204 229 233);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 0px;
    position: relative;
}

    .section-title h1 {
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
    }

    .section-title h2 {
        font-weight: 600;
        margin-bottom: 20px;
        /* padding-bottom: 20px; */
        position: relative;
    }

    .section-title h3 {
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
    }

    .section-title p {
        margin-bottom: 0;
    }


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
    --background-color: var(--accent-color);
    --default-color: #fff;
    --heading-color: #fff;
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

    .page-title .heading {
        padding: 160px 0 80px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .page-title .heading h1 {
            font-size: 38px;
            font-weight: 700;
        }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#heroTop {
    padding: 100px 0 20px 0;
}

@media (min-width: 1200px) {
    #heroTop {
        padding: 200px 0 0 0;
    }
}

#heroFooter {
    padding: 50px 0 50px 0;
}

    #heroFooter .helpZipBox-footer {
        max-width: 700px;
        margin: auto;
    }

.hero {
    width: 100%;
    position: relative;
}

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        font-size: 2.5rem;
        font-weight: 400;
        margin-bottom: 20px;
    }

        .hero h2 span.accent {
            color: var(--billy-orange);
        }

        .hero h2 .accent {
            color: var(--conrast-color);
        }

    .hero p {
        color: var(--billy-navy-blue-dark);
        font-size: var(--billy-font-size-16);
        font-weight: 400;
        margin-bottom: 30px;
    }


.helpZipBox-section {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

    .helpZipBox-section::before {
        content: url('../images/icons/help-face.svg');
        width: 16px;
        height: 16px;
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle;
        z-index: 9;
        position: absolute;
        left: -54px;
        top: -6px;
    }

.helpZipBox {
    border-radius: 6px;
    --background-color: #ffffff;
    background-color: var(--background-color);
}

    .helpZipBox .form-control {
        border-right: none;
        font-size: 14px;
        border: 0px;
        padding: 4px 10px;
        border-radius: 0px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

        .helpZipBox .form-control:focus {
            border: none;
            outline: 0;
            box-shadow: none;
        }

.helpBox input {
    border: 0px;
    font-family: "Open Sans", sans-serif;
}

    .helpBox input:focus {
        border: 0px;
    }

.helpBox {
    border: none;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    border-radius: 6px 0px 0px 6px;
    padding: 6px;
    width: 70%
}

.zipBox {
    border: none;
    padding: 6px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    width: 30%;
}

.helpZipBox .zipBox input {
    background-color: white;
    background-image: url('../images/icons/map.svg');
    background-position: 10px 5px;
    background-repeat: no-repeat;
    padding-left: 36px;
    border: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-left: 1px solid #CED4DA;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .helpZipBox .zipBox input:focus {
        border-left: 1px solid #CED4DA;
    }

.btn-search-help {
    color: var(--billy-text-white);
    background-color: var(--billy-orange);
    width: 67px;
    height: 100%;
    border: none;
    border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -ms-border-radius: 0px 5px 5px 0px;
    -o-border-radius: 0px 5px 5px 0px;
}

.hero p.try-text {
    /* font-family: 'Open Sans'; */
    font-size: 0.875rem;
    font-weight: 600;
    padding-top: 10px;
}

    .hero p.try-text span {
        font-family: "Open Sans", sans-serif;
        color: var(--billy-cyan);
        cursor: pointer;
    }

@media (max-width: 768px) {
    .hero {
        width: 100%;
        position: relative;
        padding: 90px 0 0 0;
    }

        .hero h2 {
            font-size: 1.375rem;
        }

    .helpZipBox-section::before {
        display: none;
    }

    .helpZipBox {
        border-radius: 6px;
        background-color: transparent;
    }

        .helpZipBox .form-control {
            border-right: none;
            font-size: 14px;
            border: 0px;
            padding: 4px 10px;
            border-radius: 0px;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

    .helpBoxMobile {
        padding: 6px 12px;
        border-radius: 6px;
        --background-color: #ffffff;
        background-color: var(--background-color);
    }

    .helpBox {
        position: relative;
        border: none;
        padding: 6px;
        width: 100%
    }

        .helpBox::after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background-color: #ebeae9;
            margin-top: 16px;
        }

    .zipBox {
        border: none;
        padding: 6px;
        width: 100%;
    }

    .helpZipBox .zipBox input {
        background-color: white;
        background-image: url('../images/icons/map.svg');
        background-position: 6px 5px;
        background-repeat: no-repeat;
        padding-left: 30px;
        border: 0px;
        border-radius: 0px;
    }

        .helpZipBox .zipBox input:focus {
            border-left: 1px solid #CED4DA;
        }

    .btn-search-help {
        color: var(--accent-color);
        background-color: var(--billy-orange);
        width: 67px;
        height: 100%;
        border: none;
        border-radius: 0px 5px 5px 0px;
        -webkit-border-radius: 0px 5px 5px 0px;
        -moz-border-radius: 0px 5px 5px 0px;
        -ms-border-radius: 0px 5px 5px 0px;
        -o-border-radius: 0px 5px 5px 0px;
    }

    .btn-search-help {
        margin-top: 10px;
        color: var(--accent-color);
        background-color: var(--billy-orange);
        width: 100%;
        height: 100%;
        padding: 10px 10px 9px;
        border: 1px solid #FFF04B;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }
}


#helpZipBoxSectionScroll {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

    #helpZipBoxSectionScroll .helpZipBox-section::before {
        content: none;
    }

/*--------------------------------------------------------------
# Pro Services Section
--------------------------------------------------------------*/

.pro-services .nav.nav-pills {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

    .pro-services .nav.nav-pills .nav-item button {
        color: #545756;
    }

        .pro-services .nav.nav-pills .nav-item button.active {
            background-color: transparent;
            color: #066599;
            font-weight: 600;
            position: relative;
        }

            .pro-services .nav.nav-pills .nav-item button.active::after {
                content: "";
                border-bottom: 2px solid #066599;
                width: 60px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                bottom: -40px;
            }

.pro-services .services-iconImg {
    position: relative;
    width: 72px;
    height: 64px;
    margin: auto;
}

.pro-services .nav.nav-pills .nav-item button.active .services-iconImg {
    background-color: #e3f4f6;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.pro-services .services-iconImg .pro-services-svg {
    width: 56px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #72c6d0;
    transition: color 0.3s ease-in-out;
}

    .pro-services .services-iconImg .pro-services-svg:hover {
        color: #066599;
    }

.pro-services .nav.nav-pills .nav-item button.active .services-iconImg .pro-services-svg {
    color: #066599;
}

.pro-services .section {
    background-color: var(--background-color);
}


.pro-services .path-pro-service-icon {
    transition: fill 0.3s ease;
}

/* ------ img and info -- */

.pro-services .proServices-itemImg {
    text-align: center;
    max-width: 418px;
    margin: auto;
}

    .pro-services .proServices-itemImg img {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

/*--------------------------------------------------------------
# Pro Services Section
--------------------------------------------------------------*/
.top-services-section {
    padding: 100px 0px 50px 0px;
}

@media(min-width: 1200px) {
    .top-services-section {
        padding: 200px 0px 80px 0px;
    }
}

.top-services-section .benefits-hi-img {
    position: absolute;
    bottom: -30px;
    left: -40px;
}


.service-clipArt-container {
    padding: 80px 0px;
}

.service-clipArtBox {
    position: relative;
    margin-bottom: -40px;
    margin-left: -15px;
    z-index: 1;
}

@media(max-width: 991px) {

    .service-clipArt-container {
        padding: 40px 0px 80px;
    }

    .service-clipArtBox {
        position: relative;
        margin-top: -70px;
        margin-left: 0px;
        margin-bottom: -110px;
        z-index: 1;
    }
}

.h-line {
    position: relative;
}

    .h-line::after {
        content: "";
        position: absolute;
        display: block;
        width: 70%;
        height: 3px;
        background-color: rgba(0, 0, 0, 1);
        left: 0;
        right: 0;
        top: -15px;
        /* margin: auto; */
    }

.top-services-section .phone-box {
    max-width: 272px;
    margin: auto;
}

/*--------------------------------------------------------------
# Top Services multi-step Form Section
--------------------------------------------------------------*/
.TopServices-multiStepForm.card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.TopServices-multiStepForm .form-control.form-control-lg {
    border-color: #72c6d0;
}

    .TopServices-multiStepForm .form-control.form-control-lg::placeholder {
        color: #9ca3af;
    }

    .TopServices-multiStepForm .form-control.form-control-lg:focus {
        box-shadow: 0 0 0 .25rem rgb(114, 198, 208, 25%);
    }

.TopServices-multiStepForm .step {
    display: none;
}

    .TopServices-multiStepForm .step.active {
        display: block;
    }

.TopServices-multiStepForm .progress {
    height: 10px;
    position: relative;
    overflow: visible;
    --bs-progress-bar-bg: #0F616E;
}

.TopServices-multiStepForm .progress-bar {
    transition: width 0.3s ease;
    border-radius: 6px;
}

.TopServices-multiStepForm .progress-percentage {
    left: calc(0% - 20px);
}

.TopServices-multiStepForm .progress-percentage {
    font-weight: 600;
    position: absolute;
    top: -45px;
    width: 60px;
    height: 36px;
    background-color: #0F616E;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: left 0.3s ease;
}

    .TopServices-multiStepForm .progress-percentage::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -7px;
        border-width: 8px;
        border-style: solid;
        border-color: #0F616E transparent transparent transparent;
    }

.TopServices-multiStepForm {
    max-width: 516px;
}

.checkRadio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.btn.btn-check-label {
    width: 100%;
    padding: 10px 0;
    border: 2px solid #87CEEB;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-check + .btn.btn-check-label:hover {
    border: 2px solid #87CEEB;
    background-color: #E0F7FA;
}

.btn-check:checked + .btn.btn-check-label,
.btn.btn-check-label.active,
.btn.btn-check-label.show,
.btn.btn-check-label:first-child:active,
:not(.btn-check) + .btn.btn-check-label:active {
    background-color: #4DA8B8;
    border: 2px solid #87CEEB;
    color: white;
}


/*--------------------------------------------------------------
# Connected Free Section
--------------------------------------------------------------*/

.connected-free h3,
.connected-free p {
    color: var(--billy-text-white);
}

.connected-freeBg {
    position: relative;
    padding: 80px 0;
}

    /* .connected-freeBg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
} */

    .connected-freeBg .container {
        position: relative;
        z-index: 3;
    }

    .connected-freeBg:before {
        content: "";
        background: color-mix(in srgb, #111928, transparent 10%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }


/*--------------------------------------------------------------
# Professional Section
--------------------------------------------------------------*/

.professional-container {
    background-color: var(--billy-bg-dark);
    color: var(--billy-text-light-gray);
}

    .professional-container .professional-info {
        max-width: 480px;
        padding: 15px;
    }

@media (max-width: 991px) {
    .professional-container .professional-info {
        max-width: 510px;
        padding: 15px;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .professional-container .professional-info {
        max-width: 540px;
        padding: 15px;
        text-align: start;
    }
}

.professional-container h2 {
    color: var(--billy-text-white);
}

.professional-container p {
    color: var(--billy-text-light-gray);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
    background-color: #F8FAFC
}

    .testimonials .swiper-wrapper {
        position: relative;
        width: auto;
        height: 100%;
        z-index: 1;
        transition-property: transform;
        box-sizing: content-box;
    }

    .testimonials .swiper-wrapper {
        display: flex;
        -moz-column-count: 1;
        column-count: 1;
    }

    .testimonials .swiper:hover {
        overflow: visible;
    }

    .testimonials .testimonial-item {
        margin-bottom: 40px;
    }

    .testimonials .swiper-pagination {
        display: block;
    }

@media (min-width: 768px) {
    .testimonials .swiper-wrapper {
        display: block;
        -moz-column-count: 2;
        column-count: 2;
    }

    .testimonials .testimonial-item {
        margin-bottom: 20px;
    }

    .testimonials .swiper-pagination {
        display: none;
    }
}

@media (min-width: 1024px) {
    .testimonials .swiper-wrapper {
        display: block;
        -moz-column-count: 3;
        column-count: 3;
    }
}

.testimonials .swiper-pagination {
    bottom: 0px;
}

.testimonials .swiper-slide {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.testimonials .testimonial-item {
    color: var(--billy-navy-blue-dark);
    background-color: white;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    padding: 24px;
    transition: transform 0.3s ease;
    line-height: 18px;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

    .testimonials .testimonial-item:hover {
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(1.01);
        -moz-transform: scale(1.01);
        -ms-transform: scale(1.01);
        -o-transform: scale(1.01);
    }

.testimonials .testimonial-item-info {
    position: relative;
    overflow: hidden;
}

    .testimonials .testimonial-item-info img {
        position: absolute;
        width: 105px;
        height: auto;
        z-index: 1;
    }

    .testimonials .testimonial-item-info p {
        position: relative;
        padding-bottom: 15px;
        line-height: 32px;
        border-bottom: 1px solid #F1F5F9;
        z-index: 2;
        margin-bottom: 15px;
    }

.testimonials .testimonial-item h6 {
    line-height: 28px;
}

.testimonials .testimonial-item small {
    line-height: 24px;
}


/*--------------------------------------------------------------
# Tips How To Section
--------------------------------------------------------------*/

.tipsHowTo .d-gr {
    display: grid;
    grid-template-columns: 100px 1fr;
}

.tipsHowTo .fig-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

    .tipsHowTo .fig-img-container img {
        position: absolute;
        top: 0;
        height: 100%;
        object-fit: cover;
    }

.tipsHowTo .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

.tipsHowTo .swiper-slide {
    font-size: 18px;
    background: #fff;
}

@media (max-width: 991px) {
    .tipsHowTo .swiper-slide {
        margin-bottom: 40px;
    }
}

.tipsHowTo .swiper-slide {
    width: 80%;
}

/*--------------------------------------------------------------
# popular-projects Section
--------------------------------------------------------------*/

.popular-projects {
    background-color: var(--background-color);
}

    .popular-projects .swiper {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .popular-projects .swiper-slide {
        font-size: 18px;
        /* Center slide text vertically */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
    }

        .popular-projects .swiper-slide .project-items {
            width: 100%;
        }

            .popular-projects .swiper-slide .project-items img {
                width: 100%;
            }

    .popular-projects .swiper-grid-column > .swiper-wrapper {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .popular-projects .project-items img {
        margin-bottom: 10px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .popular-projects .project-items h6 {
        color: var(--heading-color);
        line-height: 24px;
        margin-bottom: 4px;
    }

    .popular-projects .project-items p {
        font-size: var(--billy-font-size-14);
        line-height: 22px;
        margin-bottom: 0px;
    }

@media (max-width: 1200px) {
    .popular-projects .swiper {
        padding-bottom: 35px;
    }
}

/*--------------------------------------------------------------
# Recent Blog Section
--------------------------------------------------------------*/


/* button tab  */

.recent-blog .nav-pills-recentBlog .nav-link {
    font-size: var(--billy-font-size-16);
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--billy-heading-dark);
    border: 1px solid #DFE4EA;
    border-radius: 0px 6px 6px 0px;
    -webkit-border-radius: 0px 6px 6px 0px;
    -moz-border-radius: 0px 6px 6px 0px;
    -ms-border-radius: 0px 6px 6px 0px;
    -o-border-radius: 0px 6px 6px 0px;
}


.recent-blog .nav-pills.nav-pills-recentBlog .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--billy-text-white);
    background-color: var(--billy-orange);
    border-radius: 6px 0px 0px 6px;
    -webkit-border-radius: 6px 0px 0px 6px;
    -moz-border-radius: 6px 0px 0px 6px;
    -ms-border-radius: 6px 0px 0px 6px;
    -o-border-radius: 6px 0px 0px 6px;
}

.recent-blog #pills-mostPopular-tab.nav-link {
    border-right: 0px;
}

.recent-blog #pills-latestBlogs-tab.nav-link {
    border-left: 0px;
}

.recent-blog .nav-pills.nav-pills-recentBlog #pills-mostPopular-tab.nav-link {
    border-right: 0px;
    border-radius: 6px 0px 0px 6px;
    -webkit-border-radius: 6px 0px 0px 6px;
    -moz-border-radius: 6px 0px 0px 6px;
    -ms-border-radius: 6px 0px 0px 6px;
    -o-border-radius: 6px 0px 0px 6px;
}

.recent-blog .nav-pills.nav-pills-recentBlog #pills-latestBlogs-tab.nav-link.active {
    border-left: 0px;
    border-radius: 0px 6px 6px 0px;
    -webkit-border-radius: 0px 6px 6px 0px;
    -moz-border-radius: 0px 6px 6px 0px;
    -ms-border-radius: 0px 6px 6px 0px;
    -o-border-radius: 0px 6px 6px 0px;
}

/* vertical tab */
.recent-blog .tab-recentBlog-content .nav-link {
    font-size: var(--bs-nav-link-font-size);
    font-weight: 600;
    color: var(--billy-heading-dark);
    background: 0 0;
    border: 1px solid #DEE2E6;
    text-align: start;
    padding: 1rem 1.5rem;
    margin-bottom: 1.875rem;
}


    .recent-blog .tab-recentBlog-content .nav-link.active, .nav-pills .show > .nav-link {
        color: var(--billy-heading-dark);
        border: 1px solid var(--billy-border-orange);
        box-shadow: inset 0 0 0 2px var(--billy-border-orange);
    }

.recent-blog .recent-tabBox-info {
    max-width: 440px;
    margin-bottom: 1rem;
}



@media (max-width: 576px) {
    .recent-blog .tab-recentBlog-content .nav-link {
        font-weight: 500;
        padding: 0.5rem 0.6rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .recent-blog .recent-tabBox-info {
        max-width: 440px;
        margin-bottom: 0.7rem;
    }
}

.recent-blog a {
    font-weight: 600;
    color: #374151;
}

    .recent-blog a:hover {
        color: var(--billy-dark);
        color: color-mix(in srgb, #374151, transparent 25%);
    }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

    .footer .footer-top {
        padding-top: 50px;
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

        .footer .footer-about p.easy-way {
            font-size: var(--billy-font-size-16);
            font-family: var(--heading-font);
            color: #73C6D3;
        }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--billy-blue);
            border-color: var(--billy-blue);
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links {
        margin-bottom: 10px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 4px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                display: inline-block;
                line-height: 20px;
            }

                .footer .footer-links ul a:hover {
                    color: var(--billy-blue);
                }

    .footer .copyright {
        padding-top: 30px;
        padding-bottom: 30px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 4px;
        font-size: 13px;
    }

.sub-footer {
    font-size: var(--billy-font-size-14);
    color: var(--billy-text-darkgrey);
    background-color: #E8E8E8;
}


/* ================================== */

.btn {
    --bs-btn-padding-x: 1rem;
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* .btn-lg {
    --bs-btn-padding-y: 0.8rem;
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-font-size: 1rem;
    font-weight: 600;
} */

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none;
    }
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0F616E;
    --bs-btn-border-color: #0F616E;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2b727e;
    --bs-btn-hover-border-color: #2b727e;
    --bs-btn-focus-shadow-rgb: 46, 195, 106;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #328592;
    --bs-btn-active-border-color: #0e8294;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0F616E;
    --bs-btn-disabled-border-color: #0F616E;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #FA9101;
    --bs-btn-border-color: #FA9101;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc8e00;
    --bs-btn-hover-border-color: #dc8e00;
    --bs-btn-focus-shadow-rgb: 46, 195, 106;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d17b02;
    --bs-btn-active-border-color: #d17b02;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dfaa61;
    --bs-btn-disabled-border-color: #f7b353;
}

.btn-outline-secondary {
    --bs-btn-color: #333333;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #FA9101;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #FA9101;
    --bs-btn-hover-border-color: #FA9101;
    --bs-btn-focus-shadow-rgb: 46, 195, 106;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d17b02;
    --bs-btn-active-border-color: #d17b02;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dfaa61;
    --bs-btn-disabled-border-color: #f7b353;
}


.multi-step-form-back {
    margin-right: 10px;
    align-items: center;
    border: 1px solid var(--billy-bg-teal);
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    height: 48px;
    width: 48px;
    transition: border-color .3s linear, box-shadow .3s linear;
    -webkit-transition: border-color .3s linear, box-shadow .3s linear;
    -moz-transition: border-color .3s linear, box-shadow .3s linear;
    -ms-transition: border-color .3s linear, box-shadow .3s linear;
    -o-transition: border-color .3s linear, box-shadow .3s linear;
}

    .multi-step-form-back:before {
        border: solid var(--billy-bg-teal);
        border-width: 0 2px 2px 0;
        content: "";
        display: inline-block;
        margin-left: 5px;
        padding: 5px;
        transform: rotate(-45deg);
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
    }

    .multi-step-form-back:hover {
        border-color: var(--billy-bg-teal);
        box-shadow: 0 6px 16px #283c5e26;
    }

/* Search Bar and JQuery-UI autocomlete styles */

.ui-menu {
    background-color: #fff;
    z-index: 1050 !important;
}

.ui-menu-item {
    cursor: pointer;
}

.billy-error {
    display: none;
    position: absolute;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    bottom: -52px;
    min-width: 180px;
    color: white !important;
    background: #EF6262;
    padding: 2px 10px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    z-index: 1100;
    left: -10px;
    text-shadow: none;
}

    .billy-error::before {
        content: ' ';
        width: 0;
        height: 0;
        position: absolute;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #EF6262;
        top: -5px;
        left: 45px;
    }

.overlay-sr {
    margin-top: 45px;
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 996;
    top: 0;
    left: 0;
    background-color: rgb(241,241,241);
}

    .overlay-sr .closebtn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 60px;
        cursor: pointer;
        color: #72c6d0;
    }

        .overlay-sr .closebtn:hover {
            color: #0d6efd;
        }

.search-result-content {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.62);
}

/* ThumbTack results style */
.tt-main {
    width: 100% !important;
    max-width: 1100px;
    margin: 0 auto;
}

.div-flow.tt-main {
    margin: 0 auto;
}

.tt-div-canvas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 20px;
    margin: 60px auto;
    padding: 0px 20px;
    max-width: 1110px;
}

.tt-header {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: black;
    max-width: 780px;
    margin: auto;
    padding-top: 144px;
}

.tt-subheader {
    font-size: 20px;
    line-height: 1.75rem;
    text-align: center;
    margin-top: 30px;
}

.tt-card {
    background: white;
    box-shadow: rgba(16, 24, 40, 0.08) 0px 8px 12px, rgba(16, 24, 40, 0.03) 0px -4px 6px -2px;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.tt-card-a {
    background: rgb(0, 136, 255);
    border: 1px solid rgb(0, 136, 255);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: white;
    padding: 15px 0px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.tt-card-d-1 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tt-card-d-1-1 {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background: rgb(238, 242, 246);
}

    .tt-card-d-1-1 img {
        width: 100%;
        height: auto;
    }

.tt-card-d-1-2 {
    display: flex;
    flex-direction: column;
    width: calc(100% - 90px);
}

.tt-card-d-1-2-1 {
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 30px;
}

.toppro {
    width: 60px;
    margin-bottom: 5px;
}

.tt-card-d-2 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    color: black;
    display: flex;
    flex-direction: column;
    margin: 10px 0px 0px;
    gap: 24px;
    border-bottom: 1px solid rgb(227, 232, 239);
    padding-bottom: 20px;
}

.tt-card-d-2-d {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 16px;
}

    .tt-card-d-2-d img {
        width: 20px;
        height: 24px;
        margin-right: 10px;
    }

.tt-card-d-3 {
    font-size: 14px;
    line-height: 1.25rem;
    color: rgb(154, 164, 178);
    display: flex;
    gap: 8px;
    margin: 22px 0px 15px;
}

.tt-card-d-3i {
    position: relative;
    white-space: nowrap;
}

.tt-card-d-3 img {
    margin: 0px 2px 0px 0px;
}

    .tt-card-d-3 img:last-child {
        margin: 0px 0px 0px 0px;
    }

.tt-card-d-3 .d-stars-1 {
    height: 16px;
    filter: grayscale(1) opacity(0.4);
}




.tt-card-d-3 .d-stars-2 {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 20px;
}

.tt-card-d-4 {
    color: rgb(105, 117, 134);
    font-size: 14px;
    line-height: 1.75rem;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.bluedb {
    color: #009fd9 !important;
    display: block !important;
}

.tt-center {
    margin-top: 15px;
}

@media (min-width: 769px) {
    .tt-div-canvas {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .tt-div-canvas {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        padding: 0px 0px 40px;
        margin: 30px auto;
    }

    .tt-header {
        font-size: 30px;
        line-height: normal;
        padding-top: 80px;
    }

    .tt-subheader {
        margin-top: 20px;
        font-size: 18px;
        line-height: 28px;
    }

    .tt-card {
        padding: 20px;
    }
}

#b-close-search {
    display: block !important;
    margin-top: 24px;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}

#div-search-results-content {
    max-height: 80vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.no-scroll {
    overflow: hidden;
}

.shiny-text {
    color: rgb(255, 255, 255);
    text-shadow: rgb(53, 53, 53) 1px 1px 2px, rgba(0, 0, 0, 0.4) 0px 0px 32px;
}

@media(min-width: 1200px) {
    .overlay-sr {
        margin-top: 127.5px;
    }

        .overlay-sr .closebtn {
            display: none;
        }
}

.ui-helper-hidden-accessible {
    height: 0;
    width: 0;
    display: none !important;
}

ul.ui-autocomplete.ui-menu {
    max-width: 500px;
}

.container.rttvm {
    padding-top: 3rem !important;
    max-width: 100%;
}