header {
    position: relative;
    padding: 40px 0 0;
    background-color: #1d1d1d;
}

#bgvid {  
  width: 100%;
  height: 100%;
}

.headerImg {
    width:100%;
    height:100%;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%) translateY(-50%); 
    transition: 1s opacity; 
    object-fit: scale-down;
    background-color: #1d1d1d;
    opacity: .2;
}

section {
    padding: 150px 0;
}

#about {
    background-image: url("../images/aboutBG.jpg"); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;   
    color: #dcdcdc;
    background-repeat: no-repeat;
    background-position:center;
    padding: 60px 60px 60px 60px;    
}
#about p {
    font-size: 24px;
}

#services {
    background-image: url("../images/servicesBG.jpg"); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;   
    color: #dcdcdc;
    background-repeat: no-repeat;
    background-position:center;
    color : #1c1c1c;
    padding: 60px 60px 60px 60px; 
}
#services p, #services dl, #services dt, #services span{
    font-size: 22px;
}

#contact {
    background-image: url("../images/contactBG.jpg"); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;   
    color: #dcdcdc;
    background-repeat: no-repeat;
    background-position:center;
    color : #dcdcdc;
    padding: 60px 60px 60px 60px; 
}
@media(orientation : portrait)
{
    #about, #services, #contact {
        padding: 60px 20px 60px; 
    }
}
/*
@media (-webkit-min-device-pixel-ratio:2) and (orientation : portrait),(min-device-pixel-ratio:2) and (orientation : portrait){ 
    #about p, #contact h5{
        font-size: 40px;
    }
    #about h2, #services h2, #contact h2{
        font-size: 60px;
    }
    #services p, #services dl, #services dt, #services span{
        font-size: 36px;
    }
    
    nav, .navbar-brand, .nav-link {
        font-size : 40px;
    }

    .navbar-toggler .navbar-toggler-icon{
        width: 80px;
        height: 80px;
    }
}
*/