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

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #212121;
  font-family: "Nunito";
}

a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.12s linear;
  opacity: 0.75;
}
a.active, a:hover {
  opacity: 1;
}

section,
.clearbox {
  clear: both;
}

header {
  font-family: "Rubik";
  text-transform: uppercase;
  width: 100%;
  height: 100px;
  background: linear-gradient(#0AA403, #099303);
  color: #FFFFFF;
  padding: 0 80px;
  transition: 0.24s ease;
  position: relative;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  align-items: center;
}
header .logo {
  flex: 1;
  padding: 10px 0;
  margin-right: 32px;
}
header .logo img {
  max-width: 100%;
  max-height: 80px;
}
header nav {
  color: #FFFFFF;
  display: flex;
  flex-flow: row;
  font-size: 16px;
}
header nav a {
  display: block;
  line-height: 100px;
  padding: 0 15px;
  position: relative;
}
header nav a::after {
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.1s cubic-bezier(0.77, 0.04, 0, 0.7);
  display: block;
  position: absolute;
  top: 65px;
  content: "";
  width: calc(20%);
  height: 1px;
  background: #FFFFFF;
}
header nav a.active::after {
  width: calc(100% - 15px * 2);
}
header nav a.active::after, header nav a:hover::after {
  transform: scaleY(1);
}
header.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  height: 60px;
}
header.fixed .logo img {
  max-height: 40px;
}
header.fixed h2 {
  line-height: 14px;
  font-size: 20px;
}
header.fixed h1 {
  line-height: 36px;
  font-size: 26px;
}
header.fixed nav a {
  line-height: 60px;
}
header.fixed nav a::after {
  top: 40px;
}
header.fixed .mobile-hamburger {
  line-height: 60px;
}

section {
  padding: 100px 80px;
  color: #212121;
}
section:nth-child(odd) {
  background: #F9F9F9;
  color: #3C3C3C;
}
section.green {
  background: linear-gradient(#0AA403, #099303);
  color: #FFFFFF;
}
section .title {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

footer h1, section:not(.slider) h1 {
  margin-bottom: 50px;
  display: inline-block;
  position: relative;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Rubik";
  font-weight: normal;
}

section:not(.slider) h1::after {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  margin: 2%;
  height: 1px;
  background: #3C3C3C;
}

section:nth-child(even) h1::after {
  background: #3C3C3C;
}

.slider {
  padding: 0;
  position: relative;
}
.slider .icon {
  position: absolute;
  font-size: 32px;
  color: #FFFFFF;
  bottom: 15px;
  z-index: 888;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.slider .icon i {
  line-height: 60px;
}
.slider img {
  height: 850px;
  width: 100%;
  object-fit: none;
}
.slider .owl-carousel {
  overflow: hidden;
  width: 100%;
  height: 850px;
}
.slider .owl-carousel .item {
  position: relative;
}
.slider .owl-carousel .item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.25);
  padding: 25px 50px 18px;
  letter-spacing: 1.2px;
}
.slider .owl-carousel .item h1 {
  font-size: 42px;
  font-family: "Audiowide";
}
.slider .owl-carousel .item h2 {
  font-size: 30px;
  font-family: "Audiowide";
}
.slider .owl-carousel .item h3 {
  font-size: 24px;
}
.slider .owl-carousel .item hr {
  border: 0.5px solid #FFFFFF;
  margin: 15px 0;
}
.slider .owl-carousel .item p {
  font-size: 24px;
  margin-bottom: 15px;
}
.slider .owl-carousel .item a {
  margin-bottom: 7px;
  opacity: 1;
  padding: 7px;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #0AA403;
  background: #0AA403;
  color: #FFFFFF;
}
.slider .owl-carousel .item a:hover {
  background: transparent;
  border-color: #FFFFFF;
}

/** @4.2 Billboard */
.billboard p {
  font-size: 30px;
  text-align: center;
}

/** @4.3 About us */
.about h1 {
  margin-bottom: 50px;
}
.about .items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.about .items .item {
  padding: 0 15px;
  flex-basis: 30%;
}
.about .items .item:first-child {
  margin-bottom: 40px;
}
.about .items .item .icon {
  margin: 0 auto 25px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  font-size: 50px;
  color: #FFFFFF;
  background: #0AA403;
  line-height: 100px;
}
.about .items .item .text {
  font-size: 16px;
}
.about .items .item h3 {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

.our-job .jobs {
  display: flex;
  flex-flow: wrap row;
  margin: 40px 0 0;
}
.our-job .jobs .item {
  flex: 0 0 calc(100% / 3 - 20px);
  position: relative;
  overflow: hidden;
  margin: 0 10px 20px;
  transform-origin: left;
  transition: 0.4s cubic-bezier(0.77, 0.04, 0, 0.7);
  cursor: pointer;
}
@media (max-width: 768px) {
  .our-job .jobs .item {
    flex: 0 0 calc(100% / 2 - 20px);
  }
}
@media (max-width: 500px) {
  .our-job .jobs .item {
    flex: 0 0 calc(100%);
  }
}
.our-job .jobs .item img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
}
.our-job .jobs .item .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6px);
  text-align: center;
  padding: 15px 7px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  transition: 0.4s cubic-bezier(0.77, 0.04, 0, 0.7);
  transform: translateY(-100%);
  transform-origin: left;
}
.our-job .jobs .item .text h3 {
  margin-bottom: 16px;
}
.our-job .jobs .item:hover .text {
  transform: none;
}

.gallery .title {
  margin-bottom: 40px;
}
.gallery .item {
  padding: 0 7px;
}
.gallery .item img {
  object-fit: cover;
  height: 200px;
}

