/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 10 2026 | 09:00:29 */
/*
 * AR Craftix categorized CSS
 * Source: Appearance > Customize > Additional CSS
 * Original lines: 5589-7288
 * Category: All non-home pages: base, header/menu, inner banner, typography, lists, tables, forms and responsive rules
 * Kept verbatim from the supplied Additional CSS.
 */

/* ==========================================================
   AR CRAFTIX - ALL INNER PAGES
   HOME PAGE EXCLUDED
   FOOTER CSS NOT INCLUDED

   Primary:   #003da3
   Secondary: #797979
   Dark Gray: #181a20
   Content:   #202229
   ========================================================== */


/* ==========================================================
   01. BASIC INNER PAGE
   ========================================================== */

body:not(.home){
    background:#181a20;
    color:#b8bbc4;

    font-family:'Open Sans', Arial, sans-serif;
}

body:not(.home),
body:not(.home) *{
    box-sizing:border-box;
}

body:not(.home) #page{
    background:#181a20;
}


/* ==========================================================
   02. REMOVE OLD TOP BAR
   ========================================================== */

body:not(.home) .top-header{
    display:none !important;
}


/* ==========================================================
   03. NAVBAR
   ========================================================== */

body:not(.home).menu-default .navbar,
body:not(.home).menu-default.header-enable-top .navbar,
body:not(.home) .navbar.at-navbar{
    position:relative !important;

    top:auto !important;
    left:auto !important;
    right:auto !important;

    width:100% !important;
    min-height:78px;

    margin:0 !important;

    background:#08090e !important;

    border:0 !important;
    border-bottom:1px solid rgba(121,121,121,.22);

    box-shadow:none !important;

    z-index:1000;
}


/* Sticky navbar */
body:not(.home) .navbar.at-sticky,
body:not(.home).menu-default .navbar.at-sticky,
body:not(.home).menu-default.header-enable-top .navbar.at-sticky{
    position:fixed !important;

    top:0 !important;
    left:0 !important;
    right:0 !important;

    width:100% !important;

    background:rgba(8,9,14,.97) !important;

    border-bottom:1px solid rgba(121,121,121,.24);

    box-shadow:
        0 10px 35px rgba(0,0,0,.30) !important;
}

body.admin-bar:not(.home) .navbar.at-sticky{
    top:32px !important;
}


/* Navbar container */
body:not(.home) #navbar > .container{
    min-height:78px;
    max-width:1188px;

    display:flex;
    align-items:center;

    position:relative;
}


/* ==========================================================
   04. LOGO
   ========================================================== */

body:not(.home) .navbar-header{
    display:flex;
    align-items:center;

    min-height:78px;

    margin:0 !important;
    padding:0 !important;

    flex:0 0 auto;
}

body:not(.home) .custom-logo-link{
    display:flex;
    align-items:center;

    max-width:none !important;
}

body:not(.home) .custom-logo-link img,
body:not(.home) .custom-logo{
    width:auto !important;
    height:auto !important;

    max-width:165px !important;
    max-height:44px !important;

    object-fit:contain;
}


/* ==========================================================
   05. DESKTOP NAV STRUCTURE
   ========================================================== */

@media (min-width:768px){

    body:not(.home) .at-beside-navbar-header{
        width:auto !important;

        display:flex;
        align-items:center;

        flex:1 1 auto;

        float:none !important;
    }

    body:not(.home) .main-navigation{
        order:1;

        margin-left:auto;
        margin-right:auto;

        float:none !important;

        background:transparent !important;

        box-shadow:none !important;
    }

    body:not(.home) .search-woo{
        order:2;

        margin-left:25px;

        flex:0 0 auto;
    }

}


/* ==========================================================
   06. MAIN MENU
   ========================================================== */

body:not(.home) .main-navigation ul{
    margin:0 !important;
}

body:not(.home) .main-navigation > ul > li,
body:not(.home) .main-navigation .navbar-nav > li{
    border:0 !important;

    background:transparent !important;
}

