@media(min-width: 1366px) {
    #chatbase-bubble-button {
        /* left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0 !important; */
    }
    .top-part {
        display: inherit;
        width: 100%;
    }
    .top-banner {
        background-image: url('../../assets/line-pattern-overlay.png');
        background-size: cover;
        background-position: 50% 50%;
        background-color: #1111ba;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10%;
    }
    .top-banner p {
        font-size: 18px;
        font-weight: 700;
        font-style: italic;
        color: #fff;
    }
    .nav-social-media a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        display: inline-block;
        margin: 0 0 0 15px;
    }
    .nav-social-media a:hover {
        color: #231F20;
    }
    nav.navbar {
        background-color: #000;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10%;
    }
    .nav-logo img {
        height: 70px;
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 0 0 25px;
        position: relative;
    }
    ul.page-tabs li a:hover {
        color: #000ee9;
    }
    ul.page-tabs li a {
        display: block;
        color: #fff;
        margin: 0;
        padding: 0;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        transition: 0.1s all ease-out;
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background: #333333;
        box-shadow: 1px 1px 10px rgba(0, 34, 68, 0.12);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: #000;
    }
    ul.page-tabs li>ul>li>a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .call-info {
        position: relative;
        min-width: 190px;
    }
    .call-info a {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: right;
    }
    .float-estimate {
        border-radius: 2px;
        display: inherit;
        position: fixed;
        bottom: 0;
        left: 10%;
        z-index: 2;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        text-decoration: none;
        margin: 0;
        padding: 15px 20px;
    }
    .float-estimate:hover {
        background: #f9b707;
    }
    .float-backtrack {
        border-radius: 2px;
        display: none;
        position: fixed;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: #fff;
        background: #f9b707;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        padding: 8px 15px;
    }
    .float-backtrack:hover {
        background: #1111ba;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    #chatbase-bubble-button {
        /* left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0 !important; */
    }
    .top-part {
        display: inherit;
        width: 100%;
    }
    .top-banner {
        background-image: url('../../assets/line-pattern-overlay.png');
        background-size: cover;
        background-position: 50% 50%;
        background-color: #1111ba;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .top-banner p {
        font-size: 18px;
        font-weight: 700;
        font-style: italic;
        color: #fff;
    }
    .nav-social-media a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        display: inline-block;
        margin: 0 0 0 15px;
    }
    .nav-social-media a:hover {
        color: #231F20;
    }
    nav.navbar {
        background-color: #000;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .nav-logo img {
        height: 70px;
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 0 0 20px;
        position: relative;
    }
    ul.page-tabs li a:hover {
        color: #000ee9;
    }
    ul.page-tabs li a {
        display: block;
        color: #fff;
        margin: 0;
        padding: 0;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        transition: 0.1s all ease-out;
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background: #333333;
        box-shadow: 1px 1px 10px rgba(0, 34, 68, 0.12);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: #000;
    }
    ul.page-tabs li>ul>li>a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .call-info {
        position: relative;
        min-width: 190px;
    }
    .call-info a {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: right;
    }
    .float-estimate {
        border-radius: 2px;
        display: inherit;
        position: fixed;
        bottom: 0;
        left: 5%;
        z-index: 2;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        text-decoration: none;
        margin: 0;
        padding: 15px 20px;
    }
    .float-estimate:hover {
        background: #f9b707;
    }
    .float-backtrack {
        border-radius: 2px;
        display: none;
        position: fixed;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: #fff;
        background: #f9b707;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        padding: 8px 15px;
    }
    .float-backtrack:hover {
        background: #1111ba;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    #chatbase-bubble-button {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0 !important;
    }
    .top-part {
        display: inherit;
        width: 100%;
    }
    .top-banner {
        background-image: url('../../assets/line-pattern-overlay.png');
        background-size: cover;
        background-position: 50% 50%;
        background-color: #1111ba;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .top-banner p {
        font-size: 16px;
        font-weight: 700;
        font-style: italic;
        color: #fff;
    }
    .nav-social-media a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        display: inline-block;
        margin: 0 0 0 15px;
    }
    .nav-social-media a:hover {
        color: #231F20;
    }
    nav.navbar {
        background-color: #000;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .nav-logo img {
        height: 60px;
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 0 0 15px;
        position: relative;
    }
    ul.page-tabs li a:hover {
        color: #000ee9;
    }
    ul.page-tabs li a {
        display: block;
        color: #fff;
        margin: 0;
        padding: 0;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        transition: 0.1s all ease-out;
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background: #333333;
        box-shadow: 1px 1px 10px rgba(0, 34, 68, 0.12);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: #000;
    }
    ul.page-tabs li>ul>li>a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: #fff;
        padding: 15px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .call-info {
        position: relative;
        min-width: 190px;
    }
    .call-info a {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: right;
    }
    .float-estimate {
        border-radius: 2px;
        display: inherit;
        position: fixed;
        bottom: 0;
        left: 5%;
        z-index: 2;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        text-decoration: none;
        margin: 0;
        padding: 15px 20px;
    }
    .float-estimate:hover {
        background: #f9b707;
    }
    .float-backtrack {
        border-radius: 2px;
        display: none;
        position: fixed;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: #fff;
        background: #f9b707;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        padding: 8px 15px;
    }
    .float-backtrack:hover {
        background: #1111ba;
    }
}

