* {
    margin: 0;
    padding: 0;
}

html{
    height: 100%;
}

body {
    background-color: #fff;
    font-family: 'Open Sans', Helvetica;
    line-height: 1.5;
}
#wrapper {
    width: 100%;
    margin: 0 auto; 
 }

h1, h2, h3, h4, h5 {
    text-align: center;
}

h2 {
    padding-top: 75px;
}

h3 {
    padding-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    text-decoration: none;
}

a:link {
    color: #fff;    
}

a:visited {
    color: #fff;    
}

a:hover {
    color: #01a8d0;
}

.icon {
    padding: 5px;
}

header {
    background: #4a4a4a;
    /*height: 100vh;*/
    width: 100%;
    background-image: url(../images/header-bg.jpg);
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
    background-position: center;    
    text-align: center;
    color: #fff;
    position: relative;
}

#home {
    padding-top: 50px;
}

#home img {
    width: 60%;
    margin-top: 5px;
    min-width: 300px;
}

#home a {
    border: 1.5px solid #fff;
    border-radius: 20px;
    padding: 10px;
    margin: 20px;
    display: inline-block;
    font-size: 1.25em;
    color: #fff;
}

#home a:hover {
    background-color: #01a8d0;
}

#navigation {
    /* To fix navigation to top of screen */
    width: 100%;
    z-index: +10;
    position: fixed;
}

#navigation-burger {
    display: none;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: rgba(53, 53, 53, 0.9);
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #fff;
    padding: 10px 10px;
   
}

nav ul {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style-position: inside;
}


nav li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 15px;    
}

/* hack to get icons next to phone and email in list */
.nav-right {
    padding-left: 35px;
}

nav li span {
    text-indent: 45px;
}

/* end of hack */

nav li img {
    height: 34px;
    margin-top: 2px;
}

nav a {    
    text-align: center;
}



@media screen and (max-width: 1050px) {
    #navigation-burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;    
        -webkit-box-pack: justify;    
            -ms-flex-pack: justify;    
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        position: fixed;
        padding: 5px 20px 5px 5px;
        background: rgba(53, 53, 53, 0.9);
        z-index: +10;
    }
    
    .burger-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 2em;
        margin: 0 20px;
        height: 58px;

    }

    nav {
        height: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding: 0;
        -webkit-transition: height 0.8s;
        -o-transition: height 0.8s;
        transition: height 0.8s;
    }

    nav ul {
        overflow: hidden;
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: normal;
        
            -ms-flex-flow: column;
        
                flex-flow: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    nav.open {
        height: 220px;
        -webkit-transition: height 0.8s;
        -o-transition: height 0.8s;
        transition: height 0.8s;
    }

    #navigation {
        top: 68px;
        
    }

    /* .nav-right {
        padding-left: 0;
    }

    nav li span {
        text-indent: 0;
    } */

    nav li img {
        display: none;
    }

    .fa-ul {
        margin: 0;
        padding-left: 13px;
    }

}

/* About Section */
#about {
    min-height: 480px;
    background-color: #009ee0;
    background-image: url(../images/about-section3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding-bottom: 10px;
    color: #fff;

}

#about-content {
    max-width: 960px;
    margin: 0 auto;
}

#about p {
    margin: 40px 15px;
}

#about p:first-child {
    font-size: 1.5em;
}

.about-paragraph {
    /* margin: 0 7px; */
    max-width: 70%;
    min-width: 320px;
}

@media screen and (max-width: 1050px) {
    #about {
        min-height: 0;
    }
    
    .about-paragraph {
        max-width: 80%;
    }
  }

  @media screen and (max-width: 700px) {
    #about {
        min-height: 0;
    }
    
    .about-paragraph {
        max-width: 100%;
    }
  }

/* Services Section */
#services {
    background-color: #fff;
    color: rgb(43, 43, 43);
}

#services-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

#services p {    
    max-width: 960px;
    margin: 0 auto;
    padding: 7px 15px;
    text-align: center;
}

.service {
    margin: 10px;
    /* max-width: 25%; */
    min-width: 280px;
    background-color: #fff;
    border: 3px solid #009ee0;
    /* border-radius: 20px; */
    background-color: #009ee0;
    color: #fff;
    text-align: center; /* for icons */
    text-shadow: 0 2px 2px rgba(0,0,0,0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
}

.service-image {
    /* border-radius: 18px; */
    opacity: 0.9;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;

}

/* .service-caption {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.service:hover .service-image {
    opacity: 0.2;
} */

.service:hover .service-caption {
    opacity: 1;
}

/* Contact Section */
#contact {
    background-color: #272727;
    color: #fff;
}

#contact-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

#contact-content p, #contact-content ul {
    margin: 7px;
    font-size: 0.9em;
}

.contact-column {
    -ms-flex-preferred-size: 260px;
        flex-basis: 260px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 7px;
  
}

#contact-one {
    -webkit-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4;
}

#contact-two {
}

#contact-two li {
    display: inline;
}

#contact-three {
    -webkit-box-flex: 15;
        -ms-flex-positive: 15;
            flex-grow: 15;
    min-width: 385px;
    width: 100%;
}

#contact-three li:nth-child(2) {
    color: #71d5ff;
}

.center-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
}

.contact-column span {
    font-size: 2em;
}

/* Footer */
footer {
    background: #009ee0;
    width: 100%;
    min-height: 150px;
    color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
}

footer h4 {
    padding: 7px;
}

footer ul {
    /* min-width: 320px; */
    margin: 5px;
}

footer img {
    max-height: 60px;
}

.footer-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 10px;
}

#footer-info {
    border: 2px solid #fff;
    padding: 20px;
    text-align: left;
    align-items: center;
}

#footer-info a:hover {
    color: #fff;
}

#footer-info img {
    max-height: 68px;
    
}

#footer-info ul {
    margin-left: 10px;
}

#tech-banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

#tech-banners li {  
    padding: 10px;
}