body:not(.home) .main-navigation > ul > li > a,
body:not(.home) .main-navigation .navbar-nav > li > a{
    position:relative;

    padding:31px 15px !important;

    background:transparent !important;

    color:#aaaab2 !important;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:13px;
    line-height:1;

    font-weight:600;

    letter-spacing:.15px;

    text-transform:none !important;

    box-shadow:none !important;
}


/* Hover/current */
body:not(.home) .main-navigation .navbar-nav > li:hover > a,
body:not(.home) .main-navigation .navbar-nav > li > a:hover,
body:not(.home) .main-navigation .navbar-nav > li > a:focus,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-item > a,
body:not(.home) .main-navigation .navbar-nav > li.current_page_item > a,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-ancestor > a{
    color:#fff !important;

    background:transparent !important;
}


/* Remove theme white hover */
body:not(.home) .main-navigation .navbar-nav > li:hover,
body:not(.home) .main-navigation .navbar-nav > li:focus,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-item,
body:not(.home) .main-navigation .navbar-nav > li.current_page_item,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-ancestor{
    background:transparent !important;

    box-shadow:none !important;
}


/* Blue underline */
body:not(.home) .main-navigation .navbar-nav > li > a::after{
    content:"";

    position:absolute;

    left:15px;
    right:15px;
    bottom:19px;

    height:2px;

    background:#003da3;

    transform:scaleX(0);

    transform-origin:center;

    transition:transform .25s ease;
}

body:not(.home) .main-navigation .navbar-nav > li:hover > a::after,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-item > a::after,
body:not(.home) .main-navigation .navbar-nav > li.current_page_item > a::after,
body:not(.home) .main-navigation .navbar-nav > li.current-menu-ancestor > a::after{
    transform:scaleX(1);
}


/* ==========================================================
   07. DROPDOWN
   ========================================================== */

body:not(.home) .main-navigation ul li ul.sub-menu{
    min-width:245px;

    padding:8px 0 !important;

    background:#101118 !important;

    border:1px solid rgba(121,121,121,.24) !important;

    border-radius:6px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.48) !important;
}

body:not(.home) .main-navigation ul li ul.sub-menu li{
    border:0 !important;

    background:transparent !important;
}

body:not(.home) .main-navigation ul li ul.sub-menu li a{
    display:block !important;

    width:100% !important;

    padding:11px 18px !important;

    color:#b7b7bf !important;

    background:transparent !important;

    border:0 !important;

    font-size:12px !important;
    line-height:1.45;

    font-weight:500;

    text-transform:none;

    white-space:normal;

    box-shadow:none !important;

    transition:
        color .25s ease,
        background-color .25s ease,
        padding-left .25s ease;
}

body:not(.home) .main-navigation ul li ul.sub-menu li:hover > a,
body:not(.home) .main-navigation ul li ul.sub-menu li a:hover,
body:not(.home) .main-navigation ul li ul.sub-menu li a:focus,
body:not(.home) .main-navigation ul li ul.sub-menu li.current-menu-item > a{
    color:#fff !important;

    background:rgba(0,61,163,.20) !important;

    padding-left:23px !important;
}


/* ==========================================================
   08. START PROJECT BUTTON
   ========================================================== */

body:not(.home) .at-navbar .featured-button{
    float:none !important;

    min-width:184px;

    margin:0 !important;

    padding:15px 20px !important;

    background:#003da3 !important;

    border:1px solid #003da3 !important;

    border-radius:6px !important;

    color:#fff !important;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:11px !important;
    line-height:1;

    font-weight:800;

    letter-spacing:.55px;

    text-align:center;

    text-transform:uppercase;

    box-shadow:
        0 10px 30px rgba(0,61,163,.20);
}

body:not(.home) .at-navbar .featured-button::after{
    content:"↗";

    display:inline-block;

    margin-left:12px;

    font-size:15px;
}

body:not(.home) .at-navbar .featured-button:hover{
    background:#fff !important;

    border-color:#fff !important;

    color:#08090e !important;
}


/* ==========================================================
   09. INNER PAGE BANNER
   ========================================================== */

body:not(.home) .inner-main-title{
    position:relative;

    width:100%;
    height:350px !important;

    margin:0 !important;
    padding:0 !important;

    overflow:hidden;

    background:#08090e !important;
}

