* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.container{
    margin: 0 auto;
    max-width: 100%;
    width: 100px;
    padding: 5px 10px;
}

.container.grey{
    background-color: #F5F5F5;
}


/* ====================== HEADER ===================== */

.blueheader{
    background:#25A3ED;
    height: 30px; 
    padding: 0 10%;
}

ul{
  list-style-type:none;
}

nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    padding: 0 0%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 8px #888888;
}

nav .logo {
    float: left;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000;
}

.contactTop{
    display: inline-block;
    float: left;
    /* width: 40%; */
    height: 100%;
    display: flex;
    color:white;
}

.contactHeaderInfo{
    font-size: 13px;
    color: #000;
    margin-left:10px;
    margin-right:15px;
    margin-top:5px;
    color:white;
}

.topIcon{
  margin-top:3px;
  font-size:15px;
  color:white;
}

.phoneIcon{
  margin-left: 15px;
  margin-top:3px;
  font-size:15px;
  color:white;
}

.logoImage{
  width: 200px;
  position: absolute;
  top: 38px;
  /* ADJUST TOP IF NEEDED */
  left: 12%;
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
  align-items: center;
  padding: 0 5%;
  border-bottom: 2px solid transparent;
}


nav .links a:hover{
  border-bottom: 2px solid #DB2B39;
}

nav .links a:focus{
  border-bottom: 2px solid #DB2B39;
}

nav .links a.active{
  border-bottom: 2px solid #DB2B39;
}

  
nav .links li {
  list-style: none;

}
nav .links a {
    display: block;
    padding: .10em;
    font-size: 16px;
color: #000;
  text-decoration: none;
  margin-bottom:20px;
  border-bottom: 3px solid transparent;

}
#nav-toggle {
    position: absolute;
  top: -100px;

}
nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top:50%;
    transform: translateY(-50%);
}
nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #000;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}
@media screen and (max-width: 768px) {

    nav {
        position: fixed;
        z-index: 10;
        left: 0;
        right: 0;
        top: 0;
        font-family: 'Montserrat', sans-serif;
        padding: 0 0%;
        height: 60px;
        background-color: rgba(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    }

    
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 60px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0,0,0,.8);
        overflow: hidden;
        box-sizing: border-box;
        transition: all .5s ease-in-out;
    }
    nav .links a {
    font-size: 20px;
    color: white;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
  
  .blueheader{
    display:none;
  }
  .logoImage{
    width: 175px;
    position: absolute;
    top: 3px;
    /* ADJUST TOP IF */
    left: 5%;
  }  
}

/* ========== HERO ========== */
.hero-image{
    background-image: linear-gradient(
    rgba(0,0,0,0.5), 
    rgba(0,0,0, 0.5)), 
    url("../images/img-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.hero-image .hero-text{
    color: #fff;
    text-align: center;
}

.hero-image .hero-text h1{
    padding: 125px 0 0;
    font-size: 60px;
    font-weight: 900;
    font-family: 'Nunito Sans', sans-serif;
}

.hero-image .hero-text p{
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
    font-family: 'Nunito Sans', sans-serif;

}

.sectionHeading{
    color: #3D4246;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin-top: 44px;
    margin-bottom: 26px;
    /* width: 100%; */
    margin-right:auto;
    margin-left:auto;
}

.sectionDescription {
    color: #3D4246;
    font-family: "Open Sans";
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 400;
    margin-top: 24px;
    /* width: 100%; */
    margin-bottom:50px;
    margin-right:90px;
    margin-left:90px;
}
@media screen and (max-width: 768px) {
    .sectionDescription{
        font-size:16px;
    }
 }

@media screen and (max-width:990px)
{
    .sectionDescription {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero-image .hero-text p{
        font-size:26px;
    }

}

@media screen and (max-width:768px){
    .hero-image .hero-text h1{
        padding: 100px 0 0;
        font-size: 50px;
    }
}

/* ========== BODY ========== */
.aboutus_container{
    margin-left: auto;
    margin-right: auto;
    box-sizing:border-box;
    display:flex;
    justify-content: center;
    flex-direction: row;
    margin-top:28px;
    margin-bottom:30px;
}

.aboutus_image{
    width:500px;
    flex: 0 0 500px;
    margin-left:0px;
}

.aboutus_image img{
    max-width:100%;
}

.right_aboutus_image{
    width:500px;
    flex: 0 0 500px;
    margin-left:0px;  
    margin-top:30px;
}

.right_aboutus_image iframe{
    max-width:100%;
}

.container_text{
    padding-left: 60px;
}


/* ========== SERVICE AREAS ========== */

.location_container{
    margin-left: auto;
    margin-right: auto;
    box-sizing:border-box;
    display:flex;
    justify-content: center;
    flex-direction: row;
    margin-top:60px;
    margin-bottom:30px;
}

.left_container_text{
    padding-left: 0px;
    margin-top:60px;
    padding-right:60px;
}

.aboutus_heading{
    margin:0; 
    padding-left:0;
    color: #3D4246;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 25px;
}

.list_of_location{
    display:flex;
}

.column-left{ float: left; width: 33%; }
.column-center{ display: inline-block; width: 33%; }
.column-right{ float: right; width: 33%; }

@media screen and (max-width:425px){

    .column-left{ float: left; width: 60%; }
    .column-center{ display: inline-block; width: 40%; }
    .column-right{ float: right; width: 100%; }
}

.aboutus_description{
    margin: 0;
    /* padding: 2px 0 0; */
    font-size: 16px;
    margin-left:auto;
    margin-right:auto;
    font-family:"Open Sans";
    color: #3D4246;
}





@media screen and (max-width:990px)
{
    .aboutus_container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
        margin-right: 0px;
        margin-top:20px;
        margin-bottom:20px;
    }
    .aboutus_image{
        max-width:100%;
        flex: 0 0 0;
        margin-left:auto;
        margin-right:auto;
        width: 100%;
    }

    
    .aboutus_image img{
        max-width:100%;
    }
    

    .right_aboutus_image{
        max-width:100%;
        flex: 0 0 0;
        margin-left:auto;
        margin-right:auto; 
        width: 100%;

    }

    .right_aboutus_image iframe{
        max-width:100%;
    }


    .container_text{
        margin-left: 15px;
        /* margin-right: 15px; */
        padding-left: 0px;

    }

    .left_container_text{
        margin-left: 15px;
        /* margin-right: 15px; */
        padding-left: 0px;
        padding-right:0px;
        margin-bottom:10px;
        margin-top:0px;

    }

    .aboutus_heading{
        margin-top: 30px;
        align-items:center;
    }

    .aboutus_description{
        margin: 0;
        padding: 2px 0 0;
        font-size: 16px;
        margin-left:auto;
        margin-right:auto;
    }

    .location_container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
        margin-right: 0px;
        margin-top:20px;
        margin-bottom:20px;
    }
}


