@charset "utf-8";
/* Netcom Technologies CSS Document */
:root{
    --primary:#333;
    --secondary:#585858;
    --lite:#fff;
    --red:#940a0a;
    --grey:#999;
    --palegrey:#ededed;
    --dark:#000;
    
        /* Spacing */
	--global--spacing-unit: 20px;
	--global--spacing-measure: unset;
	--global--spacing-horizontal: 25px;
    --global--spacing-vertical: 50px;
    --primary-nav--padding: var(--global--spacing-unit);
}
html {
    font-size: 16px;
    margin-top:0!important;
    margin-bottom: 0 !important;
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
    }
body {    
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
    background-color: var(--lite);
    color:var(--primary);
    margin:0;
    text-align: left;
}
*, *::before, *::after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
    text-transform: uppercase; font-weight: bold;
}
h1{
    font-size:3rem;
}
h2{
    font-size:2rem;
}h3{
    font-size:1.75rem;
}h4{
    font-size:1.5rem;
}h5{
    font-size:1.25rem;
    text-transform: none;
}
@media(max-width:991px){

}
p{
    text-transform: none; 
    font-weight: 400;
}
a,
a:visited{
    color:var(--red); 
    text-underline-offset: 3px;
    text-decoration-skip-ink: all;
    cursor: pointer;
    text-decoration: none;
}
a:hover{ 
    color:#c90e0e;
    text-decoration: underline;
    text-decoration-style: dotted;
	text-decoration-skip-ink: none;
}
img{
    width:100%;
}
ul,
ol{
    margin:0 0 1.5rem 1rem;
}

.grey{ color:var(--grey);}
/********************************************** Header**************************************/
.header-nav{
    position: absolute;
    width: 100%;
}

.navbar{
    z-index: 99;
}
.navbar-expand-lg{
    justify-content: space-between;
}
.custom-logo-link{
    margin-right:2rem;
    padding-top: .3125rem;
    padding-bottom: .3125rem;

}
.custom-logo-link img{
    width:100%;
    height:auto;
}
@media(max-width:768px){
    .custom-logo-link img{
        width:50%;
        height:auto;
    }               
}
.bg-lite{
    background-color: var(--lite)!important;
}
.navbar-collapse {
    position: relative;
    width:auto;
    margin-left: auto;
}
@media (max-width:991px){
    .navbar-collapse{
        width:100%;
        background:rgba(237,237,237,0.9);               
    }
}
.navbar-nav{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    max-width: none;
    padding-left: 0;
    position: relative;
}
.navbar-nav .menu-item a {
    color:var(--secondary);
    text-transform: uppercase;
    font-size: 1rem;
    padding-left: var(--primary-nav--padding);
    padding-right: var(--primary-nav--padding);
    line-height: 2;
    padding-top:0.3rem;
    padding-bottom:0.6rem;
    font-weight: 700;
    font-family: "open Sans", sans-serif;
}
.navbar-nav > li{
    position:relative;
    transition-duration: 0.8s;
}

.navbar-nav .current-menu-item::after{
    content: '';
    height: 2px;
    width:100%;
    background:var(--red);
    position: absolute;
    left:0;
    bottom:-20px;
}

@media (max-width:991px){
    .navbar-nav .current-menu-item::after{
        width:0!important;
    }
}

.navbar-nav .menu-item a:hover{
    text-decoration: underline;
    text-decoration-style: dotted;
    color:var(--grey);

}


.navbar-nav .sub-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 20px;;
    border: 1px solid var(--grey);
}

.navbar-nav > li > .sub-menu{
    left: 0;
    margin: 0;
    min-width: max-content;
    position: absolute;
    top: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 88888;
    visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-top: 0.25rem;
  display: none;
}

.navbar-nav li:hover > .sub-menu,
.navbar-nav li:focus-within > .sub-menu,
.navbar-nav li .sub-menu:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

.navbar-nav > li > .sub-menu::before,
.navbar-nav > li > .sub-menu::after{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    top: -10px;
    left: var(--global--spacing-horizontal);
    border-style: solid;
    border-color: var(--grey)  transparent;
    border-width: 0 7px 10px 7px;
}
@media (max-width:991px){
    .navbar-nav > li > .sub-menu::before,
    .navbar-nav > li > .sub-menu::after{
        display:none;
    } 
}