body:not(.home) .inner-main-title > img{
    position:absolute;

    inset:0;

    display:block;

    width:100% !important;
    height:100% !important;

    max-width:none !important;

    object-fit:cover;
    object-position:center;

    filter:
        brightness(.52)
        contrast(1.1)
        saturate(.85);
}


/* Banner overlay */
body:not(.home) .inner-main-title::before{
    content:"";

    position:absolute;

    inset:0;

    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(7,8,12,.97) 0%,
            rgba(12,14,20,.78) 38%,
            rgba(12,14,20,.40) 72%,
            rgba(12,14,20,.26) 100%
        ),
        radial-gradient(
            circle at 68% 50%,
            rgba(0,61,163,.20),
            transparent 46%
        );

    pointer-events:none;
}


/* Bottom blue accent */
body:not(.home) .inner-main-title::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:2px;

    z-index:3;

    background:
        linear-gradient(
            90deg,
            #003da3,
            #003da3 28%,
            rgba(0,61,163,.30) 65%,
            transparent
        );
}


/* Banner content */
body:not(.home) .inner-main-title > .container{
    position:relative;

    display:flex;
    align-items:flex-end;

    height:100%;
    max-width:1188px;

    padding-bottom:54px;

    z-index:2;
}

body:not(.home) .inner-main-title .entry-header{
    width:100%;

    margin:0 !important;
    padding:0 !important;
}

body:not(.home) .inner-main-title .entry-title{
    position:relative;

    margin:0 !important;

    padding-top:24px;

    color:#fff !important;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:52px !important;
    line-height:1.05;

    font-weight:800;

    letter-spacing:-2.5px;

    text-align:left !important;

    text-transform:none !important;

    text-shadow:
        0 7px 25px rgba(0,0,0,.35);
}


/* AR CRAFTIX label */
body:not(.home) .inner-main-title .entry-title::before{
    content:"AR CRAFTIX LTD";

    position:absolute;

    top:0;
    left:0;

    color:#6f9ee9;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:9px;
    line-height:1;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;
}


/* ==========================================================
   10. MAIN CONTENT
   ========================================================== */

body:not(.home) #content.site-content{
    width:100%;
    max-width:1188px;

    margin:0 auto !important;

    padding:78px 30px 95px !important;

    background:#181a20;
}

body:not(.home).no-sidebar #primary,
body:not(.home) #primary.content-area{
    width:100% !important;

    max-width:none !important;

    margin:0 !important;
    padding:0 !important;

    float:none !important;
}

body:not(.home) #main.site-main{
    width:100%;

    margin:0 !important;
    padding:0 !important;
}

body:not(.home) #main article,
body:not(.home) #main .content-wrapper{
    margin:0 !important;
    padding:0 !important;

    background:transparent !important;

    border:0;

    box-shadow:none !important;
}

body:not(.home) #main .entry-content{
    width:100%;
    max-width:1050px;

    margin:0 auto;

    padding:0;
}


/* ==========================================================
   11. H1
   ========================================================== */

body:not(.home) .entry-content > h1:first-child{
    position:relative;

    margin:0 0 32px !important;

    padding:0 0 24px;

    color:#fff;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:46px;
    line-height:1.12;

    font-weight:800;

    letter-spacing:-2px;

    text-transform:none;
}

body:not(.home) .entry-content > h1:first-child::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:70px;
    height:3px;

    background:#003da3;
}


/* ==========================================================
   12. H2
   ========================================================== */

body:not(.home) .entry-content h2{
    position:relative;

    margin:54px 0 20px !important;

    padding-left:20px;

    color:#f4f4f6;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:31px;
    line-height:1.25;

    font-weight:750;

    letter-spacing:-1.1px;

    text-transform:none;
}

body:not(.home) .entry-content h2::before{
    content:"";

    position:absolute;

    left:0;
    top:.17em;

    width:3px;
    height:.82em;

    background:#003da3;
}


/* ==========================================================
   13. H3 - H6
   ========================================================== */

body:not(.home) .entry-content h3{
    margin:34px 0 15px !important;

    color:#e7e8ec;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:21px;
    line-height:1.4;

    font-weight:700;

    letter-spacing:-.35px;

    text-transform:none;
}

