
* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
    overflow: hidden;
    background-color: #fff;
    padding: 10px 10px;
}

.header a {
  float: left;
  color: #000;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
    font-size: 25px;
    font-weight: bold;
    display: inline-flex;
}
.header a.logo:hover {
    background: #fff;
    color: #000;
}

.header a:hover {
  background-color: #e57400;
}

.header a.active {
  background-color: #e57400;
  color: white;
}

.header-right {
    float: right;
    padding: 25px;
}
.header-right a {
    font-size: 15px;
    padding: 10px 30px;
    margin: 0 5px;
}
.banner img {
    width: 100%;
    height: 700px;
}
#about {
    padding: 40px;
    display: inline-block;
    margin: 0;
    background: #efefef;
}
.ab-txt {
    width: 50%;
    padding: 0 50px;
    float: left;
}
.ab-img img {
    border-radius: 50px;
    height: 500px;
}
.c-btn {
    background: #e57400;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
}
.banner {
    position: relative;
}
.top-txt {
    position: absolute;
    top: 120px;
    left: 50px;
    color: #fff;
}
h1, h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
.top-txt p {
    width: 50%;
    line-height: 1.5;
}
#services {
    text-align: center;
    margin: 50px 190px;
    display: flow-root;
}
.ser-box {
    width: 100%;
    padding: 0 50px;
    display: inline;
}
.box {
    width: 30%;
    float: left;
    padding: 10px 30px;
    border: 1px solid #000;
    margin: 15px;
    border-radius: 20px;
}
.box img {
    width: 40%;
}
.box:hover {
    background: #fff;
    border-color: #ff0000;
}
/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
#contact {
    display: inline-block;
}
/* FAQ */
#faq {
    display: block;
    padding: 50px;
}
.faq-img img {
    width: 100%;
}
.faq-img {
    width: 50%;
    float: left;
}
.faq-txt {
    width: 50%;
    float: left;
}
#faq {
    display: block;
    padding: 50px;
}
/* Testimonials */
#testimonials {
    display: inline-block;
    background: #000;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 50px;
}
.t-01, .t-02, .t-03 {
    width: 33%;
    float: left;
    padding: 0 80px;
    font-family: cursive;
    position: relative;
}
.t-01::before, .t-02::before, .t-03::before {
    content: '';
    font-size: 80px;
    position: absolute;
    left: 70px;
    top: -100px;
    background-image: url(/images/Quote.PNG);
    width: 143px;
    height: 110px;
}
.title {
    margin-bottom: 160px;
}

/** Who We Are */

#who {
    width: 100%;
    display: inline-block;
}
.w-img {
    width: 50%;
    float: left;
    background: url(/images/who.jpg);
    background-size: cover;
    padding: 400px;
}
.w-txt {
    padding: 60px;
    width: 50%;
    float: left;
}
#footer {
    text-align: center;
    width: 25%;
    margin: auto;
    position: relative;
}
#footer:before {
    content: '';
    background-image: url(images/copyright_symbol.png);
    width: 30px;
    height: 19px;
    position: absolute;
    background-size: cover;
    left: 55px;
    top: -1px;
}
/** Services Page */
.services {
    padding: 50px;
    display: block;
}






@media screen and (max-width: 765px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
  .ab-txt {
    width: 100%;
    margin-bottom: 30px;
}
.box {
    width: 100%;
}
.faq-txt {
    width: 100%;
}
.faq-img {
    width: 100%;
}
.t-01, .t-02, .t-03 {
    width: 100%;
    margin: 60px 0;
}
.column {
    width: 100%;
}
#about {
    display: block;
    padding: 0;
}
.ab-img img {
    border-radius: 0px;
    width: 100%;
}
#services {
    text-align: center;
    margin: 40px;
    display: block;
}
h1, h2 {
    font-size: 22px;
}
p {
    font-size: 13px;
}
#footer {
    width: 100%;
}
}