/* ========== OUR VALUES ========== */

.row-item{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow:wrap;
    margin-bottom:36px;
}


.feature-card{
    width: 25%;
    background:#fff;
    /* margin-bottom: bottom 50px; */
    margin-top: 40px;
}


.additionalService-icon{
    width: 35%; /*or whatever you choose*/
    margin: auto;
    margin-bottom: 20px;
}


.additionalService-icon img{
    display: block;
    width: 80%;
    max-width: 90px; /*actual image width*/
    height: auto; /* maintain aspect ratio*/
    margin: auto; /*optional centering of image*/
}


.additionalService-header{
    text-align: center;
    /* padding: 30px 5px; */
    /* background:linear-gradient(to right, #ff416c, #ff4b2b); */
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 28px;
    font-weight: 600px;
    color: #3D4246;
    font-family:"Open Sans";
}


.additionalService-body{
    /* padding:0px 0px; */
    text-align:center;
}


.service-feature{
   align-items: center;
   margin-top: 10px;
   font-size: 16px;
   line-height: 21px;
   font-family: "Open Sans";
   color: #3D4246
}

@media screen and (max-width:768px)
{
    .feature-container{
        width: 100%;
    }
    .sectionDescription{
        margin-bottom:64px;
    }
    .feature-header{
        /* padding:10px;
        font-size:20px;
        margin-top: 10px; */

        text-align: center;
        padding: 40px 5px;
        /* background:linear-gradient(to right, #ff416c, #ff4b2b); */
        font-size: 18px;
        line-height: 21px;
        height: 0px;
        font-weight: bold;
    }


    .feature-card{
        width:80%;
    }

    .feature-body{
        padding:10px;
        margin-top: 5px;
        margin-left:auto;
        margin-right: auto;
    }

    .icon-circle{
        margin-top: 10px
    }

    .sectionDescription{
        margin-bottom:36px;
    }
}


.number{
    background:#25A3ED
}

.white{
    color: white;
    font-family: Helvetica, sans-serif;
    font-size: 32px;
    text-align: center;
    font-weight: 600;
    margin-top: 60px;
    /* width: 100%; */
    margin-right:auto;
    margin-left:auto;
}



/* ========== FOOTER ========== */

.footer{
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: #fff;
    background-color: #011c39;
    padding-top:64px;
}

.footer > * {
    flex: 1 100%;
}

.footer-left{
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer-left img{
    width: 80%;
    margin-bottom: 4em;

}

.footer_header{
    font-weight: 600;
    font-size:17px;
}

.footer ul{
    list-style: none;
    padding-left:0;
    margin-bottom:40px;

}

.footer li{
    line-height: 2em;
    font-size:14px;
}

.footer a{
    text-decoration: none;
}
.footer a:hover{
    text-decoration: none;
}


.footer-right{
    display: flex;
    flex-flow: row wrap;
}

.footer-right > * {
    flex: 1 50%;
    margin-right: .5em;
    margin-left: .2em;

}

.footer-box a{
    color: #999
}

.footer-bottom{
    text-align:center;
    color: #999;
    padding-top: 50px;
}
.footer-left p {
    padding-right: 20%;
    color: #999;
    margin-top:20px;
    margin-top:20px;
    
}

.socialTop{
    background: #364a62;
    /* width: 40px;
    height: 40px; */
    display: inline-block;
    margin-right: 10px;
    color: white;
  }

.socials a i{
    color: #e7f2f4;
    padding: 10px 12px;
    font-size: 20px;
}

@media screen and (min-width:769px){
    .footer-right > *{
        flex:1;
    }
    .footer-left{
        flex: 1 0px;
    }
    .footer-right{
        flex: 2 0px;
    }
}