.navbar-nav > li > .sub-menu li{
    background: rgba(237,237,237, 0.85);
    clear:both;
    width: 100%;
}

.navbar-nav > .sub-menu > .menu-item a{
    display: block;
    padding-left: 5px!important;
    font-weight: 300;
}

@media (max-width:991px){
    .navbar-nav{padding-right:2rem;}
    .navbar-nav > li > .sub-menu{
        visibility: visible;
        opacity: 1;
        display: block;  
        margin-left:1.75rem;
        z-index: 1;
        position:static;
        margin-top:0;

    }
    .navbar-nav > li > .sub-menu li{
        background: transparent;
        clear:both;
        width: auto;
    }
}

.navbar-lite .navbar-toggler {
    color:var(--secondary)!important;
}
.site-main{
    margin-top:2.5rem;
}
@media(max-width:768px){
    .site-main{
        margin-top:3.4rem;
    }
}

.navbar{
    border-bottom:2px solid var(--red);
}
/************************** Hero *************************************/
.hero{
    background:var(--dark) url("../images/hero.jpg");
    position: relative;
    background-repeat:no-repeat;
    background-position: center center;
    background-size: cover;
    height:100vh;
    background-attachment: fixed;
}
.overlay{
   position: absolute;
   background:rgba(0,0,0,0.5);
   top:0;
   left:0;
    height:100%;
    width:100%;
}
.hero-inner{
    color: var(--lite);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-inner h1{
    font-size: 3rem; 
    margin:5rem 0;
    text-align: center;
}
@media(max-width:991px){
    .hero-inner h1{
        font-size:2.5rem;
    }
}
@media(max-width:767px){
    .hero{
       background:url("../images/hero-lo.jpg");
       background-repeat:no-repeat;
       background-position: top center;
       background-size: cover;
    }
    .hero h1{
        margin-top:2rem;
        font-size: 2rem;
    }
}
/************************************ buttons and links *********************************/
.btn, 
input[type="submit"],
.search-submit {
    display: inline-block;
    background: var(--red);
    color: var(--lite)!important;
    padding: 0.4rem 1.3rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s ease-in;
  }
  .btn:hover,
  .search-submit:hover{
    background-color:var(--red);
    border:2px solid;
    border-color: var(--red);
    box-shadow: 3px 5px 3px rgba(0,0,0,0.5);
    text-decoration: none;
    color:var(--red);
    transform: translateY(-5px);
  }
.search-submit,
.search-submit:hover{
    font-size:0.8rem!important;
}
.cta-btn{
    font-size: 2.25rem;
    font-weight: bold;
    background-color:rgba(0,0,0,0.3);
    border:2px solid var(--lite);
    color:var(--lite);
}
@media(max-width:899px){
.cta-btn{
    font-size: 1.75rem;
    }
}
.cta-btn:hover{
    background-color:var(--red);
    border:2px solid;
    border-color:var(--red);
    text-decoration: none;
    transform: translateY(-5px);
    color:var(--lite);
}
.readmore{
font-size: 1rem;
display:block; 
margin:0.7rem 0;
}
.rm-btn{
    font-size:1.125rem;    

}
.rm-btn:hover{
    transform: translateY(-5px);
}
.downarrow{
    margin-top:3rem;
    transition:all 0.3s ease-in;
}
.downarrow:hover{
    transform:translateY(-5px);
}
/*********************************************** summary******************************************/
.summary{
    color:#686868;
    font-size: 1.5rem;
    text-transform: none;
    text-align: center;
    line-height: 1.8;
}
@media(max-width:767px){
    .summary{
        font-size: 1.25rem;
    }
}


/*********************************************** services **************************************/
#services{
    background:url(../images/svc-bkg.gif);
    background-repeat: repeat;
}
#services .card{
    box-shadow: 3px 5px 15px rgba(0,0,0,0.5);    
}
.service-item{
    margin-top:1rem;
}
.sp-title{

}
.service-post-title{
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom:0.25rem;
    margin-top:-10rem;
    color:var(--lite);
}
.service-post-title span{
    font-weight: 400;
}
.servicesubpost{
    text-transform: none;
    font-size:1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom:6.75rem;
    color:var(--lite);
}
/************************************ headlines ***********************************************/
#headlines{
    background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)),url("../images/headlines-bkg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center center;
    background-attachment: fixed;
    color:var(--lite);
}
#headlines h2{
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color:var(--lite);
    margin-bottom:2rem;
}
#headlines h2 span{
    font-weight:400;
}
#headlines h3{
    margin-bottom:1.5rem;
    margin-top:1rem;
}
.post-date{
    color:var(--grey)!important;
    font-size:0.8rem;
    display: block;
}
.news-post{
    padding-bottom:25px; 
    border-bottom:1px solid var(--secondary); 
    margin-bottom:40px;
}
@media (max-width:767px){
    #headlines h3{
        font-size:1.3rem;
    }
}
.page-header-pic{
    position: relative;
}
.page-header-pic .post-thumbnail img {
    width: 100%;
}
.page-heading{ text-align: center;}
.post-image{
    margin-bottom:1rem;
}
.post, .page {
    margin: 0 !important;
}
/******************************************************* CTA *************************************/
#cta{
    background-color: var(--red);
    color:var(--lite);
}
.cu-btn{
    color:var(--red)!important;
    background-color:var(--lite);
    border-color:var(--lite);
}
.cu-btn:hover{
    background-color:var(--lite);
}
.section{
    padding:2.25rem 0;
}
.section-heading{
    text-align: center;
    color:var(--red);
}
.heading{
    color:var(--red);
}