/** @4.7 Quality */
.quality {
  overflow: hidden;
  background: linear-gradient(#0AA403, #099303);
  color: #FFFFFF;
}

.quality .left h1::after {
  background: #FFFFFF;
}

.quality {
  text-align: center;
}

.quality .left {
  width: 50%;
  float: left;
}

.quality .right {
  width: 50%;
  float: left;
  position: relative;
}

.quality .right img {
  position: absolute;
  width: 230px;
  right: 0;
  transform-origin: 0 100%;
  transition: 0.4s cubic-bezier(0.77, 0.04, 0, 0.7);
}

.quality .right img:nth-child(3) {
  transform: rotate(10deg);
}

.quality .right img:nth-child(2) {
  transform: rotate(-10deg);
}

.quality .right img:nth-child(1) {
  transform: rotate(-30deg);
}

.quality .right img:hover:nth-child(3) {
  transform: rotate(10deg) translateY(-15%);
  cursor: pointer;
}

.quality .right img:hover:nth-child(2) {
  transform: rotate(-10deg) translateY(-15%);
  cursor: pointer;
}

.quality .right img:hover:nth-child(1) {
  transform: rotate(-30deg) translateY(-15%);
  cursor: pointer;
}

/** @4.8 Contact */
.contact .part {
  width: 50%;
  float: left;
  padding: 0 25px;
}
.contact .list p {
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.contact .list p i {
  flex: 1;
}
.contact .list p span, .contact .list p a {
  flex: 9;
}
.contact .list p + p {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.contact .list a {
  color: #0AA403;
  font-weight: bold;
}
.contact .list .company {
  line-height: 60px;
  font-size: 24px;
  font-family: Audiowide;
}
.contact .form label, .contact .form input {
  font-size: 16px;
}
.contact .form label {
  font-weight: bold;
  color: #3C3C3C;
  padding: 6px 15px;
  cursor: pointer;
  margin-bottom: 4px;
  display: block;
}
.contact .form input, .contact .form textarea {
  border: 0;
  display: block;
  width: 100%;
  padding: 16px 15px;
  margin-bottom: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.contact .form textarea {
  resize: none;
  height: 80px;
}
.contact .form input[type=submit] {
  margin-top: 16px;
  width: 50%;
  background: #0AA403;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transition: 0.2s ease-in;
}
.contact .form input[type=submit]:hover {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.6);
}

footer {
  background: #3C3C3C;
  color: #FFFFFF;
  padding: 100px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
footer .part {
  max-width: 400px;
  flex: 1;
  padding: 15px 5px;
}
footer .social {
  font-size: 32px;
  display: flex;
}
footer .social > * {
  padding: 10px;
}
footer .logo {
  font-family: "Audiowide";
  font-size: 32px;
  margin-bottom: 15px;
}
footer .logo span {
  font-size: 24px;
}
footer p {
  font-size: 16px;
}
footer .company {
  text-align: left;
}
footer h1 {
  text-transform: uppercase;
  text-align: left;
  display: block;
}
footer h1, footer p {
  margin-bottom: 15px;
  text-align: left;
}
footer ul {
  text-decoration: none;
  list-style: none;
  text-align: left;
}
footer ul li {
  line-height: 1.5;
  font-size: 16px;
}

.mobile-hamburger {
  display: none;
  float: right;
  line-height: 100px;
  font-size: 32px;
}

@media (max-width: 1200px) {
  section, footer {
    padding: 100px 40px;
  }

  header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .mobile-hamburger {
    display: block;
  }
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 999;
    flex-flow: wrap row;
    width: 100%;
    background: #0AA403;
  }
  header nav a {
    width: 100%;
    line-height: 60px;
  }
  header nav a::after {
    content: none;
  }
  header nav a + a {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
  header nav a:hover {
    background: rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 860px) {
  .about .items .item {
    flex: 50%;
  }

  header {
    padding: 0 40px;
  }

  .slider .owl-carousel {
    height: 500px;
  }
  .slider img {
    height: 500px;
  }

  .contact .part {
    width: 100%;
    float: none;
    padding: 0;
  }
  .contact .part + .part {
    margin-top: 25px;
  }

  .our-job .jobs {
    flex-wrap: wrap;
  }
  .our-job .jobs .item {
    width: calc(100% / 2 - 10px * 2);
  }
  .our-job .jobs .item.active {
    width: calc(100% / 2 - 10px * 2);
  }
  .our-job .jobs .item.minify {
    width: calc(100% / 2 - 10px * 2);
  }
  .our-job .jobs .item img {
    max-height: 240px;
  }

  section {
    padding: 80px 15px;
  }

  footer {
    flex-wrap: wrap;
    padding: 100px 15px;
  }
  footer .part {
    flex: 100%;
    max-width: unset;
    text-align: center;
  }
}
@media screen and (max-width: 780px) {
  .slider .owl-carousel .item .text {
    min-width: 350px;
  }

  .quality .left {
    width: 100%;
    float: none;
  }
  .quality .right {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  header .logo {
    padding: 20px 0;
    height: unset;
  }
  header .logo h1 {
    line-height: 36px;
    font-size: 24px;
  }
  header .logo h2 {
    line-height: 24px;
    font-size: 18px;
  }
  header.fixed .logo {
    padding: 2px 0;
  }

  .about .items .item {
    flex: 100%;
    margin-bottom: 25px;
  }

  .our-job .jobs .item {
    margin-bottom: 10px;
  }

  .contact .list .company {
    line-height: 1.4;
  }

  footer {
    text-align: center;
  }
  footer h1, footer p, footer ul li {
    text-align: center;
  }
  footer .social {
    justify-content: center;
  }
}

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