body:not(.home) .entry-content h4{
    margin:28px 0 12px;

    color:#e2e3e7;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:18px;

    font-weight:700;
}

body:not(.home) .entry-content h5,
body:not(.home) .entry-content h6{
    margin:24px 0 10px;

    color:#dedfe4;

    font-family:'Montserrat', Arial, sans-serif;

    font-weight:700;
}


/* ==========================================================
   14. PARAGRAPHS
   ========================================================== */

body:not(.home) .entry-content p{
    margin:0 0 18px;

    color:#b3b6bf;

    font-size:15px;
    line-height:1.9;

    font-weight:400;
}

body:not(.home) .entry-content p strong,
body:not(.home) .entry-content li strong{
    color:#f1f1f3;

    font-weight:700;
}


/* ==========================================================
   15. CONTENT LINKS
   ========================================================== */

body:not(.home) .entry-content a{
    color:#5d91e8;

    font-weight:600;

    text-decoration:none;

    border-bottom:1px solid rgba(0,61,163,.65);

    transition:
        color .2s ease,
        border-color .2s ease;
}

body:not(.home) .entry-content a:hover,
body:not(.home) .entry-content a:focus{
    color:#fff;

    border-bottom-color:#003da3;
}


/* ==========================================================
   16. UNORDERED LISTS
   ========================================================== */

body:not(.home) .entry-content ul{
    margin:20px 0 30px !important;

    padding:0 !important;

    list-style:none !important;

    border-top:
        1px solid rgba(121,121,121,.26);
}

body:not(.home) .entry-content ul > li{
    position:relative;

    margin:0;

    padding:13px 15px 13px 32px;

    color:#b2b5bd;

    font-size:14px;
    line-height:1.7;

    border-bottom:
        1px solid rgba(121,121,121,.22);
}

body:not(.home) .entry-content ul > li::before{
    content:"✦";

    position:absolute;

    left:7px;
    top:14px;

    color:#003da3;

    font-size:9px;
}


/* ==========================================================
   17. ORDERED LISTS
   ========================================================== */

body:not(.home) .entry-content ol{
    counter-reset:arc-inner-counter;

    margin:20px 0 32px !important;

    padding:0 !important;

    list-style:none !important;

    border-top:
        1px solid rgba(121,121,121,.26);
}

body:not(.home) .entry-content ol > li{
    counter-increment:arc-inner-counter;

    position:relative;

    margin:0;

    padding:14px 15px 14px 45px;

    color:#b2b5bd;

    font-size:14px;
    line-height:1.7;

    border-bottom:
        1px solid rgba(121,121,121,.22);
}

body:not(.home) .entry-content ol > li::before{
    content:
        counter(arc-inner-counter, decimal-leading-zero);

    position:absolute;

    left:5px;
    top:15px;

    color:#5d91e8;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:10px;

    font-weight:800;
}


/* ==========================================================
   18. BLOCKQUOTE
   ========================================================== */

body:not(.home) .entry-content blockquote{
    margin:35px 0;

    padding:25px 30px 25px 34px;

    background:#21242b;

    border:0;
    border-left:3px solid #003da3;

    color:#e0e1e5;

    font-family:Georgia, "Times New Roman", serif;

    font-size:18px;
    line-height:1.7;

    font-style:italic;
}


/* ==========================================================
   19. IMAGES
   ========================================================== */

body:not(.home) .entry-content img{
    max-width:100%;
    height:auto;

    border-radius:4px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.30);
}


/* ==========================================================
   20. HR
   ========================================================== */

body:not(.home) .entry-content hr{
    height:1px;

    margin:45px 0;

    background:
        rgba(121,121,121,.28);

    border:0;
}


/* ==========================================================
   21. TABLES
   ========================================================== */

body:not(.home) .entry-content table{
    width:100%;

    margin:30px 0;

    border-collapse:collapse;

    background:#202229;

    border:
        1px solid rgba(121,121,121,.26);
}

body:not(.home) .entry-content table th{
    padding:15px 18px;

    background:#0c0d12;

    border:1px solid #30323a;

    color:#fff;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:13px;

    font-weight:700;

    text-align:left;
}