#scroll-to-top {
    border: 1px solid #ababab;
    color: var(--lite);
    font-size: 1.5rem;
    line-height: 45px;
    text-align: center;
    position: fixed;
    z-index: 99999;
    right: 15px;
    bottom: 40px;
    display: none;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0, 0.3);
}
.in{display:block!important;}
#scroll-to-top:hover {
    cursor: pointer;
    border-color: var(--lite); 
    background-color: #555;
    box-shadow: 1px 0 7px rgba(0,0,0,0.45);
}
/*********************************** footer *************************************/
footer{
    background-color: var(--palegrey);
    padding:2rem 0 0;
    font-size: 1rem;
    color:var(--secondary);
}
footer ul{
    list-style: none;
    padding-left:0;
}
.f-logo img{
    width:159px;
}
.f-info h5{
    text-transform: uppercase;
    font-size: 1rem;
}
.footer-info{
    margin-left: 0 !important;
}
#menu-footer.menu{
    display: flex;
    margin-left:0;
}
#menu-footer.menu>li{
    border-right:2px solid var(--grey);
    padding:0 5px;
}
#menu-footer.menu>li:first-child{
    padding-left:0;
}
#menu-footer.menu>li:last-child{
    border-right:none;
}
#menu-footer.menu>li>a{
    text-transform: uppercase;
}
.copyright,
.copyright-link{
    font-size: 0.875rem;
    font-weight: 300;
    color:var(--grey)!important;
}

.lock-scrolling {
    position: fixed;
    max-width: 100%;
    width: 100%;
}
embed,
iframe,
object,
video {
	max-width: 100%;
}
.overlay2{
    position: absolute;
   background:rgba(0,0,0,0.3);
   top:0;
   left:0;
    height:100%;
    width:100%;
 }
/*********************************** MARGINS *******************************/
.mt-0{margin-top:0;}
.mt-25{margin-top:25px;}
.mt-50{margin-top:50px}
.mt-100{margin-top:100px;}
.mt-125{margin-top:125px;}
.mt-150{margin-top:150px;}
.mb-0{margin-bottom:0;}
.mb-25{margin-bottom:25px;}
.mb-50{margin-bottom: 50px;}
.mb-100{margin-bottom: 100px;}
.mb-125{margin-bottom:125px;}
.mb-150{margin-bottom:150px;}

@media ()max-width:991px){
    .spacer{display:none;}
}
hr{background-color: #585858;}