@import url(font-awesome.min.css);
@import url("http://fonts.googleapis.com/css?family=Lato:300,700");/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body,html {
    margin: 0;
    padding: 0;
  }


  .navbar {
      transition: all 0.4s;
  }
  
  /*logo Section */
  .navbar img {
      width: 5rem;
      margin-left: 30px;
  }
  
  .navbar .nav-link {
      color: #fff;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
      color: #F60E0E !important;
      text-decoration: none;
  }
  
  
  /* Change navbar styling on scroll */
  .navbar.active {
      background: #fff;
      box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar.active .nav-link {
      color: #555;
  }
  
  .navbar.active .nav-link:hover,
  .navbar.active .nav-link:focus {
      color: #971B1F !important;
      text-decoration: none;
  }
  
  .navbar.active .navbar-brand {
      color: #555;
  }
  
  
  /* Change navbar styling on small viewports */
  @media (max-width: 991.98px) {
      .navbar.navbar {
          background: #555;
      }

      .navbar img {
          width: 4rem;
      }

      .navbar .nav-link:hover,
       .navbar .nav-link:focus {
          color: #971B1F !important;
          text-decoration: none;
  }
  
      .navbar .navbar-brand, .navbar .nav-link {
          color: #fff !important;
      }
  }
  


  /* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 42rem;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 50rem;
}

.drk:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.6;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption {
        margin-bottom: 4rem;
      }
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }

  @media (max-width: 991.98px) {
    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        height: 22rem;
      }
    .carousel-item {
        height: 22rem;
      }
    }
  
    /* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .marketing h2 {
    font-weight: 400;
  }
  /* rtl:begin:ignore */
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }

  .col-12.col-md {
    margin-right: 3rem;
    margin-left: 3rem;
  }

/* Wrapper */

.wrapper {
  padding: 5em 0 3em 0;
}

  .wrapper.style1 {
    background: #f2f2f2;
  }

    .wrapper.style1 .box {
      background: #ffffff;
      border: 0;
    }

  .wrapper.style2 {
    background: #ffffff;
  }

  .wrapper.style3 {
    background: #971B1F;
    color: #d1f2f5;
  }

    .wrapper.style3 h1, .wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
      color: #ffffff;
    }

    .wrapper.style3 header p {
      color: #b5ebef;
    }

    .wrapper.style3 .button {
      border-color: white !important;
      color: #ffffff !important;
    }

      .wrapper.style3 .button:hover {
        background-color: rgba(255, 255, 255, 0.075);
      }

      .wrapper.style3 .button:active {
        background-color: rgba(255, 255, 255, 0.2);
      }


      /* Services Section */
#services .services .contact {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}
#services .service-top .contact-top {
	max-width: 500px;
	margin: 0 auto;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(/includes/assets/images/img5.jpg);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #60100B 0%, #900603 100%);
	opacity: .9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#services .service-item p {
	color: white;
	text-align: left;
}
#services .service-bottom .service-item {
  flex-basis: 45%;
  margin: 2.5%;
}
#services .service-bottom .service-item {
  flex-basis: 22%;
  margin: 1.5%;
}

/* End Services Section */