body:not(.home) .entry-content table td{
    padding:14px 18px;

    color:#bbbcc4;

    font-size:14px;
    line-height:1.6;

    border:
        1px solid rgba(121,121,121,.20);
}

body:not(.home) .entry-content table tr:nth-child(even) td{
    background:#25272e;
}


/* ==========================================================
   22. BUTTONS
   ========================================================== */

body:not(.home) .entry-content .btn,
body:not(.home) .entry-content button,
body:not(.home) .entry-content input[type="submit"]{
    display:inline-block;

    padding:14px 23px;

    background:#003da3 !important;

    border:1px solid #003da3 !important;

    border-radius:4px;

    color:#fff !important;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:11px;

    font-weight:800;

    letter-spacing:.5px;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:
        0 10px 25px rgba(0,61,163,.22);
}

body:not(.home) .entry-content .btn:hover,
body:not(.home) .entry-content button:hover,
body:not(.home) .entry-content input[type="submit"]:hover{
    background:#fff !important;

    border-color:#fff !important;

    color:#11131a !important;
}


/* ==========================================================
   23. FORMS
   ========================================================== */

body:not(.home) .entry-content form{
    max-width:850px;

    margin:25px 0;
}

body:not(.home) .entry-content form label{
    display:block;

    width:100%;

    margin-bottom:7px;

    color:#e7e8eb;

    font-family:'Montserrat', Arial, sans-serif;

    font-size:12px;

    font-weight:700;
}

body:not(.home) .entry-content input[type="text"],
body:not(.home) .entry-content input[type="email"],
body:not(.home) .entry-content input[type="tel"],
body:not(.home) .entry-content input[type="url"],
body:not(.home) .entry-content input[type="number"],
body:not(.home) .entry-content select,
body:not(.home) .entry-content textarea{
    width:100%;
    max-width:100%;

    margin-top:6px;

    padding:12px 14px;

    background:#202229;

    border:
        1px solid rgba(121,121,121,.35);

    border-radius:4px;

    color:#fff;

    outline:none;

    box-shadow:none;
}

body:not(.home) .entry-content input[type="text"],
body:not(.home) .entry-content input[type="email"],
body:not(.home) .entry-content input[type="tel"],
body:not(.home) .entry-content input[type="url"],
body:not(.home) .entry-content input[type="number"],
body:not(.home) .entry-content select{
    min-height:48px;
}

body:not(.home) .entry-content textarea{
    min-height:170px;

    resize:vertical;
}

body:not(.home) .entry-content input:focus,
body:not(.home) .entry-content select:focus,
body:not(.home) .entry-content textarea:focus{
    border-color:#003da3;

    box-shadow:
        0 0 0 3px rgba(0,61,163,.18);
}


/* ==========================================================
   24. HIDE WORDPRESS EDIT LINK
   ========================================================== */

body:not(.home) .entry-footer .edit-link{
    display:none !important;
}


/* ==========================================================
   25. TABLET NAVIGATION
   ========================================================== */

@media (min-width:768px) and (max-width:1024px){

    body:not(.home) #navbar > .container{
        width:96%;
    }

    body:not(.home) .navbar-header{
        min-height:72px;
    }

    body:not(.home) .custom-logo-link img{
        max-width:125px !important;
    }

    body:not(.home) .at-beside-navbar-header{
        display:flex !important;

        width:auto !important;

        float:none !important;
    }

    body:not(.home) .main-navigation{
        display:block !important;

        width:auto !important;

        margin-left:auto;
        margin-right:auto;

        float:none !important;

        background:transparent !important;
    }

    body:not(.home) .navbar-nav{
        width:auto !important;

        float:none !important;
    }

    body:not(.home) .main-navigation li{
        display:inline-block !important;

        width:auto !important;

        float:none !important;

        border:0 !important;
    }

    body:not(.home) .main-navigation > ul > li > a,
    body:not(.home) .main-navigation .navbar-nav > li > a{
        padding:29px 7px !important;

        font-size:11px;
    }

    body:not(.home) .main-navigation ul ul{
        display:none;

        position:absolute !important;
    }

    body:not(.home) .main-navigation li:hover > ul,
    body:not(.home) .main-navigation li:focus-within > ul{
        display:block;
    }

    body:not(.home) .main-navigation ul ul li{
        display:block !important;

        width:100% !important;
    }

    body:not(.home) .at-navbar .featured-button{
        min-width:135px;

        padding:13px 12px !important;

        font-size:9px !important;
    }

}


