﻿/*

    Neocomm, LLC.

*/

html {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
}

body {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    margin: 0 0;
    padding: 0 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 175%;
    color: #FFFFFF;
    background-color: #003566;
}

#frmMaster {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
}

@media (max-width : 767px) {

    body {
        font-size: 18px;
        line-height: 175%;
    }

}


/* Boostrap Fixes */

.img-fluid {
    width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

/* Back To Top Button */

.back-to-top {
    z-index: 99999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
}

/* Header */

header {
    position: fixed;
    z-index: 99900;
    top: 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;
    color: #004080;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
}

header .container-xl {
    padding-top: 20px;
    padding-bottom: 20px;
}

header .header-logo {
    text-align: left;
}

header .contact-info {
    margin-bottom: 10px;
    text-align: right;
}

header .contact-info div {
    display: inline-block;
    margin-right: 1rem;
}

header .contact-info div:last-child {
    margin-right: 0;
}

header .contact-info a,
header .contact-info a:visited {
    color: #004080;
}

header .contact-info a:hover {
    color: #004080;
}

@media (max-width : 991px) {

    header {
        position: relative;
    }

    header .container-xl {
        padding-bottom: 0;
    }

    header .header-logo {
        padding-bottom: 20px;
        text-align: center;
    }

}

/* Nav */

nav.navbar {
    margin: 0 0;
    padding: 0 0;
}

nav.navbar .navbar-nav a.nav-link {
    margin: 0 30px 0 0;
    padding: 4px 0;
}

nav.navbar .navbar-nav .nav-item:last-child a.nav-link {
    margin-right: 0;
}

nav.navbar .social-icons a,
nav.navbar .social-icons a:visited {
    color: #FFFFFF;
}

nav.navbar .social-icons a:hover {
    color: #FFFFFF;
}

nav.navbar .nav-link,
nav.navbar .nav-link:visited {
    color: #004080;
    border-top: 5px solid transparent;
}

nav.navbar .nav-link:hover {
    color: #004080;
}

nav.navbar .nav-link:after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 #004080;
    content: "";
    display: block;
    height: 5px;
    width: 0%;
}

nav.navbar .nav-link:hover:after {
    width: 100%;
}

nav.navbar .btn-schedule,
nav.navbar .btn-schedule:visited {
    color: #FFFFFF;
    background-color: #004080;
    border: 1px solid #003466;
}

nav.navbar .btn-schedule:hover {
    color: #FFFFFF;
    background-color: #0052a7;
    border: 1px solid #00498d;
}

@media (max-width : 991px) {

    nav.navbar {
        margin: 0 -15px;
        padding: 15px 15px;
        color: #FFFFFF;
        background-color: #004280;
    }

    nav.navbar .navbar-toggler {
        padding-left: 0;
        padding-right: 0;
        font-size: 32px;
        color: #FFFFFF;
    }

    nav.navbar .social-icons {
        font-size: 36px;
    }

    nav.navbar .social-icons ul {
        margin-bottom: 0;
    }

    nav.navbar .navbar-nav {
        padding-top: 10px;
    }

    nav.navbar .navbar-nav .nav-link,
    nav.navbar .navbar-nav .nav-link:visited {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 5px 10px !important;
        color: #FFFFFF;
    }

    nav.navbar .navbar-nav .nav-link:hover {
        color: #FFFFFF;
        background-color: #0052a7;
    }

    nav.navbar .navbar-nav .nav-link:after {
        background: none;
        content: none;
        display: none;
        height: 0;
        width: 0;
    }

    nav.navbar .navbar-nav .nav-link:hover:after {
        width: 0;
    }

}

.navbar-custom .dropdown-menu .dropdown-item {
    margin: 0;
    padding: 0;
}

    .navbar-custom .dropdown-menu .dropdown-item,
    .navbar-custom .dropdown-menu .dropdown-item:visited {
        color: #000000;
        font-weight: bold;
        background-color: #FFFFFF;
    }

        .navbar-custom .dropdown-menu .dropdown-item:hover {
            color: #000000;
            background-color: #F0F0F0;
        }

        .navbar-custom .dropdown-menu .dropdown-item a {
            display: block;
            padding: 5px 15px;
            color: #004080;
        }

        .navbar-custom .dropdown-menu .dropdown-item:hover a {
            display: block;
            color: #004080;
            text-decoration: none;
        }

.dropdown-toggle::after{
    border:none !important;
}


/* Footer */

