@media (max-width: 767px) {
    .pure-css-nav {
        width: 100%;
    }

    .pure-css-nav > nav ul li a {
        color: #000;
    }

    .pure-css-nav > nav > ul > li {
        margin-right: 1px;
    }

    /* Level 1 */
    .pure-css-nav > nav ul li {
        /*background-color: #ffffff;*/
    }

    .pure-css-nav > nav ul li a {
        font-size: 1rem;
        padding: 13px 20px;
    }

    /* Level 2 and beyond */
    .pure-css-nav > nav ul ul {
        background-color: #ffffff;
    }

    .pure-css-nav > nav ul ul li {
        height: 40px;
        float: left;
        /* min-width: 150px; */
        width: 20%;
        height: 100%;
    }

    .pure-css-nav > nav ul ul li a {
        font-size: 0.9rem;
        padding: 8px 20px;
        height: 40px;
    }

    /* Hover colors */
    .pure-css-nav > nav ul li:hover,
    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2),
    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2) {
        background-color: #ffffff;
    }

    /* Font icon arrow colors */
    .pure-css-nav > nav > ul > li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav > nav ul li li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav.mobile-nav input:checked + label + nav {
        background-color: rgba(255, 255, 255, 0.9);
    }

    .pure-css-nav > nav {
        width: 100%;
    }

    .pure-css-nav > nav ul,
    .pure-css-nav > nav li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pure-css-nav > nav li:hover {
        cursor: pointer;
    }

    .pure-css-nav > nav a {
        text-decoration: none;
    }

    /* Level 1 */
    .pure-css-nav > nav ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
    }

    .pure-css-nav > nav ul li {
        overflow: hidden;
        white-space: nowrap;
        text-align: left;
        height: 80px;
    }

    .pure-css-nav > nav ul li:hover {
        overflow: visible;
        /*background: linear-gradient(to right, #006ebb, #0093dc);*/
        /*color: #fff;*/
        /*opacity: 0.9;*/
        background: #f6f6f2;
    }

    .pure-css-nav > nav ul > li {
        /*position: relative;*/
    }

    .pure-css-nav > nav ul li a {
        display: block;
        height: 100%;
        min-width: 100px;
        color: #000 !important;
        font-size: 16px;
        font-weight: 300;
    }

    /* Level 2 */
    .pure-css-nav > nav ul ul {
        visibility: hidden;
        position: absolute;
        z-index: 1;
        display: block;
        border-radius: 0px 0px 5px 5px;
        background: #f6f6f2;
        top: 80px;
        left: 0;
        height: 180px;
    }

    .pure-css-nav > nav ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: #efede3;
    }

    /* Level 3 */
    .pure-css-nav > nav ul ul ul {
        top: 0;
        left: 100%;
    }

    .pure-css-nav > nav ul ul ul {
        margin-top: 5px;
    }

    /* ---------- */
    /* Transitions */
    .pure-css-nav > nav ul,
    .pure-css-nav > nav ul li,
    .pure-css-nav > nav ul li a,
    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        /*transition: all 200ms linear;*/
    }

    .pure-css-nav.mobile-nav {
        transition: all 0.5s linear;
    }

    .pure-css-nav > nav ul li a {
        display: flex;
        align-items: center;
    }

    .pure-css-nav > nav ul li:hover {
        /*background: #fff;*/
    }

    .pure-css-nav > nav ul li:hover a {
        overflow: visible;
        /* background: linear-gradient(to right, #006ebb, #0093dc); */
        /* color: #fff; */
        /* opacity: 0.9; */
        /*background: #fff;*/
        height: 100%;
        /* width: 20%; */
    }

    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 5px;
        margin-left: 10px;
        opacity: 0.50;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 10px 5px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3E%3Cpath opacity='.5' d='M1 1v1h1v1h1v1h1v1h2V4h1V3h1V2h1V1h1V0H0v1z'/%3E%3Cpath d='M2 1v1h1v1h1v1h2V3h1V2h1V1h1V0H1v1z'/%3E%3C/svg%3E");
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before,
    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        content: '';
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before {
        order: 1;
        margin-left: 10px;
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        order: 2;
        margin-left: auto;
    }

    .pure-css-nav.nav-font-icons ul li a:first-child:nth-last-child(2):after {
        content: '\f078'; /* arrow: down */
        font-family: 'FontAwesome';
        opacity: 1;
        width: auto;
        height: auto;
        background: none;
    }

    .pure-css-nav.nav-font-icons ul ul li > a:first-child:nth-last-child(2):after {
        content: '\f054';
    }

    .pure-css-nav.nav-justified > nav > ul {
        width: 100%;
    }

    .pure-css-nav.nav-justified > nav > ul > li {
        flex: 1 1 auto;
    }

    .pure-css-nav.nav-justified > nav > ul > li > a {
        justify-content: center;
    }

    .pure-css-nav.nav-vertical nav > ul {
        display: block;
        width: 200px;
    }

    .pure-css-nav.nav-vertical nav > ul li a:first-child:nth-last-child(2):after {
        margin-left: auto;
    }

    .pure-css-nav.nav-vertical nav > ul ul {
        left: 100%;
        top: 0;
        margin-top: 5px;
    }

    .pure-css-nav.nav-vertical nav > ul > li {
        margin-bottom: 1px;
    }

    /* Mobile Navigation */
    .pure-css-nav.mobile-nav input {
        display: none;
    }

    .pure-css-nav.mobile-nav input + label {
        margin-bottom: 0;
        z-index: 999;
    }

    .pure-css-nav.mobile-nav input + label + nav > ul > li {
        margin-right: 1px;
    }

    .pure-css-nav.mobile-nav input:checked + label {
        position: absolute;
        top: 8px;
        right: 10px;
    }

    .pure-css-nav.mobile-nav input:checked + label i:before {
        content: '\f00d';
    }

    .pure-css-nav a:not([href]),
    .pure-css-nav a[href='']:hover,
    .pure-css-nav a[href='#']:hover,
    .pure-css-nav a[href='']:active,
    .pure-css-nav a[href='#']:active {
        pointer-events: none;
    }

    /* Content Styles */
    header, footer {
        /*background: #eee;*/
        /*padding: 20px;*/
    }

    header, header a,
    footer, footer a {
        color: rgba(0, 0, 0, 0.7);
    }

    header a, footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
    }

    header a:hover, footer a:hover {
        /*color: #222;*/
        /*background: #fff;*/
    }

    footer {
        font-size: 25px;
    }

    footer > div {
        align-items: center;
        justify-content: center;
    }

    /* Sticky Footer */
    body {
        display: flex;
        flex-direction: column;
    }

    #content {
        flex: 1 0 auto;
    }

    footer {
        flex-shrink: 0;
    }

    code {
        font-size: 0.8rem !important;
    }

    .second-nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100px;
    }

    .second-nav-item img {
        display: block;
        width: 75px;
        height: auto;
        margin: auto;
    }

    .second-nav-item span {
        display: block;
        text-align: center;
    }

    .menu-btn {
        width: 30px;
        position: absolute;
        right: 15px;
        top: 24px;
    }

    .menu-btn img {
        width: 100%;
    }

    .phone-menu {
        width: 100%;
        position: fixed;
        background: #fff;
        z-index: 1001;
        top: 80px;
        left: 0;
        border-radius: 0 0 28px 28px;
        box-shadow: rgba(0, 0, 0, 0.04) -0.5px -0.5px 0px 0px inset,
        rgba(0, 0, 0, 0.04) -2px -2px 4px 0px inset,
        rgb(255, 255, 255) 2px 2px 2px 0px inset,
        rgba(15, 14, 41, 0.067) 0px 0.78363px 1.72399px -0.39286px,
        rgba(15, 14, 41, 0.067) 0px 1.91965px 4.22322px -0.78571px,
        rgba(15, 14, 41, 0.067) 0px 3.63745px 8.0024px -1.17857px,
        rgba(15, 14, 41, 0.063) 0px 6.35004px 13.9701px -1.57143px,
        rgba(15, 14, 41, 0.063) 0px 11.0519px 24.3141px -1.96429px,
        rgba(15, 14, 41, 0.06) 0px 20.2428px 44.5342px -2.35714px,
        rgba(15, 14, 41, 0.055) 0px 40px 88px -2.75px;
    }

    .phone-menu > nav > div > ul {
        list-style: none;
        padding: 10px;
        margin: 0;
    }

    .phone-menu > nav > div > ul > li {
        border-bottom: 1px #ccc solid;
        padding: 10px 0;
    }

    .phone-menu > nav > div > ul > li:last-child {
        border-bottom: 0;
    }

    .phone-menu > nav > div > ul > li > ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .phone-menu > nav > div > ul > li > ul > li {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-menu > nav > div > ul > li > ul > li img {
        width: 50px;
    }

    .phone-menu > nav > div > ul > li > ul > li span {
        height: 40px;
    }

    .logo-box {
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 1365px) {
    .pure-css-nav {
        width: 100%;
    }

    .pure-css-nav > nav ul li a {
        color: #000;
    }

    .pure-css-nav > nav > ul > li {
        margin-right: 1px;
    }

    /* Level 1 */
    .pure-css-nav > nav ul li {
        /*background-color: #ffffff;*/
    }

    .pure-css-nav > nav ul li a {
        font-size: 1rem;
        padding: 13px 20px;
    }

    /* Level 2 and beyond */
    .pure-css-nav > nav ul ul {
        background-color: #ffffff;
    }

    .pure-css-nav > nav ul ul li {
        height: 40px;
        float: left;
        /* min-width: 150px; */
        width: 20%;
        height: 100%;
    }

    .pure-css-nav > nav ul ul li a {
        font-size: 0.9rem;
        padding: 8px 20px;
        height: 40px;
    }

    /* Hover colors */
    .pure-css-nav > nav ul li:hover,
    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2),
    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2) {
        background-color: #ffffff;
    }

    /* Font icon arrow colors */
    .pure-css-nav > nav > ul > li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav > nav ul li li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav.mobile-nav input:checked + label + nav {
        background-color: rgba(255, 255, 255, 0.9);
    }

    .pure-css-nav > nav {
        width: 100%;
    }

    .pure-css-nav > nav ul,
    .pure-css-nav > nav li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pure-css-nav > nav li:hover {
        cursor: pointer;
    }

    .pure-css-nav > nav a {
        text-decoration: none;
    }

    /* Level 1 */
    .pure-css-nav > nav ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
    }

    .pure-css-nav > nav ul li {
        overflow: hidden;
        white-space: nowrap;
        text-align: left;
        height: 80px;
    }

    .pure-css-nav > nav ul li:hover {
        overflow: visible;
        /*background: linear-gradient(to right, #006ebb, #0093dc);*/
        /*color: #fff;*/
        /*opacity: 0.9;*/
        background: #f6f6f2;
    }

    .pure-css-nav > nav ul > li {
        /*position: relative;*/
    }

    .pure-css-nav > nav ul li a {
        display: block;
        height: 100%;
        min-width: 100px;
        color: #000 !important;
        font-size: 16px;
        font-weight: 300;
    }

    /* Level 2 */
    .pure-css-nav > nav ul ul {
        visibility: hidden;
        position: absolute;
        z-index: 1;
        display: block;
        border-radius: 0px 0px 5px 5px;
        background: #f6f6f2;
        top: 80px;
        left: 0;
        height: 180px;
    }

    .pure-css-nav > nav ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: #efede3;
    }

    /* Level 3 */
    .pure-css-nav > nav ul ul ul {
        top: 0;
        left: 100%;
    }

    .pure-css-nav > nav ul ul ul {
        margin-top: 5px;
    }

    /* ---------- */
    /* Transitions */
    .pure-css-nav > nav ul,
    .pure-css-nav > nav ul li,
    .pure-css-nav > nav ul li a,
    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        /*transition: all 200ms linear;*/
    }

    .pure-css-nav.mobile-nav {
        transition: all 0.5s linear;
    }

    .pure-css-nav > nav ul li a {
        display: flex;
        align-items: center;
    }

    .pure-css-nav > nav ul li:hover {
        /*background: #fff;*/
    }

    .pure-css-nav > nav ul li:hover a {
        overflow: visible;
        /* background: linear-gradient(to right, #006ebb, #0093dc); */
        /* color: #fff; */
        /* opacity: 0.9; */
        /*background: #fff;*/
        height: 100%;
        /* width: 20%; */
    }

    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 5px;
        margin-left: 10px;
        opacity: 0.50;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 10px 5px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3E%3Cpath opacity='.5' d='M1 1v1h1v1h1v1h1v1h2V4h1V3h1V2h1V1h1V0H0v1z'/%3E%3Cpath d='M2 1v1h1v1h1v1h2V3h1V2h1V1h1V0H1v1z'/%3E%3C/svg%3E");
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before,
    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        content: '';
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before {
        order: 1;
        margin-left: 10px;
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        order: 2;
        margin-left: auto;
    }

    .pure-css-nav.nav-font-icons ul li a:first-child:nth-last-child(2):after {
        content: '\f078'; /* arrow: down */
        font-family: 'FontAwesome';
        opacity: 1;
        width: auto;
        height: auto;
        background: none;
    }

    .pure-css-nav.nav-font-icons ul ul li > a:first-child:nth-last-child(2):after {
        content: '\f054';
    }

    .pure-css-nav.nav-justified > nav > ul {
        width: 100%;
    }

    .pure-css-nav.nav-justified > nav > ul > li {
        flex: 1 1 auto;
    }

    .pure-css-nav.nav-justified > nav > ul > li > a {
        justify-content: center;
    }

    .pure-css-nav.nav-vertical nav > ul {
        display: block;
        width: 200px;
    }

    .pure-css-nav.nav-vertical nav > ul li a:first-child:nth-last-child(2):after {
        margin-left: auto;
    }

    .pure-css-nav.nav-vertical nav > ul ul {
        left: 100%;
        top: 0;
        margin-top: 5px;
    }

    .pure-css-nav.nav-vertical nav > ul > li {
        margin-bottom: 1px;
    }

    /* Mobile Navigation */
    .pure-css-nav.mobile-nav input {
        display: none;
    }

    .pure-css-nav.mobile-nav input + label {
        margin-bottom: 0;
        z-index: 999;
    }

    .pure-css-nav.mobile-nav input + label + nav > ul > li {
        margin-right: 1px;
    }

    .pure-css-nav.mobile-nav input:checked + label {
        position: absolute;
        top: 8px;
        right: 10px;
    }

    .pure-css-nav.mobile-nav input:checked + label i:before {
        content: '\f00d';
    }

    .pure-css-nav a:not([href]),
    .pure-css-nav a[href='']:hover,
    .pure-css-nav a[href='#']:hover,
    .pure-css-nav a[href='']:active,
    .pure-css-nav a[href='#']:active {
        pointer-events: none;
    }

    /* Content Styles */
    header, footer {
        /*background: #eee;*/
        /*padding: 20px;*/
    }

    header, header a,
    footer, footer a {
        color: rgba(0, 0, 0, 0.7);
    }

    header a, footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
    }

    header a:hover, footer a:hover {
        /*color: #222;*/
        /*background: #fff;*/
    }

    footer {
        font-size: 25px;
    }

    footer > div {
        align-items: center;
        justify-content: center;
    }

    /* Sticky Footer */
    body {
        display: flex;
        flex-direction: column;
    }

    #content {
        flex: 1 0 auto;
    }

    footer {
        flex-shrink: 0;
    }

    code {
        font-size: 0.8rem !important;
    }

    .second-nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100px;
    }

    .second-nav-item img {
        display: block;
        width: 75px;
        height: auto;
        margin: auto;
    }

    .second-nav-item span {
        display: block;
        text-align: center;
    }

    .second-nav {
        box-shadow: 0 0 22px rgb(0 0 0 / 10%);
    }

    .logo-box {
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
    }
}

