﻿body{
    background-color: #f4f4f4;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
}
h1{
    font-size: 30px;
    color:#000;
}
.highlight{
    color:rgb(255, 145, 0)
}
.container{
    width: 80%;
    margin: auto;
    overflow: hidden;
}


#main-header{
    height: 120px;
    background-color: #000;
    background-image: url('../images/Logo_orange23ltd.png');
    background-repeat: no-repeat;
    background-position: center left;
    color: #fff;    
}
#main-header h1{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 15px;
    padding-top:20px;
    color:#fff;
}

.topnav {
    background-color: #333;
    overflow: hidden;
    padding: 5px 0;
}

.topnav a{
    float: left;
    display: block;
    color: #fff;
	 text-align: center;
    padding: 5px 16px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid transparent;
    border-radius: 5px;
}
.topnav a:hover {
    border: 2px solid rgb(255, 145, 0);
        
}
.topnav a.active {
    background-color:rgb(255, 145, 0);
    color: black;
  } 
  .topnav .icon {
    display: none;
  }
#showcase{
    background-image: url('../images/showcase03.png');
    background-position: center center;
    min-height: 50vh;
    margin-bottom:30px;
    text-align: center;
}
#showcase h1{
    color: #fff;
    font-size: 50px;
    line-height: 1.6em;
    padding-top: 30px;
}


#main{
    float:left;
    width:100%;
    /*padding: 0 30px;*/
    margin-bottom:30px;
    box-sizing: border-box;
    }
#main h1{
    font-size: 30px;
    color:#000;
}

.flex-services{
    display: flex;
    flex-direction: row;
    height: 400px;
    
    justify-content: space-around;
    align-items: stretch;
    margin-bottom:30px;
}

.service-header{
    background-color: #999999;
    width: 30%;
    text-align: center;
    border: 2px solid #333;
    border-radius: 5px;

}


.service-content{
    margin-top: 45px;
    background-color: #fff;
    height:250px;
    border:none;
}

#contact{ 
    background-image: url('../images/email_bg.png');
    background-position: center center;
    margin: auto;
	margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box;
}
#contact h1{
    font-size: 50px;
    line-height: 1.2em;
    color:#fff;
}
#contact h2{
    font-size: 30px;
    color: #999;   
}
::placeholder{
    color: #333;
    
}
form{

    margin-top: 50px;
    
}
.form-control{
    width: 60%;
    max-width: 600px;
    background-color:#999;
    border: none;
    border-radius: 5px;
    outline: none; 
    color: #000;
    padding-left: 14px;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: Arial, Helvetica, sans-serif;
}
input{
    height: 45px;
    
}
#message{
    padding-top: 12px;
}
form .submit{
    
    background: #333;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 33.5px;
    
}
form .submit:hover{
    border: 2px solid rgb(255, 145, 0);
    cursor: pointer;
}
.modal{
  display: none;  /*Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(255, 255, 255, 0.541); /* Black w/ opacity */
	
}
.modal-content {
  background-color: #333;
  color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  
  border-radius: 5px;
  font-size: 1.6em;
  width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#main-footer{
    display:table;
    width:100%;
    padding:0 10%;
    background: #000;
    color:#fff;
    font-size: 12px;
    box-sizing: border-box;
}

#main-footer .box{
    display: table-cell;
    width:33.33%;
    box-sizing: border-box;
		
}



@media screen and (max-width:768px){
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;

    }
    #main{
        width: 100%;
        float: none;
        display: block;
    }
    #sidebar{
        width: 100%;
        float: none;
        display: block;
        margin-bottom: 30px;
    }
    #main-footer .box{
        width: 100%;
        display: block;
        padding: 8px 0;

    }
    #main-footer .box[style]{   
        text-align: center!important;
    }
}
@media screen and (max-width: 768px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