@media(max-width: 769px) {
    #chatbase-bubble-button {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0 !important;
    }
    .top-part {
        display: none;
        width: 100%;
    }
    .top-banner {
        background-image: url('../../assets/line-pattern-overlay.png');
        background-size: cover;
        background-position: 50% 50%;
        background-color: #1111ba;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .top-banner p {
        font-size: 18px;
        font-weight: 700;
        font-style: italic;
        color: #fff;
    }
    .nav-social-media a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        display: inline-block;
        margin: 0 0 0 15px;
    }
    .nav-social-media a:hover {
        color: #231F20;
    }
    nav.navbar {
        background-color: #000;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }
    .nav-logo img {
        height: 80px;
    }
    ul.page-tabs {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.page-tabs li {
        padding: 0;
        margin: 0 0 0 30px;
        position: relative;
    }
    ul.page-tabs li a:hover {
        color: #000ee9;
    }
    ul.page-tabs li a {
        display: block;
        color: #fff;
        margin: 0;
        padding: 0;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        transition: 0.1s all ease-out;
    }
    /* sub-pages */
    @keyframes slide {
        from {
            opacity: 0;
            transform: translateX(0%);
            left: 0;
        }
        to {
            opacity: 1;
            transform: translateX(-50%);
            left: 50%;
        }
    }
    ul.page-tabs li>ul {
        z-index: 2;
        display: none;
        position: absolute;
        grid-template-columns: repeat(2, auto);
        gap: 0;
        background: #333333;
        box-shadow: 1px 1px 10px rgba(0, 34, 68, 0.12);
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 0;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li:hover>ul {
        display: grid;
        animation: slide 0.25s ease-out 0s normal;
    }
    ul.page-tabs li>ul>li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        min-width: 200px;
        transition: 0.1s all ease-in-out;
    }
    ul.page-tabs li>ul>li:hover {
        background-color: #000;
    }
    ul.page-tabs li>ul>li>a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        vertical-align: middle;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-in-out;
    }
    .call-info {
        position: relative;
        min-width: 190px;
    }
    .call-info a {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: right;
    }
    .float-estimate {
        border-radius: 2px;
        display: none;
        position: fixed;
        bottom: 0;
        left: 10%;
        z-index: 2;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        text-decoration: none;
        margin: 0;
        padding: 15px 20px;
    }
    .float-estimate:hover {
        background: #f9b707;
    }
    .float-backtrack {
        border-radius: 2px;
        display: none;
        position: fixed;
        cursor: pointer;
        bottom: 50%;
        right: 0%;
        z-index: 2;
        font-size: 30px;
        color: #fff;
        background: #f9b707;
        box-shadow: -1px -1px 10px rgba(0, 34, 68, 0.36);
        padding: 8px 15px;
    }
    .float-backtrack:hover {
        background: #1111ba;
    }
}