/* ==========================================================
   26. TABLET CONTENT
   ========================================================== */

@media (max-width:991px){
body:not(.home) .inner-main-title .entry-header {
    padding: 0px 20px !important;
}
	
    body:not(.home) .inner-main-title{
        height:300px !important;
    }

    body:not(.home) .inner-main-title .entry-title{
        font-size:45px !important;
    }

    body:not(.home) #content.site-content{
        padding:65px 28px 80px !important;
    }

    body:not(.home) .entry-content > h1:first-child{
        font-size:39px;
    }

    body:not(.home) .entry-content h2{
        font-size:28px;
    }

    body:not(.home) .entry-content p{
        font-size:14px;
    }

}


/* ==========================================================
   27. MOBILE NAVBAR
   ========================================================== */

@media (max-width:767px){

    body.admin-bar:not(.home) .navbar.at-sticky{
        top:0 !important;
    }

    body:not(.home).menu-default .navbar,
    body:not(.home).menu-default.header-enable-top .navbar,
    body:not(.home) .navbar.at-navbar{
        min-height:70px;
    }

    body:not(.home) #navbar > .container{
        display:block;

        width:100%;

        min-height:70px;

        padding-left:20px;
        padding-right:20px;
    }

    body:not(.home) .navbar-header{
        display:block !important;

        width:100% !important;

        min-height:70px !important;
    }

    body:not(.home) .navbar-header .custom-logo-link{
        display:flex;

        align-items:center;

        min-height:70px;

        float:left !important;
    }

    body:not(.home) .custom-logo-link img{
        max-width:145px !important;
        max-height:40px !important;
    }

    body:not(.home) .navbar .navbar-toggle{
        position:relative !important;

        display:block;

        float:right !important;

        margin:8px 15px 8px 0 !important;

        padding:9px 10px !important;

        background:transparent !important;

        border:1px solid transparent !important;

        box-shadow:none !important;
    }

    body:not(.home) .navbar .navbar-toggle i{
        color:#fff !important;

        font-size:20px;
    }

    body:not(.home) .search-woo{
        display:none !important;
    }

    body:not(.home) .at-beside-navbar-header{
        width:100% !important;

        float:none !important;
    }

    body:not(.home) .main-navigation{
        width:100% !important;

        float:none !important;

        background:#0d0e14 !important;

        border-top:
            1px solid rgba(121,121,121,.18);

        box-shadow:
            0 15px 35px rgba(0,0,0,.30) !important;
    }

    body:not(.home) .main-navigation ul{
        width:100% !important;
    }

    body:not(.home) .main-navigation .navbar-nav > li{
        display:block !important;

        width:100% !important;

        background:transparent !important;

        border-top:
            1px solid rgba(121,121,121,.12) !important;
    }

    body:not(.home) .main-navigation .navbar-nav > li > a{
        position:relative;

        padding:14px 20px !important;

        background:transparent !important;

        color:#d0d0d6 !important;

        font-size:13px;
        line-height:1.4;
    }

    body:not(.home)
    .main-navigation
    .navbar-nav > li > a::after{
        display:none;
    }

    body:not(.home)
    .main-navigation
    .navbar-nav > li > a::before{
        content:"";

        position:absolute;

        left:0;
        top:50%;

        width:3px;
        height:0;

        background:#003da3;

        transform:translateY(-50%);

        transition:height .2s ease;
    }

    body:not(.home)
    .main-navigation
    .navbar-nav > li:hover > a::before,

    body:not(.home)
    .main-navigation
    .navbar-nav > li.current-menu-item > a::before,

    body:not(.home)
    .main-navigation
    .navbar-nav > li.current_page_item > a::before,

    body:not(.home)
    .main-navigation
    .navbar-nav > li.current-menu-ancestor > a::before{
        height:22px;
    }


    /* Remove Bootstrap white hover */
    body:not(.home) .navbar-default .navbar-nav > li > a:hover,
    body:not(.home) .navbar-default .navbar-nav > li > a:focus,
    body:not(.home) .navbar-default .navbar-nav > .active > a,
    body:not(.home) .navbar-default .navbar-nav > .active > a:hover,
    body:not(.home) .navbar-default .navbar-nav > .active > a:focus,
    body:not(.home) .navbar-default .navbar-nav > .open > a,
    body:not(.home) .navbar-default .navbar-nav > .open > a:hover,
    body:not(.home) .navbar-default .navbar-nav > .open > a:focus{
        background:transparent !important;

        color:#fff !important;
    }


    /* Mobile submenu */
    body:not(.home) .main-navigation ul.sub-menu{
        position:static !important;

        display:block !important;

        width:100% !important;
        min-width:0 !important;

        padding:0 0 8px 15px !important;

        background:#08090e !important;

        border:0 !important;

        border-radius:0;

        box-shadow:none !important;
    }

    body:not(.home) .main-navigation ul.sub-menu li a{
        padding:10px 20px 10px 35px !important;

        color:#bbbcc5 !important;

        background:transparent !important;

        border:0 !important;
    }

    body:not(.home) .main-navigation ul.sub-menu li a:hover,
    body:not(.home) .main-navigation ul.sub-menu li.current-menu-item > a{
        color:#fff !important;

        background:rgba(0,61,163,.18) !important;
    }

}