@media (min-width: 1366px) {
    .pure-css-nav {
        width: 100%;
    }

    .pure-css-nav > nav ul li a {
        color: #000;
    }

    .pure-css-nav > nav > ul > li {
        margin-right: 1px;
    }

    /* Level 1 */
    .pure-css-nav > nav ul li {
        /*background-color: #ffffff;*/
    }

    .pure-css-nav > nav ul li a {
        font-size: 1rem;
        padding: 13px 20px;
    }

    /* Level 2 and beyond */
    .pure-css-nav > nav ul ul {
        background-color: #ffffff;
    }

    .pure-css-nav > nav ul ul li {
        height: 40px;
        float: left;
        /* min-width: 150px; */
        width: 20%;
        height: 100%;
    }

    .pure-css-nav > nav ul ul li a {
        font-size: 0.9rem;
        padding: 8px 20px;
        height: 40px;
    }

    /* Hover colors */
    .pure-css-nav > nav ul li:hover,
    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2),
    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2) {
        background-color: #ffffff;
    }

    /* Font icon arrow colors */
    .pure-css-nav > nav > ul > li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav > ul > li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav > nav ul li li > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.30);
    }

    .pure-css-nav > nav ul li li:hover > a:first-child:nth-last-child(2):after {
        color: rgba(0, 0, 0, 0.60);
    }

    .pure-css-nav.mobile-nav input:checked + label + nav {
        background-color: rgba(255, 255, 255, 0.9);
    }

    .pure-css-nav > nav {
        width: 100%;
    }

    .pure-css-nav > nav ul,
    .pure-css-nav > nav li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pure-css-nav > nav li:hover {
        cursor: pointer;
    }

    .pure-css-nav > nav a {
        text-decoration: none;
    }

    /* Level 1 */
    .pure-css-nav > nav ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
    }

    .pure-css-nav > nav ul li {
        overflow: hidden;
        white-space: nowrap;
        text-align: left;
        height: 80px;
    }

    .pure-css-nav > nav ul li:hover {
        overflow: visible;
        /*background: linear-gradient(to right, #006ebb, #0093dc);*/
        /*color: #fff;*/
        /*opacity: 0.9;*/
        background: #f6f6f2;
    }

    .pure-css-nav > nav ul > li {
        /*position: relative;*/
    }

    .pure-css-nav > nav ul li a {
        display: block;
        height: 100%;
        min-width: 100px;
        color: #000 !important;
        font-size: 16px;
        font-weight: 300;
    }

    /* Level 2 */
    .pure-css-nav > nav ul ul {
        visibility: hidden;
        position: absolute;
        z-index: 1;
        display: block;
        border-radius: 0px 0px 5px 5px;
        background: #f6f6f2;
        top: 80px;
        left: 0;
        height: 180px;
    }

    .pure-css-nav > nav ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: #efede3;
    }

    /* Level 3 */
    .pure-css-nav > nav ul ul ul {
        top: 0;
        left: 100%;
    }

    .pure-css-nav > nav ul ul ul {
        margin-top: 5px;
    }

    /* ---------- */
    /* Transitions */
    .pure-css-nav > nav ul,
    .pure-css-nav > nav ul li,
    .pure-css-nav > nav ul li a,
    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        /*transition: all 200ms linear;*/
    }

    .pure-css-nav.mobile-nav {
        transition: all 0.5s linear;
    }

    .pure-css-nav > nav ul li a {
        display: flex;
        align-items: center;
    }

    .pure-css-nav > nav ul li:hover {
        /*background: #fff;*/
    }

    .pure-css-nav > nav ul li:hover a {
        overflow: visible;
        /* background: linear-gradient(to right, #006ebb, #0093dc); */
        /* color: #fff; */
        /* opacity: 0.9; */
        /*background: #fff;*/
        height: 100%;
        /* width: 20%; */
    }

    .pure-css-nav > nav ul li a:first-child:nth-last-child(2):after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 5px;
        margin-left: 10px;
        opacity: 0.50;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 10px 5px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3E%3Cpath opacity='.5' d='M1 1v1h1v1h1v1h1v1h2V4h1V3h1V2h1V1h1V0H0v1z'/%3E%3Cpath d='M2 1v1h1v1h1v1h2V3h1V2h1V1h1V0H1v1z'/%3E%3C/svg%3E");
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before,
    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        content: '';
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):before {
        order: 1;
        margin-left: 10px;
    }

    .pure-css-nav > nav ul ul li a:first-child:nth-last-child(2):after {
        order: 2;
        margin-left: auto;
    }

    .pure-css-nav.nav-font-icons ul li a:first-child:nth-last-child(2):after {
        content: '\f078'; /* arrow: down */
        font-family: 'FontAwesome';
        opacity: 1;
        width: auto;
        height: auto;
        background: none;
    }

    .pure-css-nav.nav-font-icons ul ul li > a:first-child:nth-last-child(2):after {
        content: '\f054';
    }

    .pure-css-nav.nav-justified > nav > ul {
        width: 100%;
    }

    .pure-css-nav.nav-justified > nav > ul > li {
        flex: 1 1 auto;
    }

    .pure-css-nav.nav-justified > nav > ul > li > a {
        justify-content: center;
    }

    .pure-css-nav.nav-vertical nav > ul {
        display: block;
        width: 200px;
    }

    .pure-css-nav.nav-vertical nav > ul li a:first-child:nth-last-child(2):after {
        margin-left: auto;
    }

    .pure-css-nav.nav-vertical nav > ul ul {
        left: 100%;
        top: 0;
        margin-top: 5px;
    }

    .pure-css-nav.nav-vertical nav > ul > li {
        margin-bottom: 1px;
    }

    /* Mobile Navigation */
    .pure-css-nav.mobile-nav input {
        display: none;
    }

    .pure-css-nav.mobile-nav input + label {
        margin-bottom: 0;
        z-index: 999;
    }

    .pure-css-nav.mobile-nav input + label + nav > ul > li {
        margin-right: 1px;
    }

    .pure-css-nav.mobile-nav input:checked + label {
        position: absolute;
        top: 8px;
        right: 10px;
    }

    .pure-css-nav.mobile-nav input:checked + label i:before {
        content: '\f00d';
    }

    .pure-css-nav a:not([href]),
    .pure-css-nav a[href='']:hover,
    .pure-css-nav a[href='#']:hover,
    .pure-css-nav a[href='']:active,
    .pure-css-nav a[href='#']:active {
        pointer-events: none;
    }

    /* Content Styles */
    header, footer {
        /*background: #eee;*/
        /*padding: 20px;*/
    }

    header, header a,
    footer, footer a {
        color: rgba(0, 0, 0, 0.7);
    }

    header a, footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
    }

    header a:hover, footer a:hover {
        /*color: #222;*/
        /*background: #fff;*/
    }

    footer {
        font-size: 25px;
    }

    footer > div {
        align-items: center;
        justify-content: center;
    }

    /* Sticky Footer */
    body {
        display: flex;
        flex-direction: column;
    }

    #content {
        flex: 1 0 auto;
    }

    footer {
        flex-shrink: 0;
    }

    code {
        font-size: 0.8rem !important;
    }

    .second-nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100px;
    }

    .second-nav-item img {
        display: block;
        width: 75px;
        height: auto;
        margin: auto;
    }

    .second-nav-item span {
        display: block;
        text-align: center;
    }

    .second-nav {
        box-shadow: 0 0 22px rgb(0 0 0 / 10%);
    }

    .logo-box {
        width: 120px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 20px;
    }
}