footer {
    padding: 40px 0 0 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 175%;
    background-color: #004080;
    background: -moz-linear-gradient(top, #004080 66%, #004c9a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #004080 66%, #004c9a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #004080 66%, #004c9a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

footer > .container-xl {
    padding-bottom: 10px;
}

footer h3 {
    margin-bottom: 4px;
    font-size: 120%;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
}

footer hr {
    margin-top: 0;
    margin-bottom: 0.75rem;
    border-color: #FFFFFF;
}

footer a,
footer a:visited {
    color: #FFFFFF;
}

footer a:hover {
    color: #FFFF00;
    text-decoration: none;
}

footer i {
    position: relative;
    top: 2px;
    color: #FFFFFF;
}

footer .fa-ul {
    margin-left: 2.0rem;
}

footer .fa-ul li {
    margin-bottom: 1rem;
}

footer .fa-ul li:last-child {
    margin-bottom: 0;
}

footer .fa-ul i {
    position: relative;
    margin-right: 0.25rem;
}

footer .copyright {
    padding: 30px 0px;
    font-size: 18px;
    line-height: 150%;
    background-color: #003566;
    border-top: 1px solid transparent;
    border-image-source: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.33) 50%, rgba(255,255,255,0.0) 100%);
    border-image-slice: 5;
}

/* Big Photo */

.big-photo {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);
}

.big-photo picture,
.big-photo img {
    width: 100%;
    height: auto;
}

/* Swiper */

