/*!

Author: Shekh Kamal Hussain
Author URI: http://www.shekhkamal.com

*/
/* link Color */
/* =======================================================================
## ++ Media Queries
========================================================================== */
/*
    Used for media queries.
    Add these mixins in your normal scss flow.

    Eg.
    .container{
        width:1024px;

        @include tablets{
            width:90%;
        }
    }
*/
/* =======================================================================
## ++ Unit transform
========================================================================== */
/*
    Used for making containers have width in percentages.
    Usage: define elemnt width in px and the width of parent elemnt in px.
    eg. .block{width:cp(512px, 1024px)} this will result in .block{width:50%;}
*/
/*
    Used for making px values convert to rem values
    Usage: define font-size in px and it will convert to rems
    eg. font-size: rem(14px);
*/
/*
    Link hover and active stage
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.55;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =======================================================================
## ++ Globals
========================================================================== */
html {
  font-size: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: white;
}

* {
  box-sizing: border-box;
}

/* =======================================================================
## ++ Cleafix
========================================================================== */
/* float clearing for IE6 */
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
* + html .clearfix {
  min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

.clr {
  clear: both;
}

body.canvas-bg-color.light {
  background-color: white;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.canvas-bg-color.light a {
  color: #333;
}
body.canvas-bg-color.light p {
  color: #555;
}
body.canvas-bg-color.light:before {
  content: '';
  width: 700px;
  height: 700px;
  background-color: #f74435;
  position: fixed;
  transform: rotate(45deg);
  left: -350px;
  bottom: -350px;
  box-shadow: 12.7px -7.9px 50px 7.1px rgba(0, 0, 0, 0.3);
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1400px) {
  body.canvas-bg-color.light:before {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.light:before {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.light:before {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}
body.canvas-bg-color.light:after {
  content: '';
  width: 700px;
  height: 700px;
  background-color: #78711d;
  position: fixed;
  transform: rotate(45deg);
  right: -350px;
  bottom: -350px;
  box-shadow: -11.3px 7.9px 50px 7.1px rgba(0, 0, 0, 0.35);
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1400px) {
  body.canvas-bg-color.light:after {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.light:after {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.light:after {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}
body.canvas-bg-color.brown {
  background-color: #78711d;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.canvas-bg-color.brown a {
  color: white;
}
body.canvas-bg-color.brown p {
  color: white;
}
body.canvas-bg-color.brown:before {
  content: '';
  width: 700px;
  height: 700px;
  background-color: white;
  position: fixed;
  transform: rotate(45deg);
  left: -350px;
  bottom: -350px;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 12.7px -7.9px 50px 7.1px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1400px) {
  body.canvas-bg-color.brown:before {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.brown:before {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.brown:before {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}
body.canvas-bg-color.brown:after {
  content: '';
  width: 700px;
  height: 700px;
  background-color: #f74435;
  position: fixed;
  transform: rotate(45deg);
  right: -350px;
  bottom: -350px;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: -11.3px 7.9px 50px 7.1px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1400px) {
  body.canvas-bg-color.brown:after {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.brown:after {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.brown:after {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}
body.canvas-bg-color.red {
  background-color: #f74435;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.canvas-bg-color.red a {
  color: white;
}
body.canvas-bg-color.red p {
  color: white;
}
body.canvas-bg-color.red:before {
  content: '';
  width: 700px;
  height: 700px;
  background-color: #78711d;
  position: fixed;
  transform: rotate(45deg);
  left: -350px;
  bottom: -350px;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 12.7px -7.9px 50px 7.1px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1400px) {
  body.canvas-bg-color.red:before {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.red:before {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.red:before {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}
body.canvas-bg-color.red:after {
  content: '';
  width: 700px;
  height: 700px;
  background-color: white;
  position: fixed;
  transform: rotate(45deg);
  right: -350px;
  bottom: -350px;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: -11.3px 7.9px 50px 7.1px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1400px) {
  body.canvas-bg-color.red:after {
    width: 500px;
    height: 500px;
    bottom: -250px;
  }
}
@media (max-width: 991px) {
  body.canvas-bg-color.red:after {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
@media (max-width: 767px) {
  body.canvas-bg-color.red:after {
    width: 400px;
    height: 400px;
    bottom: -250px;
  }
}

.container {
  max-width: 550px;
  text-align: center;
}

.logo-wrapper {
  padding: 5%;
}
.logo-wrapper img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
  background-color: white;
}

.panel-group {
  margin-top: 5%;
  z-index: 9;
  position: relative;
}
.panel-group .panel {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.panel-group .panel-heading {
  border-bottom: solid 1px #eee;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  background-color: transparent;
}
.panel-group .panel-heading a {
  text-decoration: none !important;
}
.panel-group .panel-body {
  border-top: none !important;
  border-bottom: solid 1px #eee;
  background-color: transparent !important;
}
.panel-group .panel-body p {
  line-height: 1.8;
  font-size: 13px;
}

.light table th {
  color: #333;
}

.light table td {
  color: #333;
}

table th {
  text-transform: uppercase;
  border: none !important;
  font-size: 13px;
  color: white;
  background-color: #aaa !important;
}
table tr {
  border: none !important;
}
table td {
  border: none !important;
  font-size: 12px;
  color: white;
}
table td:first-child {
  width: 75%;
}

.light .address span {
  color: #333;
}

.address span {
  display: block;
  color: white;
}

.light .contact-form label {
  color: #333;
}

.contact-form {
  text-align: left !important;
}
.contact-form label {
  font-weight: normal !important;
  font-size: 10px;
  color: white;
}
.contact-form input {
  border-radius: 0px !important;
}
.contact-form textarea {
  border-radius: 0px !important;
}
.contact-form button {
  border-radius: 0px;
  background-color: #111;
  color: white;
  border: none;
}
.contact-form button:hover {
  background-color: #333;
  color: white;
}

#map {
  margin-top: 3%;
  height: 350px;
}
@media (max-width: 767px) {
  #map {
    height: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
