body {
  font-family: "Open Sans", sans-serif;
  color: #008000;
}

a {
  color: #444;
}

a:hover {
  color: #fed41a;
  text-decoration: none;
}

ul{
  padding: 0;
  margin: 0;
}
@font-face {
  font-family: myfont;
  src: url(oxygen-v9-latin-regular.woff);
}
h1, h2, h3, h4, h5, h6 {
  font-family: myfont;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.carousel-item {
  height: 100px;
  min-height: 520px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fed41a;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #000;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height: 57px;
}

@media (max-width: 992px) {
  #header {
    padding: 9px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 12px 0 12px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #79310a;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: myfont;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #008000;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #556270;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #000;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.icofont-navigation-menu {
  background: url(../img/nav.png) no-repeat left center;
  width: 22px;
    height: 17px;
    display: block;
}
.icofont-close {
  background: url(../img/close.png) no-repeat left center;
  width: 14px;
    height: 14px;
    display: block;
}
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 24px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #556270;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #556270;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #000;
  text-decoration: none;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(63, 73, 83, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

.section-bg, .services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
section.about {
  background: #E0FFFF;
  padding-top: 60px;
}

.container h2 {
  font-size: 29px;
  line-height: 42px;
  margin-bottom: 10px;
  font-family: myfont;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}
.about .col-lg-4 {
  text-align: center;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #E0FFFF;
  padding: 0 0 24px 0;
  font-size: 14px;
}

#footer .footer-top {
  background: #f8f9fa;
  padding: 50px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .credits a:hover, #footer .footer-top .footer-links ul a:hover {
  color: #fed41a;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
  transition: 0.3s;
  font-size: 12px;
}
/**/
.align-items-center {
  justify-content: space-between;
}
h2.heading {
  text-align: center;
  padding: 50px;
}
.section-title {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services .section-title {
  padding-bottom: 30px;
}
.services h3{
  margin-top: 20px;
  margin-bottom: 16px;
  font-family: myfont;
  font-size: 23px;
}
.services .icon-box p {
  margin: 0px;
  line-height: 24px;
  font-size: 14px;
  padding-left: 16px;
}
.services .icon-box p::before {
  background: url(../img/curve-right.png) no-repeat left 0;
  width: 7px;
  height: 9px;
  content: '';
  position: absolute;
  left: 25px;
  background-size: contain;
  margin-top: 8px;
}

.services .icon-box {
  display: flex;
  align-items: center;
  padding: 14px 5px 12px 8px;
  background: #fff;
  transition: ease-in-out 0.3s;
  margin-bottom: 12px;
  border: 1px solid #e7e8e9;
}

section.constructions li {
  list-style: none;
  margin: 0;
  padding: 10px 10px 10px 15px;
  margin-bottom: 10px;
  position: relative;
}
section.constructions li::before {
  background: url(../img/curve-right.png) no-repeat left 0px;
  width: 7px; height: 15px;
  content: '';
  position: absolute;
  left: 0;
  background-size: contain;
  margin-top: 8px;
}
section.services {
  padding-bottom: 40px;
}
section.constructions .content p {
  font-size: 19px;
  margin-bottom: 5px;
  font-family: myfont;
  margin-top: 5px;
}
section.projects {
  padding-bottom: 30px;
}
.projects .icon-box {
  text-align: center;
  margin-bottom: 34px;
}
.projects h4 {
  font-weight: bold;
  font-size: 17px;
  margin-top: 6px;
  margin-bottom: 0;
}
.projects .icon-box p {
  font-size: 14px;
}
.projects .img-wrap {
  height:168px; 
  overflow: hidden;
  transition: transform .2s;
}
.constructions .img-wrap {
  height:168px; 
  overflow: hidden;
  transition: transform .2s;
}
.img-wrap img {
  transition: transform .5s ease;
}
.projects .img-wrap:hover img,
.constructions .img-wrap:hover img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #fed41a;
}

.cons-cat {
  text-align: center;
}

.carousel-indicators li.active {
  background-color: #fed41a;
}
.projects .container h2 {
  margin-bottom: 0px;
}
section#hero {
  margin-top: 87px;
    padding: 0;
}
@media (max-width: 1025px) {
  .carousel-item {
    min-height: 400px
  }
}
@media (max-width: 992px) {
  
  #hero .carousel-container {
    top: 8px;
  }
  section#hero {
    margin-top: 68px;
  }
  .carousel-item {
    min-height: 300px
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-height: 240px
  }
  .section-title p {
    line-height: 44px;
  }
  .container h2 {
    font-size: 23px;
  }
  .services h3 {
    font-size: 22px;
  }
  section.constructions li {
    margin-bottom: 0;
  }
  .projects .icon-box {
    margin-bottom: 24px;
  }
  section.about {
    padding-top: 30px;
  }
  .services .section-title {
    padding-bottom: 0px;
  }
  section.projects {
    padding-top: 30px;
  }
  .section-title {
    padding-bottom: 15px;
  }
  #footer .footer-top {
    padding: 30px 0;
  }
  section.services, section.constructions {
    padding: 30px 0;
  }
}
@media (max-width: 481px) {
  .carousel-item {
    min-height: 168px
  }
  .carousel-indicators {
    margin-bottom: 6px;
  }
  .container h2 {
    line-height: 32px;
  }
}
/*.carousel-inner {
  max-width: 1110px;
  margin: 0 auto;
}

.arrows {
  max-width: 1110px;
  margin: 0 auto;
  position: relative;
}*/