/* Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
}

img {
  width: 100%;
  border: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* wrapper */
.wrapper {
  max-width: 1040px;
  margin: auto;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 24px;
  color: #595959;
  background-color: #111;
}

.main-wrap {
  background-image: url('images/banner.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
}

/*  overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url('images/overlay.png');
  background-repeat: repeat;
  overflow: hidden;
}

/* Header section */
.header-section {
  background-color: #111;
  border-top: 5px solid #f1f1f1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.site-logo {
	position: absolute;
}
.site-logo img{
  width: 100px;
}
.navigation{
  float: right;
  margin-left: 30px;
}
.navigation ul {
  text-align: center;
}

.navigation ul li {
  display: inline-block;
  margin-left: -5px;
}

.navigation ul li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 50px;
  display: block;
  font-weight: 700;
  transition: all 0.3s;
}

.navigation ul li a:hover {
  background-color: #f1f1f1;
  color: #222;
}

.navigation ul li.active-nav a {
  background-color: #f1f1f1;
  color: #222;
}
.mobile-nav{
  display: none;
}
/* Slider Customization */
.item{
  position: relative;
}
.slider-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url('images/overlay.png');
  background-repeat: repeat;
  overflow: hidden;
  text-align: center;
}
/* intro Section */

.intro-section {
  text-align: center;
  color: #fff;
}

.home-padding {
  padding: 380px 0 200px 0;
}

.padding-red {
  padding: 150px 0 20px 0;
}

.intro-section h1,
.slider-overlay h1 {
  font-size: 42px;
  line-height: 36px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.intro-section h3,
.slider-overlay h3 {
  font-size: 16px;
  color: #949494;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* footer-section */
.footer-section {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
}

.footer-section p {
  font-size: 14px;
  color: #595959;
}

.footer-inner a {
  color: #fff;
}

/* About section */
.about-section {
  padding: 50px 0;
}

.about-inner {
  background-color: #000;
  padding: 50px;
}

.about-inner h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-inner h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}

.about-inner p {
  margin-bottom: 30px
}

/* service section*/
.services-section {
  padding: 50px 0;
}

.services-inner {
  padding: 50px;
  background-color: #000;
}

.services-inner h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.services-inner h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}

.service-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-service {
  width: 24%;
  padding: 10px;
  margin: 1% 0.5%;
}

.single-service a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  margin-top: 10px;
}

.single-service i {
  font-size: 32px;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  border: 1px solid #fff;
  text-align: center;
  padding: 20px 0 0 0;
  margin-bottom: 20px;
}

/* port-section */
.portfolio-section {
  padding: 50px 10px;
}

.portfolio-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-port {
  width: 25%;
  padding: 5px 5px 0 5px;
}

/*contact-section  */
.contact-section {
  padding: 50px 0;
}

.contact-inner {
  background-color: #000;
  padding: 50px;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-contact {
  width: 50%;
}

.contact-address {
  padding-right: 100px;
}

.contact-inner h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-address p {
  margin-bottom: 20px
}

.address span {
  display: block;
  font-weight: 700;
}

.address span a {
  font-weight: 400;
  color: #595959;
  margin-left: 10px
}

.form-box h3 {
  font-size: 16px;
  color: #fff;
}

.form-box input[type=text],
.form-box textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #595959;
  background-color: transparent;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.form-box input[type=text]:focus,
.form-box textarea:focus {
  background-color: rgba(89, 89, 89, 0.3);
}

.form-box input[type=submit] {
  padding: 10px 35px;
  border: 1px solid #fff;
  background-color: #fff;
  color: #222;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-box input[type=submit]:hover {
  background-color: #000;
  color: #fff;
}