.swiper-container {
    overflow: hidden;
/*    width: 100%;
    height: 100%;
    border-bottom: 1px solid #999999;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.33);*/
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-slide {
    text-align: center;
}

    .swiper-slide .img-fluid {
        width: auto;
        height: auto;
        max-height: 90px;
    }

.swiper-slide .slide-title {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.swiper-slide .slide-title .slide-title-text {
    align-self: center;
    padding: 1rem 2rem;
    font-size: 200%;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 150%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.66);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #000000;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width : 767px) {

    .swiper-slide .slide-title {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .swiper-slide .slide-title .slide-title-text {
        font-size: 80%;
        line-height: 150%;
        text-align: center;
    }

}

@media (max-width : 991px) {

    .swiper-slide .slide-title {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .swiper-slide .slide-title .slide-title-text {
        font-size: 100%;
        line-height: 150%;
        text-align: center;
    }

}

/* Content Areas */

.content {
    padding: 40px 15px;
    color: #000000;
    background-color: #FFFFFF;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
    margin-bottom: 1.5rem;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 125%;
    color: #004080;
}

.content h1 {
    font-size: 200%;
}

.content h2 {
    font-size: 150%;
}

.content h3 {
    font-size: 125%;
}

.content h4,
.content h5 {
    font-size: 100%;
}

.content p {
    margin-bottom: 1.5rem;
}

.content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content a,
.content a:visited,
.content a:hover {
    text-decoration: none;
}

.content a,
.content a:visited {
    color: #FF0000;
}

.content a:hover {
    color: #0000FF;
    text-decoration: underline;
}

.content .photo {
    border: 1px solid #004080;
}

@media (max-width : 767px) {

    .content h1 {
        font-size: 150%;
    }

    .content h2 {
        font-size: 125%;
    }

    .content h3 {
        font-size: 100%;
    }

}

/* Net BG */

.content.net-bg {
    color: #FFFFFF;
    background-color: #004080;
    background-image: url('/Images/layout/net-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.content.net-bg h1,
.content.net-bg h2,
.content.net-bg h3,
.content.net-bg h4,
.content.net-bg h5 {
    color: #FFFFFF;
}

/* Fiber BG */

.content.fiber-bg {
    color: #FFFFFF;
    background-color: #003466;
    background-image: url('/Images/layout/fiber-bg.jpg');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
}

.content.fiber-bg h1,
.content.fiber-bg h2,
.content.fiber-bg h3,
.content.fiber-bg h4,
.content.fiber-bg h5 {
    color: #FFFFFF;
}

/* Grey BG */

.content.grey-bg {
    color: #000000;
    background-color: #F6F6F6;
}

.content.grey-bg h1,
.content.grey-bg h2,
.content.grey-bg h3,
.content.grey-bg h4,
.content.grey-bg h5 {
    color: #004080;
}

/* Floating Photo */

.photo-right {
    float: right;
}

.photo-right.w-5 {
    width: 42%;
    height: auto;
}

@media (max-width : 991px) {

    .photo-right {
        float: none;
    }

    .photo-right.w-5 {
        width: 100%;
        height: auto;
    }

}

/* Photo Group 100% width w/no gutters */

.photo-group-100 {
}

.photo-group-100 .container-fluid {
    margin: 0 0;
    padding: 0 0;
}

.photo-group-100 .row,
.photo-group-100 .col,
.photo-group-100 .col-4,
.photo-group-100 .col-12 {
    margin: 0 0;
    padding: 0 0;
}

.photo-group-100 img {
    width: 100%;
}

/* Overlay On Home Page */

.overlay {
    position: relative;
    z-index: 9990;
    top: -200px;
    margin-top: 0;
    margin-bottom: -160px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px -5px 5px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px -5px 5px 0px rgba(0,0,0,0.33);
    box-shadow: 0px -5px 5px 0px rgba(0,0,0,0.33);
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.overlay .row {
    margin: 0 0;
    padding: 10px 10px
}

.overlay .col-12 {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 10px;
}

.overlay .card {
    background-color: #F8F8F8;
}

.overlay .card:hover {
    color: #FFFFFF;
    background-color: #004080;
}

.overlay .card .overlay-icon {
    margin-bottom: 20px;
    font-size: 64px;
    color: #004080;
    line-height: 100%;
    text-align: center;
}

.overlay .card:hover .overlay-icon {
    color: #FFFFFF;
}

.overlay .card .overlay-title {
    margin-bottom: 20px;
    font-weight: bold;
    color: #004080;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
}

.overlay .card:hover .overlay-title {
    color: #FFFFFF;
}

.overlay .card .overlay-text {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
}

@media (max-width : 767px) {

    .overlay {
        top: -150px;
        margin-bottom: -120px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .overlay .card .overlay-icon {
        font-size: 48px;
    }

}

/* Multi-Column Lists */
.two-col-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.three-col-list {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
}

.four-col-list {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

@media (max-width : 767px) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        columns: initial;
        -webkit-columns: initial;
        -moz-columns: initial;
    }
}

@media (min-width : 768px) And (max-width : 991px) {

    .two-col-list {
        columns: initial;
        -webkit-columns: initial;
        -moz-columns: initial;
    }

    .three-col-list,
    .four-col-list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

/* ********************************************************************************************* */
/* Fixes for IE 11 */
/* ********************************************************************************************* */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        margin-left: 0;
    }

        .two-col-list .fa-li,
        .three-col-list .fa-li,
        .four-col-list .fa-li {
            position: relative;
            display: inline-block;
            left: 0;
        }
}

@media (max-width : 767px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

/* ********************************************************************************************* */
/* Fixes for Edge */
/* ********************************************************************************************* */

@supports (-ms-ime-align: auto) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        margin-left: 0;
    }

        .two-col-list .fa-li,
        .three-col-list .fa-li,
        .four-col-list .fa-li {
            position: relative;
            display: inline-block;
            left: 0;
        }
}

/* ********************************************************************************************* */
/* ECWID */
/* ********************************************************************************************* */

.ec-cart-widget {
    position: relative;
    top: 6px;
}

html#ecwid_html body#ecwid_body .ec-minicart--xl .ec-minicart__icon, html#ecwid_html body#ecwid_body .ec-minicart--xxl .ec-minicart__icon {
    margin-right: 10px;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--l .ec-store .ec-header-h1 {
    margin-bottom: 1rem !important;
}

html#ecwid_html body#ecwid_body div.ecwid-productBrowser-categoryPath {
    display: none !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__categories {
    display: none !important;
}

html#ecwid_html body#ecwid_body div.ecwid-ProductBrowser-auth-anonim, html#ecwid_html body#ecwid_body div.ecwid-ProductBrowser-auth-logged {
    margin-right: 10px !important;
    top: 2px;
}

/*html#ecwid_html body#ecwid_body div.ecwid-minicart {
    display:none !important;
}*/

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items .grid-product__price .grid-product__price-amount, html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items .grid-product__price .grid-product__price-compare, html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items.grid__products--appearance-frame .grid-product__price .grid-product__price-amount, html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items.grid__products--appearance-frame .grid-product__title .grid-product__price-amount {
    display: none !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .grid__products--medium-items .grid-product__title-inner {
    font-size: 20px !important;
    font-weight: normal !important;
}

html#ecwid_html body#ecwid_body .horizontal-menu-container.horizontal-desktop nav.horizontal-menu {
    margin-bottom: 1.5rem;
    background-color: #272a2f;
    border: 1px solid #454852 !important;
}

html#ecwid_html body#ecwid_body .horizontal-menu-container.horizontal-desktop .horizontal-menu-item {
    padding: 4px 8px;
}

html#ecwid_html body#ecwid_body .horizontal-menu-container.horizontal-desktop .horizontal-menu-item > a {
    color: #FFFFFF !important;
}

html#ecwid_html body#ecwid_body .horizontal-menu-container.horizontal-desktop .horizontal-menu-item.horizontal-menu-item--hover > a {
    background: #454852 !important;
    color: #e5bf00 !important;
}

html#ecwid_html body#ecwid_body .horizontal-menu-container.horizontal-mobile {
    margin-bottom: 1.25rem;
    padding: 10px 20px !important;
}

html#ecwid_html body#ecwid_body nav.horizontal-menu,
html#ecwid_html body#ecwid_body nav.horizontal-menu.horizontal-menu--mobile,
html#ecwid_html body#ecwid_body nav.horizontal-menu.horizontal-menu--mobile.horizontal-menu--mobileShow,
html#ecwid_html body#ecwid_body nav.horizontal-menu.horizontal-menu--mobile .horizontal-menu-parent {
    z-index: 99999;
}

@media screen and (max-width: 479px) {

    .ec-cart-widget {
        margin-bottom: 1.25rem;
    }

    html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--m .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--m .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--l .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--l .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--xl .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--xl .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--xxl .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--responsive.ec-minicart--xxl .ec-minicart__subtotal {
        display: block !important;
    }

}

.border-white{
    border:2px solid #ffffff;
    border-radius:4px;
}

.pl-30{
    padding-left:30px !important;
}

.pr-30{
    padding-right:30px !important;
}

.photo-white {
    border: 1px solid #ffffff;
}