.first-nav {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 0 22px rgb(0 0 0 / 10%);
}

.custom-nav {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 20px;*/
    /*border-bottom: 1px solid #fff;*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 999;
    flex-wrap: nowrap;
    background: #ffffff;
}

.custom-nav-white {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 20px;*/
    /*border-bottom: 1px solid #e5e5e5;*/
    /*position: fixed;*/
    top: 0;
    left: 0;
    z-index: 999;
    flex-wrap: nowrap;
    background-color: #fff;

}

.logo {
    width: 80px;
    height: 33px;
}

.nav-link {
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 1;
    /*height: 80px;*/
    /*border-right: 1px solid #fff;*/
    padding: 0 !important;
}

.nav-link-white {
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 1;
    /*height: 80px;*/
    /*border-right: 1px solid #e5e5e5;*/
}

.contact-us {
    display: flex;
    justify-content: right;
    align-items: center;
    /*width: 200px;*/
    overflow: hidden;
}

.nav-item {
    width: 120px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.nav-item a {
    color: #000;
}

.nav-item-white {
    width: 120px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.nav-item-white a {
    color: #000;
}

.tel-img {
    width: 21px;
    height: 21px;
    cursor: pointer;
}

.tel {
    color: #000;
    margin-left: 10px;
}

.tel-white {
    color: #000000;
    margin-left: 10px;
}

.search-more {
    margin-left: 10px;
    width: 21px;
    cursor: pointer;
}

.second-nav {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
    background-color: #ffffff;
    /*box-shadow: 0 0 22px rgb(0 0 0 / 10%);*/
}