/* ==========================================================
   28. MOBILE HERO
   ========================================================== */

@media (max-width:767px){

    body:not(.home) .inner-main-title{
        height:245px !important;
    }

    body:not(.home) .inner-main-title > .container{
        padding:0 22px 38px;
    }

    body:not(.home) .inner-main-title .entry-title{
        font-size:38px !important;

        letter-spacing:-1.5px;
    }

    body:not(.home) .inner-main-title .entry-title::before{
        font-size:8px;

        letter-spacing:2.2px;
    }

}


/* ==========================================================
   29. MOBILE CONTENT
   ========================================================== */

@media (max-width:767px){

    body:not(.home) #content.site-content{
        padding:50px 22px 65px !important;
    }

    body:not(.home) #main .entry-content{
        max-width:100%;
    }

    body:not(.home) .entry-content > h1:first-child{
        margin-bottom:25px !important;

        padding-bottom:19px;

        font-size:34px;

        line-height:1.15;

        letter-spacing:-1.4px;
    }

    body:not(.home) .entry-content h2{
        margin-top:42px !important;

        padding-left:16px;

        font-size:25px;

        line-height:1.28;

        letter-spacing:-.8px;
    }

    body:not(.home) .entry-content h3{
        margin-top:28px !important;

        font-size:19px;
    }

    body:not(.home) .entry-content p{
        margin-bottom:16px;

        font-size:14px;
        line-height:1.8;
    }

    body:not(.home) .entry-content ul > li,
    body:not(.home) .entry-content ol > li{
        font-size:13px;
    }

    body:not(.home) .entry-content table{
        display:block;

        max-width:100%;

        overflow-x:auto;

        white-space:nowrap;
    }

    body:not(.home) .entry-content blockquote{
        padding:21px 22px;

        font-size:16px;
    }

}


/* ==========================================================
   30. EXTRA SMALL
   ========================================================== */

@media (max-width:480px){

    body:not(.home) #navbar > .container{
        padding-left:17px;
        padding-right:17px;
    }

    body:not(.home) .custom-logo-link img{
        max-width:130px !important;
    }

    body:not(.home) .inner-main-title{
        height:220px !important;
    }

    body:not(.home) .inner-main-title > .container{
        padding:0 18px 32px;
    }

    body:not(.home) .inner-main-title .entry-title{
        font-size:33px !important;
    }

    body:not(.home) #content.site-content{
        padding:43px 18px 58px !important;
    }

    body:not(.home) .entry-content > h1:first-child{
        font-size:30px;
    }

    body:not(.home) .entry-content h2{
        font-size:23px;
    }

    body:not(.home) .entry-content h3{
        font-size:18px;
    }

    body:not(.home) .entry-content p{
        font-size:13.5px;
    }

}

