/* Tree HTML5 Template */

/************ TABLE OF CONTENTS ***************

1. Fonts
2. Reset
3. Global
4. Main Header
5. Banner Section
6. Video Section
7. Services Section
8. Clients Section
9. Project Section / four Item Carousel
10. Two Item Carousel
11. Call To Action Section
12. Four Item Carousel / Project Section
13. Footer Style
14. Flast Icons

**********************************************/

@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Roboto+Slab:100,300,400,700");

/*font-family: 'Lato', sans-serif;
font-family: 'Roboto Slab', serif;*/

@import url("font-awesome.css");
@import url("flaticon.css");
@import url("animate.css");
@import url("owl.css");
@import url("jquery.fancybox.css");
@import url("hover.css");

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #484848;
  line-height: 1.6em;
  font-weight: 400;
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #247fe1;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: "Roboto Slab", serif;
  margin: 0px;
  background: none;
  line-height: 1.6em;
}

p {
  position: relative;
  line-height: 1.6em;
}

.strike-through {
  text-decoration: line-through;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.medium-container {
  max-width: 850px;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

@media (min-width: 768px) {
  .row.equal {
    display: flex;
    flex-wrap: wrap;
  }
}

.template-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

.anim-3,
.anim-3-all * {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.anim-5,
.anim-5-all * {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.anim-7,
.anim-7-all * {
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

/*** 

====================================================================
	Btn Style One
====================================================================

***/

.btn-style-one {
  position: relative;
  padding: 9px 43px;
  line-height: 24px;
  background: #f5b048;
  color: #ffffff;
  font-size: 16px;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-one:hover {
  color: #f5b048;
  border-color: #f5b048;
  background: none;
}

/*** 

====================================================================
	Btn Style Two
====================================================================

***/

.btn-style-two {
  position: relative;
  padding: 6px 48px;
  line-height: 24px;
  text-transform: uppercase;
  background: #f4d025;
  color: #121212;
  font-size: 13px;
  display: inline-block;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-two:hover {
  color: #f4d025 !important;
  border-color: #f4d025;
  background: none;
}

.template-btn .fa {
  font-size: 16px;
}

.template-btn .icon-left {
  padding-right: 10px;
}

.template-btn .icon-right {
  padding-left: 10px;
}

.theme_color {
  color: #f5b048;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.GIF);
}

/*** 

====================================================================
	Search Popup
====================================================================

***/

.search-popup {
  position: fixed;
  left: 0px;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
}

.search-popup .close-search:hover {
  opacity: 0.7;
}

.search-popup .search-form {
  position: relative;
  padding: 0px 15px 50px;
  padding-top: 200px;
  max-width: 1024px;
  margin: 0 auto;
}

.search-popup .search-form fieldset {
  position: relative;
  border: 5px solid rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.search-popup .search-form fieldset input[type="search"],
.search-popup .search-form fieldset input.form-control {
  position: relative;
  height: 70px;
  padding: 20px 220px 20px 30px;
  background: #ffffff;
  line-height: 30px;
  font-size: 24px;
  color: #233145;
  -webkit-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.search-popup .search-form fieldset input[type="submit"] {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  text-align: center;
  width: 220px;
  padding: 20px 10px 20px 10px;
  color: #ffffff;
  background: #f5b048;
  line-height: 30px;
  height: 70px;
  font-size: 20px;
  text-transform: uppercase;
  -moz-border-radius: 0px 7px 7px 0px;
  -ms-border-radius: 0px 7px 7px 0px;
  -o-border-radius: 0px 7px 7px 0px;
  -webkit-border-radius: 0px 7px 7px 0px;
  border-radius: 0px 7px 7px 0px;
}

.search-popup .search-form fieldset input[type="submit"]:hover {
  background: #334551;
  color: #ffffff;
}

.search-popup h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}

.search-popup .recent-searches {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.search-popup .recent-searches li {
  display: inline-block;
  margin: 0px 10px 10px 0px;
}

.search-popup .recent-searches li a {
  display: block;
  line-height: 24px;
  border: 1px solid #ffffff;
  padding: 5px 20px;
  color: #ffffff;
  border-radius: 3px;
}

.search-popup .recent-searches li a:hover {
  color: #f5b048;
  border-color: #f5b048;
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 42px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  display: none;
}

.scroll-to-top:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  background: #0f3556;
  border: 1px solid #0f3556;
  border-radius: 20px 0px 20px 20px;
  -ms-border-radius: 20px 0px 20px 20px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.scroll-to-top span {
  position: relative;
  display: block;
  z-index: 1;
  line-height: 36px;
}

.scroll-to-top:hover {
  color: #f4d025;
}

.scroll-to-top:hover:before {
  background: #ffffff;
  border-color: #f4d025;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.bounce-in-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  background: #ffffff;
  z-index: 0;
  border-bottom: 1px solid #cccccc;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.bounce-in-header .logo {
  padding: 6px 0px 2px;
}

.bounce-in-header.now-visible {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header .header-upper {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  z-index: 5;
}

.main-header .header-upper .upper-right {
  position: relative;
}

.main-header .header-upper .upper-column {
  position: relative;
  float: left;
  min-width: 80px;
  margin-left: 40px;
  padding-top: 25px;
}

.main-header .info-box {
  position: relative;
  padding-left: 50px;
}

.main-header .info-box .icon-box {
  position: absolute;
  left: 0px;
  top: 20px;
  width: 45px;
  line-height: 60px;
  color: #f4d025;
  font-size: 36px;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header .info-box:hover .icon-box {
  color: #0f3556;
}

.main-header .info-box li {
  position: relative;
  line-height: 24px;
  margin: 0px 0px;
  font-size: 15px;
  color: #222222;
}

.main-header .info-box li a {
  color: #222222;
}

.main-header .info-box strong {
  font-weight: 400;
  color: #a6a6a6;
  font-size: 17px;
}

.main-header .header-lower {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 5;
}

.main-menu {
  position: relative;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
  font-weight: 700;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 0px;
  margin-right: 68px;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.bounce-in-header .main-menu .navigation > li {
  margin-right: 0px;
}

.bounce-in-header .main-menu .navigation > li {
  margin-left: 30px;
}

.bounce-in-header .main-menu .navigation > li > a {
  color: #181818;
  padding: 20px 0px 18px;
}

.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 13px 15px 13px 18px;
  line-height: 22px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .get-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 225px;
  height: 100%;
  border-radius: 0px 5px 5px 0px;
  background: #0f3556;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .get-btn .appt-btn {
  position: relative;
  display: block;
  line-height: 30px;
  text-align: center;
  padding: 15px 0px;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
}

.main-header .get-btn:hover {
  background: #a6a6a6;
}

.main-header .get-btn .appt-btn:hover {
  color: #ffffff;
}

.main-header .header-upper .nav-outer {
  position: relative;
  padding-right: 80px;
}

.main-header .header-upper .nav-outer .search-btn {
  position: absolute;
  right: 0px;
  top: 12px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .header-upper .nav-outer .search-btn:hover {
  color: #f5b048;
}

.main-header .main-menu .navigation > li > a {
  position: relative;
  padding: 12px 0px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation > li > a:hover,
.main-header .main-menu .navigation > li.current a {
  color: #f5b048;
}

.main-header .bounce-in-header .main-menu .navigation > li {
  margin-left: 0px;
  margin-right: 40px;
}

.main-header .bounce-in-header .main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.main-header .bounce-in-header .main-menu .navigation > li.dropdown {
  margin-right: 60px;
}

.main-header .bounce-in-header .main-menu .navigation > li > a {
  padding-right: 0px;
}

/*** 

====================================================================
	Sec Title One
====================================================================

***/

.sec-title-one {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.sec-title-one h2 {
  position: relative;
  font-size: 70px;
  color: #ffffff;
  margin-bottom: 40px;
}

.sec-title-one .text {
  position: relative;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2em;
  max-width: 1000px;
  margin: 0 auto;
}

/*** 

====================================================================
	Sec Title One / Light
====================================================================

***/

.sec-title-one.light {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.sec-title-one.light h2 {
  position: relative;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.sec-title-one.light .text {
  position: relative;
  color: #e3e3e3;
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.8em;
}

/*** 

====================================================================
	Social Icon One
====================================================================

***/

.social-icon-one {
  position: relative;
}

.social-icon-one li {
  padding: 0px 15px;
  line-height: 16px;
  border-left: 1px solid #6e6e6e;
  margin-right: 0px !important;
}

.social-icon-one li:last-child {
  border-right: 1px solid #6e6e6e;
}

.social-icon-one li a {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.social-icon-one li a:hover {
  color: #f4d025;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/

.banner-section {
  position: relative;
  text-align: center;
  padding-bottom: 60px;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(38, 38, 38, 0.34);
}

.banner-section .inner-box {
  position: relative;
  padding: 195px 0px 200px;
}

.banner-section .inner-box .image-box {
  position: relative;
}

.banner-section .inner-box .image-box .image {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.banner-section .inner-box .image-box .image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.banner-section .inner-box .image-box .designation {
  position: relative;
  font-size: 16px;
  color: #ffffff;
  margin-top: 25px;
  font-weight: 700;
}

.banner-section .inner-box h1 {
  position: relative;
  color: #ffffff;
  line-height: 1.1em;
  font-size: 100px;
  margin-top: 40px;
}

.banner-section .scroller {
  position: relative;
  width: 30px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50px;
  border: 2px solid #ffffff;
  z-index: 99;
  cursor: pointer;
  -webkit-animation: bounceupdown 1.5s infinite;
}

@-webkit-keyframes bounceupdown {
  0% {
    bottom: 5px;
  }
  25% {
    bottom: 15px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 0;
  }
}

.banner-section .scroller:before {
  position: absolute;
  content: "|";
  left: 46%;
  cursor: pointer;
  color: #ffffff;
  font-size: 10px;
}

/*** 

====================================================================
	Video Section
====================================================================

***/

.video-section {
  position: relative;
  padding: 70px 0px;
  background-color: #091b06;
}

.video-section .video-box {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.video-section .video-box .image-box {
  margin-top: 35px;
}

.video-section .video-box .image-box img {
  position: relative;
  width: 100%;
  display: block;
}

.video-section .video-box .icon-box {
  position: absolute;
  width: 52px;
  height: 52px;
  left: 50%;
  top: 50%;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
  color: #ffffff;
  background-color: #f5b048;
  margin-left: -26px;
  margin-top: -26px;
  border-radius: 50%;
}

.video-section .video-box .text {
  color: #cccccc;
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.2em;
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section {
  position: relative;
  padding: 100px 0px;
  background-color: #d9d9d9;
}

.services-section h2 {
  position: relative;
  color: #373737;
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.services-section .text {
  position: relative;
  color: #262626;
  font-size: 24px;
  line-height: 1.4em;
}

.service-block {
  position: relative;
  margin-bottom: 50px;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.service-block .inner-box {
  position: relative;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.service-block .inner-box:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
  box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
}

.service-block .inner-box .image-box {
  position: relative;
}

.service-block:hover {
  margin-top: -35px;
}

.service-block .inner-box:hover .lower-content {
  background-color: #f5b048;
}

.service-block .inner-box:hover .lower-content h3 a,
.service-block .inner-box:hover .lower-content .text {
  color: #ffffff;
}

.service-block .inner-box img {
  position: relative;
  width: 100%;
  display: block;
}

.service-block .lower-content {
  min-height: 412px;
  position: relative;
  text-align: center;
  padding: 18px 18px;
  background-color: #ffffff;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.service-block .lower-content h3 a {
  position: relative;
  color: #333333;
  font-size: 24px;
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Lato", sans-serif;
}

.service-block .lower-content .text {
  position: relative;
  font-size: 16px;
  color: #373737;
}

/*** 

====================================================================
	Renting Section
====================================================================

***/

.renting-section {
  position: relative;
  padding: 90px 0px 80px 0px;
}

.renting-section h2 {
  position: relative;
  color: #262626;
  font-size: 50px;
  margin-bottom: 70px;
  text-align: center;
}

.renting-section .text {
  position: relative;
  color: #262626;
  font-size: 24px;
  line-height: 1.4em;
}

.renting-section .image-box {
  padding: 2rem;
}

.renting-section .image-box img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

/*** 

====================================================================
	Sponsers Section
====================================================================

***/

.sponsers-section {
  position: relative;
  padding: 74px 0px;
  text-align: center;
}

.sponsors-carousel .slide-item .image-box a img {
  width: auto;
  max-width: 100%;
  display: inline-block;
}

.sponsers-section .owl-controls {
  display: none !important;
}

/*** 

====================================================================
	Projects Section
====================================================================

***/

.projects-section {
  position: relative;
  padding: 80px 0px 100px 0px;
  background-color: #d9d9d9;
}

.projects-section h2 {
  position: relative;
  color: #373737;
  font-size: 70px;
  text-align: center;
  margin-bottom: 100px;
}

.projects-section .text {
  position: relative;
  color: #373737;
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 30px;
}

/*** 

====================================================================
	Eight Item Carousel
====================================================================

***/

.eight-item-carousel {
  position: relative;
  margin-top: 60px;
}

.eight-item-carousel .slide {
  position: relative;
}

.eight-item-carousel .slide .slide-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.eight-item-carousel .slide .slide-item .inner-box {
  overflow: hidden;
}

.eight-item-carousel .slide .slide-item .inner-box:hover .image-box img {
  -moz-transform: scale(1.2, 1.2) rotate(10deg);
  -webkit-transform: scale(1.2, 1.2) rotate(10deg);
  -o-transform: scale(1.2, 1.2) rotate(10deg);
  transform: scale(1.2, 1.2) rotate(10deg);
}

.eight-item-carousel .slide .slide-item .inner-box .image-box {
  position: relative;
}

.eight-item-carousel .slide .slide-item .inner-box .image-box img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.eight-item-carousel .slide .slide-item .inner-box .image-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
}

.eight-item-carousel .slide .slide-item .inner-box .image-box .icon-box .icon {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 27px;
  line-height: 25px;
  border-radius: 50%;
  color: #262626;
  margin-top: -12px;
  margin-left: -12px;
  text-align: center;
  opacity: 0;
  background-color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.eight-item-carousel .slide .slide-item .inner-box:hover .icon {
  opacity: 1 !important;
}

.eight-item-carousel .owl-controls .owl-nav {
  margin: 0px !important;
  position: absolute;
  left: 0px;
  bottom: 50%;
  width: 100%;
}

.eight-item-carousel .owl-controls .owl-dots {
  display: none !important;
}

.eight-item-carousel .owl-controls .owl-nav [class*="owl-"] {
  position: absolute !important;
  display: inline-block;
  width: 46px;
  height: 46px;
  padding: 0px;
  margin: 0px;
  border: 2px solid #262626;
  color: #262626;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: none !important;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.eight-item-carousel .owl-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -25px;
}

.eight-item-carousel .owl-controls .owl-nav [class*="owl-"]:hover {
  border-color: #f5b048;
  color: #f5b048;
}

.eight-item-carousel .owl-controls .owl-nav .owl-prev {
  position: absolute;
  left: -80px;
}

.eight-item-carousel .owl-controls .owl-nav .owl-next {
  position: absolute;
  right: -80px;
}

/*** 

====================================================================
	Quotes Section
====================================================================

***/

.quotes-section {
  position: relative;
  padding: 90px 0px 80px 0px;
}

.quotes-section h2 {
  position: relative;
  color: #262626;
  font-size: 50px;
  margin-bottom: 70px;
  text-align: center;
}

.quotes-carousel {
  position: relative;
}

.quotes-carousel .slide-item {
  position: relative;
  padding-left: 50px;
}

.quotes-carousel .slide-item:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 8px;
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../images/resource/quote-icon.png) no-repeat;
}

.quotes-carousel .slide-item .text {
  position: relative;
  color: #262626;
  font-size: 24px;
  line-height: 1.4em;
}

.quotes-carousel .slide-item .designation {
  position: relative;
  color: #262626;
  font-size: 16px;
  font-weight: 300;
  margin-top: 40px;
}

.quotes-carousel .owl-controls {
  margin-top: 45px;
}

.quotes-carousel .owl-controls .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 0px;
  margin: 0px;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  margin-right: 20px;
  background-color: #929292;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.quotes-carousel .owl-controls .owl-dots .owl-dot.active span {
  border: 2px solid #f5b048;
  background-color: inherit;
}

/*** 

====================================================================
	Call To Action
====================================================================

***/

.call-to-action {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px 40px 0px;
}

.call-to-action:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.85);
}

.call-to-action .inner-box {
  margin-bottom: 40px;
}

.call-to-action h2 {
  position: relative;
  color: #ffffff;
  font-size: 50px;
  font-family: "Lato", sans-serif;
}

.call-to-action .text {
  position: relative;
  color: #ffffff;
  font-size: 24px;
}

.call-to-action .hire-us {
  position: relative;
  margin-top: 45px;
  padding: 9px 54px;
}

/*** 

====================================================================
	Team Section
====================================================================

***/

.team-section {
  position: relative;
  background-color: #d9d9d9;
  padding: 80px 0px 100px 0px;
}

.team-section .title-box {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
}

.team-section .title-box h2 {
  position: relative;
  font-size: 50px;
  color: #373737;
  margin-bottom: 14px;
}

.team-section .text {
  position: relative;
  font-size: 24px;
  color: #373737;
  line-height: 1.4em;
}

.team-member {
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.team-member:hover {
  position: relative;
  margin-top: -22px;
}

.team-member:hover .inner-box {
  background-color: #f5b048;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.team-member .inner-box:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
  box-shadow: 0px 0px 20px 0px rgba(182, 182, 182, 1);
}

.team-member .inner-box:hover .lower-content .designation,
.team-member .inner-box:hover .lower-content .name {
  color: #ffffff;
}

.team-member .inner-box {
  position: relative;
  text-align: center;
  background-color: #ffffff;
  padding: 50px 0px 40px 0px;
}

.team-member .inner-box .image-box {
  position: relative;
  width: 174px;
  height: 170px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d9d9d9;
}

.team-member .inner-box .image-box img {
  width: 100%;
  display: block;
}

.team-member .inner-box .lower-content {
  position: relative;
  margin-top: 25px;
}

.team-member .inner-box .lower-content .designation {
  position: relative;
  color: #f5b048;
  font-size: 16px;
}

.team-member .inner-box .lower-content .name {
  position: relative;
  color: #333333;
  font-size: 24px;
}

.team-section .owl-carousel .owl-stage-outer {
  padding-top: 35px;
}

.team-section .owl-controls .owl-nav {
  margin: 0px !important;
  position: absolute;
  left: 0px;
  bottom: 50%;
  width: 100%;
}

.team-section .owl-controls .owl-dots {
  display: none !important;
}

.team-section .owl-controls .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  padding: 0px;
  margin: 0px;
  border: 2px solid #262626;
  color: #262626;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: none !important;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.team-section .owl-controls .owl-nav [class*="owl-"]:hover {
  border-color: #f5b048;
  color: #f5b048;
}

.team-section .owl-controls .owl-nav .owl-prev {
  position: relative;
  float: left;
  margin-left: -80px;
}

.team-section .owl-controls .owl-nav .owl-next {
  position: relative;
  float: right;
  margin-right: -80px;
}

/*** 

====================================================================
	Footer Style
====================================================================

***/

footer {
  position: relative;
  background-attachment: fixed;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .footer-upper {
  padding: 80px 0px 40px;
}

footer .footer-upper:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(38, 38, 38, 0.85);
}

footer .footer-upper .title-box {
  position: relative;
  text-align: center;
}

footer .footer-upper .title-box h2 {
  position: relative;
  color: #ffffff;
  font-size: 70px;
  font-family: "Roboto Slab", serif;
}

footer .footer-upper .title-box .text {
  position: relative;
  font-size: 24px;
  color: #ffffff;
  opacity: 0.5;
  margin-bottom: 30px;
  line-height: 1.4em;
}

/*** 

====================================================================
	Social Icons
====================================================================

***/

.social-icons {
  position: relative;
  text-align: center;
  margin: 80px 0px;
}

.social-icons div {
  position: relative;
}

.social-icons div a {
  position: relative;
  font-size: 24px;
  color: #cccccc;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.social-icons li a:hover {
  color: #f5b048;
}

/*** 

====================================================================
	Info Column
====================================================================

***/

.info-column {
  position: relative;
  margin-bottom: 40px;
}

.info-column .inner-box {
  position: relative;
  text-align: center;
}

.info-column .inner-box .icon-box {
  position: relative;
  color: #f5b048;
  font-size: 50px;
  line-height: 1em;
  margin-bottom: 10px;
}

.info-column .inner-box .contact-info {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  margin: 15px 0px;
  display: inline-block;
}

.info-column .inner-box .contact-info a {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  display: inline-block;
}

.info-column .inner-box .text {
  position: relative;
  color: #ffffff;
  opacity: 0.5;
  font-size: 16px;
}

footer .footer-bottom {
  position: relative;
  padding: 44px 0px;
  background-color: #f2f2f2;
}

footer .footer-bottom .copyright {
  position: relative;
  color: #242424;
  font-size: 13px;
  opacity: 0.5;
  line-height: 48px;
  text-align: right;
}
